Example Using command line in terminal on a Mac:
ssh username@servername.he.netFor Windows you will need an SSH client - PuTTY is a free SSH client for Windows.
After logging in using your shell/admin password you should see a prompt like:
username@servername:~$At the command prompt you type/paste:
wget http://pixie.he.net/roundcube_install/install_roundcube.shYou should see something like this after hitting the enter key:
username@servername:~$ wget http://pixie.he.net/roundcube_install/install_roundcube.sh --2017-10-10 16:09:53-- http://pixie.he.net/roundcube_install/install_roundcube.sh Resolving pixie.he.net (pixie.he.net)... 216.218.130.66 Connecting to pixie.he.net (pixie.he.net)|216.218.130.66|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 3354 (3.3K) [text/x-sh] Saving to: 'install_roundcube.sh' 100%[================================>] 3,354 --.-K/s in 0s 2017-10-10 16:09:53 (110 MB/s) - 'install_roundcube.sh' saved [3354/3354]
Next, you run the program using the bash shell:
username@servername:~$ bash install_roundcube.sh Retrieving packges files Setting user configuration files... Completing configurations...
If you prefer to download and run the script using a single command, you can use the following
wget -O $HOME/install_roundcube.sh pixie.he.net/roundcube_install/install_roundcube.sh && bash $HOME/install_roundcube.sh
Once completed successfully, the webmail client will be available the following morning.