Loading

Tag Archive: ssh

Sep
26

Installing SSH on the Linkstation

To install SSH run though the following useradd sshd cd <folder_for_compiling> wget ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-4.3p2.tar.gz tar xzvf openssh-4.3p2.tar.gz cd openssh-4.3p2 ./configure –without-zlib-version-check make make install Create the following statup script: ===== #! /bin/sh # export USER=”root” # NAME=ssh start() {     if [ ! -d /var/empty ]; then         mkdir /var/empty     fi�     /usr/local/sbin/sshd } stop() …

Continue reading »

Permanent link to this article: http://www.tsls.co.uk/index.php/2008/09/26/installing-ssh-on-the-linkstation/