Ubuntu Linux 16.04가 초기화된 후 /etc/fstab을 수정할 수 있습니까?

Ubuntu Linux 16.04가 초기화된 후 /etc/fstab을 수정할 수 있습니까?

Lenovo Thinkstation 데스크탑에서 실행되는 Ubuntu Linux 16.04 시스템에서 /etc/fstab을 초기화한 후 수정했습니다. Ubuntu Linux 16.04 시스템이 엉망이 되어 끝없는 패닉 재부팅 상태가 되었습니다.

이 사고의 원인과 기호 이름을 변경하기 위해 /etc/fstab을 올바르게 수정하는 방법을 알고 싶습니다.

어떤 도움이라도 대단히 감사하겠습니다.

[Frank에 의해 2016년 5월 24일 오후 2시에 편집됨] 긴급 재부팅 후 /etc/fstab이 내 아래에서 변경되었습니다.

원본 텍스트는 다음과 같습니다.

Data1 /media/Data1 vfat defaults 0 1 

# /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/sdb7 during installation
UUID=71f42e33-6984-4905-9932-17cd4adb7b41 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sdb5 during installation
UUID=0a3b409b-f7bf-4a22-a05f-0dc35e1bb111 none            swap    sw              0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0

답변1

예, Ubuntu Linux 16.04가 초기화된 후에 /etc/fstab을 수정할 수 있습니다.

/etc/fstab을 sudo nano /etc/rc.local로 수정하여 문제의 원인을 좁혔습니다.

e.g. Add these lines before the exit line:
     sleep 30
     sudo mount -a
     exit
     exit 0

USB 드라이브를 부팅하는 데 시간이 오래 걸리기 때문에 이 자동 마운트가 실패할 수 있습니다.

관련 정보