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