Linux
http://www.linuxdevcenter.com/pub/a/linux/2003/03/06/nfs_backup.html
Follow the quick set up NFS guide on your server.
Download, burn and boot a recent Knoppix Live CD.
Mount the Windows C: drive by double clicking its icon on the Knoppix desktop
Mount the NFS share under Knoppix.
knoppix@Knoppix:~$ sudo mkdir /media/transit
knoppix@Knoppix:~$ sudo mount -o nolock 10.0.0.7:/media/backup/transit /media/transit
Copy over the files
knoppix@Knoppix:~$ tar -cf – /media/hda1/ | tar -xvpf – [...]
http://nfs.sourceforge.net/nfs-howto/ar01s03.html
If you’re happy to ignore security concerns the quick way to set up an NFS server on your network is as follows.
1. Add an exports file. This one allows all computers on my local network full access to the transit directory. The `insecure` option is required for Macintoshes to connect.
rossetti@Wakatipu:~$ sudo mkdir /media/backup/transit/
rossetti@Wakatipu:~$ sudo chmod [...]
Who is hammering FTP on our server?
sudo grep “no such user” /var/log/syslog | cut -d[ -f 3 | cut -d] -f 1 | sort | uniq -c | less
What firewall rules do we have in place?
sudo iptables –numeric –line-numbers -L INPUT | less
How do we add to the rules immediately?
sudo iptables –insert INPUT 3 -s [...]