by admin | Jan 29, 2015 | OSX, Security
Homebrew “brew install encfs”, and mount your Volume “encfs -o volname=MySecretDrive ;Path/To/EncFS /Volume/MySecretDrive”. Using encfs in Mac OS X Still in the terminal, you can create an encrypted filesystem in Dropbox using this command: encfs...
by admin | Jan 10, 2014 | Linux, Networking
How to test speed from command line: wget -O /dev/null http://link-to-speedtest/ – you know, the file is downloaded right into the RAM Memory so it isn’t hard-disk dependent anymore. Misc test files: SoftLayer: wget -O /dev/null...
by admin | Feb 25, 2013 | Networking, OSX
Make airport app available: sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/sbin/airport Airport app commands: Supported arguments: -c[<arg>] –channel=[<arg>] Set arbitrary channel on the card...
by admin | Feb 11, 2012 | Bash, Linux, Networking, OSX
Put in cron or run manually. #!/bin/bash # If this is our first run, save a copy of the system’s original hosts file and set to read-only for safety if [ ! -f /etc/hosts.bak ] then echo “Saving copy of system’s original hosts file…” sudo...
by admin | Jun 12, 2011 | Networking, OSX
Remove the “Last login” message from the Terminal touch .hushlogin Enable/Disable Firewall defaults write /Library/Preferences/com.apple.alf globalstate -int 1 0 = off 1 = on for specific services 2 = on for essential services launchctl load -w...
by admin | Apr 22, 2011 | Bash, Networking, Streaming
#!/bin/bash mpixW=250 mpixH=300 if [ “x`which identify`” != x ] ; then echo `which identify` found! echo Tossing images less than $mpixW pixels. while true ; do read img imgType=$( expr `identify -format ‘%e’ “$img”` ) if [...