Stormy Services Information
|
Email Services |
|
| POP3 Mail Server | stormy.sitenation.com POP3 Port: 110 POP3-Secure Port: 995 (SSL) |
| IMAP Mail Server | stormy.sitenation.com (SSL Port
supported as well) IMAP Port: 143 IMAP-Secure Port: 993 |
| SMTP Mail Server | stormy.sitenation.com Additional Port: 587 Notes: Requires Authentication SMTP Port: 25 (open and secure) Alternate Port: 587 (in case of port 25 blocking by ISP) |
| Sendmail Certificate | Required to make stormy a trusted
server. 1) Download Certificate. (Right click, save as) 2) Locate downloaded certificate (desktop?) 3) Right Click certificate file, select 'Install' 4) Follow the steps to add the server to your certificate store. |
| Webmail Access | http://nuts.sitenation.com |
Stormy Linux/GNU Useful Command Line Tools
|
TAR / Tarball Archives (Similar to zip) |
|
| create compressed archive | Entire directory structure: tar -czvf filename.tar.Z directory/ Single files: tar -czvf filename.tar.Z file1.txt file2.exe file3.bin |
| extract compressed archive | tar -zxvf filename.tar.Z |
| create uncompressed archive | Entire directory structure: tar -cvf filename.tar directory/ Single File(s): |
| extract uncompressed archive | tar -xvf filename.tar |
|
Changing your password |
|
| Changing password on command prompt | As regular user: passwd As super user: passwd username |
| Via Webmail: | Log into
http://nuts.sitenation.com/ Click 'Options' Click 'Change Password' Enter old password Enter new password Verify new password Submit change. |
|
FTP & Transfers |
|
| Recursive FTP with wget: | wget -r ftp://user:pass@domain |
| Recursive FTP with wget w/no dupe download: | wget -r -nc ftp://user:pass@domain |
| Mirroring FTP Sites w/wget | wget -m ftp://user:pass@domain |
|
Removing Files |
|
| that begin with unprintable characters | rm -- -foo |
| that begin with . and contain unprintable characters | rm -- .? |