LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 10-27-2005, 04:53 PM   #1
MurX
Member
 
Registered: Oct 2005
Location: London
Distribution: elive e17
Posts: 152

Rep: Reputation: 30
Hard drives fail to mount.


I modified the /etc/stab file so that I could see some of the other partitions on the other HDs in my Pc but when I click on the drive icons I get the error:

Could not mount device:

The reported error was: mount:mount point /mnt/sdc6 does not exist (where sdc6 is the HD partition that I am trying to read.

I get a similar error if I try and read a CD or a DVD. It says:

mount: I could not determine the filesystem type, and none was speciified.
 
Old 10-27-2005, 05:15 PM   #2
rodm13
LQ Newbie
 
Registered: Mar 2005
Location: The Lone Star State
Distribution: Slackware 10.2
Posts: 10

Rep: Reputation: 0
Could you please post the contents of /etc/fstab ?
 
Old 10-29-2005, 01:08 PM   #3
MurX
Member
 
Registered: Oct 2005
Location: London
Distribution: elive e17
Posts: 152

Original Poster
Rep: Reputation: 30
OK here is my fstab file.

I use this one here just to detect the main drives.

# This file is edited by fstab-sync - see 'man fstab-sync' for details
LABEL=/ / ext3 defaults 1 1
/dev/devpts /dev/pts devpts gid=5,mode=620 0 0
/dev/shm /dev/shm tmpfs defaults 0 0
/dev/proc /proc proc defaults 0 0
/dev/sys /sys sysfs defaults 0 0
/dev/sda5 swap swap defaults 0 0
/dev/VolGroup00/LogVol01 swap swap defaults 0 0
/dev/sdd1 /media/usbdisk vfat pamconsole,exec,noauto,managed 0 0
/dev/fd0 /media/floppy1 auto pamconsole,exec,noauto,managed 0 0
/dev/hdb /media/cdrecorder1 auto pamconsole,exec,noauto,managed 0 0
/dev/hda /media/cdrecorder2 auto pamconsole,exec,noauto,managed 0 0
/dev/sdb6 /mnt/sdb6 vfat users,umask=0000 0 0
/dev/sdb8 /mnt/sdb8 vfat users,umask=0000 0 0

When I am booting it says that it failed to mount sdb8???

I then tried this fstab file which I picked up from a bootable CD and I deleted some of the ntfs drives because they just contain windows xp and FC4 does not need to read or write to those.

# This file is edited by fstab-sync - see 'man fstab-sync' for details
LABEL=/ / ext3 defaults 1 1
/proc /proc proc defaults 0 0
/sys /sys sysfs noauto 0 0
/dev/pts /dev/pts devpts mode=0622 0 0
#/dev/cdrom /mnt/auto/cdrom auto user,noauto,exec,ro 0 0
#/dev/cdrom1 /mnt/auto/cdrom1 auto users,noauto,exec,ro 0 0
/dev/cdromhda /mnt/auto/cdromhda auto users,noauto,exec,ro 0 0
/dev/cdromhdb /mnt/auto/cdromhdb auto users,noauto,exec,ro 0 0

/dev/sda1 /mnt/sda1 vfat noauto,noatime,users,exec,umask=000,uid=studio,gid=studio 0 0

/dev/sdb1 /mnt/sdb1 ext3 noauto,noatime,users,exec 0 0

/dev/sdb3 /mnt/sdb3 auto noauto,noatime,users,exec 0 0

/dev/sdb5 none swap defaults 0 0

/dev/sdb6 /mnt/sdb6 ext3 noauto,noatime,users,exec 0 0

/dev/sdb7 /mnt/sdb7 auto noauto,noatime,users,exec 0 0

/dev/sdc6 /mnt/sdc6 vfat noauto,noatime,users,exec,umask=000,uid=studio,gid=studio 0 0

/dev/sdc8 /mnt/sdc8 vfat noauto,noatime,users,exec,umask=000,uid=studio,gid=studio 0 0

/dev/sdc9 /mnt/sdc9 vfat noauto,noatime,users,exec,umask=000,uid=studio,gid=studio 0 0

/dev/sdd1 /mnt/sdd1 vfat noauto,noatime,users,exec,umask=000,uid=studio,gid=studio 0 0
/dev/fd0 /media/floppy2 auto pamconsole,exec,noauto,managed 0 0
/dev/hdb /media/cdrecorder6 auto pamconsole,exec,noauto,managed 0 0
/dev/hda /media/cdrecorder7 auto pamconsole,exec,noauto,managed 0 0

Thanks for any help that you can provide.
 
Old 11-01-2005, 01:48 AM   #4
rodm13
LQ Newbie
 
Registered: Mar 2005
Location: The Lone Star State
Distribution: Slackware 10.2
Posts: 10

Rep: Reputation: 0
Do you have a directory named /mnt/sdc6 ? There are 2 major steps to mounting a device.

1) Putting an enrty in your fstab for it.
2) Making a physical directory where you want the filesystem to be "mounted", or put.

Go to /mnt and see if you have any directories there, specifically ones named the same as in your fstab for devices you want to mount.

Example:

I want to mount my windows XP hard drive. I need to first specify in the fstab to mount the drive, whatever it might be. (see diagram of an fstab entry below)


Code:
Name of device     Path to where the filesystem will go      Filesystem type      Other stuff that's not important now.
                   (should be an empty dir)                 (whatever your drive is)          
/dev/sdc6             /mnt/sdc6                              vfat                         user,umask=0000 0 0
Second, I need to make the directory if it doesn't exist already.

Code:
ls -a /mnt/sdc6
This should show an empty directory. If it says it doesn't exist, try this as root
Code:
mkdir /mnt/sdc6
I hope this helps, but if not, I'm tired and rambling, so just holler.
 
Old 11-01-2005, 05:36 AM   #5
MurX
Member
 
Registered: Oct 2005
Location: London
Distribution: elive e17
Posts: 152

Original Poster
Rep: Reputation: 30
Thanks rodm13, I'll try that later and see what happens. I'll let you know how I get on in the next couple of days or so.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Give user permission to mount/use cdrom drives or usb drives zwyrbla Linux - Newbie 2 08-23-2004 04:30 PM
Mount Hard Drives?? Steidart Mandriva 8 02-02-2004 09:46 AM
Upgrading hard drives on Software raid 1 boot drives. linuxboy123 Linux - General 0 12-11-2003 03:28 PM
Can't mount ntfs hard drives? justin9 Linux - Newbie 8 07-14-2003 11:02 PM
Mount new hard drives to linux box. piglingz Linux - Hardware 4 02-12-2003 09:12 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 04:00 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration