Shell tutorial
In order to access our server you first need to download a SSH client, click here to download Putty.
Type in the server's name and connect, you will be asked to enter a username and password, you can find all these details in the e-mail we've sent you.
Once logged into the shell you have access to the following scripts:
getPSYen - PsyBnc Installation Script
getAAen - Eggdrop 1.16.19 + a&a Light 0.03.02 Installation
getMUHen - Muh Installation Script
Basic shell commands:
ls - view all files on the shell, or from the current folder
cd - open directory (replace with the folder's name)
cd - back to the root of the shell, exit current directory
mv - rename a specific file, original name -> desired name
rm - delete a specific file (replace with the file's name)
rm -rf > - delete a specific folder, including subfolders and files
rm -rf * - deletes everything
pico - edit a specific file, (CTRL+O to save; CTRL+X to exit pico)
ps x - see all running processes
kill -9 - kill a specific process, type the "pid" of the process
kill -9 -1 - kills all processes, including the ssh session
passwd - changes your password
