SD 卡读卡器在 ubuntu 中不显示

SD 卡读卡器在 ubuntu 中不显示

我买了 Acer asipre 4250。它有内置 SD 卡读卡器。但它不能用。/media 或 fdisk 中没有显示任何内容,但 dmesg 中有一些内容。

dmesg:

new high-speed USB device number 3 using ehci_hcd
[  127.396733] scsi5 : usb-storage 2-2:1.0
[  128.526562] scsi 5:0:0:0: Direct-Access     Multiple Card  Reader     1.00 PQ: 0 ANSI: 0
[  128.532512] sd 5:0:0:0: Attached scsi generic sg2 type 0
[  129.008110] ohci_hcd 0000:00:12.0: PCI INT A disabled
[  129.032083] ohci_hcd 0000:00:13.0: PCI INT A disabled
[  129.056411] ohci_hcd 0000:00:16.0: PCI INT A disabled
[  129.338026] sd 5:0:0:0: [sdb] Attached SCSI removable disk
[  129.808328] ohci_hcd 0000:00:14.5: PCI INT C disabled
[  167.728616] usb 2-2: USB disconnect, device number 3
[  169.872284] ehci_hcd 0000:00:13.2: PCI INT B disabled
[  169.872340] ehci_hcd 0000:00:13.2: PME# enabled

fdisk-l:

Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x0006bc6d

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048    48828415    24413184    7  HPFS/NTFS/exFAT
/dev/sda2        48828416    50829311     1000448   82  Linux swap / Solaris
/dev/sda3        50829312    99657727    24414208   83  Linux
/dev/sda4        99659774   625141759   262740993    5  Extended
Partition 4 does not start on physical sector boundary.
/dev/sda5        99659776   275439615    87889920    7  HPFS/NTFS/exFAT
/dev/sda6       275441664   451221503    87889920    7  HPFS/NTFS/exFAT
/dev/sda7       451223552   625141759    86959104    7  HPFS/NTFS/exFAT

我刚刚发现了另一个问题。我用磁盘实用程序将最后三个驱动器格式化为 EXT4。但它们在 fdisk 中显示为 NTFS/exFAT。:-(

答案1

这对我有用。

http://goinggnu.wordpress.com/2009/11/12/read-your-sd-card-with-your-ubuntu-laptop/

  1. 备份文件 /etc/modules

    sudo cp /etc/modules /etc/modules.bak
    
  2. 添加一行/etc/modules

    gksu gedit /etc/modules or sudo vi /etc/modules
    
  3. 将其标记到文件末尾的新行中:

    tifm_sd
    

重新启动后,读卡器即可正常工作。您将看到,将 SD 卡插入读卡器后,它会自动挂载。

但是等一下,不想重启机器?回到终端,输入:

sudo modprobe tifm_sd

答案2

插入 SD 卡时 Dmesg 什么都没说?lspci 将(应该)向您显示读卡器的生产商,这些信息是解决您的问题所需要的。

对于设置分区类型,最好使用 fdisk 而不是 GUI 工具。

fdisk /dev/sda

按 t,选择分区(您的情况为 5、6 或 7),83

对每个错误识别的分区重复此操作。最后按 w。

相关内容