내장 SSD를 설치하는 데 문제가 있습니다. 어떤 이유로 /media/user/Data
에 지정된 마운트 지점 /etc/fstab
대신 마운트 지점이 선택되었습니다 /mnt/Data
. 해당 행은 /etc/fstab
다음과 같습니다.
UUID="064ced5e-19c1-43d1-876f-3de0c115b65e" /mnt/Data ext4 users,noauto,exec,rw,async,dev 0 0
저는 Ubuntu 14.04 LTS 64비트를 사용하고 있습니다.
(편집하다:)
전체 fstab 파일은 다음과 같습니다.
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdc2 during installation
UUID=9cf86df3-3d02-45d7-8078-d6ff5fc83ea6 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda2 during installation
UUID=5AC7-594F /boot/efi vfat defaults 0 1
# swap was on /dev/sdc5 during installation
UUID=5460f609-5245-417a-833a-271c533db97a none swap sw 0 0
UUID="064ced5e-19c1-43d1-876f-3de0c115b65e" /mnt/Data ext4 users,noauto,exec,rw,async,dev 0 0
답변1
내가 파서에서 기대하는 단순성을 고려하면 /etc/fstab
영향을 받는 항목에서 UUID 주위의 따옴표를 제거하는 것이 도움이 될 수 있습니다. 즉, 다음을 사용하십시오.
UUID=064ced5e-19c1-43d1-876f-3de0c115b65e /mnt/Data ...
바꾸다
UUID="064ced5e-19c1-43d1-876f-3de0c115b65e" /mnt/Data ...