사용자 도구

사이트 도구


linux:partition

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
linux:partition [2020/07/12 16:32]
kwon37xi [Gnome Disk Utility]
linux:partition [2023/12/07 10:56] (현재)
kwon37xi
줄 3: 줄 3:
   * [[https://wiki.archlinux.org/index.php/fstab|fstab]]   * [[https://wiki.archlinux.org/index.php/fstab|fstab]]
   * [[http://ubuntuforums.org/showthread.php?t=1490708|How To Add or Auto Mount Linux Partitions fstab with ownership change]]   * [[http://ubuntuforums.org/showthread.php?t=1490708|How To Add or Auto Mount Linux Partitions fstab with ownership change]]
 +  * [[linux:lvm|LVM]]
 +  * [[linux:btrfs|btrfs]]
 +  * [[linux:uefi|Linux UEFI]]
  
 ===== 파티션 정보 보기 ===== ===== 파티션 정보 보기 =====
줄 27: 줄 30:
 </code> </code>
   * [[https://askubuntu.com/questions/695645/cant-get-my-ntfs-partitions-uuid-in-15-10|mount - Can't get my ntfs partitions UUID in 15.10 - PARTUUID만 있고 UUID가 없을 때]]   * [[https://askubuntu.com/questions/695645/cant-get-my-ntfs-partitions-uuid-in-15-10|mount - Can't get my ntfs partitions UUID in 15.10 - PARTUUID만 있고 UUID가 없을 때]]
 +
 +===== EFI Partition =====
 +  * 대부분의 경우 EFI 파티션은 FAT32 로 512MB 정도로 설정해야 올바로 작동한다.
 +  * [[linux:uefi|Linux UEFI]]
 +===== ext4 mount =====
 +  * [[https://unix.stackexchange.com/questions/169300/how-should-i-mount-my-ext4-partition-in-fstab|how should I mount my ext4 partition in fstab - Unix & Linux Stack Exchange]]
 +  * ''sudo blkid''(일반 권한으로는 모든 디스크 목록이 안나옴) 등으로 UUID 확인 후 ''/etc/fstab'' 설정
 +<code>
 +UUID=<UUID>    </mnt/point>   ext4    rw,relatime,discard      2
 +
 +</code>
 +
 ===== ntfs mount ===== ===== ntfs mount =====
   * [[https://wiki.archlinux.org/index.php/NTFS-3G|Arch NTFS-3G]]   * [[https://wiki.archlinux.org/index.php/NTFS-3G|Arch NTFS-3G]]
줄 52: 줄 67:
 or mount the volumeread-only with the 'ro' mount option.     or mount the volumeread-only with the 'ro' mount option.    
 </code> </code>
-  * Windows 8로 다시 부팅하여 **제어판 -> 전원관리 -> 시스템 설정 -> 전원 버튼**에서 **빠른 시작**을 끄 +  * Windows 8로 다시 부팅하여 **제어판 -> 전원관리 -> 시스템 설정 -> 전원 버튼**에서 **빠른 시작**을 끄거나 
-  * 관리자 권한으로 ''powercfg /h off'' 명령을 실행하고+  * 혹은 관리자 권한으로 ''powercfg /h off'' 명령을 실행하고
   * 다시 리눅스로 부팅한다.   * 다시 리눅스로 부팅한다.
 {{:linux:빠른시작.png|}} {{:linux:빠른시작.png|}}
줄 95: 줄 110:
 </code> </code>
  
-===== 기타 =====+===== disk encryption 디스크 암호화 LUKS ===== 
 +  * [[https://gist.github.com/luispabon/db2c9e5f6cc73bb37812a19a40e137bc#1-installation-media|Ubuntu + Windows 10 dualboot with LUKS encryption]] 
 +  * [[https://blog.theodo.com/2022/01/disk-encryption-with-tutorial/|Why You Should Encrypt Your Disk, and How To Do It on Ubuntu with a Dual Boot | Theodo]] 
 +  * [[https://bruceoutdoors.wordpress.com/2020/04/24/how-to-setup-luks2-encrypted-ubuntu-20-04-with-dual-boot/|How to Setup LUKS2 encrypted Ubuntu 20.04 With Dual Boot | Bruceoutdoors Blog of Blots]] 
 +  * [[https://www.mikekasberg.com/blog/2020/04/08/dual-boot-ubuntu-and-windows-with-encryption.html|How to Dual-Boot Ubuntu 20.04 and Windows 10 with Encryption · Mike Kasberg]] 
 +  * [[https://www.youtube.com/watch?v=YU97K8Xavcc|Encrypted dual boot install tutorial - Linux Mint and OEM Windows - YouTube]] 
 +  * [[https://ubuntu.com/blog/tpm-backed-full-disk-encryption-is-coming-to-ubuntu|TPM-backed Full Disk Encryption is coming to Ubuntu | Ubuntu]] 
 + 
 +===== VeraCrypt ===== 
 +  * https://veracrypt.fr/en/Home.html 
 +  * [[https://badayak.com/entry/%EC%9A%B0%EB%B6%84%ED%88%AC-%EC%95%94%ED%98%B8%ED%99%94-%EB%94%94%EC%8A%A4%ED%81%AC|우분투 암호화 디스크 만들기 베라크립트 :: 바다야크]] 
 + 
 +===== 참조 =====
   * [[http://ioriy2k.pe.kr/archives/7062|Ubuntu에서 SSD의 성능과 안정성을 높이는 방법]]   * [[http://ioriy2k.pe.kr/archives/7062|Ubuntu에서 SSD의 성능과 안정성을 높이는 방법]]
   * [[http://www.ivankuznetsov.com/2010/02/no-space-left-on-device-running-out-of-inodes.html|Ivan Kuznetsov › No space left on device – running out of Inodes]] : Disk 용량이 남았는데 no space 관련 오류 발생. inodes 가 너무 많음.   * [[http://www.ivankuznetsov.com/2010/02/no-space-left-on-device-running-out-of-inodes.html|Ivan Kuznetsov › No space left on device – running out of Inodes]] : Disk 용량이 남았는데 no space 관련 오류 발생. inodes 가 너무 많음.
 +  * [[https://itsfoss.com/check-mbr-or-gpt/|How to Check if Your System Uses MBR or GPT Partitioning]]
linux/partition.1594539123.txt.gz · 마지막으로 수정됨: 2020/07/12 16:32 저자 kwon37xi