ubuntu 中不顯示 SD 卡讀卡器

ubuntu 中不顯示 SD 卡讀卡器

我買了Acer asipre 4250。但它不起作用。 /media 或 fdisk 中沒有顯示任何內容,但 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。

相關內容