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"가 추가되었습니다. 에서 in VERBOSE=no으로 변경 하고 삽입하여 테스트합니다. 및 의 출력을 봅니다 .VERBOSE=yes/etc/usbmount/usbmount.conf/var/log/messages/var/log/syslog

관련 정보