How to Use OpenSUSE Package Manager

29/12/2020
Package managers are now an integral part of the Linux ecosystem. It’s a collection of software tools that’s responsible for automatic package installation, upgrade, configuration and removal from the OS in a consistent manner.

In the case of SUSE Linux (openSUSE, SUSE Enterprise, and derivatives), zypper and YaST are the package managers. While YaST (Yet another Setup Tool) is for administrating, setting up and configuring SUSE Linux, zypper is the CLI interface of the ZYpp package manager. ZYpp is at the core of both zypper and YaST.

In this article, we’ll be having a deep dive into the usage of zypper for all sorts of purposes.

Note: As zypper commands perform system-wide changes, these commands must be run as root. Otherwise, the commands will fail.

Without further ado, let’s get started!  All these examples are shown on openSUSE Tumbleweed. However, these commands are universal for the zypper package manager.

Zypper help

Running zypper without any command will print out a list of all the available commands.

$ zypper

It’s a big list! If you’re in need of help regarding any specific command, run the following command.

$ zypper help <command>

Updating the Zypper database

This is one of the most common functions of zypper to keep its local package database updated with the package server.

$ sudo zypper refresh

Instead of using “refresh”, you can also use the abbreviation “ref”.

$ sudo zypper ref

It’s also possible to force zypper to rebuild its local database. This can be useful in situations, for example, if the database is corrupted.

$ sudo zypper refresh -fdb

Update system packages

To grab and install all the latest package updates from openSUSE, run the following command.

$ sudo zypper update

However, I recommend using the following structure for maximum benefit.

$ sudo zypper fresh && sudo zypper update

If you’re interested in checking out the packages that have updates available, run the following command. Zypper will generate a list of available updates for you.

$ zypper list-updates –all

Installing a package

For installing a package, use the following command.

$ sudo zypper install vlc

There are some interesting abbreviations of zypper commands. In this case, the following command is also valid and will do the same job.

$ sudo zypper in vlc

If you have to install multiple packages at the same time, just include the package name one after another separated by a space.

$ sudo zypper install <package_1> <package_2><package_n>

When performing an action, zypper will ask for confirmation. To turn off the interactive mode, add “–non-interactive” or “-n” flag.

$ sudo zypper –non-interactive in vlc

sudo zypper -n in vlc

The wild card feature is also supported by zypper. For example, let’s try installing all the packages that start with the name

python.
$ sudo zypper in ‘python*’

Source install a package

Note: Before performing the following steps, don’t forget to check whether the source repository is activated. Otherwise, source installations won’t succeed. Enable source repo from “YaST Software Repositories”.

If you need to install the source package of a particular package, use the “source-install” flag.

$ sudo zypper source-install vlc

By default, this command will also prompt for installing all the build dependencies. To avoid the build dependencies, add the “-D” flag.

$ sudo zypper source-install -D vlc

In case you just want to install the build dependencies, use “-d” instead.

$ sudo zypper install source-install -d vlc

Searching a package

There are thousands of packages in the openSUSE repository. For performing a search using zypper, use the following structure.

$ zypper search <search_term>

For example, let’s search for all the packages with the term “python” on it.

$ zypper search python

Such searching can print out a LONG list of packages. In such a situation, using “grep” or exporting the result and then performing can offer some comfort.

The “search” option also has an abbreviation “se”.

$ zypper -n se <search_term>

Note that for searching, we didn’t have to use “sudo” at the beginning. This is because zypper isn’t performing any system-wide change.

Removing a package

If you want to get rid of a certain package, use the “remove” option.

$ sudo zypper remove <package_name>

For example, let’s remove VLC from the system.

$ sudo zypper remove vlc

Instead of “remove”, let’s use “rm”. It’s the abbreviation of the term “remove”.

$ sudo zypper rm vlc

If you want to skip the interactive mode, use the “–non-interactive” or “-n” flag.

$ sudo zypper –non-interactive rm vlc

$ sudo zypper -n rm vlc

Installing and removing at the same time

It’s an interesting feature of zypper that allows installing and removing packages at the same time! Let’s check it out.

For example, let’s install VLC while removing Python. In this example, the main task of zypper is installing, not removing. Here, the “-n” flag is used for convenience.

$ sudo zypper -n in vlc –python

Patch

This is an interesting part of the openSUSE ecosystem. While both patch and update operate the same way, both are fundamentally different. Confused?

In the case of “update”, in openSUSE’s term, will update the package to the latest version available from the repo. In the case of “patch”, however, it will only install package updates that are meant for bug and security fixes.

If you only install patches, it may or may not update all the packages. However, performing updates will make sure that all the latest packages are installed.

With that out of the way, let’s get started!

At first, installing the patch. The following command will install all the officially released patches.

$ sudo zypper patch

In my case, there’s nothing to do. If there’s any latest patch, the command will install it.

To see the list of available patches, use this one. It doesn’t require root permission to run.

$ zypper patches

Zypper can list all the patches that are not currently installed. Run the following command.

$ zypper list-patches

The “list-patches” is also available in the abbreviated form of “lp”.

$ zypper lp

Interested in listing only the patches that are marked as security fixes?

$ zypper lp –category security

To check the number of patches that are required, run this command.

$ sudo zypper patch-check

Repository management

Zypper offers seamless methods of managing all the repositories. Here are some of the commands that come really handy in a lot of situation.

We’ve already covered how to update the local database of all the repos.

$ sudo zypper refresh

Need a quick list of all the repositories?

$ zypper repos

We can also use “lr”, the abbreviated form of “repos”.

$ zypper lr

Need the URI of the repos? Just add “-u” flag after “lr” or “repos”.

$ zypper lr -u

If you didn’t know, the repositories of openSUSE are ordered in a hierarchy. To list the repositories based on their priority, use the “-p” flag.

$ zypper lr -p

When running “refresh”, Zypper will update the local database for all the repositories. For updating a specific repository, run the following command.

$ sudo zypper refresh <repo_alias>

Repos can be enabled/disabled without deleting them. In order to disable a particular repository, run the following command. Note that we need the repo number from the repository list.

$ sudo zypper mr -d <repo_number>

Need to enable a disabled repo? Let’s run the following command.

$ sudo zypper mr -e <repo_number>

Adding a new repository is also very simple. In this example, I’ll be adding the Packman. It’s an external repository that offers additional openSUSE packages. Depending on which version of openSUSE you’re running, the repo URI is going to change. However, the command structure will remain the same. Learn more about Packman

$ sudo zypper addrepo <repo_URI>

In the case of openSUSE Tumbleweed, the command will look something like this. Here, “ar” is the abbreviated form of “addrepo”.

$ sudo zypper ar -cfp 90 http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Tumbleweed/
 packman

For removing a repo, you need the repo alias. Grab the repo alias from the list of repos and use the following command.

$ sudo removerepo <repo_alias>

You can swap “removerepo” with its abbreviated form “rr”.

$ sudo rr <repo_alias>

Cache management

Caching is a useful mechanism where zypper can keep a copy of all the RPM packages it grabs from the internet in a specific location. Any time you ask zypper to install the same package, it first looks into the cache. If it’s in the cache, zypper uses the RPM package from the cache to perform the installation. This way, it can speed up the installation and save time and bandwidth.

The cache is stored in the following location. Each repo has its own dedicated folder under the directory.

$ tree /var/cache/zypp/packages

For cleaning the cache, run the following command.

$ sudo zypper clean

This will clean all the stored RPM packages from the cache. I recommend enabling caching unless you’re somehow constrained by the storage. The following command will enable caching for all the repositories in the system.

$ sudo zypper mr -ka

Final thoughts

Zypper packs a ton of features. While these zypper usage methods are more than enough for regular users, there are plenty of advanced features that were not featured here.

For the full zypper documentation, check out the man page.

$ man zypper

Enjoy!

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Best Linux Distros for Beginners

Do you feel that you’ve had enough hearing about Linux and never trying it yourself? You’re not alone! Many people...
28/12/2020

Định nghĩa về proxy và tại sao bạn cần một proxy.

H2: Định nghĩa về proxy Proxy (còn được gọi là máy chủ ủy quyền) là một máy chủ trung gian giữa...
27/02/2023

Manjaro Deepin 16.08 released with Deepin Desktop v15.3

The release of Manjaro Deepin 16.08 to the Manjaro Community was made available on manjaro website. Manjaro is a user-friendly...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Thuê mua proxy V6 uy tín, chất lượng tại đâu?
11/05/2024

Thuê mua proxy Tiktok tăng doanh thu, hiệu quả cao
11/05/2024

Thuê mua proxy xoay ở đâu uy tín, chất lượng, giá tốt?
11/05/2024

Thuê mua proxy game nâng cao trải nghiệm trò chơi
10/05/2024

Thuê mua proxy Airdrop tốc độ nhanh, hiệu quả cực tốt
10/05/2024