How do I check CPU speed in Linux?
Answer:
Type the following command, it will show all the CPU info.
cat /proc/cpuinfo
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 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
What is the euqivilant of i-tunes for Linux?
Answer:
There are many, but I would suggest Rhythmbox
What Linux distribution is the best for home audio/video processing?
Answer:
For normal users, Ubuntu: http://www.ubuntu.com/ would be a good choice for audio/video processing.
Also, you may check out 64 Studio: http://www.64studio.com/
BIND DNS: How to disable dynamic updates?
Answer:
1. Edit the named.conf
vi named.conf
2. Set allow-update to none
zone "example.com" IN {
...
allow-update { none; };
...
}