Hello
im working on my bash script, in rsync part i try this command to rsync all folders except this folder 'wp-content/cache'
which has tousends of file and i dont want to rsync content :
but output is:
it start rsync but with folders that i add in exception .
Last edited by Peasant; 03-31-2020 at 11:08 PM..
Reason: Added code tags.
I know double posting is not allowed... but I need urgent help on this question... so... please bear with me!
I am having a problem with rsyncing 2 directories in my network. Here is the situation:
1. I have a directory tree on the 1 server say: SOURCE 2. I have to rsync this directory tree... (3 Replies)
Hi,
I wanna synchronize all the /etc settings from my previous server to new one. (Both of them are Debian Etch 4.0) I used this command:
rsync -r -vz -e ssh someuser@myOldServer:/etc /etc
&
rsync -avz -e ssh someuser@myOldServer:/etc /etc
These commands told me that everything occur perfectly... (6 Replies)
Hi everybody,
I'm a newbie and hope that someone help me in this problem.
I have a filename in LINUX with single quote like this:
abs@hosttest:~/ABS/BETY/cygdrive/C/DECLARANOT 1.1.4/02 - ROCK/052 - GUNSROSES> dir You*
-rw-r--r-- 1 abs users 2365881 2008-08-25 09:16 You're Crazy.mp3
... (9 Replies)
Hi,
I am copying files from one server to the other by rsync utilty.
I am giving a list file to the rsync and i am writing it to the log also.
The problem is that,rsync is not copying the order in which i have given files and links to the list. I can see it, through the log file.
I am giving... (7 Replies)
hi all,
I have download latest version for rsync from rsync download web site.
I trying install rsync tool to sun solaris 10 (SPARC M4000 server) and but get some error. Please see below:
-bash-3.00$ ./configure
configure.sh: Configuring rsync 3.0.6
checking build system type...... (3 Replies)
Hi all,
recently I took over the admin-task for a solaris 10 x86 machine.
I would like to use rsync for backing up files via ssh to another machine. There are two machines I have tested with both without success. One is a ubuntu server 8.04, the other one is ubuntu 10.04 desktop.
Installed... (2 Replies)
Hi
i am running a rsync between two remote servers but it errors.
The rsync command is a follows
rsync -aWv -e rsh --stats progress --delete --ignore-errors --exclude .DS_Store --exclude .HSancillary --exclude .HSxmap --exclude .HSResource /raid1/PRODUCTION/ ... (0 Replies)
Hello,
I have a report which I am writing as a .tex file, and I am editing from two computers (office and home laptop). I use rsync over ssh connection to synchronise between them and all the rssync commands are written in a Shell script.
#synchronise from office computer to home laptop... (2 Replies)
Hi Guys does any know the cause of this error on rsync:
tried transferring files to a remote server in a NFS share directory and i got that error, previously it was ok. (1 Reply)
Discussion started by: RobertG
1 Replies
LEARN ABOUT DEBIAN
rsync_selinux
rsync_selinux(8) rsync Selinux Policy documentation rsync_selinux(8)NAME
rsync_selinux - Security Enhanced Linux Policy for the rsync daemon
DESCRIPTION
Security-Enhanced Linux secures the rsync server via flexible mandatory access control.
FILE_CONTEXTS
SELinux requires files to have an extended attribute to define the file type. Policy governs the access daemons have to these files. If
you want to share files using the rsync daemon, you must label the files and directories public_content_t. So if you created a special
directory /var/rsync, you would need to label the directory with the chcon tool.
chcon -t public_content_t /var/rsync
To make this change permanent (survive a relabel), use the semanage command to add the change to file context configuration:
semanage fcontext -a -t public_content_t "/var/rsync(/.*)?"
This command adds the following entry to /etc/selinux/POLICYTYPE/contexts/files/file_contexts.local:
/var/rsync(/.*)? system_u:object_r:publix_content_t:s0
Run the restorecon command to apply the changes:
restorecon -R -v /var/rsync/
SHARING FILES
If you want to share files with multiple domains (Apache, FTP, rsync, Samba), you can set a file context of public_content_t and pub-
lic_content_rw_t. These context allow any of the above domains to read the content. If you want a particular domain to write to the pub-
lic_content_rw_t domain, you must set the appropriate boolean. allow_DOMAIN_anon_write. So for rsync you would execute:
setsebool -P allow_rsync_anon_write=1
BOOLEANS
system-config-selinux is a GUI tool available to customize SELinux policy settings.
AUTHOR
This manual page was written by Dan Walsh <dwalsh@redhat.com>.
SEE ALSO selinux(8), rsync(1), chcon(1), setsebool(8), semanage(8)dwalsh@redhat.com 17 Jan 2005 rsync_selinux(8)