View previous topic :: View next topic |
Author |
Message |
Thomas51 n00b

Joined: 09 Apr 2010 Posts: 40
|
Posted: Fri Jul 30, 2010 6:52 pm Post subject: Can't mount a USB flash drive |
|
|
Hello! I plug in a USB flash drive and dmesg prompts:
Code: | [18927.019932] hub 1-0:1.0: state 7 ports 8 chg 0000 evt 0008
[18927.019959] ehci_hcd 0000:00:13.2: GetStatus port 3 status 001803 POWER sig=j CSC CONNECT
[18927.019978] hub 1-0:1.0: port 3, status 0501, change 0001, 480 Mb/s
[18927.123093] hub 1-0:1.0: debounce: port 3: total 100ms stable 100ms status 0x501
[18927.174106] ehci_hcd 0000:00:13.2: port 3 high speed
[18927.174119] ehci_hcd 0000:00:13.2: GetStatus port 3 status 001005 POWER sig=se0 PE CONNECT
[18927.225079] usb 1-3: new high speed USB device using ehci_hcd and address 8
[18927.276078] ehci_hcd 0000:00:13.2: port 3 high speed
[18927.276092] ehci_hcd 0000:00:13.2: GetStatus port 3 status 001005 POWER sig=se0 PE CONNECT
[18927.339275] usb 1-3: USB quirks for this device: 2
[18927.339637] usb 1-3: default language 0x0409
[18927.340046] usb 1-3: udev 8, busnum 1, minor = 7
[18927.340052] usb 1-3: New USB device found, idVendor=0204, idProduct=6025
[18927.340059] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[18927.340067] usb 1-3: Product: Flash Disk
[18927.340072] usb 1-3: Manufacturer: CBM
[18927.340077] usb 1-3: SerialNumber: 2420330001E3C300
[18927.340269] usb 1-3: usb_probe_device
[18927.340277] usb 1-3: configuration #1 chosen from 1 choice
[18927.340395] usb 1-3: adding 1-3:1.0 (config #1, interface 0)
[18927.340476] usb-storage 1-3:1.0: usb_probe_interface
[18927.340490] usb-storage 1-3:1.0: usb_probe_interface - got id
[18927.340609] scsi6 : usb-storage 1-3:1.0
[18927.340800] drivers/usb/core/inode.c: creating file '008'
[18928.340834] scsi 6:0:0:0: Direct-Access CBM Flash Disk 5.00 PQ: 0 ANSI: 2
[18928.341207] sd 6:0:0:0: Attached scsi generic sg2 type 0
[18928.350663] sd 6:0:0:0: [sdb] 2055680 512-byte logical blocks: (1.05 GB/1003 MiB)
[18928.351443] sd 6:0:0:0: [sdb] Write Protect is off
[18928.351449] sd 6:0:0:0: [sdb] Mode Sense: 0b 00 00 08
[18928.351452] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[18928.353530] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[18928.353539] sdb: sdb1
[18928.356649] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[18928.356657] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[18929.812183] ata1.00: configured for UDMA/100
[18929.812193] ata1: EH complete
[18929.993602] [drm] Num pipes: 2 |
and when I click on dolphin to mount it, I get:
Code: | [19019.028031] FAT: IO charset iso8859-1 not found |
and it doesn't mount anything. Why? How to fix it? Thank you.
Thomas |
|
Back to top |
|
 |
BradN Advocate


Joined: 19 Apr 2002 Posts: 2391 Location: Wisconsin (USA)
|
Posted: Fri Jul 30, 2010 7:04 pm Post subject: |
|
|
You need to build that character set into your kernel or as a module (it's under filesystems, then towards the bottom I believe) |
|
Back to top |
|
 |
Thomas51 n00b

Joined: 09 Apr 2010 Posts: 40
|
Posted: Fri Jul 30, 2010 8:01 pm Post subject: |
|
|
Thanks. I've just built all the characters sets into the kernel and now I can mount my USB device. BUT now I have a weird bug in KDE: the sound is buggy, it repeats each 1/2 seconds of music (files read with mplayer or environnment sounds) several times. What is it? What's the link with my characters sets?? |
|
Back to top |
|
 |
BradN Advocate


Joined: 19 Apr 2002 Posts: 2391 Location: Wisconsin (USA)
|
Posted: Fri Jul 30, 2010 10:34 pm Post subject: |
|
|
There shouldn't be any link to that. Did you use the same kernel version as before? |
|
Back to top |
|
 |
Thomas51 n00b

Joined: 09 Apr 2010 Posts: 40
|
Posted: Sat Jul 31, 2010 7:03 pm Post subject: |
|
|
Yes |
|
Back to top |
|
 |
BradN Advocate


Joined: 19 Apr 2002 Posts: 2391 Location: Wisconsin (USA)
|
Posted: Sat Jul 31, 2010 9:20 pm Post subject: |
|
|
Hmm, a very long shot is if you had used a different compiler before and your audio driver is built as a module that was recompiled, and some gcc ABI difference has caused an incompatibility.
Try rebuilding your kernel and using that, like:
cd /usr/src/linux # (or your current kernel location if the symlink doesn't point there)
cp .config ../curconfig
make clean mrproper
mv ../curconfig .config
make && make modules_install
# (copy your kernel to /boot) |
|
Back to top |
|
 |
|