tldr/pages/linux/emerge.md
Agniva De Sarker 3da76e4150 Applying the snake_case convention throughout the repo (#967)
* Applying the snake_case convention throughout the repo

- Also removing the file extension where not needed
- Adding {{ }} on a few old pages

* Addressing concerns

- Added {{ }} where they were missed out
- Removed spaces inside {{ }}
- Reverting "file" to "filename" to make it clearer

* Fixing the comments on nc page
2016-07-22 22:24:06 +02:00

32 lines
563 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}}`