![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Linux Support Linux - Operating Systems and Applications Support |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: Apr 2008
Posts: 8
OS: XP x64 pro, XP pro, ubuntu, SBS 2003
|
Looking for a back up program
I'm looking for a program that will take a copy of my drive and store it on a network drive, preferably in a compressed format. The option to exclude certain folders is a must.
I am running ubuntu 8.10 Thanks in advance |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#2 (permalink) |
|
Registered User
Join Date: Oct 2007
Location: Littleton, Colorado USA
Posts: 470
OS: xp 64 sp2 Fedora Core 8 (vmware xp core 8 x32) Minix
|
Re: Looking for a back up program
I use a program called "star" (for super-tar). It will exclude directories and does compression (zip, bzip2, etc). Also does incremental backups with the --wtardumps option and "level" option.
I have setup my system such that each partition is small (max 300 Gbytes) so that I can just backup a partition at a time an not a huge file system. Here is an example of a command to backup across my network: ssh root@gateway.bp 'star -c -xdev -sparse -acl -link-dirs level=0 -wtardumps -C /usr . ' | dd of=$save_file I don't compress any longer because the compression takes so long. For the above line to work you have to setup ssh with no-password login. The command essential runs star on the remote host passing stdout through a pipe to the dd command running on the backup machine. The -xdev keeps the star on one partition only. There is a small problem with the .gvfs directory. The "file" command can't even figure what kind of a file it is". This is created by gimp and even as super-user, the commands can't tell what kind of file type it is. This, to me, is a screw up by the gimp developers. There are work arounds, but they are a pain in the a**. Hope this helps. |
|
|
|
|
|
#3 (permalink) |
|
Manager
Join Date: Sep 2004
Location: Colorado
Posts: 988
OS: Mac OS 9.1, Mac OS X 10.5.8, WinXP Pro, FreeBSD 6.0, Gentoo Linux
|
Re: Looking for a back up program
You can do that with tar, which is what I use for compressed backups. The man page (and maybe the info page) has the information about the arguments you'd need to pass to tar. What I'd use for options is something like:
tar cvj --exclude path/to/directory1 --exclude path/to/directory2 -f /path/to/network/share/backup.tar.bz2 /path/to/directories/to/backup/ With tar, it's best to use relative paths and run the command from the directory holding the directory you want to backup. If you give tar absolute paths (like /home/whoeveryouare/mystuff), that's where it will dump things to when you untar it. If you give it relative paths (if you're in /home/whoeveryouare/ give it mystuff/) it will dump those things relative to wherever you extract the files. If you need a graphical program, you might look at KBackup. It's supposed to create the same files as tar would, so it might have the ability to exclude directories.
__________________
![]() Has it been a few days since I replied to your thread? Don't panic! I'm a busy college student and may forget a post if I'm extra busy (or it might just take me a while to be able to do a decent reply). If you still need help and are awaiting my reply after a few days, PM me about it. When posting what errors you get, please give the full message. It makes helping you much easier. |
|
|
|
![]() |
| Thread Tools | |
|
|