nc -vz -u 127.0.0.1 53
misc
There are 39 posts filed in misc (this is page 5 of 8).
Passenger installation: PCRE development headers not found on FreeBSD
Checking for PCRE development headers...
Found: no
To solve it add the C_INCLUDE_PATH!
C_INCLUDE_PATH=/usr/local/include/ bundle exec passenger start
ZFS cleanup of snapshots
Just a small note for this oneliner to cleanup snapshots
First list all snapshots with a given pattern.
(This eaxmple searches 12m)
zfs list -t snapshot | grep -F '12m' | cut -d " " -f 1 | xargs -L 1 echo zfs destroy
Remove the word echo to perform a cleanup
zfs list -t snapshot | grep -F '12m' | cut -d " " -f 1 | xargs -L 1 zfs destroy
Explanation:
zfs list -t snapshot
List all zfs snaphots
grep -F '12m'
Only match the lines containing the string 12m
cut -d " " -f 1
Only fetch the first column of the output. (This is the snapshot name)
xargs -L 1 zfs destroy
Execute the command 'zfs destroy' for the found lines
The option -L 1 means it calls 'zfs destroy' per item
without it, xargs wills supply multiple items to 1 call. (Which isn't support by zfs destroy)
Installing Freebsd 11 via USB error 19
Today I tried to install FreeBSD 11.0
FreeBSD booted from the USB stick. When mounting the install image I received error:
Mounting from ufs:/dev/ufs/FreeBSD_Install failed with error 19.
I couldn't figure out why I constantly got this error.
After tweaking bios etc. Using an USB2 port I finally gave up an though my USB stick was broken..
But then creating the second stick I found the problem.
The first time I created my memory stick like this on Mac OS X
sudo dd if="FreeBSD-11.0-RELEASE-amd64-memstick.img" of="/dev/disk2s1" bs="10240"
Look at the wrong /dev/disk2s1 path.. (that's wrong!! )
The second attempt I used the following command. (I needed tot unmount /dev/disk2s1 in DiskUtilty first
)
sudo dd if="FreeBSD-11.0-RELEASE-amd64-memstick.img" of=/dev/disk2 bs=1m conv=sync
Now it works :D
E-mail address validation
I totally agree: https://davidcel.is/posts/stop-validating-email-addresses-with-regex/
validates :email, format: /@/i, allow_blank: true
I prefer this one:
validates :email, format: /.+@.+\..+/i, allow_blank: true
More then enough!