Some useful configuration notes and tips for the GNU/Linux operating system:
To add an entry in the /etc/fstab file for a path that has a space use the \040 escape sequence
//server/share\040with\040spaces /mnt/mount\040point etc.....
This would mount a windows share called "share with spaces" to a local directory called "/mnt/mount point" Note this could be used on a NFS, or even local mount point.
The following command can be used to simplify the distribution of Public Keys for SSH.
cat .ssh/id_dsa.pub | ssh <user>@<host> "cat >> .ssh/authorized_keys"
The command:
Couple of notes: