LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 10-22-2007, 01:50 PM   #1
dough
LQ Newbie
 
Registered: Oct 2006
Posts: 18

Rep: Reputation: 0
Suse not seeing other partitions on same hard drive


I have 2 hard drives, with partitions on each. Here is my fstab:

/dev/disk/by-id/scsi-SATA_MAXTOR_STM38021_5LR7ZA22-part3 / ext3 acl,user_xattr 1 1
/dev/disk/by-id/scsi-SATA_MAXTOR_STM38021_5LR7ZA22-part5 / ext3 acl,user_xattr 0 0
/dev/disk/by-id/scsi-SATA_MAXTOR_STM38021_5LR7ZA22-part6 / ext3 acl,user_xattr 0 0
/dev/disk/by-id/scsi-SATA_ST340810A_6FB0MNEK-part1 /windows/C ntfs-3g users,gid=users,fmask=133,dmask=022,locale=en_US.UTF-8 0 0
/dev/disk/by-id/scsi-SATA_ST340810A_6FB0MNEK-part2 /windows/D vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/disk/by-id/scsi-SATA_MAXTOR_STM38021_5LR7ZA22-part2 swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0


On the second drive is Mepis on sdb5 (root) and sdb6 (home) but Suse (10.3) does not "see" either of them. Suse is installed on sdb3. Suse also does not see the swap on sdb2. I'm using krusader to view disks.

The fstab lines containing ~part5 and ~part6 I added myself; they were not in fstab originally. Still doesn't work.

My hard drives contain:

sda1 = Windows, ntfs 20G
sda2 = (storage) fat32 20G
sdb1 = extended 50G
sdb2 = linux swap 1.5G
sdb3 = Suse 20G
sdb4 = (exists but not used) 5G
sdb5 = Mepis /root 13G
sdb6 = Mepis /home 37G

Suse does not see sdb2, sdb4, sdb5, sdb6. Suse sees the windows partitions on sda fine.

What do I do so Suse sees all partitions on sdb?
 
Old 10-22-2007, 02:22 PM   #2
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
In fstab, the instruction are to mount three different partitions mounted to "/". While this is legal, the system will only see the last one mounted.

The convention is to mount in /mnt partitions which are not part of the tree for your booted system. Est each one up with a separate mountpoint---eg /mnt/mepis1, /mnt/mepis2, etc.

I'm surprised that SUSE didn't automatically set this up--what version are you using?
 
Old 10-22-2007, 05:56 PM   #3
dough
LQ Newbie
 
Registered: Oct 2006
Posts: 18

Original Poster
Rep: Reputation: 0
openSUSE version 10.3

Your instructions soundd promising but didn't change anything. I tried a couple of variations, rebooted, but nothing.
 
Old 10-22-2007, 08:03 PM   #4
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
Have you tried manually mounting the partitions?

Also, if you simply make an entry in fstab, nothing new will get mounted unless you re-boot or mount manually. I'm a little fuzzy on the options you are using. Normally, I just use defaults--which include auto-mounting at boot time. "noauto" would mean that you must manually mount.

Once a mount instruction is in fstab, you can manually mount with just the mountpoint.

"man mount" and "man fstab" for more detail.
 
Old 10-22-2007, 09:53 PM   #5
dough
LQ Newbie
 
Registered: Oct 2006
Posts: 18

Original Poster
Rep: Reputation: 0
How do you mount something you can't see?

For file browsing I usually use Krusader. I have both user-mode and root-mode set up to auto-mount file systems (partitions) as soon as I click on them, but you have to see it before you can click on it. I also tried File Manager Root User Mode.

I installed kwikdisk. It at least can see the entres made in fstab. But clicking on it results in an error message saying the mount point does not exist.

In konsole, using the command "mount /dev/sdb5" reports "mount: can't find /dev/sdb5 in /etc/fstab or /etc/mtab".

So I made the entries in mtab, rebooted, same thing.

In konsole again, command "mount /mnt/mepis1" reports "mount: mount point /mnt/mepis1 does not exist" even though that's the path reported by kwikdisk.

So I'm at a dead end again, unless you can think of something else. (Please!)
 
Old 10-22-2007, 10:48 PM   #6
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Did you create the /mnt/mepis1 directory? Also, /etc/mtab is for reporting what is mounted. You don't edit it.
 
Old 10-23-2007, 10:22 AM   #7
dough
LQ Newbie
 
Registered: Oct 2006
Posts: 18

Original Poster
Rep: Reputation: 0
That got it! Thank you. I don't know why I didn't think of that; I had to do something very similar once before.

Anyway, problem solved. Thanks again.
 
  


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
hard drive partitions the_cat123 Linux - Newbie 2 08-17-2006 02:53 PM
hard drive partitions irishbantam Ubuntu 7 12-07-2005 01:58 PM
mounting hard drive partitions oldforce SUSE / openSUSE 6 04-01-2005 04:09 AM
hard drive partitions bm1 Linux - Hardware 3 11-26-2003 04:32 PM
Hard Drive / Partitions Starburn Linux - Hardware 2 10-29-2003 09:59 AM

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

All times are GMT -5. The time now is 11:48 PM.

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