Results 1 to 4 of 4
I am trying to mount a second harddrive but having little success. Could some please assist? Here's some info:
Disk /dev/sda: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-30-2007 #1Just Joined!
- Join Date
- Jul 2007
- Posts
- 5
Mounting Second Drive
I am trying to mount a second harddrive but having little success. Could some please assist? Here's some info:
I am trying to mount /dev/hdc. Any ideas?Disk /dev/sda: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 30024 241167748+ 83 Linux
/dev/sda2 30025 30401 3028252+ 5 Extended
/dev/sda5 30025 30401 3028221 82 Linux swap / Solaris
Disk /dev/hdc: 20.0 GB, 20020396032 bytes
16 heads, 63 sectors/track, 38792 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Device Boot Start End Blocks Id System
/dev/hdc1 1 38792 19551136+ 83 Linux
- 07-31-2007 #2
mkdir /mnt/newdrive
mount /dev/hdc1 /mnt/newdrive
cd /mnt/newdrive
lsI do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
I'd rather be lost at the lake than found at home.
- 07-31-2007 #3Just Joined!
- Join Date
- Jul 2007
- Posts
- 5
Tried to do that and got this error:
Code:$ sudo mount /dev/hdc1 /mnt/newdrive mount: you must specify the filesystem type
- 07-31-2007 #4
sudo mount -t ext3 /dev/hdc1 /mnt/newdrive
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
I'd rather be lost at the lake than found at home.


Reply With Quote
