Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
12-30-2013, 11:35 AM
|
#1
|
LQ Newbie
Registered: Jul 2012
Posts: 23
Rep: 
|
Script issue Rsync
Hello LQ,
I have an Rsync script as shown below;
rsync -avztpog --delete --include='/home/jmoore/webroot/dav_files/web/*' --include='/home/jmoore/webroot/gallery/' --include='/home/jmoore/webroot/public/' --include='/home/jmoore/webroot/sharing/' --exclude='/home/jmoore/webroot/*' -e "ssh -l root" root@192.168.1.1://home/jmoore/ /home/jmoore/
what I would like it to do is to exclude certain directories and include certain ones, now it seems to run ok kinda but it does not pull down any new files that I have added on the 192.168.1.1 server.
any help would be appreciated.
|
|
|
12-31-2013, 04:06 AM
|
#2
|
Moderator
Registered: May 2001
Posts: 29,415
|
Quote:
Originally Posted by sedna06
(..)it does not pull down any new files that I have added on the 192.168.1.1 server.
|
Add "--stats -i" to your switches and check the output?
|
|
|
12-31-2013, 11:51 AM
|
#3
|
Senior Member
Registered: Dec 2005
Location: Florida
Distribution: CentOS/Fedora/Pop!_OS
Posts: 2,992
|
a few things to note.
1. create an excludes.txt file and populate what you want and dont want with + -
2. root@192.168.1.1://home/jmoore/ is wrong, it should be: root@192.168.1.1:/home/jmoore
note the single / not double // this is not a URL you are connecting to for the ssh connection it is a file system pathway.
|
|
1 members found this post helpful.
|
01-01-2014, 12:17 AM
|
#4
|
Member
Registered: Apr 2013
Location: Massachusetts
Distribution: Debian
Posts: 529
|
I do not fully understand how the rsync --include and --exclude filters work, but I can tell you I have had much difficulty with them. In your case, I would guess the --exclude is over-riding the --include switches. Try running it with the -vv switch, which will tell you what each filter is doing, that is, how it acts on each file or directory. That may tell you why it is not making the transfer you expect.
|
|
|
01-02-2014, 11:42 AM
|
#5
|
LQ Newbie
Registered: Jul 2012
Posts: 23
Original Poster
Rep: 
|
Many thanks all for your help and comments
|
|
|
01-06-2014, 07:07 AM
|
#6
|
LQ Newbie
Registered: Jul 2012
Posts: 23
Original Poster
Rep: 
|
Hey All,
Still having issues my Rsync command will not exclude the directories that I have specified in the exclude files this is what I have
my exclude.txt
+ /home/./webroot/sharing/
+ /home/./webroot/public/
+ /home/./webroot/gallery/
+ /home/./webroot/dav_files/web/
- /home/./webroot/dav_files/*
- /home/./tmp/*
- /home/./webroot/*
my Rsync command
rsync -avvztpog --delete --exclude-from=exclude.txt root@192.168.1.2:/home/ /home/
any help would be appreciated
|
|
|
All times are GMT -5. The time now is 04:31 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|