How do I run a web browser from linux command line?
Answer:
In text mode, you need to use text mode browsers.
- lynx: http://lynx.isc.org/
- elinks: http://elinks.or.cz/
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
How do I run a web browser from linux command line?
Answer:
In text mode, you need to use text mode browsers.
How do I check CPU speed in Linux?
Answer:
Type the following command, it will show all the CPU info.
cat /proc/cpuinfo
How to check current memory usage?
Answer:
The following command display free memory size in MB:
free -m
Ban a remote IP Address using iptables
Answer:
iptables -A INPUT -s IP -j DROP
Replace IP with the actual remote IP address.
Note that the blocking will be lost when server reboot. You would need to save the rule(s) into a script and reload when server reboot.
What is the Maximum Filename Length in EXT3?
Answer: 254 bytes.