mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 00:42:45 +00:00
34 lines
511 B
Plaintext
34 lines
511 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, netbsd]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pkgin
|
|
|
|
> Manage `pkgsrc` binary packages on NetBSD.
|
|
> More information: <https://pkgin.net/#usage>.
|
|
|
|
- Install a package:
|
|
|
|
`pkgin install {{package}}`
|
|
|
|
- Remove a package and its dependencies:
|
|
|
|
`pkgin remove {{package}}`
|
|
|
|
- Upgrade all packages:
|
|
|
|
`pkgin full-upgrade`
|
|
|
|
- Search for a package:
|
|
|
|
`pkgin search {{keyword}}`
|
|
|
|
- List installed packages:
|
|
|
|
`pkgin list`
|
|
|
|
- Remove unneeded dependencies:
|
|
|
|
`pkgin autoremove`
|