1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 15:02:07 +02:00
tldr/pages/linux/zypper.md
cyqsimon 2d4f0ad33d
linux package managers: add link to ArchWiki Rosetta (#9507)
Affected pages: apt, dnf, dpkg, emerge, pacman, rpm, yum, zypper
2022-12-05 10:57:55 +10:00

29 lines
641 B
Markdown

# zypper
> SUSE & openSUSE package management utility.
> For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
> More information: <https://en.opensuse.org/SDB:Zypper_manual>.
- Synchronize list of packages and versions available:
`zypper refresh`
- Install a new package:
`zypper install {{package}}`
- Remove a package:
`zypper remove {{package}}`
- Upgrade installed packages to the newest available versions:
`zypper update`
- Search package via keyword:
`zypper search {{keyword}}`
- Show information related to configured repositories:
`zypper repos --sort-by-priority`