일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- c언어
- git
- github
- jupyter lab
- C++
- vim
- 다트 언어
- gitlab
- 도커
- Data Structure
- jupyter
- 깃
- 포인터
- 유니티
- Houdini
- c#
- HTML
- dart 언어
- C언어 포인터
- Python
- docker
- 플러터
- c# winform
- Unity
- Algorithm
- c# 추상 클래스
- C# delegate
- Flutter
- c# 윈폼
- 구조체
Archives
- Today
- Total
목록ntfs 마운트 (1)
nomad-programmer
[Linux] NTFS 디스크 자동 마운트
컴퓨터를 재부팅할때마다 마운트를 하고 싶다면, /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