일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Houdini
- C# delegate
- c# winform
- 포인터
- vim
- 유니티
- dart 언어
- docker
- Algorithm
- 구조체
- Python
- github
- jupyter lab
- c# 윈폼
- Flutter
- HTML
- 깃
- c#
- C++
- Unity
- 다트 언어
- c# 추상 클래스
- jupyter
- 플러터
- gitlab
- Data Structure
- c언어
- 도커
- C언어 포인터
- git
Archives
- Today
- Total
목록우분투 마운트 (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