1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:02:09 +02:00
tldr/pages.ko/linux/genfstab.md
코드싸이 7598cffb1a
guake: fix typo, linux/g*: add Korean translation (#14704)
* linux/g*: add Korean translation

* guake: fix typo

* Update pages.ko/linux/genisoimage.md

Co-authored-by: Chooooo <contact@choo.ooo>

* linux/gnome-extensions: update Korean translation

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-11 12:04:46 +09:00

658 B

genfstab

Arch Linux 설치 스크립트로, fstab 파일에 추가할 수 있는 출력 생성. 더 많은 정보: https://manned.org/genfstab.8.

  • 볼륨 레이블을 기반으로 fstab 호환 출력을 표시:

genfstab -L {{경로/대상/마운트_포인트}}

  • 볼륨 UUID를 기반으로 fstab 호환 출력을 표시:

genfstab -U {{경로/대상/마운트_포인트}}

  • 일반적으로 fstab 파일을 생성하는 방법, 루트 권한 필요:

genfstab -U {{/mnt}} >> {{/mnt/etc/fstab}}

  • 볼륨을 fstab 파일에 추가하여 자동으로 마운트:

genfstab -U {{경로/대상/마운트_포인트}} | sudo tee -a /etc/fstab