How to make a CAT5 crossover cable

Posted on 28.Jan 2010 by Ray Heffer in Tech Tips

If you are in need of a CAT5 crossover cable, but can’t find one then it’s very easy to make one providing you have the right tools.

This is what you need:
Length of CAT5 (or CAT5e / 6) cable
Wire cutters
RJ45 connectors
RJ45 crimper

read more



Linux commands and tips

Posted on 07.Jul 2005 by Ray Heffer in Linux, Scripts & Commands, Tech Tips

Checking kernel & CentOS version

To check which kernel version you are running use uname -r

# uname -r

To find out which CentOS (or RedHat) release is installed have a look at /etc/redhat-release

# cat /etc/redhat-release

Checking Disk Space

To check disk space used / free use the df command and it will display each volume. The -h switch turns the bytes reading into GB to make it more readable.

# df -h

If you want to check the size of a particular directory then use:

# du -sh /

read more