About linux

jyotiad18

Distinguished
Jun 7, 2011
1
0
18,510
I have 2 harddisk in my computer. 320 GB and 1000 GB .
When i installed linux both harddisk show.
i installed linux on 320 GB , installation also success.
after that i could not find 1000 GB harddisk on my computer.
Can any body help what to do ?

thank you.
 

jbschmerge

Distinguished
Jun 6, 2011
27
0
18,540
Linux treats hard drives differently than windows... Drives attached to the computer aren't show as actual drives (i.e. c:, d:, etc). Instead, partitions on your drives are mounted as folders as part of Linux's single filesystem view.

You have to explicitly tell the OS to mount partitions at various mount points using either the mount command or putting an appropriate line in the /etc/fstab file.

As pyro said, the command 'fdisk -l' will list a partition table for your first hard drive, usually identified by the device node /dev/sda. To list the partition table of the 2nd drive, the command should be 'fdisk -l /dev/sdb'.

This stuff is documented in various places on the web and in the Linux manpages... I encourage you to at least read the manpages for fdisk, mount, and fstab.
 

Pyroflea

Distinguished
Mar 18, 2007
2,156
0
19,960


It shows all partitions on all disks for me just running "fdisk -l". :??: