Difference between revisions of "Rsync"

From CBLFS
Jump to navigationJump to search
m
Line 11: Line 11:
 
=== Optional ===
 
=== Optional ===
 
* [[Popt]] (Has an included version)
 
* [[Popt]] (Has an included version)
* [[DocBook Utils]]
 
  
== Create the rsyncd User/Group ==
+
{{user group-nobody nogroup}}
 
 
groupadd -g 49 rsyncd &&
 
useradd -c "rsyncd Daemon" -d /home/rsync -g rsyncd -s /bin/false -u 49 rsyncd
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 24: Line 20:
 
  ./configure --prefix=/usr &&
 
  ./configure --prefix=/usr &&
 
  make
 
  make
 +
 +
Install the package:
 +
 +
make install
  
 
== Multilib ==
 
== Multilib ==

Revision as of 11:51, 16 April 2007

Download Source: http://samba.anu.edu.au/ftp/rsync/rsync-2.6.9.tar.gz

Dependencies

Optional

  • Popt (Has an included version)

Creating the nobody/nogroup User/Group

groupadd -g 65533 nogroup &&
groupadd -g 65534 nobody &&
useradd -c "Nobody" -d /dev/null \
        -u 65534 -g nobody -s /bin/false nobody

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package:

make install

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

N32

64Bit

Configuring