Using Linux commands to see information about your hardware.

Using the vmstat command to see which hard disk partitions are the busiest is very easy. Use the vmstat -p /dev/sda1 command and your hard disk information will be printed showing the number of reads and writes for each partition. On my Ubuntu system, the /dev/sda1 partition is the busiest. john@deep-thought ~ $ vmstat -p … Read more

Useful Linux/UNIX commands.

There are many useful Linux commands that are fun to use and can do some very cool things. cat mysongpart2.mp3 >> mysongpart1.mp3cat mysongpart2.mp3 >> mysongpart1.mp3 Using /bin/cat to append the second part of a MP3 file onto the first part, making one large file that will play seamlessly from part one to part 2. vmstat … Read more