1

I am new to Linux environment. I added a hard disk to my system. I am running Enterprise Linux Machine. It is not mounting my hard disk. Can any one tell me how to mount it?

Thanks,
Narendra

Khaled
  • 36,533
  • 8
  • 72
  • 99
Narendra
  • 121
  • 1
  • 3

1 Answers1

2

With the command dmesg, find the name of your disk, like sdb. After, you can create a folder in /mnt, like /mnt/disk.

To mount it: mount /dev/sdb1 /mnt/disk

Khaled
  • 36,533
  • 8
  • 72
  • 99
Tom
  • 21
  • 1
  • You need to mount a specific partition like `sdb1`. I already edited your answer. Also, you may need to provide the fs type. – Khaled Dec 24 '10 at 17:24