Difference between revisions of "OpenSSH"
From CBLFS
Jump to navigationJump to search (→32Bit) |
(→Non-Multilib) |
||
Line 25: | Line 25: | ||
chown -v root:sys /var/lib/sshd && | chown -v root:sys /var/lib/sshd && | ||
./configure --prefix=/usr --sysconfdir=/etc/ssh \ | ./configure --prefix=/usr --sysconfdir=/etc/ssh \ | ||
− | --libexecdir=/usr/ | + | --libexecdir=/usr/sbin --with-md5-passwords \ |
--with-privsep-path=/var/lib/ssh && | --with-privsep-path=/var/lib/ssh && | ||
make | make |
Revision as of 21:27, 3 September 2006
Download Source: | http://sunsite.ualberta.ca/pub/OpenBSD/OpenSSH/portable/openssh-4.3p2.tar.gz |
---|
Contents
Dependencies
Required
All Arches
groupadd -g 50 sshd && useradd -c 'sshd PrivSep' -d /var/lib/sshd -g sshd -s /bin/false -u 50 sshd
Non-Multilib
Compile the package:
install -v -m700 -d /var/lib/sshd && chown -v root:sys /var/lib/sshd && ./configure --prefix=/usr --sysconfdir=/etc/ssh \ --libexecdir=/usr/sbin --with-md5-passwords \ --with-privsep-path=/var/lib/ssh && make
Install the package
make install install -v -m755 -d /usr/share/doc/openssh-4.3p2 && install -v -m644 INSTALL LICENCE OVERVIEW README* WARNING.RNG \ /usr/share/doc/openssh-4.3p2
Multilib
This package does not provide any libraries so only one installation is needed.
32Bit
Compile the package:
install -v -m700 -d /var/lib/sshd && chown -v root:sys /var/lib/sshd && CC="gcc ${BUILD32}" ./configure --prefix=/usr --sysconfdir=/etc/ssh \ --libexecdir=/usr/sbin --with-md5-passwords \ --with-privsep-path=/var/lib/ssh && make
Install the package
make install install -v -m755 -d /usr/share/doc/openssh-4.3p2 && install -v -m644 INSTALL LICENCE OVERVIEW README* WARNING.RNG \ /usr/share/doc/openssh-4.3p2
N32
Compile the package:
install -v -m700 -d /var/lib/sshd && chown -v root:sys /var/lib/sshd && CC="gcc ${BUILDN32} ./configure --prefix=/usr --sysconfdir=/etc/ssh \ --libexecdir=/usr/lib/openssh --libdir=/usr/lib32 --with-md5-passwords \ --with-privsep-path=/var/lib/ssh && make
Install the package
make install install -v -m755 -d /usr/share/doc/openssh-4.3p2 && install -v -m644 INSTALL LICENCE OVERVIEW README* WARNING.RNG \ /usr/share/doc/openssh-4.3p2
64Bit
Compile the package
install -v -m700 -d /var/lib/sshd && chown -v root:sys /var/lib/sshd && ./configure --prefix=/usr --sysconfdir=/etc/ssh \ --libexecdir=/usr/lib/openssh --with-md5-passwords \ --with-privsep-path=/var/lib/ssh && make
Install the package
make install install -v -m755 -d /usr/share/doc/openssh-4.3p2 && install -v -m644 INSTALL LICENCE OVERVIEW README* WARNING.RNG \ /usr/share/doc/openssh-4.3p2
All Arches Boot
make install-sshd