SD-CARD读卡器不在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。 🙁

这对我有用。

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 

插入SD卡时Dmesg没有说什么? lspci将(应该)向您展示读者的生产者,解决您的问题需要哪些信息。

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

 fdisk /dev/sda 

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

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