그래서 돌고래의 행동은 매우 흥미롭습니다. 이것이 새로운 것인지는 말할 수 없습니다.
시스템 정보: 최신 Arch Linux 64비트, i3이 포함된 독립형 startx. 문제의 장치는 fat32 및 exfat입니다(어리석은 Windows 지원...). 나는 ext4로 포맷을 시도하지 않았습니다. 왜냐하면 그것은 나에게 옵션이 아니기 때문입니다.
1) 돌핀을 열고 USB를 연결하면 장치가 인식됩니다! 2) USB를 연결하고 Dolphin을 열면 장치가 목록에 없습니다 :(
mount /dev/sdc1 /mount/xxx
문제없이 실행할 수 있어요 .
fdisk -l 출력:
Disk /dev/sda: 223.6 GiB, 240057409536 bytes, 468862128 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 6EEBD8E6-6C6B-415F-8DF2-5E635871C1E1
Device Start End Sectors Size Type
/dev/sda1 2048 976895 974848 476M EFI System
/dev/sda2 976896 59570175 58593280 28G Linux filesystem
/dev/sda3 59570176 387002367 327432192 156.1G Linux filesystem
/dev/sda4 387002368 468860927 81858560 39G Microsoft basic data
Disk /dev/sdb: 465.8 GiB, 500107862016 bytes, 976773168 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
Disklabel type: dos
Disk identifier: 0xcf4dbac4
Device Boot Start End Sectors Size Id Type
/dev/sdb1 * 2048 206847 204800 100M 7 HPFS/NTFS/exFAT
/dev/sdb2 206848 738678783 738471936 352.1G 7 HPFS/NTFS/exFAT
/dev/sdb3 738678784 972658687 233979904 111.6G 83 Linux
/dev/sdb4 972658688 976773167 4114480 2G 82 Linux swap / Solaris
Disk /dev/sdc: 7.5 GiB, 8029470208 bytes, 15682559 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x56604413
Device Boot Start End Sectors Size Id Type
/dev/sdc1 2048 15681535 15679488 7.5G b W95 FAT32
Dolphin은 내 SSD와 HDD의 모든 파티션을 인식했는데, 문제는 바로 USB였습니다. 어떤 아이디어가 있나요?
감사해요!
답변1
노트북을 사용하고 계시다면,다시 시작해 보세요. 그 이유는 노트북의 배터리가 매우 부족하면 전력을 줄이기 위해 주변 장치 서비스를 일시 중지하기 시작하기 때문입니다.
터미널에 다음을 입력하면 이런 일이 발생하는지 확인할 수 있습니다.
cat /sys/module/usbcore/parameters/autosuspend
가 반환되면 2
자동 일시 중단이 활성화되었음을 의미합니다.
이 기능을 비활성화합니다, /etc/default/grub
파일을 편집하세요. 다음 줄을 찾으세요.
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
그리고로 변경
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash usbcore.autosuspend=-1"
그런 다음 실행합니다 sudo update-grub
(참고: 시간이 걸릴 수 있음).
행운을 빌어요!