« 新番組雑感 #1 | メイン | 関西弁(あすまんが大王(01)) »

2002年4月28日

[memorandum] OpenSSL-0.9.6c & OpenSSH-3.1p1 & zlib-1.1.4

  • OpenSSL を Install
    $ tar zxvf openssl-0.9.6c.tar.gz
    $ cd openssl-0.9.6c
    $ ./configure
    $ make
    $ make test
    $ su
    # make install
    
  • zlib を install
    $ tar zxvf zlib-1.1.4.tar.gz
    $ cd zlib-1.1.4
    $ CFLAGS='-O6 -march=pentiumpro' ./configure -s --prefix=/usr
    $ make
    $ make test
    $ su
    # make install
    
  • OpenSSH を install
    $ tar zxvf openssh-3.1p1.tar.gz
    $ cd openssh-3.1p1
    $ ./configure --with-pam --with-tcp-wrappers
    $ make
    $ su
    # make install
    # make host-key
    # cp contrib/redhat/sshd.init /etc/rc.d/init.d/sshd
    # vi /etc/rc.d/init.d/sshd
    # vi /etc/ssh/sshd_config
    # cp contrib/redhat/sshd.pam /etc/pam.d/sshd
    # /sbin/chkconfig --add sshd
    # /sbin/chkconfig sshd on
    # /sbin/service sshd start
    

    Posted by Rust Stnard at 00:00