升级到 Ubuntu 14.10 后 PCI 读卡器停止工作

升级到 Ubuntu 14.10 后 PCI 读卡器停止工作

这是我的配置:

sudo lspci
00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller (rev 06)
00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller (rev 06)
00:14.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI (rev 05)
00:16.0 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 (rev 05)
00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller (rev 05)
00:1c.0 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3 (rev d5)
00:1c.2 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 (rev d5)
00:1c.3 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #4 (rev d5)
00:1c.6 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #7 (rev d5)
00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation HM87 Express LPC Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 05)
00:1f.3 SMBus: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller (rev 05)
01:00.0 Network controller: Broadcom Corporation BCM4352 802.11ac Wireless Network Adapter (rev 03)
03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5227 PCI Express Card Reader (rev 01)
09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0c)

sudo file -s /dev/mmcblk0p1
/dev/mmcblk0p1: DOS/MBR boot sector

每次我尝试手动安装它时,都会收到以下信息:

sudo mount  /dev/mmcblk0p1 /media/vova/
mount: /dev/mmcblk0p1: more filesystems detected. This should not happen,
       use -t <type> to explicitly specify the filesystem type or
       use wipefs(8) to clean up the device.

有人可以帮忙吗?我无法弄清楚这一点。

答案1

尝试

sudo mount -t exfat /dev/mmcblk0p1 /media/vova/

按照 Google 的建议,当遇到类似的错误消息时。更好的是,向 中添加合适的行/etc/fstab。像这样的东西吗?

UUID="insert uuid here"   /media/vova  exfat    rw,user,noauto  0       0

blkid您可以通过检查连接到计算机的设备的 UUID 来获取 UUID 。这样做可以使您不必检查哪个设备文件代表您的阅读器。

自动化安装将是一个更好的主意。我usbmount过去用过。exfat如果您将以exfat下行 添加到/etc/usbmount/usbmount.conf.

FILESYSTEMS="vfat ext2 ext3 ext4 hfsplus"

我认为这是默认的。我的里面添加了“ntfs”。将 from 更改VERBOSE=noVERBOSE=yesin/etc/usbmount/usbmount.conf并通过插入进行测试。查看/var/log/messages/var/log/syslog的输出。

相关内容