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