How to Reset Endian Firewall Admin Password via SSH

I recently had the need to reset my Endian Firewall Admin ‘admin’ password via SSH/Console. I believe the reasoning for this was due to the following bug: http://bugs.endian.it/bug_view_advanced_page.php?bug_id=1824 In case the bug does not apply to you, or you’re just too lazy to visit, here’s what you need to do. 1. Login via SSH or […]

Copying files from one linux server to another via SSH

Ever wanted to copy files from one linux server to another, via SSH? Here’s the command: scp -P 22 -r /home/username/local-directory ip-or-hostname-of-remote-server:/home/username/remote-directory. scp = Secure Copy. -r = Recursive (copy the contents of the directory and the contents of any directories inside that directory). -P = (specifying the port number). 22 = The port number […]