fakeroot: add page (#6562)

beep
Axel Navarro 2021-09-22 08:38:16 -03:00 committed by GitHub
parent 555faac0d2
commit 05ff190f23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
pages/linux/fakeroot.md Normal file
View File

@ -0,0 +1,28 @@
# fakeroot
> Run a command in an environment faking root privileges for file manipulation.
> More information: <https://manpages.debian.org/latest/fakeroot/fakeroot.1.html>.
- Start the default shell as fakeroot:
`fakeroot`
- Run a command as fakeroot:
`fakeroot -- {{command}} {{command_arguments}}`
- Run a command as fakeroot and save the environment to a file on exit:
`fakeroot -s {{path/to/file}} -- {{command}} {{command_arguments}}`
- Load a fakeroot environment and run a command as fakeroot:
`fakeroot -i {{path/to/file}} -- {{command}} {{command_arguments}}`
- Run a command keeping the real ownership of files instead of pretending they are owned by root:
`fakeroot --unknown-is-real -- {{command}} {{command_arguments}}`
- Display help:
`fakeroot --help`