Win에서 NTFS로 USB 드라이브를 포맷했는데 Debian에서 사용하고 싶습니다. Thunar에서 아이콘을 클릭하여 설치하려고 하면 다음과 같은 메시지가 나타납니다.Error mounting: mount exited with exit code 1: helper failed with:.
그래서 /media에 sdd1이라는 새 디렉토리를 생성하고 mount -t auto /dev/sdd1 /media/sdd1
이를 sudo로 실행하여 드라이브를 마운트했습니다. 거기에서 읽고 쓸 수 있지만 파일을 삭제하려고 하면 다음과 같은 오류가 발생합니다.Unable to find or create trash directory
GUI를 통해 장치를 제거하려고 하면 다음과 같은 메시지가 나타납니다.Error unmounting: umount exited with exit code 1: helper failed with: umount: /dev/sdd1 mount disagrees with the fstab
/etc/fstab에는 다음 줄이 포함되어 있습니다.
/dev/sdd1 /media/usb0 auto rw,user,noauto 0 0
usb0을 sdd1로 변경해야 합니까(FAT 스틱이 계속 작동하기를 바랍니다), 아니면 수행해야 할 추가 작업이 있습니까?