우분투로 내장 HDD 자동 마운트
1547 단어 Linux 명령우분투ubuntu16.04리눅스
비망록으로 간단히 정리하십시오.
내장 HDD 정보 확인
$ sudo blkid
에서 UUID 및 포맷 방법을 확인하십시오.
여기서 필요한 것은 UUID와 TYPE입니다.
이번에는 항상/dev/sdb3을 마운트하고 싶으므로 sdb3의 UUID와 TYPE을 사용합니다.
자동 마운트하려는 파티션 쓰기
/etc/fstab에 추가sudo vi /etc/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/sda6 during installation
UUID=5b9726db-9f59-470f-9272-2476153e5c35 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=6AE4-9387 /boot/efi vfat umask=0077 0 1
# swap was on /dev/sda7 during installation
UUID=e20e3ebc-fb16-4e86-96d0-039ed1c416ed none swap sw 0 0
UUID=2832585D325831D4 /mnt/dataset ntfs defaults 0 0
위와 같이 마운트 할 파티션의 정보를 추가하십시오.
이번에는 options를 defaults, dump, pass를 각각 0으로, 마운트 대상 디렉토리를/mnt/dataset으로 설정했습니다.
마운트 확인
sudo mount -a
로 마운트되었는지 확인.
Reference
이 문제에 관하여(우분투로 내장 HDD 자동 마운트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/k-Mata/items/276741f7fbfa02e9b7e9
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
/etc/fstab에 추가
sudo vi /etc/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/sda6 during installation
UUID=5b9726db-9f59-470f-9272-2476153e5c35 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=6AE4-9387 /boot/efi vfat umask=0077 0 1
# swap was on /dev/sda7 during installation
UUID=e20e3ebc-fb16-4e86-96d0-039ed1c416ed none swap sw 0 0
UUID=2832585D325831D4 /mnt/dataset ntfs defaults 0 0
위와 같이 마운트 할 파티션의 정보를 추가하십시오.
이번에는 options를 defaults, dump, pass를 각각 0으로, 마운트 대상 디렉토리를/mnt/dataset으로 설정했습니다.
마운트 확인
sudo mount -a
로 마운트되었는지 확인.
Reference
이 문제에 관하여(우분투로 내장 HDD 자동 마운트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/k-Mata/items/276741f7fbfa02e9b7e9
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(우분투로 내장 HDD 자동 마운트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/k-Mata/items/276741f7fbfa02e9b7e9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)