space added not showing in redhat linux
how can I check if the disk is there?
dmesg
fdisk /dev/hdb
vim /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda1
UUID=<random gibberish> ext3 defaults,errors=remount-ro 0 1
# /dev/sda5
UUID=<random gibberish> none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec 0 0
/dev/hdb1 /var/www ext3 defaults 0 0
Looking for relevant Linux Whitepapers? Visit the SearchEnterpriseLinux.com Research Library.
Victorp | Jan 24 2008 2:46PM GMT
Are you using LVM? if so then the answer above is incorrect for you situation.
Jonsjava | Jan 24 2008 8:16PM GMT
That’s true. for some reason, I had completely forgotten to add that how-to. sry about that.
Bradleybradley | Jan 31 2008 8:52PM GMT
I believe you need to use the fdisk -l and check to see how many disks are there.
You may also need to use the partprobe command to bring the disk into your operating system.
Another way to check is to goto the /proc/partitions
cat /proc/partitions
Other helpful commands are lspci and lsusb
If your OS supports it use hal-device and in Gui format hal-device-manager
Let me know if you need more information on these command, they are very helpful when working with disks
Good luck
Bradley