NFS is great but if you have a linux server running in the house (I happen to) you could use Rsync to pull the entire drive over to another drive for backup purposes. This is what the Rsync command does:
rsync is a file transfer program for Unix systems. rsync uses the "rsync algorithm" which provides a very fast method for bringing remote files into sync. It does this by sending just the differences in the files across the link, without requiring that both sets of files are present at one of the ends of the link beforehand.
Some features of rsync include
* can update whole directory trees and filesystems
* optionally preserves symbolic links, hard links, file ownership, permissions, devices and times
* requires no special privileges to install
* internal pipelining reduces latency for multiple files
* can use rsh, ssh or direct sockets as the transport
* supports anonymous rsync which is ideal for mirroring
I use this command to back up my linux and freebsd boxes to a NAS for backups. Its quick and works, and I am going to try to implient this on my series 2 Directtivo here shortly.
Hi, I have the PTVnet cd for DirecTivo's and for my backup via the MFStools i'd like to do it to a NFS mount instead of a FAT32 drive. Is it even possible when booting off that CD? I have the network up and a directory exported on my Fedora server, but when I do the mount command it just sits there and pretty much hangs. I can ping the server and mount the export from a different server. Thanks for any help!
November 12, 2005 9:29 AM


RSS
no ideas? I have it actually working now however the mount command is taking about 5 minutes. here is what i am doing with a NFS mount point already exported on a server
#ifconfig eth0 192.168.1.109
#route add default gw 192.168.1.1
#ifconfig eth0 up
#mkdir /backups
#mount 192.168.1.110:/tivo /backups
So that actually works but like i said the mount command is taking 5+ minutes to finish...