[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] RAQ2 Pkgs OpenSSH/SSL



>
> > and then tried to install
> >  ftp.openbsd.com/pub/OpenBSD/OpenSSH/portable
> >
> > Which appeared to go ok, but after the install, none of the
> > expected files were present.
> > eg. no sshd in any of the expected places.
>
> What was the ./configure line that you used? Did you specify where you
> wanted the binaries installed? e.g. --prefix=/usr/local
>
> Need more info...
Thanks J.
You may have identified my problem!!!
... what ./configure... line?

Here were my instructions (I'm the nOOOObie)
>>>>>>>>>>>>>>
Login and get to root (su -)
cd /root
rpm -e --nodeps openssh-askpass-gnome openssh-askpass openssh-server
openssh-clients openssh
mkdir ssl
cd ssl
wget http://www.openssl.org/source/openssl-0.9.7b.tar.gz
tar xfz openssl-0.9.7b.tar.gz
cd openssl-0.9.7b
./config
make
make test
make install
cd /root
mkdir ssh
cd ssh
ftp ftp.openbsd.com
(log in as ftp and then your email address)
cd /pub/OpenBSD/OpenSSH/portable
bin
get openssh-3.7.1p2.tar.gz
quit
tar xfz openssh-3.7.1p2.tar.gz
cd openssh-3.7.1p2
./configure --prefix=/usr/local --with-md5-passwords --with-ssl-dir=/usr/loc
al/ssl --with-pid-dir=/var/run
make;make install

Lastly, make sure you put /usr/local/sbin/sshd in your /etc/rc.d/rc.local
file.
<<<<<<
On completion of all of that, I got this response....
OpenSSH has been configured with the following options:
                     User binaries: /usr/local/bin
                   System binaries: /usr/local/sbin
               Configuration files: /usr/local/etc
                   Askpass program: /usr/local/libexec/ssh-askpass
                      Manual pages: /usr/local/man/manX
                          PID file: /var/run
  Privilege separation chroot path: /var/empty
            sshd default user PATH:
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
                    Manpage format: doc
                       DNS support: no
                       PAM support: no
                 KerberosV support: no
                 Smartcard support: no
                     S/KEY support: no
              TCP Wrappers support: no
              MD5 password support: yes
       IP address in $DISPLAY hack: no
           Translate v4 in v6 hack: yes
                  BSD Auth support: no
              Random number source: OpenSSL internal ONLY

              Host: mipsel-pc-linux-gnu
          Compiler: gcc
    Compiler flags: -g -O2 -Wall -Wpointer-arith -Wno-uninitialized
Preprocessor flags: -I/usr/local/ssl/include
      Linker flags: -L/usr/local/ssl/lib
         Libraries:   -lutil -lz -lnsl  -lcrypto -lcrypt

But... updatedb then locate sshd did not locate the file.

Paul ASI.