LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE
User Name
Password
SUSE / openSUSE This Forum is for the discussion of Suse Linux.

Notices


Reply
  Search this Thread
Old 12-02-2004, 02:18 AM   #1
apachedude
Member
 
Registered: Aug 2004
Location: California
Distribution: SuSE 10.0 (SUPER)
Posts: 356

Rep: Reputation: 31
Editing fstab to mount devices?


I'm having some inconsistencies getting SuSE to mount my USB devices (two pen drives and a flash card reader among other things). I understand that the fstab looks something like that
Code:
/dev/sdax . . . /mnt/my_mount_point . . . vfat . . . noauto,users,rw 0 0
(I entered the ellipses to denote tabs.)

First of all, I have several USB devices--how do I know whether to enter the first string as "/dev/sda" or "/dev/sda1", "/dev/sda2" or the like?

The second, I understand, is wherever I want to mount my device too, and is rather arbitrary. Do I create this folder beforehand? What chmod permissions should I assign to it?

The third part "vfat" I don't understand. Some of my devices are subfs. Is there any difference? I have already set HOTPLUG_USE_SUBFS=no in /etc/sysconfig/hotplug.

The fourth part I don't understand either. Do I just copy it directly?

Thanks for your help in anticipation.
 
Old 12-02-2004, 02:54 AM   #2
masand
LQ Guru
 
Registered: May 2003
Location: INDIA
Distribution: Ubuntu, Solaris,CentOS
Posts: 5,522

Rep: Reputation: 69
this a extract from a help page i wrote for my LUG

---------------

First of all you need to see which partition you want to mount
YOU can see that by running the following command at bash# prompt

#fdisk /dev/hda

If your hard disk is use

Primary master hda
Primary slave hdb
Secondary master hdc
Secondary slave hdd
USB device sda
USBdevice sdb

If you use wrong device then you may get error message such as
"Cannot open device hdc"
If command is successful you get

[root@gaurav qmail]# fdisk /dev/hda

The number of cylinders for this disk is set to 4865.
There is nothing wrong with that, but this is larger than 1024,
And could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)

Command (m for help):


At this prompt run ‘p’ single character to see your partition table

Here is the result of my partition table


Command (m for help): p

Disk /dev/hda: 40.0 GB, 40020664320 bytes
255 heads, 63 sectors/track, 4865 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hda1 * 1 561 4506201 b Win95 FAT32
/dev/hda2 562 3939 27133785 f Win95 Ext'd (LBA)
/dev/hda3 3940 4385 3582495 a5 FreeBSD
/dev/hda4 4386 4865 3855600 83 Linux
/dev/hda5 562 1096 4297356 7 HPFS/NTFS
/dev/hda6 1097 1606 4096543+ b Win95 FAT32
/dev/hda7 1607 3008 11261533+ b Win95 FAT32
/dev/hda8 3009 3872 6940048+ b Win95 FAT32
/dev/hda9 3873 3939 538146 b Win95 FAT32


You can easily recognize which drive you want to mount
Here I have my windows partitions as

devices Windows Partitions

/dev/hda1 C
/dev/hda5 D
/dev/hda6 E
/dev/hda7 F
/dev/hda8 G
/dev/hda9 H


Do not confuse with /dev/hda2
It is my extended partition you cannot mount that whole partition but you can only mount the logical drives in this partition

Here say if I want mount my E drive in Linux
I need to have an empty folder somewhere to mount.
We can make a folder anywhere but as going by the convention we make all the folders and mount them in
/mnt folder
So, go to the mnt folder under root directory
Make a new folder in mnt directory say win_e

If you want to mount it temporarily (till the system is running)
You can mount it by the following command

#mount /dev/hda6 /mnt/win_e

The syntax of the command is easy to interpret
/dev/hda6 gives the device you want to mount
/mnt/win_e gives the path of folder you want to mount

Now if you want to mount your partitions your drives permanently you can do that by making an entry in /etc/fstab file
This file is read each time the system boots.
And so it mounts the partitions listed in this drive
You can add an entry to this file as under corresponding headings

/dev/hda9 /mnt/win_h auto defaults 0 0

refer to
man fstab
for more options

------------------

regards
 
Old 12-02-2004, 03:12 AM   #3
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
1. The device:
The first USB device that you plug in gets the first free SCSI device (seems to be sda in your case, in my case it is sdb since my HDD is sda). The numbers are specifying the partition on the device. There should always be a partition specified in /etc/fstab. Mostly there is one on a pendrive, however in some cases four partitions are recognized.

To find out which device is used and how many partitions are on that device, type dmesg on console, ahort after you have plugged in the device. The last few lines should give you the desired information:
Code:
usb 3-1: new full speed USB device using address 2
Initializing USB Mass Storage driver...
scsi2 : SCSI emulation for USB Mass Storage devices
  Vendor: TwinMOS   Model: Mobile Disk       Rev: 1.11
  Type:   Direct-Access                      ANSI SCSI revision: 02
SCSI device sdb: 258048 512-byte hdwr sectors (132 MB)
sdb: assuming Write Enabled
sdb: assuming drive cache: write through
 sdb: sdb1
Attached scsi removable disk sdb at scsi2, channel 0, id 0, lun 0
Attached scsi generic sg1 at scsi2, channel 0, id 0, lun 0,  type 0
USB Mass Storage device found at 2
usbcore: registered new driver usb-storage
USB Mass Storage support registered.
In this example it shows you that the pendrive is on USB bus 2 and has the device /dev/sdb with one partition sdb1. So the first entry in fstab would be /dev/sdb1

2.: The mountpoint:
Create the folder wherever you want before you attempt to mount the device, usually you shouldn't worry about the permissions.

3.: The filesystem:
You wonder why it shouldn't be subfs? Because you switched it off as you said (HOTPLUG_USE_SUBFS=no). But you may use auto, if you are not sure how the drive was formated.

4.: The options:
Here you should have a look in 'man fstab'. There are too many option to explain them here. For FAT32 and NTFS devices you should always set the umask=000 option to be able to access the data as normal user. This is because windows fs do not know how to deal with unix permissions and umask is kind of translation. noauto means that the system does not try to mount the device on boot (since it may not be there). users allows all users to unmount the device, even if they did not mount it. user would mean that only the user who mounted the device is allowed to unmount it. rw means writable access. The two 0 also have a meaning related to checking the filesystem, but I am not sure about that.

Last edited by abisko00; 12-02-2004 at 03:16 AM.
 
Old 12-02-2004, 04:37 AM   #4
apachedude
Member
 
Registered: Aug 2004
Location: California
Distribution: SuSE 10.0 (SUPER)
Posts: 356

Original Poster
Rep: Reputation: 31
Thanks for your help, guys

I read your posts. I'm not going to try to mount tonight--it's already 2:33 a.m. (02:33) where I live. However, one question: if I do set up the mounting of the USB drives correctly, can I just pull them out, and expect the kernel to unmount the drive for me?

For instance... I have a SanDisk and a Lexar USB drive.
Suppose I plug in SanDisk first, then Lexar. That would give SanDisk sda and Lexar sdb, right?
Now suppose I take them both out, then plug them Lexar, then SanDisk. Would the orders reverse? Or would SanDisk still be sda?
Would it even matter? Let's suppose I just use sda to refer to whatever device I put in first. Would the fact that sda might point to a key drive, a memory card, or a Palm make any difference to the mounting of the device?

Of course, this last issue technically doesn't matter but suppose I mount sda to /mnt/sandisk. Now, the kernel doesn't really care whether or not the device is really the SanDisk drive. But it might confuse me, if say, I had my Palm connected first. Should I name it something vague like /mnt/usb-device? I guess what I'm really asking is how can I name my mounting points consistently with the actual devices, regardless of the order in which I plug them in.

Edit: while I'm at it, is there a difference between fstab and mtab? If so, do I need to edit mtab too to mount my devices?

Last edited by apachedude; 12-02-2004 at 04:57 AM.
 
Old 12-02-2004, 04:58 AM   #5
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
1. You should always unmount before unplugging them, especially if you did write operations on the device. Such operations may have been buffered and not performed by the time you pull out the device. I don't know if the protocolls have changed meanwhile (so that the system recognizes a removable source and performes all write operation immediately), but to be on the safe side, you should always unmount. Even if you would use submount, the window that is giving access to the drive should be closed to ensure unmounting.

2. I guess the way you do it would lead to a reverse order of the drives. However if you use submount/subfs, a specific ID will be assigned to the device (some kind of hardware encoded) and it will be mounted always to the same mountpoint.

3. I don't know, but I think it should be possible. Has something to do with the hotplug scripts.
 
Old 12-02-2004, 02:02 PM   #6
apachedude
Member
 
Registered: Aug 2004
Location: California
Distribution: SuSE 10.0 (SUPER)
Posts: 356

Original Poster
Rep: Reputation: 31
I got the USB key drives working properly with /dev/sda1. I can interchange them (pull one out, put the other one in) and it will mount the next time I access it. This is if I assign /dev/sda1 to a hard disk device.

Now, as I said, this will work with either of my USB key drives. However, this does not work if I take out the USB key drives and plug my flash memory card reader. I ran dmesg, and apparently, it points to either sdb, sdc, or sdd--it is not consistent in regard to where the drive mounts. And once I put the USB flash memory card reader in, it screws up the mounting point for my USB drives. So if I put in a flash memory card reader, then I pull it out and plug in a USB drive, it fails to point to /dev/sda1 anymore. Anyway to resolve this?
 
Old 12-02-2004, 07:16 PM   #7
apachedude
Member
 
Registered: Aug 2004
Location: California
Distribution: SuSE 10.0 (SUPER)
Posts: 356

Original Poster
Rep: Reputation: 31
I'm not sure this is taking me in the right direction. I followed the instructions in an earlier thread, thinking I'd get the desired results.

Now, I didn't articulate these results I wanted very well, but I believe I was more clear in that post above (to which I linked).
 
Old 12-03-2004, 04:35 AM   #8
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
I don't believe I am saying this, but maybe you should re-enable submount.

Usually submount causes more problem than it make live easier, but in your case with many different devices, it might be the better alternative.

Another idea, that includes some scripting:

Kernel 2.6 uses udev to create devices in /dev. This is controled by some scripts that are in /etc/udev. I found a brief description how to tell udev which device it has to create for which hardware. Currently, SuSE uses the script /sbin/udev.get_persistent_device_name.sh, but you could easily assign device names yourself, if you know the vendorID of your hardware.

Here is the link: http://tldp.org/HOWTO/Flash-Memory-HOWTO/linux-2.6.html

The interesting part starts at 12.4.2

Hope this helps !
 
  


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
fstab problem: mount: can't find dvd in /etc/fstab or /etc/mtab Nikon01 Slackware 5 11-17-2006 06:15 AM
Editing etc/fstab- yet again:-) hitest Slackware 7 04-21-2005 12:50 PM
how to mount devices not shown in /ect/fstab??? len Slackware 2 12-19-2003 05:01 PM
editing the etc/fstab firefightin4fun Linux - Newbie 8 09-20-2003 10:53 PM
Fstab editing Ando Linux - General 4 06-29-2003 05:17 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE

All times are GMT -5. The time now is 05:55 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