diff --git a/cheat/cheatsheets/dd b/cheat/cheatsheets/dd index 2c69a30..a557e13 100644 --- a/cheat/cheatsheets/dd +++ b/cheat/cheatsheets/dd @@ -17,3 +17,6 @@ dd if=/dev/zero of=/dev/null bs=128M status=progress # DD with "graphical" return dcfldd if=/dev/zero of=/dev/null bs=500K + +# This will output the sound from your microphone port to the ssh target computer's speaker port. The sound quality is very bad, so you will hear a lot of hissing. +dd if=/dev/dsp | ssh -c arcfour -C username@host dd of=/dev/dsp diff --git a/cheat/cheatsheets/ssh b/cheat/cheatsheets/ssh index e83bcce..3191ec5 100644 --- a/cheat/cheatsheets/ssh +++ b/cheat/cheatsheets/ssh @@ -32,3 +32,8 @@ ssh user@example.com -C -c blowfish -X # Copy files and folders through ssh from remote host to pwd with tar.gz compression # when there is no rsync command available ssh user@example.com "cd /var/www/Shared/; tar zcf - asset1 asset2" | tar zxf - + +# Mount folder/filesystem through SSH +# Install SSHFS from http://fuse.sourceforge.net/sshfs.html +# Will allow you to mount a folder security over a network. +sshfs name@server:/path/to/folder /path/to/mount/point