일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- github
- Houdini
- Python
- c# winform
- 유니티
- 깃
- 플러터
- Algorithm
- C# delegate
- docker
- C++
- c# 추상 클래스
- C언어 포인터
- Flutter
- gitlab
- dart 언어
- c# 윈폼
- jupyter
- HTML
- jupyter lab
- 다트 언어
- vim
- c언어
- Data Structure
- 구조체
- 포인터
- c#
- Unity
- git
- 도커
Archives
- Today
- Total
목록NTFS (2)
nomad-programmer

컴퓨터를 재부팅할때마다 마운트를 하고 싶다면, /etc/fstab 을 활용하면 된다. 마운트를 하려면 디스크의 주소를 알아야 한다. (ex: /dev/sdd1) // 마운트 할 디스크의 uuid 확인 sudo fdisk -l // 혹은 ls -l /dev/disk/by-uuid 디스크의 uuid를 확인했다면, fstab에 등록한다. # my local disk UUID=abcd1234 /media/HDD_4TB ntfs defaults,hide_hid_files,windows_names,locale=ko_KR.utf8,umask=0022,uid=1000,gid=1000 0 0 UUID=efgh5678 /media/NAS_8TB ntfs defaults,hide_hid_files,windows_names,..
OS/Linux
2020. 1. 5. 15:28