1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:22:07 +02:00
tldr/pages.ko/linux/setfacl.md
코드싸이 16f2c3ed79
shnsplit: fix typo, systemctl: update Korean translation, linux/s*: add Korean translation (#14715)
* linux/s*: add Korean translation

* systemctl: update Korean translation

* Update pages.ko/linux/sqfscat.md

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

* Update pages.ko/linux/shar.md

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

* Update pages.ko/linux/sqfstar.md

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

* shnsplit: fix typo

* semanage: update Korean translation

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-11 15:05:30 +09:00

626 B

setfacl

파일 접근 제어 목록(ACL) 설정. 더 많은 정보: https://manned.org/setfacl.

  • [u]사용자에게 읽기 및 쓰기 권한으로 파일의 ACL [m]수정:

setfacl --modify u:{{사용자명}}:rw {{경로/대상/파일_또는_폴더}}

  • 모든 사용자에 대한 파일의 기본 ACL [m]수정:

setfacl --modify --default u::rw {{경로/대상/파일_또는_폴더}}

  • 파일의 사용자에 대한 ACL 제거:

setfacl --remove u:{{사용자명}} {{경로/대상/파일_또는_폴더}}

  • 파일의 모든 ACL 항목 제거:

setfacl --remove-all {{경로/대상/파일_또는_폴더}}