Hi! I wonder if anyone can tell me what can I do to make backups from a certain directory on one harddrive to another harddrive (like make a single file out of that first directory and put it simply at the start of this second hdd)? that's in FreeBSD.
In any UNIX-like OS, you can use the tar tool. "tar" is short for Tape ARchiver, and will allow you to compress/combine multiple data sources into a single file (or to a sting of files, or append only new data to an existing archive, etc). It's quite flexible and powerful, and is usually used in combination with cron to automate backups on Unixy systems. There are a lot of possibilities for how you use tar, so you should read the manual before making an attempt at automated backups: Code: man tar Once you've done that, let me know if you need any specific help.
okay, so if I use Code: tar -c -f - TEST (Where TEST is a directory) "tar" will create a new archive, containing the directory TEST. BUT where and how the archive's called? EDIT: And another thing. How can I make this "tar" to execute like once a week?