|
| Linux Forum Index » Linux - Red Hat Forum » Recognizing a new partition |
|
Page 1 of 2 Goto page 1, 2 Next |
|
| Author |
Message |
| CWO4 Dave Mann |
Posted: Sun Apr 24, 2005 2:13 pm |
|
|
|
Guest
|
Hi Group,
I installed FC3 on a 200GB drive but at first the system only recognized the
first 32GB.
System looks like this:
hda = Windows XP 20GB NTFS - I can see this and work with it fine. I put
Icon on the desktop to access it
hdb1 = Linux boot partition
hdb2 = Linux /home and other usual folders
hdb3 = Linux ext3 partition created and formatted with qtparted
The problem is that I cannot see the hdb3 partition and my plan is to use
that for storage (150GB) of mp3's.
Request assistance in understanding how set up hdb3 to be accessible and
visible.
Many thanks in advance,
Dave
--
Study History - Know the Future
www.misterfixit.blogspot.com
www.daves928.blogspot.com |
|
|
| Back to top |
|
|
|
| Tommy Reynolds |
Posted: Sun Apr 24, 2005 4:04 pm |
|
|
|
Guest
|
On Sun, 24 Apr 2005 15:13:14 -0500, CWO4 Dave Mann wrote:
Quote: hdb3 = Linux ext3 partition created and formatted with qtparted
Make sure the type of the partition says its a Linux one. As root,
# fdisk -l /dev/hdb
and check that the hdb3 partition has an "id" of "83". If not, use fdisk
to fix it.
HTH |
|
|
| Back to top |
|
|
|
| CWO4 Dave Mann |
Posted: Sun Apr 24, 2005 4:56 pm |
|
|
|
Guest
|
Tommy Reynolds wrote:
Quote: On Sun, 24 Apr 2005 15:13:14 -0500, CWO4 Dave Mann wrote:
hdb3 = Linux ext3 partition created and formatted with qtparted
Make sure the type of the partition says its a Linux one. As root,
# fdisk -l /dev/hdb
and check that the hdb3 partition has an "id" of "83". If not, use fdisk
to fix it.
HTH
==================================
Here is the output of fdisk:
[root@localhost dave]# fdisk -l /dev/hdb
Disk /dev/hdb: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hdb1 * 1 13 104391 83 Linux
/dev/hdb2 14 4111 32917185 8e Linux LVM
/dev/hdb3 4112 19457 123266745 83 Linux
[root@localhost dave]#
==================================
==================================
Here what I have so far in my latest fstab; the last few lines involve the
hdb3:
# This file is edited by fstab-sync - see 'man fstab-sync' for details
# last edited and changed by Dave 4/24/05 for Misterfixit System
# Sun 24 Apr 2005 05:39:57 PM CDT root
#
#
/dev/VolGroup00/LogVol00 / ext3 defaults 1 1
#
# Sets up main Linux HD and makes it real
#
LABEL=/boot /boot ext3 defaults 1 2
#
# Gets boot sector of HD and makes it real
#
none /dev/pts devpts gid=5,mode=620 0 0
#
# Does something to set up devices (figure out and comment later)
#
none /dev/shm tmpfs defaults 0 0
#
# Sets up the temporary area and makes it real
#
none /proc proc defaults 0 0
#
# Don't know what this is but maybe processors?
#
none /sys sysfs defaults 0 0
#
# Sets up the System File System defaults and makes them real
#
/dev/VolGroup00/LogVol01 swap swap defaults 0 0
#
# Says hello to the swap partition and makes it real
#
/dev/hda1 /mnt/windows ntfs rw,umask=0222 0 0
#
# Says hello to the Windows XP HD and makes it real
#
/dev/sda1 /mnt/firewire ntfs rw,umask=0222 0 0
#
# Says hello to the Firewire (maxtor one touch) HD and makes it real
#
/dev/hdd /media/cdrecorder auto
pamconsole,exec,noauto,fscontext=system_u:object_r:removable_t,managed 0 0
#
# Sets up the first CD - this is the combination DVD/CD unit
#
/dev/hdc /media/cdrecorder1 auto
pamconsole,exec,noauto,fscontext=system_u:object_r:removable_t,managed 0 0
#
# Sets up the second CD - this is the 48x CD burner
#
/dev/fd0 /media/floppy auto
pamconsole,exec,noauto,fscontext=system_u:object_r:removable_t,managed 0 0
#
# Sets up the floppy drive and tells the system to wake up on a new disk
#
/dev/hdb3 /mnt/storage ext3 rw,umask=0222 auto 0 0
#
# Sets up the big storage area on the Samsung Drive and makes it real
#
#
# Comments by Dave - Sun 24 Apr 2005 05:47:13 PM CDT
#
#
#
=========================================
More help please ... and thanks in advance as always!
Cheers,
Dave
--
Study History - Know the Future
www.misterfixit.blogspot.com
www.daves928.blogspot.com |
|
|
| Back to top |
|
|
|
| Tommy Reynolds |
Posted: Sun Apr 24, 2005 10:32 pm |
|
|
|
Guest
|
On Sun, 24 Apr 2005 17:56:29 -0500, CWO4 Dave Mann wrote:
Quote: Here is the output of fdisk:
[root@localhost dave]# fdisk -l /dev/hdb
Disk /dev/hdb: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hdb1 * 1 13 104391 83 Linux
/dev/hdb2 14 4111 32917185 8e Linux LVM
/dev/hdb3 4112 19457 123266745 83 Linux
Looks OK to me.
Quote: Here what I have so far in my latest fstab; the last few lines involve the
hdb3:
/dev/hda1 /mnt/windows ntfs rw,umask=0222 0 0
/dev/sda1 /mnt/firewire ntfs rw,umask=0222 0 0
I'd recommend that you mount NTFS partitions as "ro" because Linux
NTFS write support is broken: read this as "could corrupt the
_entire_ partition".
Quote: /dev/hdb3 /mnt/storage ext3 rw,umask=0222 auto 0 0
Nope. Too many tokens.
/dev/hdb3 /mnt/storage ext3 rw,umask=0222,auto 0 3
This should fix it.
Cheers |
|
|
| Back to top |
|
|
|
| CWO4 Dave Mann |
Posted: Mon Apr 25, 2005 7:27 am |
|
|
|
Guest
|
Tommy Reynolds wrote:
Quote: On Sun, 24 Apr 2005 17:56:29 -0500, CWO4 Dave Mann wrote:
Here is the output of fdisk:
[root@localhost dave]# fdisk -l /dev/hdb
Disk /dev/hdb: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hdb1 * 1 13 104391 83 Linux
/dev/hdb2 14 4111 32917185 8e Linux LVM
/dev/hdb3 4112 19457 123266745 83 Linux
Looks OK to me.
Here what I have so far in my latest fstab; the last few lines involve
the hdb3:
/dev/hda1 /mnt/windows ntfs rw,umask=0222 0
0
/dev/sda1 /mnt/firewire ntfs rw,umask=0222 0
0
I'd recommend that you mount NTFS partitions as "ro" because Linux
NTFS write support is broken: read this as "could corrupt the
_entire_ partition".
Yikes!
Changed to /dev/hda1 /mnt/windows ntfs ro,umask=0222 0 0
Changed to /dev/sda1 /mnt/firewire ntfs ro,umask=0222 0 0
Quote: /dev/hdb3 /mnt/storage ext3 rw,umask=0222 auto 0
0
Nope. Too many tokens.
/dev/hdb3 /mnt/storage ext3 rw,umask=0222,auto 0 3
This should fix it.
Hummm .... here's cut/paste from newest fstab:
#
/dev/hdb3 /mnt/storage ext3 rw,umask=0222,auto 0 3
#
# Sets up the big storage area on the Samsung Drive and makes it real
OK, now I get the "can't" mount - need to be root message". I know there
must be a way to place the owner into the fstab and to auto mount.
Still thanking you profusely for your assistance. I'm not to lazy to search
various FAQs, it is just that there is SO MUCH information out there that I
am continually being sidetracked when trying to find a specific answer.
Humm ... Linux for ADD ppl?
Cheers,
Dave |
|
|
| Back to top |
|
|
|
| CWO4 Dave Mann |
Posted: Mon Apr 25, 2005 7:57 am |
|
|
|
Guest
|
CWO4 Dave Mann wrote:
Quote: Tommy Reynolds wrote:
On Sun, 24 Apr 2005 17:56:29 -0500, CWO4 Dave Mann wrote:
Here is the output of fdisk:
[root@localhost dave]# fdisk -l /dev/hdb
Disk /dev/hdb: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hdb1 * 1 13 104391 83 Linux
/dev/hdb2 14 4111 32917185 8e Linux LVM
/dev/hdb3 4112 19457 123266745 83 Linux
Looks OK to me.
Here what I have so far in my latest fstab; the last few lines involve
the hdb3:
/dev/hda1 /mnt/windows ntfs rw,umask=0222
0 0
/dev/sda1 /mnt/firewire ntfs rw,umask=0222
0 0
I'd recommend that you mount NTFS partitions as "ro" because Linux
NTFS write support is broken: read this as "could corrupt the
_entire_ partition".
Yikes!
Changed to /dev/hda1 /mnt/windows ntfs ro,umask=0222 0 0
Changed to /dev/sda1 /mnt/firewire ntfs ro,umask=0222 0 0
/dev/hdb3 /mnt/storage ext3 rw,umask=0222 auto
0 0
Nope. Too many tokens.
/dev/hdb3 /mnt/storage ext3 rw,umask=0222,auto 0 3
This should fix it.
Hummm .... here's cut/paste from newest fstab:
#
/dev/hdb3 /mnt/storage ext3 rw,umask=0222,auto 0 3
#
# Sets up the big storage area on the Samsung Drive and makes it real
OK, now I get the "can't" mount - need to be root message". I know there
must be a way to place the owner into the fstab and to auto mount.
OK, I logged out and logged back on as root. Hoo boy, this is scary ....
"root is bad root is bad ..."
Anyway, I used the device manager and tried to mount hdb3, which shows up
fine. However, now I get the "too many devices mounted, bad file type, bad
superblock, or you're hosed" message. I unmounted the windows and the
firewire drives, but still got the same message.
I am thinking, now, when I created hdb3, I used qtparted ... the cool
graphic version done by Vanni Brutto. That worked without a glitch from
d/l through unpack through burning the iso. See what happens when I follow
directions?
Now, I am wondering if maybe I should go back with the qtparted and look at
hdb3 again to make sure (I don't know what to make sure of, but YKWIM).
Woree workee workee ...
BRB
Cheers,
Dave |
|
|
| Back to top |
|
|
|
| Tommy Reynolds |
Posted: Mon Apr 25, 2005 1:18 pm |
|
|
|
Guest
|
On Mon, 25 Apr 2005 09:23:58 -0500, CWO4 Dave Mann wrote:
Quote: I used qtparted and made sure hdb3 is really ext3 and formatted. All OK
there.
Cold reboot (from my old Big Iron days, load in the stack of Cold Boot cards
in the Honeywell 6600 system reader and boot up .. only took a couple of
hours and 5,000 cards ...)
Yup. Don't you mean a CDC-6600? I remember when they hit the
street. I had a Honeywell <big-mother/> too, as well as a DDC-116
sixteen bit mini that I used to do missle telemetry: no screen, no
keyboard, just lights and switches. We don' need no steenkin' GUI!
Quote: Boot messages showed same hdb3 message -- too many file system, not the
right stuff, etc.
A few thoughts come to mind:
1) Can you mount it manually?
# mount /dev/hdb3
What is output and what shows up in "/var/log/messages"?
2) What is in the partition? Could you trash it and use fdisk( and
mkfs( to reformat it? I'm not sure I trust anything with a GUI
;-)
Hang in there, dude, we'll get there. |
|
|
| Back to top |
|
|
|
| Tuomas |
Posted: Mon Apr 25, 2005 2:59 pm |
|
|
|
Guest
|
CWO4 Dave Mann wrote:
Quote: Device Boot Start End Blocks Id System
/dev/hdb1 * 1 13 104391 83 Linux
/dev/hdb2 14 4111 32917185 8e Linux LVM (*
/dev/hdb3 4112 19457 123266745 83 Linux
(* I think here is an error. The extended partition should be the last
one. No more primary partitions after it. See:
http://www.faqs.org/docs/Linux-mini/Partition.html
Tuomas |
|
|
| Back to top |
|
|
|
| CWO4 Dave Mann |
Posted: Mon Apr 25, 2005 4:52 pm |
|
|
|
Guest
|
Tommy Reynolds wrote:
Quote: On Mon, 25 Apr 2005 09:23:58 -0500, CWO4 Dave Mann wrote:
I used qtparted and made sure hdb3 is really ext3 and formatted. All OK
there.
Cold reboot (from my old Big Iron days, load in the stack of Cold Boot
cards in the Honeywell 6600 system reader and boot up .. only took a
couple of hours and 5,000 cards ...)
Yup. Don't you mean a CDC-6600? I remember when they hit the
street. I had a Honeywell <big-mother/> too, as well as a DDC-116
sixteen bit mini that I used to do missle telemetry: no screen, no
keyboard, just lights and switches. We don' need no steenkin' GUI!
Now that you mention it, I do believe you be right. I worked on the US
Army's end of the World Wide Military Command and Control System (WWMCSS)
and the DIAOLS/COINS lash up. We had some awesome GUI terminals. You can
see them if you rent the movie The Day The Earth Stood Still and look for
the US Army's missile site scene. Oh yes, and 60 baud KSR machines with
punched tape. I really like that punched tape, if you dropped the roll it
wasn't like dropping a box of cards. Yikes!
Quote: Boot messages showed same hdb3 message -- too many file system, not the
right stuff, etc.
A few thoughts come to mind:
Quote: 1) Can you mount it manually?
# mount /dev/hdb3
What is output and what shows up in "/var/log/messages"?
/var/log/messages output (clipped)
Apr 25 17:45:01 localhost crond(pam_unix)[6162]: session opened for user
root by (uid=0)
Apr 25 17:45:03 localhost crond(pam_unix)[6162]: session closed for user
root
Apr 25 17:45:27 localhost kernel: EXT3-fs: Unrecognized mount option
"umask=0222" or missing value
[root@localhost dave]#
mount/dev/hdb3 message
[dave@localhost ~]$ su
Password: klaatu varada nickto
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
[root@localhost dave]#
Hummmmmaybe we need a different value .. what is the significance of the
umask=0222 statement?
If EXT3-fs is unrecognized mount option, I wonder if the system sees the
partition as a real Ext3. I notice that the hardware info returns
hdb1 as a type 8e partition and hdb3 as a type 83.
Nan-nu, Nan-nu?
Cheers,
Dave
Quote:
2) What is in the partition? Could you trash it and use fdisk(  and
mkfs(  to reformat it? I'm not sure I trust anything with a GUI
;-)
Hang in there, dude, we'll get there.
--
Study History - Know the Future
www.misterfixit.blogspot.com
www.daves928.blogspot.com |
|
|
| Back to top |
|
|
|
| Kevin Collins |
Posted: Mon Apr 25, 2005 5:40 pm |
|
|
|
Guest
|
In article <vOidnWbeOqs66fDfRVn-rw@giganews.com>, CWO4 Dave Mann wrote:
Quote: Tommy Reynolds wrote:
On Mon, 25 Apr 2005 09:23:58 -0500, CWO4 Dave Mann wrote:
I used qtparted and made sure hdb3 is really ext3 and formatted. All OK
there.
Cold reboot (from my old Big Iron days, load in the stack of Cold Boot
cards in the Honeywell 6600 system reader and boot up .. only took a
couple of hours and 5,000 cards ...)
Yup. Don't you mean a CDC-6600? I remember when they hit the
street. I had a Honeywell <big-mother/> too, as well as a DDC-116
sixteen bit mini that I used to do missle telemetry: no screen, no
keyboard, just lights and switches. We don' need no steenkin' GUI!
Now that you mention it, I do believe you be right. I worked on the US
Army's end of the World Wide Military Command and Control System (WWMCSS)
and the DIAOLS/COINS lash up. We had some awesome GUI terminals. You can
see them if you rent the movie The Day The Earth Stood Still and look for
the US Army's missile site scene. Oh yes, and 60 baud KSR machines with
punched tape. I really like that punched tape, if you dropped the roll it
wasn't like dropping a box of cards. Yikes!
Boot messages showed same hdb3 message -- too many file system, not the
right stuff, etc.
A few thoughts come to mind:
1) Can you mount it manually?
# mount /dev/hdb3
What is output and what shows up in "/var/log/messages"?
/var/log/messages output (clipped)
Apr 25 17:45:01 localhost crond(pam_unix)[6162]: session opened for user
root by (uid=0)
Apr 25 17:45:03 localhost crond(pam_unix)[6162]: session closed for user
root
Apr 25 17:45:27 localhost kernel: EXT3-fs: Unrecognized mount option
"umask=0222" or missing value
[root@localhost dave]#
mount/dev/hdb3 message
[dave@localhost ~]$ su
Password: klaatu varada nickto
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
[root@localhost dave]#
Hummmmmaybe we need a different value .. what is the significance of the
umask=0222 statement?
If EXT3-fs is unrecognized mount option, I wonder if the system sees the
partition as a real Ext3. I notice that the hardware info returns
hdb1 as a type 8e partition and hdb3 as a type 83.
Nan-nu, Nan-nu?
Cheers,
Dave
2) What is in the partition? Could you trash it and use fdisk(  and
mkfs(  to reformat it? I'm not sure I trust anything with a GUI
;-)
Hang in there, dude, we'll get there.
Just a thought, but creating a partition does not a filesystem make A
partition is a slice of disk, but you need to create a filesystem in order to
mount it. You need to do:
# mke2fs -j /dev/hdb3
Then try your mount again.
Kevin
--
Unix Guy Consulting, LLC
Unix and Linux Automation, Shell, Perl and CGI scripting
http://www.unix-guy.com |
|
|
| Back to top |
|
|
|
| CWO4 Dave Mann |
Posted: Mon Apr 25, 2005 7:29 pm |
|
|
|
Guest
|
Kevin Collins wrote:
Quote: In article <vOidnWbeOqs66fDfRVn-rw@giganews.com>, CWO4 Dave Mann wrote:
Tommy Reynolds wrote:
On Mon, 25 Apr 2005 09:23:58 -0500, CWO4 Dave Mann wrote:
I used qtparted and made sure hdb3 is really ext3 and formatted. All
OK there.
Cold reboot (from my old Big Iron days, load in the stack of Cold Boot
cards in the Honeywell 6600 system reader and boot up .. only took a
couple of hours and 5,000 cards ...)
Yup. Don't you mean a CDC-6600? I remember when they hit the
street. I had a Honeywell <big-mother/> too, as well as a DDC-116
sixteen bit mini that I used to do missle telemetry: no screen, no
keyboard, just lights and switches. We don' need no steenkin' GUI!
Now that you mention it, I do believe you be right. I worked on the US
Army's end of the World Wide Military Command and Control System (WWMCSS)
and the DIAOLS/COINS lash up. We had some awesome GUI terminals. You
can see them if you rent the movie The Day The Earth Stood Still and look
for
the US Army's missile site scene. Oh yes, and 60 baud KSR machines with
punched tape. I really like that punched tape, if you dropped the roll
it
wasn't like dropping a box of cards. Yikes!
Boot messages showed same hdb3 message -- too many file system, not the
right stuff, etc.
A few thoughts come to mind:
1) Can you mount it manually?
# mount /dev/hdb3
What is output and what shows up in "/var/log/messages"?
/var/log/messages output (clipped)
Apr 25 17:45:01 localhost crond(pam_unix)[6162]: session opened for user
root by (uid=0)
Apr 25 17:45:03 localhost crond(pam_unix)[6162]: session closed for user
root
Apr 25 17:45:27 localhost kernel: EXT3-fs: Unrecognized mount option
"umask=0222" or missing value
[root@localhost dave]#
mount/dev/hdb3 message
[dave@localhost ~]$ su
Password: klaatu varada nickto
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
[root@localhost dave]#
Hummmmmaybe we need a different value .. what is the significance of the
umask=0222 statement?
If EXT3-fs is unrecognized mount option, I wonder if the system sees the
partition as a real Ext3. I notice that the hardware info returns
hdb1 as a type 8e partition and hdb3 as a type 83.
Nan-nu, Nan-nu?
Cheers,
Dave
2) What is in the partition? Could you trash it and use fdisk(  and
mkfs(  to reformat it? I'm not sure I trust anything with a GUI
;-)
Hang in there, dude, we'll get there.
Just a thought, but creating a partition does not a filesystem make  A
partition is a slice of disk, but you need to create a filesystem in order
to mount it. You need to do:
# mke2fs -j /dev/hdb3
Then try your mount again.
Kevin
Now there was a good idea! I read this and went "Doh!"
So check this out:
[root@localhost dave]# mke2fs -j /dev/hdb3
mke2fs 1.36 (05-Feb-2005)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
15417344 inodes, 30816686 blocks
1540834 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=33554432
941 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632,
2654208,
4096000, 7962624, 11239424, 20480000, 23887872
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 33 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@localhost dave]#
Now check this out:
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
[root@localhost dave]#
OK, so I unmount one and then mount hdb3 and that looks like this:
[root@localhost dave]# umount /dev/hda1
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
[root@localhost dave]# mount -l
/dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw) []
none on /proc type proc (rw)
none on /sys type sysfs (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
usbfs on /proc/bus/usb type usbfs (rw)
/dev/hdb1 on /boot type ext3 (rw) [/boot]
none on /dev/shm type tmpfs (rw)
/dev/sda1 on /mnt/firewire type ntfs (ro,umask=0222)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
nfsd on /proc/fs/nfsd type nfsd (rw)
CRAP!
Time out for a Prozac, a cup of some kind of touchy feely night time tea
made from unidentifiable herbal thingies.
(Theme from Knightrider begins)
Any Ideas???
Cheers,
Dave
--
Study History - Know the Future
www.misterfixit.blogspot.com
www.daves928.blogspot.com |
|
|
| Back to top |
|
|
|
| Tommy Reynolds |
Posted: Tue Apr 26, 2005 10:36 am |
|
|
|
Guest
|
On Mon, 25 Apr 2005 20:29:55 -0500, CWO4 Dave Mann wrote:
Quote: Apr 25 17:45:27 localhost kernel: EXT3-fs: Unrecognized mount option
"umask=0222" or missing value
Bad karma here. Please remove this option for a moment.
Quote: [root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
This is the generic "no can do" message that attempts to provide
useful error information by mentioning lots of irrelavent items. I
have not been successful in getting patches accepted for this.
Quote: If EXT3-fs is unrecognized mount option, I wonder if the system sees the
partition as a real Ext3. I notice that the hardware info returns
hdb1 as a type 8e partition and hdb3 as a type 83.
Type "83" is correct for your "hdb3" partition, since it is _not_ an
LVM partition.
Quote: [root@localhost dave]# mke2fs -j /dev/hdb3
mke2fs 1.36 (05-Feb-2005)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
15417344 inodes, 30816686 blocks
1540834 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=33554432
941 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632,
2654208,
4096000, 7962624, 11239424, 20480000, 23887872
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 33 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@localhost dave]#
Now check this out:
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
Two hints:
# mount /dev/hdb3 /mnt/somewhere
does *NOT* use (or need) anything from "/etc/fstab", so always use
the two-argument form to make sure the setup is correct, before you
try the:
# mount /dev/hdb3
form -- that *requires* a correct "/etc/fstab" entry. See my earlier
comment about the bogus "umask=" option for the EXT3 partition.
Sir! Yes, Sir! Uggh! Sir, no results, sir!
Quote: (Theme from Knightrider begins)
Any Ideas???
Yeah, you gotta get out more  |
|
|
| Back to top |
|
|
|
| CWO4 Dave Mann |
Posted: Tue Apr 26, 2005 2:15 pm |
|
|
|
Guest
|
Tommy Reynolds wrote:
Quote: On Mon, 25 Apr 2005 20:29:55 -0500, CWO4 Dave Mann wrote:
Apr 25 17:45:27 localhost kernel: EXT3-fs: Unrecognized mount option
"umask=0222" or missing value
Bad karma here. Please remove this option for a moment.
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
This is the generic "no can do" message that attempts to provide
useful error information by mentioning lots of irrelavent items. I
have not been successful in getting patches accepted for this.
If EXT3-fs is unrecognized mount option, I wonder if the system sees
the
partition as a real Ext3. I notice that the hardware info returns
hdb1 as a type 8e partition and hdb3 as a type 83.
Type "83" is correct for your "hdb3" partition, since it is _not_ an
LVM partition.
[root@localhost dave]# mke2fs -j /dev/hdb3
mke2fs 1.36 (05-Feb-2005)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
15417344 inodes, 30816686 blocks
1540834 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=33554432
941 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632,
2654208,
4096000, 7962624, 11239424, 20480000, 23887872
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 33 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@localhost dave]#
Now check this out:
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
Two hints:
# mount /dev/hdb3 /mnt/somewhere
does *NOT* use (or need) anything from "/etc/fstab", so always use
the two-argument form to make sure the setup is correct, before you
try the:
# mount /dev/hdb3
form -- that *requires* a correct "/etc/fstab" entry. See my earlier
comment about the bogus "umask=" option for the EXT3 partition.
CRAP!
Sir! Yes, Sir! Uggh! Sir, no results, sir!
(Theme from Knightrider begins)
Any Ideas???
Yeah, you gotta get out more
I DO get out!
Get out to the bathroom, to the beer fridge, to the drawer with the
twinkies, to the Doom hAk{@}rs gRuEp, to eBay, to
alt.binaries.pictures.oh.my.god.how.can.they.do.that.ewwwwww.
And so forth.
I'll be trying your recommendations anon but wanted to thank you again from
the bottom of my IBM5100 storage device. Unfortunately, I lent my IBM5100
to my old buddy John and he hasn't brought it back yet:
http://www.johntitor.com/Pages/5100.html
Cheers,
Dave
--
Study History - Know the Future
www.misterfixit.blogspot.com
www.daves928.blogspot.com |
|
|
| Back to top |
|
|
|
| CWO4 Dave Mann |
Posted: Tue Apr 26, 2005 2:29 pm |
|
|
|
Guest
|
Tommy Reynolds wrote:
Quote: On Mon, 25 Apr 2005 20:29:55 -0500, CWO4 Dave Mann wrote:
Apr 25 17:45:27 localhost kernel: EXT3-fs: Unrecognized mount option
"umask=0222" or missing value
Bad karma here. Please remove this option for a moment.
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
This is the generic "no can do" message that attempts to provide
useful error information by mentioning lots of irrelavent items. I
have not been successful in getting patches accepted for this.
If EXT3-fs is unrecognized mount option, I wonder if the system sees
the
partition as a real Ext3. I notice that the hardware info returns
hdb1 as a type 8e partition and hdb3 as a type 83.
Type "83" is correct for your "hdb3" partition, since it is _not_ an
LVM partition.
[root@localhost dave]# mke2fs -j /dev/hdb3
mke2fs 1.36 (05-Feb-2005)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
15417344 inodes, 30816686 blocks
1540834 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=33554432
941 block groups
32768 blocks per group, 32768 fragments per group
16384 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632,
2654208,
4096000, 7962624, 11239424, 20480000, 23887872
Writing inode tables: done
Creating journal (8192 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 33 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@localhost dave]#
Now check this out:
[root@localhost dave]# mount /dev/hdb3
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
Two hints:
# mount /dev/hdb3 /mnt/somewhere
does *NOT* use (or need) anything from "/etc/fstab", so always use
the two-argument form to make sure the setup is correct, before you
try the:
# mount /dev/hdb3
form -- that *requires* a correct "/etc/fstab" entry. See my earlier
comment about the bogus "umask=" option for the EXT3 partition.
CRAP!
Sir! Yes, Sir! Uggh! Sir, no results, sir!
(Theme from Knightrider begins)
Any Ideas???
Yeah, you gotta get out more
Tommy My Main Man ....
I removed the bad kharma (Dharma, actually) of umask blah and Lo and Behold!
Yesssss!! I Say Unto You My Brothers and Sisters! Yes! I Say It Is A
Miracle. I Just KNEW that if I sent that Ten Doller Love Offering To Your
Blessed Ministry of the Holy Linux That I Would Be Annointed.
Thou Shalt Be Annointed (as soon as I find my Special Homogenous Stone of
Special Powers -- which I think is with my Power Rangers Collectables).
I'll check back when I figure out WHY the umask was the constipation factor.
Cheers!
Dave
--
Study History - Know the Future
www.misterfixit.blogspot.com
www.daves928.blogspot.com |
|
|
| Back to top |
|
|
|
| Tommy Reynolds |
Posted: Tue Apr 26, 2005 3:31 pm |
|
|
|
Guest
|
On Tue, 26 Apr 2005 15:29:27 -0500, CWO4 Dave Mann wrote:
Quote: Tommy My Main Man ....
I removed the bad kharma (Dharma, actually) of umask blah and Lo and Behold!
Yesssss!! I Say Unto You My Brothers and Sisters! Yes! I Say It Is A
Miracle. I Just KNEW that if I sent that Ten Doller Love Offering To Your
Blessed Ministry of the Holy Linux That I Would Be Annointed.
Thou Shalt Be Annointed (as soon as I find my Special Homogenous Stone of
Special Powers -- which I think is with my Power Rangers Collectables).
I'll check back when I figure out WHY the umask was the constipation factor.
Check the archives. You are in violation of the Prime Directive:
"Never act surprised when Tommy is right."
So, you *do* get out, eh? Security at the home isn't what is used to
be ;-)
Glad to help out, dude. |
|
|
| Back to top |
|
|
|
|
|
All times are GMT - 5 Hours
The time now is Thu Sep 09, 2010 2:37 am
|
|