[CHANGE] Add cheats for DD and SSH

This commit is contained in:
ImmortalPC 2016-04-05 17:09:49 +02:00
parent 20d985d993
commit f38da23741
2 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -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