I'm resending this, as I got no answers:
I've just installed 9.3 on my wife's laptop. With 9.2, when she inserted her usb-stick, it was mounted automatically and a konqueror window opened and showed the contents. With 9.3, it does not work any more. mount /dev/sda1 -t vfat /media/usbkey works, but this procedure is not really practical. How can I revert to the 9.2 type functionality?
I've added /dev/sda1 vfat /media/usbkey -noauto to fstab, and now inserting the key opens a konqueror window, but the key is not mounted. I have to do it manually from konsole. any ideas to fully automate the process? thanks Fx
On Monday 30 May 2005 16:57, FX Fraipont wrote:
I'm resending this, as I got no answers:
I've just installed 9.3 on my wife's laptop. With 9.2, when she inserted her usb-stick, it was mounted
automatically and a konqueror window opened and showed the contents.
With 9.3, it does not work any more.
What happens when you insert the usb-stick? Does it mount at /media/??? like it should? What do you see in /var/log/messages? Is it the standard FAT filesystem? How about -- as root -- lsusb? For example: (chopped for brevity) ------- linux:~ # cat /var/log/messages May 30 17:19:57 linux kernel: Initializing USB Mass Storage driver... May 30 17:19:57 linux kernel: scsi0 : SCSI emulation for USB Mass Storage devices May 30 17:19:57 linux kernel: usbcore: registered new driver usb-storage May 30 17:19:57 linux kernel: USB Mass Storage support registered. May 30 17:19:57 linux kernel: usb-storage: device found at 3 May 30 17:19:57 linux kernel: usb-storage: waiting for device to settle before scanning May 30 17:20:02 linux kernel: Vendor: Sony Model: Storage Media Rev:1.00 May 30 17:20:02 linux kernel: Type: Direct-Access ANSI SCSI revision: 00 May 30 17:20:02 linux kernel: SCSI device sda: 512000 512-byte hdwr sectors (262 MB) --CUT HERE-- May 30 17:20:23 linux hal-subfs-mount[17288]: registered at resmgrd and called(0) /bin/mount -t subfs -o fs=floppyfss,sync,procuid,nosuid,nodev,exec /dev/sda1 "/media/usbdisk" May 30 17:20:23 linux kernel: end_request: I/O error, dev fd0, sector 0 May 30 17:20:30 linux kernel: FAT: bogus number of reserved sectors May 30 17:20:30 linux kernel: VFS: Can't find a valid FAT filesystem on dev sda1 . May 30 17:20:30 linux hal.hotplug[17294]: DEVPATH is not set May 30 17:20:30 linux kernel: EXT2-fs warning: maximal mount count reached, running e2fsck is recommended ... and ... linux:~ # lsusb Bus 005 Device 001: ID 0000:0000 Bus 004 Device 001: ID 0000:0000 Bus 003 Device 001: ID 0000:0000 Bus 002 Device 001: ID 0000:0000 Bus 001 Device 003: ID 054c:008b Sony Corp. Micro Vault 64M Mass Storage Bus 001 Device 002: ID 054c:0105 Sony Corp. Micro Vault Hub Bus 001 Device 001: ID 0000:0000 -- Christopher Shanahan
mount /dev/sda1 -t vfat /media/usbkey works, but this procedure is
not really practical.
How can I revert to the 9.2 type functionality?
I've added /dev/sda1 vfat /media/usbkey -noauto to fstab, and now inserting the key opens a konqueror window, but the key is not mounted. I have to do it manually from konsole.
any ideas to fully automate the process?
thanks
Fx
Christopher Shanahan wrote:
What happens when you insert the usb-stick? Does it mount at /media/??? like it should? What do you see in /var/log/messages? Is it the standard FAT filesystem? How about -- as root -- lsusb?
dmesg May 31 20:49:56 linux kernel: usb 1-1: new full speed USB device using uhci_hcd and address 4 May 31 20:49:56 linux kernel: hub 1-1:1.0: USB hub found May 31 20:49:56 linux kernel: hub 1-1:1.0: 1 port detected May 31 20:49:56 linux kernel: usb 1-1.1: new full speed USB device using uhci_hc d and address 5 May 31 20:49:56 linux kernel: scsi1 : SCSI emulation for USB Mass Storage device s May 31 20:49:56 linux kernel: usb-storage: device found at 5 May 31 20:49:56 linux kernel: usb-storage: waiting for device to settle before s canning May 31 20:50:01 linux kernel: Vendor: Prolific Model: USB Flash Disk Rev: PROL May 31 20:50:01 linux kernel: Type: Direct-Access ANSI SCSI revision: 00 May 31 20:50:01 linux kernel: SCSI device sda: 512000 512-byte hdwr sectors (262 MB) May 31 20:50:01 linux kernel: sda: Write Protect is off May 31 20:50:01 linux kernel: sda: Mode Sense: 00 06 00 00 May 31 20:50:01 linux kernel: sda: assuming drive cache: write through May 31 20:50:01 linux kernel: SCSI device sda: 512000 512-byte hdwr sectors (262 MB) May 31 20:50:01 linux kernel: sda: Write Protect is off May 31 20:50:01 linux kernel: sda: Mode Sense: 00 06 00 00 May 31 20:50:01 linux kernel: sda: assuming drive cache: write through May 31 20:50:01 linux kernel: sda: sda1 May 31 20:50:01 linux kernel: Attached scsi removable disk sda at scsi1, channel 0, id 0, lun 0 May 31 20:50:01 linux kernel: Attached scsi generic sg0 at scsi1, channel 0, id 0, lun 0, type 0 May 31 20:50:01 linux kernel: usb-storage: device scan complete May 31 20:50:04 linux /etc/hotplug.d/block/50-hwscan.hotplug[9245]: new block de vice /block/sda May 31 20:50:05 linux /etc/hotplug.d/block/50-hwscan.hotplug[9293]: new block de vice /block/sda/sda1 linux:/home/cecile # lsusb Bus 001 Device 005: ID 067b:2517 Prolific Technology, Inc. Flash Disk Mass Storage Device Bus 001 Device 004: ID 067b:2515 Prolific Technology, Inc. Flash Disk Embedded Hub Bus 001 Device 001: ID 0000:0000 It was a FAT32 system (remember, in 9.2 it was mounted automatically). Just to make sure, i reformatted it FAT32 in SuSE 9.3 - no change, of course, that was not the problem. my question is: why isn't the usbstick mounted automatically? fx
On Tuesday 31 May 2005 16:02, FX Fraipont wrote:
Christopher Shanahan wrote:
What happens when you insert the usb-stick? Does it mount at /media/??? like it should? What do you see in /var/log/messages? Is it the standard FAT filesystem? How about -- as root -- lsusb?
dmesg
May 31 20:49:56 linux kernel: usb 1-1: new full speed USB device using uhci_hcd and address 4 --- CUT HERE --- May 31 20:50:01 linux kernel: Vendor: Prolific Model: USB Flash Disk Rev: PROL May 31 20:50:01 linux kernel: Type: Direct-Access ANSI SCSI revision: 00 --- CUT HERE --- May 31 20:50:05 linux /etc/hotplug.d/block/50-hwscan.hotplug[9293]: new block de vice /block/sda/sda1
linux:/home/cecile # lsusb Bus 001 Device 005: ID 067b:2517 Prolific Technology, Inc. Flash Disk Mass Storage Device Bus 001 Device 004: ID 067b:2515 Prolific Technology, Inc. Flash Disk Embedded Hub Bus 001 Device 001: ID 0000:0000
It was a FAT32 system (remember, in 9.2 it was mounted automatically). Just to make sure, i reformatted it FAT32 in SuSE 9.3 - no change, of course, that was not the problem.
my question is: why isn't the usbstick mounted automatically?
fx
Your _usbstick_ was recognized by your system and it appears to have been mounted without errors, as noted by dmesg and lsusb. Unless, of course, the Prolific Technology Flash Disk is a different usb device.?.?.? Konqueror may not have opened automatically, but it certainly looks like the thumbdrive was mounted. Did you look at /media/xxx where your system would normally automatically mount the device? Such as /media/usbdisk? -- Christopher Shanahan
On 5/31/05, Christopher Shanahan <cshanahan@comcast.net> wrote:
Your _usbstick_ was recognized by your system and it appears to have been mounted without errors, as noted by dmesg and lsusb. Unless, of course, the Prolific Technology Flash Disk is a different usb device.?.?.? Konqueror may not have opened automatically, but it certainly looks like the thumbdrive was mounted. Did you look at /media/xxx where your system would normally automatically mount the device? Such as /media/usbdisk?
-- Christopher Shanahan
Jumping in the middle :) I have the same problem with 9.2 and mp3 player. On 9.1 it mounts and pops up konqueror. But on 9.2 I see a similar output - the device is recognized, it have been assigned to /dev/sda1, but after that it never go to the true mount routine. No entry in fstab is added, no directory in /media is created, and ... no konqeror. I had to add a manual entry in fstab, and to mount it manually in order to use it. Not a good solution, as this machine is used by newly "converted" friend family, and I tried to prepare the system to work as much as possible only using a mouse :) Cheers Sunny
Sunny wrote:
I have the same problem with 9.2 and mp3 player. On 9.1 it mounts and pops up konqueror. But on 9.2 I see a similar output - the device is recognized, it have been assigned to /dev/sda1, but after that it never go to the true mount routine. No entry in fstab is added, no directory in /media is created, and ... no konqeror. I had to add a manual entry in fstab, and to mount it manually in order to use it. Not a good solution, as this machine is used by newly "converted" friend family, and I tried to prepare the system to work as much as possible only using a mouse :)
AH! Glad to see I'm not the only one. My situation is very similar to what you describe, except that my family member was "forcibly converted" :-) and mostly satisfied with it, except for the usbstick snag. FX
Christopher Shanahan wrote:
Your _usbstick_ was recognized by your system and it appears to have been mounted without errors, as noted by dmesg and lsusb. Unless, of course, the Prolific Technology Flash Disk is a different usb device.?.?.? Konqueror may not have opened automatically, but it certainly looks like the thumbdrive was mounted. Did you look at /media/xxx where your system would normally automatically mount the device? Such as /media/usbdisk?
Thanks, I already knew this :-) Either I don't do anything to fstab, and then I get the right messages when I plug the usbstick in, but Konqueror is not open and the stick is not mounted and has to be mounted manually via a terminal window, or I insert /dev/sda1 -t vfat /media/usbkey or something like this in fstab, in which case a Konqueror window opens, kindly displaying the contents of /media/usbkey, but the usbkey is NOT mounted, which means /media/usbkey is empty unless I open a konsole and type mount /media/usbkey. Why does 9.3 do half the job? thanks for your help anyway FX
participants (3)
-
Christopher Shanahan
-
FX Fraipont
-
Sunny