1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 18:55:36 +02:00
tldr/pages/linux/emerge.md
2014-03-04 23:28:29 +11:00

31 lines
555 B
Markdown

# 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}}`