How to check what Linux version I am using?
Answer:
If you are using RedHat Linux, you can use
cat /etc/redhat-release
or others
cat /etc/lsb-release
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
How to check what Linux version I am using?
Answer:
If you are using RedHat Linux, you can use
cat /etc/redhat-release
or others
cat /etc/lsb-release
What is the command to display the current TCP/IP configuration?
Answer:
Try:
ifconfig -a
What is the linux command to kick a user out of a system?
Answer:
pkill -U username
How do I run a web browser from linux command line?
Answer:
In text mode, you need to use text mode browsers.
Should I use Telnet and FTP for remote access?
Answer:
In a word, No.
The problem with Telnet, FTP, and other non-encrypted protocols is that everything is sent across the network as plain text. This means that someone running a sniffing program on the network, which is very simple under many circumstances, can see all of your traffic - including your login and password.
Consider replacing Telnet and FTP with SSh.