그래서 Linux 시스템의 새 이미지를 만들었지만 이전 파일에 있는 사용자 이름/비밀번호를 사용하여 특정 주소를 마운트하는 /etc/fstab
명령을 사용할 수 있도록 새 파일을 수정해야 합니다 .mount -a
/etc/fstab
이전 시스템처럼 작동하려면 어떻게 해야 합니까? 내 로컬 PC에서 파일을 읽는 방법을 알았고 이러한 파일을 변경하면 시스템이 오작동할 수 있다는 것을 알고 있습니다(적어도 이전 파일을 사용하려고 할 때).
이전 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/sda1 during installation
UUID=########-####-####-####-############ / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=########-####-####-####-############ none swap sw 0 0
//192.168.0.10/data /mnt/db cifs ro,iocharset=utf8,username=#####,password=##### 0 0
새 파일은 다음과 같습니다.
# /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>
/dev/mapper/lubuntu--vg-root / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
UUID=########-####-####-####-############ /boot ext2 defaults 0 2
/dev/mapper/lubuntu--vg-swap_1 none swap sw 0 0
sudo mount -a
새 파일에서 이전 파일(아래)의 마지막 줄을 사용하고 싶지만 명령을 사용할 때 이전 파일이 이 작업을 수행하려면 무엇이 더 필요한지 잘 모르겠습니다.
//192.168.0.10/data /mnt/db cifs ro,iocharset=utf8,username=######,password=##### 0 0