sudo apt-get install sshfs
Command line usage:
sshfs remoteuser@remotehost:/path/to/remote_dir local_mountpointsshfs johan@192.168.169.100:/ localmnt
umount local_mountpoint
Example (on my connection):
umount localmnt
Some notes for development of embedded linux systems.
sshfs remoteuser@remotehost:/path/to/remote_dir local_mountpointsshfs johan@192.168.169.100:/ localmnt
umount local_mountpoint
Example (on my connection):
umount localmnt
To create a patch for a single file, use the form:
diff -u original.c new.c > original.patch
To create a patch for an entire source tree, make a copy of the tree:
cp -R original new
Make any changes required in the directory new/. Then create a patch with the following command:
diff -rupN original/ new/ > original.patch