1. Check you have the correct IP address for your Joggler
2. Run the following commands, it is recommended you copy and paste each line:
nvram -w net.login=YES
touch /etc/shadow
ln -s /openpeak/tango/common_libs/libgssapi_krb5.so.2 /lib/libgssapi_krb5.so.2
mkdir /var/run/sshd
cp -p /etc/ssh/sshd_config /etc/ssh/sshd_config.original
sed -i "s/UsePAM\ yes/\#UsePAM \yes/g" /etc/ssh/sshd_config
echo "letmeinssh:\$1\$ZiLC0meg\$e55qljsb4ssEKY3dQMsxP1:0:0:root:/:/bin/sh" >> /etc/passwd
/usr/sbin/sshd &
cp -p /etc/init.d/boot.d/S69boot.sshd /root/S69boot.sshd.original
sed -i "s/OFF in/\ in/g" /etc/init.d/boot.d/S69boot.sshd
sed -i "s/log_daemon_msg/\#\ log_daemon_msg/g" /etc/init.d/boot.d/S69boot.sshd
sync
sync
3. Use the command passwd to change the password of your account. This is important to protect your joggler from unauthorized access.
4. SCP Installation:
The following script must be run from the Joggler. It's intended to download and install the appropriate files to enable SCP. If you are using a Windows client, grab WinSCP. Work very well. You need to install SSH first.
cd /tmp
wget
http://london.mnetcs.com/joggler/installSCP.sh
# Convert installSCP.sh from DOS-style.
tr -d \\r < installSCP.sh > installSCP.unix.sh
chmod +x installSCP.unix.sh
./installSCP.unix.sh
rm installSCP.unix.sh
rm installSCP.sh
username is letmeinssh
password joggler1234
Hope this helps