Q. How do I fingerprint or identify remove web server a from UNIX / Linux shell prompt?
{ 2 comments }
FAQ tagged as:
Q. How do I fingerprint or identify remove web server a from UNIX / Linux shell prompt?
{ 2 comments }
Q. How do I install and start telnet service / server under Ubuntu Linux?
A. Telnet is an insecure service. It is recommended that you use ssh service. However sometime telnet server or service is needed. Here are instructions to enable telnet:
Install telnetd server
$ sudo apt-get install telnetd
Restart inetd service:
$ sudo /etc/init.d/openbsd-inetd restart
You should now [...]
{ 10 comments }
Q. How do I use tar command over secure ssh session?
A. The GNU version of the tar archiving utility (and other old version of tar) can be use through network over ssh session. Do not use telnet command, it is insecure. You can use Unix/Linux pipes to create actives. Following command backups /wwwdata directory [...]
{ 24 comments }