Linux Mint 18에는 Seagate 4TB 외장 하드 드라이브가 표시되지 않습니다.

Linux Mint 18에는 Seagate 4TB 외장 하드 드라이브가 표시되지 않습니다.

방금 Seagate에서 4TB 외장 하드 드라이브를 구입했고 이를 내 노트북(Linux Mint 18)의 확장으로 사용하고 싶습니다. 하지만 자동으로 설치되지는 않습니다. 여러 포럼을 검색한 후에도 해결책을 찾을 수 없습니다. 터미널에서 HD 어드레싱을 시도했지만

$ sudo parted -l
Model: ATA SAMSUNG MZNLN256 (scsi)
Disk /dev/sda: 256GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size    Type      File system     Flags
 1      1049kB  25,0GB  25,0GB  primary   ext4            boot
 2      25,0GB  256GB   231GB   extended
 5      25,0GB  246GB   221GB   logical   ext4
 6      246GB   256GB   10,1GB  logical   linux-swap(v1)

HD를 표시하지 않습니다.

$ lsusb
Bus 002 Device 004: ID 0bc2:231a Seagate RSS LLC
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 006: ID 138a:0090 Validity Sensors, Inc. 
Bus 001 Device 005: ID 5986:0706 Acer, Inc 
Bus 001 Device 004: ID 8087:0a2b Intel Corp. 
Bus 001 Device 003: ID 058f:9540 Alcor Micro Corp. AU9540 Smartcard Reader
Bus 001 Device 002: ID 24ae:2010  
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

연결을 끊은 후 다시 연결하고 다음을 실행하세요.

$ dmesg | tail
[23864.763687] sd 4:0:0:0: [sdb] Attached SCSI disk
[23877.666931] usb 2-1: new SuperSpeed USB device number 5 using xhci_hcd
[23877.688749] usb 2-1: New USB device found, idVendor=0bc2, idProduct=231a
[23877.688763] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[23877.688771] usb 2-1: Product: Expansion
[23877.688777] usb 2-1: Manufacturer: Seagate
[23877.688782] usb 2-1: SerialNumber: NA8GVXYS
[23877.696566] scsi host5: uas
[23877.697684] scsi 5:0:0:0: Direct-Access     Seagate  Expansion        0707 PQ: 0 ANSI: 6
[23877.699718] sd 5:0:0:0: Attached scsi generic sg1 type 0

그리고

$ sudo gnome-disks

모델 Seagate Expansion (0707)정보, 일련번호, 장치 만 표시됩니다 /dev/sdc.

$ sudo mount /dev/sdc /media/disk4TB

유효한 블록 장치가 아니라고 알려줍니다.

Linux Mint18에서 계속 사용할 수 있도록 하는 방법에 대한 제안이 있는 사람이 있습니까?

답변1

여전히 문제가 있는 경우 다음을 시도해 보세요.

# modprobe uas

동일한 드라이브로 보이는 것과 비슷한 문제가 발생했습니다. /etc/modules에 uas를 추가하여 자동으로 로드할 수 있습니다:

# cat /etc/modules

# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
uas

관련 정보