mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
Add emerge.md
This commit is contained in:
parent
b2ede9d808
commit
5342cc83f5
1 changed files with 31 additions and 0 deletions
31
linux/emerge.md
Normal file
31
linux/emerge.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# emerge
|
||||
|
||||
> Gentoo Linux package manager utility
|
||||
|
||||
- synchronize all packages
|
||||
|
||||
`emerge --sync`
|
||||
|
||||
- update all packages, including dependencies
|
||||
|
||||
`emerge -uDNav @world`
|
||||
|
||||
- resume a failed updated, skipping the failing package
|
||||
|
||||
`emerge --resume --skipfirst`
|
||||
|
||||
- install a new package, with confirmation
|
||||
|
||||
`emerge -av {{package-name}}`
|
||||
|
||||
- remove a package, with confirmation
|
||||
|
||||
`emerge -Cav {{package-name}}`
|
||||
|
||||
- remove orphaned packages (that were installed only as dependencies)
|
||||
|
||||
`emerge -avc`
|
||||
|
||||
- search the package database for a keyword
|
||||
|
||||
`emerge -S {{keyword}}`
|
Loading…
Add table
Reference in a new issue