Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

grsync(1) [debian man page]

GRSYNC(1)							  rsync frontend							 GRSYNC(1)

NAME
GRSYNC - GTK+ frontend for rsync SYNOPSIS
grsync [-e] [-s] [session_name] grsync -i session_file_name DESCRIPTION
GRSYNC is a graphical interface using GTK2 for the rsync command line program. It currently supports the most important rsync features and can be used effectively for local directory synchronization. OPTIONS
You can specify a session to load instead of the default one, by typing it as a command line option. The "-e" commandline option automati- cally executes the session and closes grsync when finished, unless an error has been encountered. You can have grsync stay open anyway using the "-s" option (even if the session run has been successfull). The alternative syntax, using the "-i" switch, will open the "import session" dialog on the file you specified as argument. SEE ALSO
Website <http://www.opbyte.it/grsync/> AUTHOR
GRSYNC was written by Piero Orsoni <info@opbyte.it>. This manual page was written by Daniel Baumann <daniel.baumann@panthera-systems.net>, for the Debian project (but may be used by others). Updated by Piero Orsoni. 1.0.0 2010-01-07 GRSYNC(1)

Check Out this Related Man Page

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)
Man Page