LinuxQuestions.org
Help answer threads with 0 replies.
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 06-19-2006, 08:16 PM   #1
usaf_sp
Member
 
Registered: Jul 2005
Location: Tennessee
Distribution: openSUSE
Posts: 419

Rep: Reputation: 30
Unknown mounted media Suse 10.1


I was wondering if anyone knows why Suse 10.1 shows a 1.0 K mounted device under the My Computer sysinfo:/ in KDE 3.5? It also shows the swap partition as well.

The following is my fstab:

/dev/hdb2 / reiserfs acl,user_xattr 1 1
/dev/hdb3 /home reiserfs acl,user_xattr 1 2
/dev/hda1 /windows/C ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0
/dev/hda5 /windows/D ntfs ro,users,gid=users,umask=0002,nls=utf8 0 0
/dev/hdb1 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
/dev/fd0 /media/floppy auto noauto,user,sync 0 0

When I right click properties, it claims to be hda2. I don't have an hda2. It only appeared after I ran winecfg and autodetected the drives. Also when I click on it I get the following error: Method "Mount" with signature "ssas" on interface "org.freedesktop.Hal.Device.Volume" doesn't exist"

Last edited by usaf_sp; 06-19-2006 at 08:20 PM.
 
Old 06-21-2006, 05:02 AM   #2
bernied
Member
 
Registered: Mar 2006
Location: Edinburgh, UK
Distribution: debian
Posts: 304

Rep: Reputation: 30
Your /dev/hda5 is a logical partition. It will be inside an extended partition, which will probably be the second physical(?) partition on the disk. It is probably being called /dev/hda2

So /dev/hda2 won't be mountable, because there is nothing there except the information that defines the logical partition(s) inside it.
Code:
fdisk -l /dev/hda
would give the same information.

Physical (not sure my terminology is correct here) partitions are numbered 1 to 4, and only four are allowed, any logical partitions (inside extended partitions) are labelled 5 onwards, even if they are inside an extended partition which is the first one on the disk.
 
Old 06-21-2006, 05:30 AM   #3
binary_y2k2
Member
 
Registered: Jul 2005
Location: England, UK
Distribution: Ubuntu 8.04 Server, Kubuntu 12.04
Posts: 698
Blog Entries: 1

Rep: Reputation: 31
Terminology:
partitions 1-4 are primary partitions, logical partitions are partitions "inside" extended ones starting with partition number 5.
 
Old 06-22-2006, 01:34 AM   #4
usaf_sp
Member
 
Registered: Jul 2005
Location: Tennessee
Distribution: openSUSE
Posts: 419

Original Poster
Rep: Reputation: 30
Sorry I should have specified the following information first:

I have two physical drives both internal connected via the same IDE channel.

First Drive Cable Select: Maxtor 300GB (Windows NTFS- C:, Windows NTFS- D: )

Second Drive Cable Select: Samsung 80GB (Linux Swap, ReiserFS- /, ReiserFS- /Home)

Those should be the only mounted partitions on the computer. I really don't need the swap shown in KDE either, but should only be mounted for use by the Linux System.

I wonder if this is a bug that had not been worked out.

Last edited by usaf_sp; 06-22-2006 at 01:36 AM.
 
Old 06-22-2006, 11:32 AM   #5
usaf_sp
Member
 
Registered: Jul 2005
Location: Tennessee
Distribution: openSUSE
Posts: 419

Original Poster
Rep: Reputation: 30
For further info:

fdisk -l shows the following:

Disk /dev/hda: 300.0 GB, 300090728448 bytes
240 heads, 63 sectors/track, 38764 cylinders
Units = cylinders of 15120 * 512 = 7741440 bytes

Device Boot Start End Blocks Id System
/dev/hda1 * 1 10334 78125008+ 7 HPFS/NTFS
/dev/hda2 10335 38764 214930800 f W95 Ext'd (LBA)
/dev/hda5 10335 38764 214930768+ 7 HPFS/NTFS

Disk /dev/hdb: 80.0 GB, 80060424192 bytes
255 heads, 63 sectors/track, 9733 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hdb1 1 262 2104483+ 82 Linux swap / Solaris
/dev/hdb2 263 2873 20972857+ 83 Linux
/dev/hdb3 2874 9733 55102950 83 Linux
 
Old 06-22-2006, 04:37 PM   #6
bernied
Member
 
Registered: Mar 2006
Location: Edinburgh, UK
Distribution: debian
Posts: 304

Rep: Reputation: 30
So re-read my first post. hda2 is the extended partition that holds hda5.
Look at the start and the end locations and the size. hda5 is just a teeny bit smaller.
This is not a bug.

And be careful about messing with that swap partition as well - you may need it (depending on how much actual memory you have).

Are you sure that sysinfo is saying that these devices are mounted, or just that they exist?
 
Old 06-22-2006, 05:31 PM   #7
usaf_sp
Member
 
Registered: Jul 2005
Location: Tennessee
Distribution: openSUSE
Posts: 419

Original Poster
Rep: Reputation: 30
I can say for sure that they show up (exist) in sysinfo, but can not say 100% that they are mounted. Is there some way that I can find out for you?

I appreciate your help.
 
Old 06-23-2006, 12:38 PM   #8
bernied
Member
 
Registered: Mar 2006
Location: Edinburgh, UK
Distribution: debian
Posts: 304

Rep: Reputation: 30
In a terminal, type the command
Code:
mount
Mine looks like:
Code:
$ mount
/dev/hda2 on / type ext3 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
udev on /dev type tmpfs (rw,nosuid)
/dev/hda1 on /boot type ext2 (ro)
/dev/hda6 on /mnt/hda6 type ext2 (rw)
/dev/hdb5 on /mnt/hdb5 type ext3 (rw)
/dev/hdb7 on /mnt/hdb7 type ext3 (rw)
 
Old 06-23-2006, 12:50 PM   #9
usaf_sp
Member
 
Registered: Jul 2005
Location: Tennessee
Distribution: openSUSE
Posts: 419

Original Poster
Rep: Reputation: 30
Here is the info:

/dev/hdb2 on / type reiserfs (rw,acl,user_xattr)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
udev on /dev type tmpfs (rw)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
/dev/hdb3 on /home type reiserfs (rw,acl,user_xattr)
/dev/hda1 on /windows/C type ntfs (ro,noexec,nosuid,nodev,gid=100,umask=0002,nls=utf8)
/dev/hda5 on /windows/D type ntfs (ro,noexec,nosuid,nodev,gid=100,umask=0002,nls=utf8)
securityfs on /sys/kernel/security type securityfs (rw)
 
Old 06-23-2006, 01:28 PM   #10
bernied
Member
 
Registered: Mar 2006
Location: Edinburgh, UK
Distribution: debian
Posts: 304

Rep: Reputation: 30
I think you're fine.
You could relax a little.
 
  


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
Icons for mounted fat32 drives on desktop and Media folder redtdi Fedora 1 01-13-2006 09:22 AM
Media player with dvd-menu support for mounted image directory lagu2653 Linux - Software 2 12-09-2005 02:17 PM
kppp kde 3.2 suse 9.0 unknown option passwordfd thk33 Linux - Software 0 11-20-2004 11:32 AM
SuSE Firewall - unknown log message ithawtewrong Linux - Security 1 10-14-2004 03:47 PM
Suse Hardware Tool + Unknown Monitor kemplej Linux - Software 2 08-31-2004 09:54 PM

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

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