Unix Technical Forum

2.6.9 kernel can't mount zip drive

This is a discussion on 2.6.9 kernel can't mount zip drive within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> I installed the slackware-current kernel-2.6.9 kernel. every thing works great! I do have a problem of not being to ...


Go Back   Unix Technical Forum > Unix Operating Systems > Slackware Linux Support

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-19-2008, 05:22 PM
lampiasi
 
Posts: n/a
Default 2.6.9 kernel can't mount zip drive

I installed the slackware-current kernel-2.6.9 kernel. every thing
works great! I do have a problem of not being to mount my external
zip drive (pluged into usb port). I read somthing like this in this NS
quite some time ago, but can not find any message's in this topic.

I have in fstab:

/dev/sda4 /mnt/zip vfat noauto,owner 0 0

That did work under kernel-2.4.27....
When I try to mount a zip disk I am told:
"Mount: special device /dev/sda4 does not exist"

Thanks All for your help...
Wayne.
Lampiasi#Bellsouth.Net
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-19-2008, 05:22 PM
chud
 
Posts: n/a
Default Re: 2.6.9 kernel can't mount zip drive

On Mon, 15 Nov 2004 16:08:26 +0000, lampiasi wrote:


> I have in fstab:
>
> /dev/sda4 /mnt/zip vfat noauto,owner 0 0
>
> That did work under kernel-2.4.27.... When I try to mount a zip disk I
> am told: "Mount: special device /dev/sda4 does not exist"
>
>

It probably means that /dev/sda4 does not exist. Try ls /dev/sda4; see
what u get.

If it's not there you can create it with mknod, or try to figure out what
the real problem is. There seems to be a problem with the 2.6 kernel and
hotplug/udev and/or the udev.rules file that ships with Slack 10.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-19-2008, 05:22 PM
Faux_Pseudo
 
Posts: n/a
Default Re: 2.6.9 kernel can't mount zip drive

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

_.-In alt.os.linux.slackware, lampiasi wrote the following -._
> /dev/sda4 /mnt/zip vfat noauto,owner 0 0
> "Mount: special device /dev/sda4 does not exist"


The usb mounting concept is very much different in 2.6 then in 2.4.
Odds are your zip is on /dev/sda1 and not sda4. A simple little
script can find out.

for f in /dev/sd* ; do
mount $f /mnt/zip 2>/dev/null &&\
echo "we mounted on $f" &&\
umount $f
done

- --
.-')) asciipr0n.com/fp ('-. | It's a damn poor mind that
' ..- .:" ) ( ":. -.. ' | can only think of one way to
((,,_;'.;' UIN=66618055 ';. ';_,,)) | spell a word.
((_.YIM=Faux_Pseudo :._)) | - Andrew Jackson
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFBmKS+SJec2PH9pbURApkGAJ9Uv1aZJS4/KaP2yop98V9IsygIEQCfb5Ff
ErraJxHuRBZaRovkjbuQke4=
=YaQM
-----END PGP SIGNATURE-----
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-19-2008, 05:23 PM
Niki Kovacs
 
Posts: n/a
Default Re: 2.6.9 kernel can't mount zip drive

lampiasi wrote:

> That did work under kernel-2.4.27....
> When I try to mount a zip disk I am told:
> "Mount: special device /dev/sda4 does not exist"


See my post to that subject about a week ago. I guess that's one of the
reasons why Slack 10.0 still runs 2.4.26 and only optionally includes
2.6.7.

Tried to upgrade to 2.6.x about a month ago, fiddled around a lot, and
finally went back to 2.4... though I really dug udev! But I think it's
better to wait until something more... usable will come out. Zip drive not
working, no burning with 2.6.8, that's too much trouble.

Cheers,

NK
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-19-2008, 05:23 PM
Mario Berger
 
Posts: n/a
Default Re: 2.6.9 kernel can't mount zip drive

Niki Kovacs wrote:
> Tried to upgrade to 2.6.x about a month ago, fiddled around a lot, and
> finally went back to 2.4... though I really dug udev! But I think it's
> better to wait until something more... usable will come out. Zip drive not
> working, no burning with 2.6.8, that's too much trouble.


About the same here. 2.6.9 was really screwed, burning only worked as
root and my parallel printer was spitting out garbage. Ony went back to
2.6.7, though, and got that one working smoothly now.

~Mik

PS: Imagine: We compile and install a kernel without great necessity,
just to try, and we spend several weeks to get it working the way it
worked before. Only now, `uname -r` will give us something different.
Damn, we _are_ geeks!

--
ls -l /mnt
lrwxrwxrwx 1 root root 9 2004-11-11 17:57 doom -> /dev/null
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-19-2008, 05:26 PM
Larroque
 
Posts: n/a
Default Re: 2.6.9 kernel can't mount zip drive

lampiasi wrote:
> I installed the slackware-current kernel-2.6.9 kernel. every thing
> works great! I do have a problem of not being to mount my external
> zip drive (pluged into usb port). I read somthing like this in this NS
> quite some time ago, but can not find any message's in this topic.
>
> I have in fstab:
>
> /dev/sda4 /mnt/zip vfat noauto,owner 0 0
>
> That did work under kernel-2.4.27....
> When I try to mount a zip disk I am told:
> "Mount: special device /dev/sda4 does not exist"
>
> Thanks All for your help...
> Wayne.
> Lampiasi#Bellsouth.Net


Is the ub module loaded ?
If yes, take a look at:
https://lists.one-eyed-alien.net/pip...st/000709.html
After you create these devices, try to mount your zip on /dev/uba1 or
/dev/uba2.... ( look in /var/log/messages what /dev/ub?? is actived when
you plug your zip).

--
---- Pierre ----
L'homme est sorti de la femme à sa naissance et passe sa vie à vouloir y
re-entrer.
Anonyme
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-19-2008, 05:27 PM
John Briggs
 
Posts: n/a
Default Re: 2.6.9 kernel can't mount zip drive

On Tue, 16 Nov 2004 09:37:44 +0100, Mario Berger wrote:
> Niki Kovacs wrote:
>> Tried to upgrade to 2.6.x about a month ago, fiddled around a lot, and
>> finally went back to 2.4... though I really dug udev! But I think it's
>> better to wait until something more... usable will come out. Zip drive not
>> working, no burning with 2.6.8, that's too much trouble.

>
> About the same here. 2.6.9 was really screwed, burning only worked as
> root and my parallel printer was spitting out garbage. Ony went back to
> 2.6.7, though, and got that one working smoothly now.
>
> ~Mik
>
> PS: Imagine: We compile and install a kernel without great necessity,
> just to try, and we spend several weeks to get it working the way it
> worked before. Only now, `uname -r` will give us something different.
> Damn, we _are_ geeks!
>


I have similar problems with 2.6.7
After some researh I wrote a couple of udev rules and everything works ok.

John
--
Feeling exploited, impoverished or imprisoned??
Knock down the Gates of .... and break free into the "Brave GNU World" of the
"Free Software Foundation".
"Squeak" with delight at pleasure this freedom brings.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 11:24 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com