Results 1 to 10 of 13
Hi everyone. I am fairly new to Linux and as such I have a few questions.
I have two hard drives; one with Windows XP and one with Suse 10.0.
...
- 01-08-2007 #1Just Joined!
- Join Date
- Jan 2007
- Posts
- 7
Mounting Error
Hi everyone. I am fairly new to Linux and as such I have a few questions.
I have two hard drives; one with Windows XP and one with Suse 10.0.
The Windows drive says "unmounted". So I typeIt says,Code:mount /dev/hdc1
I read about fstab here so I add a new line to it that says,Code:Can't find /dev/hdc1 in /etc/fstab or /etc/mtab
It then gives me this error when I try to mount,Code:/dev/hdc1 / ntfs defaults 0 0
I don't know what any of this means, so hopefully someone who does can help. I never edited mtab. Could that be part of the problem?Code:wrong fs type, bad option, bad superblock on /dev/hdc1, missing codepage or other error In some cases useful info is found in syslog - try dmesg | tail or so
- 01-08-2007 #2
hi SolidusSnk !
Welcome to the Fourms !
you are not using correct syntax of 'mount' command.
check the partitions using 'fdisk -l' command and create mount point.Code:mount -t <file system> /dev/<partition> <mount_point>
OR
execute this
post output here.Code:su - fdisk -l
CasperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 01-08-2007 #3Just Joined!
- Join Date
- Jan 2007
- Posts
- 7
I ran fdisk -l and here's the result:
- 01-08-2007 #4
execute this
check /media/win_ntfs folder.Code:su - mkdir /media/win_ntfs mount -t ntfs /dev/hdc1 /media/win_ntfs
Linux doesn't support NTFS write access out of box. for write access, install ntfs-3g package.
log in as root and open /etc/fstab file.
add this line
you dont have to mount partitions manually after adding that line. System will mount it at boot up.Code:/dev/hdc1 /media/win_ntfs ntfs defaults, umask=0 0 0
CasperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 01-08-2007 #5Just Joined!
- Join Date
- Jan 2007
- Posts
- 7
Originally Posted by devils_casper
Okay, I did all of that and it still gives me the same error,I installed ntfs-3g and added that fstab line.Code:wrong fs type, bad option, bad superblock on /dev/hdc1, missing codepage or other error In some cases useful info is found in syslog - try dmesg | tail or so
- 01-09-2007 #6
are you able to mount it manually in terminal?
CasperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 01-09-2007 #7Just Joined!
- Join Date
- Jan 2007
- Posts
- 7
No, but I checked out the ntfs-3g site and they gave me some commands to run. http://www.ntfs-3g.org/.
Typingdoes work. It then wanted me to run ntfsfix (I think that's what it was) and it fixed any problems on the partition. I tried to mount it again and it wanted me to force mount it. But I don't know the command for force mounting.Code:ntfs-3g /dev/hdc1 /media/win_ntfs
- 01-09-2007 #8
execute this
Code:mount -t ntfs3g /dev/hdc1 /media/win_ntfs
CasperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 01-10-2007 #9Just Joined!
- Join Date
- Jan 2007
- Posts
- 7
This is what I get:
I can't boot into Windows. For some reason my computer just restarts whenever I try. I can try connecting the hard drive to a different computer if I can't use the "force mount option".Code:Volume is scheduled for check. Please boot into Windows TWICE, or use the 'force' mount option.
- 01-10-2007 #10Linux Newbie
- Join Date
- Dec 2006
- Posts
- 105


Reply With Quote