Tagged Questions
0
votes
1answer
37 views
How to exclude files in rsync?
I'm using ubuntu server 12.04, now I want to backup some files using rsync, here is a try:
rsync -aAX $HOME/Documents/* $HOME/Backups/TEST --exclude={$HOME/Documents/another/*,$HOME/Documents/temp/*} ...
0
votes
1answer
61 views
rsync remove old backup on remote PC
Good day
I use this script to backup my home PC to remote PC
#!/bin/bash
#Todays date in ISO-8601 format:
DAY0=`date -I`
#Yesterdays date in ISO-8601 format:
DAY1=`date -I -d "1 day ago"`
#The ...
1
vote
0answers
50 views
I need to sync my Postfix config to a second server and have Postfix reload when changes are made
I'd like to start out saying that I know enough Linux commands to be dangerous :-) With that warning out of the way, here is what I am trying to figure out how to handle.
Currently I have a single ...
0
votes
2answers
28 views
Migrating the / volume?
After a hardware failure of the motherboard and subsequently a few disks, I am migrating the root partition over to another drive. However, given /dev and other peculiar locations I was wondering ...
3
votes
2answers
309 views
Copying a Running Physical Server to Virtual Box
I have a server running Ubuntu 10.04. As I want to test some maintenance work, such as upgrading to 12.04, I thought I should create a VM copy of the server using Virtual Box. I don't have a physical ...
1
vote
1answer
206 views
How to backup a windows share to another windows share using rsync?
I have two windows shares mounted and I would like to be able to backup the first into the second. The shares are found on a windows server 2003 machine. I was able to copy one folder to another ...
1
vote
1answer
256 views
Rsync permission issues via SSH
I am backing up a networked server via SSH. Unfortunately, I can't seem to figure out how to get root access to the networked server with Rsync. I am using the following command to perform the backup:
...
0
votes
1answer
513 views
Permission denied for many directories with Rsync
I'm using Rsync to backup an Ubuntu Server server. I'm getting a lot of permission denied messages. Is there a command I can use to see exactly what directories were denied? I could scroll back up ...
1
vote
0answers
221 views
Dropbox style syncing of large folders? [closed]
I've researched this quite a bit in the past and have never found a solution that meets my needs perfectly, so I thought I'd throw it out to this community.
I have a file server at home that I use to ...
3
votes
2answers
4k views
Forceably set permissions when running rsync
Currently I am backing up gigabytes and gigabytes of data from a live server to a backup server using an rsync/ssh combination script, allowing for automated operation every night with a cron job.
...
7
votes
1answer
2k views
Will backup using rsync preserve ACLs?
I am using backuppc to backup my server. The backups are done using rsyncd. Currently, I am not using ACLs, but I am think it is good to activate it to have finer control over permissions.
My ...
4
votes
3answers
2k views
Using rsync with exclude/include
I'm running 2 ubuntu 9.10 servers. I have to synchronize the changes between these two machines. The following are the directories I've to synchronize:
/usr, /etc, /var, /bin, /sbin, /lib
I'm using ...
9
votes
3answers
949 views
Using tar and rsync for high availability
Server Recovery Project:
I have ubuntu cloud servers running which I don't have direct access to but with ssh. I'm using 'tar' to clone or to have high availability of this server. I followed the ...
1
vote
0answers
14 views
What happens if rsnapshot / rdiff-backup gets interrupted in the middle of a transfer? [duplicate]
Possible Duplicate:
What happens if rsnapshot / rdiff-backup gets interrupted in the middle of a transfer?
What happens if rsnapshot or rdiff-backup gets interrupted in the middle of a ...