Scripts & Commands
Installing VMware tools on a Linux guest
by Ray Heffer on Jan.19, 2010, under Linux, Scripts & Commands, VMware, Virtualisation
Start the VMware Tools installation
Using the VMware VI Client, right click on the Linux guest and select Install/Upgrade VMware Tools.
Mounting the CD-ROM
You’ll need to mount the CD-ROM on the Linux guest.
# mount /dev/cdrom /mnt
(continue reading…)
Linux commands and tips
by Ray Heffer on Jul.07, 2005, under Linux, Scripts & Commands
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 /
(continue reading…)

