Archive for the ‘Linux System Administration’ tag
The following are samples of creating, changing, and removing users and groups in Linux. These are the command-line options in the event you don’t have access to the GUI tools.
Managing Users:
Adding a user:
The prototype is:
# useradd [-u uid] [-g initial_group] [-G group[,...]] \
> [-d home_directory] [-s shell] [-c comment] \
> [-m [-k skeleton_directory]] [-f inactive_time] \
> [-e expire_date] -n username |
# useradd [-u uid] [-g initial_group] [-G group[,...]] \
> [-d home_directory] [-s shell] [-c comment] \
> [-m [-k skeleton_directory]] [-f inactive_time] \
> [-e expire_date] -n username
A sample implementation of the prototype is:
# useradd -u 502 -g dba -G users,root \
> -d /u02/oracle -s /bin/tcsh -c "Oracle Account" \
> -f 7 -e 12/31/03 -n jdoe |
# useradd -u 502 -g dba -G users,root \
> -d /u02/oracle -s /bin/tcsh -c "Oracle Account" \
> -f 7 -e 12/31/03 -n jdoe
Modifying a user:
The prototype is:
# usermod [-u uid] [-g initial_group] [-G group[,...]] \
> [-d home_directory] [-s shell] [-c comment] \
> [-l new_username ] [-f inactive_time] [-e expire_date]
> username |
# usermod [-u uid] [-g initial_group] [-G group[,...]] \
> [-d home_directory] [-s shell] [-c comment] \
> [-l new_username ] [-f inactive_time] [-e expire_date]
> username
A sample implementation of the prototype is:
# usermod -u 502 -g dba -G users,root
> -d /u02/oracle -s /bin/bash -c "Senior DBA"
> -l sdba -f 7 -e 12/31/03 jdoe |
# usermod -u 502 -g dba -G users,root
> -d /u02/oracle -s /bin/bash -c "Senior DBA"
> -l sdba -f 7 -e 12/31/03 jdoe
Removing a user:
The prototype is:
A sample implementation of the prototype is:
Managing Groups:
Adding a group:
The prototype is:
# groupadd [-g gid] [-rf] groupname |
# groupadd [-g gid] [-rf] groupname
A sample implementation of the prototype is:
Modifying a group:
The prototype is:
# groupmod [-g gid] [-n new_group_name] groupname |
# groupmod [-g gid] [-n new_group_name] groupname
A sample implementation of the prototype is:
# groupmod -g 500 -n dba oinstall |
# groupmod -g 500 -n dba oinstall
Deleting a group:
The prototype is:
A sample implementation of the prototype is:
Installing a GUI Manager for Users and Groups:
If you’re the root user or enjoy sudoer privileges, you can install the following GUI package for these tasks:
yum install -y system-config-users |
yum install -y system-config-users
You can verify the GUI user management tool is present with the following command:
which system-config-users |
which system-config-users
It should return this:
You can run the GUI user management tool from the root user account or any sudoer account. The following shows how to launch the GUI User Manager from a sudoer account:
As always, I hope this helps those trying to figure out the proper syntax.
How to install and configure VSCode on AlmaLinux (Red Hat Enterprise 9). This is a step-by-step version of the Visual Studio documentation. The first thing you do is download the Microsoft packages:
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc |
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
Next, create the yum repository with the following command:
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo' |
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'
It creates the following vscode.repo file in the /etc/yum.repos.d directory:
[code]
name=Visual Studio Code
baseurl=https://packages.microsoft.com/yumrepos/vscode
enabled=1
gpgcheck=1
gpgkey=https://packages.microsoft.com/keys/microsoft.asc |
[code]
name=Visual Studio Code
baseurl=https://packages.microsoft.com/yumrepos/vscode
enabled=1
gpgcheck=1
gpgkey=https://packages.microsoft.com/keys/microsoft.asc
Then, update the package cache and install the package using dnf dnf, like this as the sudoer user:
The log file for this is:
Display detailed console log →
AlmaLinux 9 - AppStream 2.9 MB/s | 7.0 MB 00:02
AlmaLinux 9 - BaseOS 1.6 MB/s | 2.0 MB 00:01
AlmaLinux 9 - Extras 19 kB/s | 17 kB 00:00
Extra Packages for Enterprise Linux 9 - x86_64 1.3 MB/s | 12 MB 00:09
PostgreSQL common RPMs for RHEL / Rocky 9 - x86 103 B/s | 195 B 00:01
PostgreSQL common RPMs for RHEL / Rocky 9 - x86 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL common RPMs for RHEL / Rocky 9 - x86 114 kB/s | 341 kB 00:02
PostgreSQL 15 for RHEL / Rocky 9 - x86_64 159 B/s | 195 B 00:01
PostgreSQL 15 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 15 for RHEL / Rocky 9 - x86_64 47 kB/s | 159 kB 00:03
PostgreSQL 14 for RHEL / Rocky 9 - x86_64 114 B/s | 195 B 00:01
PostgreSQL 14 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 14 for RHEL / Rocky 9 - x86_64 129 kB/s | 406 kB 00:03
PostgreSQL 13 for RHEL / Rocky 9 - x86_64 103 B/s | 195 B 00:01
PostgreSQL 13 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 13 for RHEL / Rocky 9 - x86_64 127 kB/s | 384 kB 00:03
PostgreSQL 12 for RHEL / Rocky 9 - x86_64 139 B/s | 195 B 00:01
PostgreSQL 12 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 12 for RHEL / Rocky 9 - x86_64 137 kB/s | 349 kB 00:02
PostgreSQL 11 for RHEL / Rocky 9 - x86_64 159 B/s | 195 B 00:01
PostgreSQL 11 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 11 for RHEL / Rocky 9 - x86_64 102 kB/s | 350 kB 00:03
PostgreSQL 10 for RHEL / Rocky 9 - x86_64 113 B/s | 195 B 00:01
PostgreSQL 10 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 10 for RHEL / Rocky 9 - x86_64 66 kB/s | 197 kB 00:02
Visual Studio Code 7.5 MB/s | 31 MB 00:04
NetworkManager.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-adsl.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-bluetooth.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-config-server.noarch 1:1.40.0-1.el9 baseos
NetworkManager-libnm.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-team.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-tui.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-wifi.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-wwan.x86_64 1:1.40.0-1.el9 baseos
aardvark-dns.x86_64 2:1.1.0-5.el9_1 appstream
almalinux-gpg-keys.x86_64 9.1-1.9.el9 baseos
almalinux-release.x86_64 9.1-1.9.el9 baseos
almalinux-repos.x86_64 9.1-1.9.el9 baseos
alsa-lib.x86_64 1.2.7.2-1.el9 appstream
alsa-ucm.noarch 1.2.7.2-1.el9 appstream
alsa-utils.x86_64 1.2.7-1.el9 appstream
annobin.x86_64 10.73-3.el9 appstream
ansible-core.x86_64 2.13.3-1.el9 appstream
at.x86_64 3.1.23-11.el9 baseos
audit.x86_64 3.0.7-103.el9 baseos
audit-libs.x86_64 3.0.7-103.el9 baseos
augeas-libs.x86_64 1.13.0-2.el9 appstream
authselect.x86_64 1.2.5-1.el9 baseos
authselect-libs.x86_64 1.2.5-1.el9 baseos
bash.x86_64 5.1.8-5.el9 baseos
bcc.x86_64 0.24.0-4.el9 appstream
bcc-tools.x86_64 0.24.0-4.el9 appstream
bind-libs.x86_64 32:9.16.23-5.el9_1 appstream
bind-license.noarch 32:9.16.23-5.el9_1 appstream
bind-utils.x86_64 32:9.16.23-5.el9_1 appstream
binutils.x86_64 2.35.2-24.el9 baseos
binutils-gold.x86_64 2.35.2-24.el9 baseos
bluez.x86_64 5.64-2.el9 baseos
bluez-libs.x86_64 5.64-2.el9 baseos
bluez-obexd.x86_64 5.64-2.el9 appstream
boost-filesystem.x86_64 1.75.0-8.el9 appstream
boost-regex.x86_64 1.75.0-8.el9 appstream
boost-system.x86_64 1.75.0-8.el9 appstream
boost-thread.x86_64 1.75.0-8.el9 appstream
bpftool.x86_64 5.14.0-162.6.1.el9_1 baseos
bpftrace.x86_64 0.13.1-1.el9 appstream
buildah.x86_64 1:1.27.2-2.el9_1 appstream
cargo.x86_64 1.62.1-1.el9 appstream
checkpolicy.x86_64 3.4-1.el9 appstream
chrony.x86_64 4.2-1.el9 baseos
clang-libs.x86_64 14.0.6-1.el9 appstream
clang-resource-filesystem.x86_64 14.0.6-1.el9 appstream
clevis.x86_64 18-106.el9 appstream
clevis-luks.x86_64 18-106.el9 appstream
cockpit.x86_64 276.1-1.el9 baseos
cockpit-bridge.x86_64 276.1-1.el9 baseos
cockpit-packagekit.noarch 276.1-1.el9 appstream
cockpit-podman.noarch 53-1.el9 appstream
cockpit-storaged.noarch 276.1-1.el9 appstream
cockpit-system.noarch 276.1-1.el9 baseos
cockpit-ws.x86_64 276.1-1.el9 baseos
compiler-rt.x86_64 14.0.6-1.el9 appstream
conmon.x86_64 2:2.1.4-1.el9 appstream
container-selinux.noarch 3:2.189.0-1.el9 appstream
containernetworking-plugins.x86_64 1:1.1.1-3.el9 appstream
containers-common.x86_64 2:1-45.el9_1 appstream
coreutils.x86_64 8.32-32.el9 baseos
coreutils-common.x86_64 8.32-32.el9 baseos
cpp.x86_64 11.3.1-2.1.el9.alma appstream
crash.x86_64 8.0.1-2.el9.alma appstream
criu.x86_64 3.17-4.el9 appstream
criu-libs.x86_64 3.17-4.el9 appstream
cronie.x86_64 1.5.7-8.el9 baseos
cronie-anacron.x86_64 1.5.7-8.el9 baseos
crun.x86_64 1.5-1.el9 appstream
crypto-policies.noarch 20220815-1.git0fbe86f.el9 baseos
crypto-policies-scripts.noarch 20220815-1.git0fbe86f.el9 baseos
cryptsetup.x86_64 2.4.3-5.el9 baseos
cryptsetup-libs.x86_64 2.4.3-5.el9 baseos
cups.x86_64 1:2.3.3op2-16.el9 appstream
cups-client.x86_64 1:2.3.3op2-16.el9 appstream
cups-filesystem.noarch 1:2.3.3op2-16.el9 appstream
cups-ipptool.x86_64 1:2.3.3op2-16.el9 appstream
cups-libs.x86_64 1:2.3.3op2-16.el9 baseos
curl.x86_64 7.76.1-19.el9 baseos
dbus.x86_64 1:1.12.20-6.el9 baseos
dbus-broker.x86_64 28-7.el9 baseos
desktop-file-utils.x86_64 0.26-6.el9 appstream
device-mapper.x86_64 9:1.02.185-3.el9 baseos
device-mapper-event.x86_64 9:1.02.185-3.el9 baseos
device-mapper-event-libs.x86_64 9:1.02.185-3.el9 baseos
device-mapper-libs.x86_64 9:1.02.185-3.el9 baseos
device-mapper-multipath.x86_64 0.8.7-12.el9_1.1 baseos
device-mapper-multipath-libs.x86_64 0.8.7-12.el9_1.1 baseos
device-mapper-persistent-data.x86_64 0.9.0-13.el9 baseos
dnf.noarch 4.12.0-4.el9.alma baseos
dnf-data.noarch 4.12.0-4.el9.alma baseos
dnf-plugins-core.noarch 4.1.0-3.el9 baseos
dnsmasq.x86_64 2.85-5.el9 appstream
dotnet-host.x86_64 7.0.1-1.el9_1 appstream
dotnet-hostfxr-7.0.x86_64 7.0.1-1.el9_1 appstream
dotnet-runtime-7.0.x86_64 7.0.1-1.el9_1 appstream
dracut.x86_64 057-13.git20220816.el9 baseos
dracut-config-rescue.x86_64 057-13.git20220816.el9 baseos
dracut-network.x86_64 057-13.git20220816.el9 baseos
dracut-squash.x86_64 057-13.git20220816.el9 baseos
dyninst.x86_64 12.1.0-1.el9 appstream
e2fsprogs.x86_64 1.46.5-3.el9 baseos
e2fsprogs-libs.x86_64 1.46.5-3.el9 baseos
elfutils.x86_64 0.187-5.el9 baseos
elfutils-debuginfod-client.x86_64 0.187-5.el9 baseos
elfutils-default-yama-scope.noarch 0.187-5.el9 baseos
elfutils-devel.x86_64 0.187-5.el9 appstream
elfutils-libelf.x86_64 0.187-5.el9 baseos
elfutils-libelf-devel.x86_64 0.187-5.el9 appstream
elfutils-libs.x86_64 0.187-5.el9 baseos
epel-release.noarch 9-4.el9 epel
evince.x86_64 40.5-2.el9 appstream
evince-libs.x86_64 40.5-2.el9 appstream
evince-nautilus.x86_64 40.5-2.el9 appstream
evince-previewer.x86_64 40.5-2.el9 appstream
evince-thumbnailer.x86_64 40.5-2.el9 appstream
evolution-data-server.x86_64 3.40.4-6.el9 appstream
evolution-data-server-langpacks.noarch 3.40.4-6.el9 appstream
expat.x86_64 2.4.9-1.el9_1 baseos
file.x86_64 5.39-10.el9 baseos
file-libs.x86_64 5.39-10.el9 baseos
firefox.x86_64 102.6.0-1.el9_1.alma appstream
firewalld.noarch 1.1.1-3.el9 baseos
firewalld-filesystem.noarch 1.1.1-3.el9 baseos
flac-libs.x86_64 1.3.3-10.el9 appstream
flatpak.x86_64 1.12.7-2.el9 appstream
flatpak-libs.x86_64 1.12.7-2.el9 appstream
flatpak-selinux.noarch 1.12.7-2.el9 appstream
flatpak-session-helper.x86_64 1.12.7-2.el9 appstream
fwupd.x86_64 1.7.9-1.el9.alma.1 baseos
fwupd-plugin-flashrom.x86_64 1.7.9-1.el9.alma.1 appstream
gcc.x86_64 11.3.1-2.1.el9.alma appstream
gcc-c++.x86_64 11.3.1-2.1.el9.alma appstream
gcc-plugin-annobin.x86_64 11.3.1-2.1.el9.alma appstream
gdb.x86_64 10.2-10.el9 appstream
gdb-headless.x86_64 10.2-10.el9 appstream
gdm.x86_64 1:40.1-17.el9_1 appstream
gjs.x86_64 1.68.6-1.el9 appstream
glibc.x86_64 2.34-40.el9 baseos
glibc-all-langpacks.x86_64 2.34-40.el9 baseos
glibc-common.x86_64 2.34-40.el9 baseos
glibc-devel.x86_64 2.34-40.el9 appstream
glibc-gconv-extra.x86_64 2.34-40.el9 baseos
glibc-headers.x86_64 2.34-40.el9 appstream
glibc-langpack-en.x86_64 2.34-40.el9 baseos
gnome-classic-session.noarch 40.7-2.el9 appstream
gnome-control-center.x86_64 40.0-27.el9 appstream
gnome-control-center-filesystem.noarch 40.0-27.el9 appstream
gnome-initial-setup.x86_64 40.4-3.el9 appstream
gnome-screenshot.x86_64 40.0-4.el9 appstream
gnome-settings-daemon.x86_64 40.0.1-8.el9 appstream
gnome-shell.x86_64 40.10-3.el9 appstream
gnome-shell-extension-apps-menu.noarch 40.7-2.el9 appstream
gnome-shell-extension-common.noarch 40.7-2.el9 appstream
gnome-shell-extension-launch-new-instance.noarch
40.7-2.el9 appstream
gnome-shell-extension-places-menu.noarch 40.7-2.el9 appstream
gnome-shell-extension-window-list.noarch 40.7-2.el9 appstream
gnome-software.x86_64 41.5-1.el9 appstream
gnome-system-monitor.x86_64 40.1-3.el9 appstream
gnome-tour.x86_64 40.1-2.el9 appstream
google-noto-fonts-common.noarch 20201206-4.el9 appstream
google-noto-sans-gurmukhi-fonts.noarch 20201206-4.el9 appstream
google-noto-sans-sinhala-vf-fonts.noarch 20201206-4.el9 appstream
grafana.x86_64 7.5.15-3.el9 appstream
grafana-pcp.x86_64 3.2.0-3.el9 appstream
grub2-common.noarch 1:2.06-46.el9.alma baseos
grub2-pc.x86_64 1:2.06-46.el9.alma baseos
grub2-pc-modules.noarch 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-46.el9.alma baseos
grub2-tools-efi.x86_64 1:2.06-46.el9.alma baseos
grub2-tools-extra.x86_64 1:2.06-46.el9.alma baseos
grub2-tools-minimal.x86_64 1:2.06-46.el9.alma baseos
grubby.x86_64 8.40-61.el9 baseos
gtk4.x86_64 4.4.1-2.el9 appstream
gvfs.x86_64 1.48.1-4.el9 appstream
gvfs-client.x86_64 1.48.1-4.el9 appstream
gvfs-fuse.x86_64 1.48.1-4.el9 appstream
gvfs-goa.x86_64 1.48.1-4.el9 appstream
gvfs-gphoto2.x86_64 1.48.1-4.el9 appstream
gvfs-mtp.x86_64 1.48.1-4.el9 appstream
gvfs-smb.x86_64 1.48.1-4.el9 appstream
gzip.x86_64 1.12-1.el9 baseos
hicolor-icon-theme.noarch 0.17-13.el9 appstream
httpd.x86_64 2.4.53-7.el9 appstream
httpd-filesystem.noarch 2.4.53-7.el9 appstream
httpd-tools.x86_64 2.4.53-7.el9 appstream
hwdata.noarch 0.348-9.5.el9 baseos
hyperv-daemons.x86_64 0-0.40.20190303git.el9 appstream
hyperv-daemons-license.noarch 0-0.40.20190303git.el9 appstream
hypervfcopyd.x86_64 0-0.40.20190303git.el9 appstream
hypervkvpd.x86_64 0-0.40.20190303git.el9 appstream
hypervvssd.x86_64 0-0.40.20190303git.el9 appstream
infiniband-diags.x86_64 41.0-3.el9 appstream
inih.x86_64 49-6.el9 baseos
initscripts.x86_64 10.11.5-1.el9 baseos
initscripts-rename-device.x86_64 10.11.5-1.el9 baseos
initscripts-service.noarch 10.11.5-1.el9 baseos
iotop.noarch 0.6-30.el9 baseos
iproute.x86_64 5.18.0-1.el9 baseos
iproute-tc.x86_64 5.18.0-1.el9 baseos
iptables-libs.x86_64 1.8.8-4.el9 baseos
iptables-nft.x86_64 1.8.8-4.el9 baseos
irqbalance.x86_64 2:1.9.0-3.el9 baseos
iscsi-initiator-utils.x86_64 6.2.1.4-3.git2a8f9d8.el9 baseos
iscsi-initiator-utils-iscsiuio.x86_64 6.2.1.4-3.git2a8f9d8.el9 baseos
iwl100-firmware.noarch 39.31.5.1-127.el9 baseos
iwl1000-firmware.noarch 1:39.31.5.1-127.el9 baseos
iwl105-firmware.noarch 18.168.6.1-127.el9 baseos
iwl135-firmware.noarch 18.168.6.1-127.el9 baseos
iwl2000-firmware.noarch 18.168.6.1-127.el9 baseos
iwl2030-firmware.noarch 18.168.6.1-127.el9 baseos
iwl3160-firmware.noarch 1:25.30.13.0-127.el9 baseos
iwl5000-firmware.noarch 8.83.5.1_1-127.el9 baseos
iwl5150-firmware.noarch 8.24.2.2-127.el9 baseos
iwl6000g2a-firmware.noarch 18.168.6.1-127.el9 baseos
iwl6000g2b-firmware.noarch 18.168.6.1-127.el9 baseos
iwl6050-firmware.noarch 41.28.5.1-127.el9 baseos
iwl7260-firmware.noarch 1:25.30.13.0-127.el9 baseos
kernel.x86_64 5.14.0-162.6.1.el9_1 baseos
kernel-core.x86_64 5.14.0-162.6.1.el9_1 baseos
kernel-devel.x86_64 5.14.0-162.6.1.el9_1 appstream
kernel-headers.x86_64 5.14.0-162.6.1.el9_1 appstream
kernel-modules.x86_64 5.14.0-162.6.1.el9_1 baseos
kernel-tools.x86_64 5.14.0-162.6.1.el9_1 baseos
kernel-tools-libs.x86_64 5.14.0-162.6.1.el9_1 baseos
kexec-tools.x86_64 2.0.24-5.el9 baseos
kmod-kvdo.x86_64 8.2.0.21-47.el9_1 baseos
kpartx.x86_64 0.8.7-12.el9_1.1 baseos
kpatch.noarch 0.9.4-3.el9 baseos
kpatch-dnf.noarch 0.4-3.el9 baseos
krb5-libs.x86_64 1.19.1-24.el9_1 baseos
ldns.x86_64 1.7.1-11.el9 appstream
ledmon.x86_64 0.96-4.el9 baseos
libarchive.x86_64 3.5.3-3.el9 baseos
libbabeltrace.x86_64 1.5.8-10.el9 appstream
libbasicobjects.x86_64 0.1.1-53.el9 baseos
libblockdev.x86_64 2.25-14.el9 appstream
libblockdev-crypto.x86_64 2.25-14.el9 appstream
libblockdev-fs.x86_64 2.25-14.el9 appstream
libblockdev-loop.x86_64 2.25-14.el9 appstream
libblockdev-lvm.x86_64 2.25-14.el9 appstream
libblockdev-mdraid.x86_64 2.25-14.el9 appstream
libblockdev-part.x86_64 2.25-14.el9 appstream
libblockdev-swap.x86_64 2.25-14.el9 appstream
libblockdev-utils.x86_64 2.25-14.el9 appstream
libbpf.x86_64 2:0.6.0-1.el9 baseos
libcollection.x86_64 0.7.0-53.el9 baseos
libcom_err.x86_64 1.46.5-3.el9 baseos
libcurl.x86_64 7.76.1-19.el9 baseos
libdhash.x86_64 0.5.0-53.el9 baseos
libdnf.x86_64 0.67.0-3.el9.alma baseos
libdrm.x86_64 2.4.111-1.el9 appstream
libertas-sd8787-firmware.noarch 20220708-127.el9 baseos
libestr.x86_64 0.1.11-4.el9 appstream
libgcc.x86_64 11.3.1-2.1.el9.alma baseos
libgomp.x86_64 11.3.1-2.1.el9.alma baseos
libgtop2.x86_64 2.40.0-9.el9 appstream
libibumad.x86_64 41.0-3.el9 baseos
libibverbs.x86_64 41.0-3.el9 baseos
libini_config.x86_64 1.3.1-53.el9 baseos
libipa_hbac.x86_64 2.7.3-4.el9_1.1 baseos
libldb.x86_64 2.5.2-1.el9 baseos
libnftnl.x86_64 1.2.2-1.el9 baseos
libnl3.x86_64 3.7.0-1.el9 baseos
libnl3-cli.x86_64 3.7.0-1.el9 baseos
libnma.x86_64 1.8.40-1.el9 appstream
libomp.x86_64 14.0.6-1.el9 appstream
libomp-devel.x86_64 14.0.6-1.el9 appstream
libpath_utils.x86_64 0.2.1-53.el9 baseos
libref_array.x86_64 0.1.5-53.el9 baseos
librepo.x86_64 1.14.2-3.el9 baseos
libsmbclient.x86_64 4.16.4-101.el9 baseos
libsolv.x86_64 0.7.22-1.el9 baseos
libss.x86_64 1.46.5-3.el9 baseos
libsss_certmap.x86_64 2.7.3-4.el9_1.1 baseos
libsss_idmap.x86_64 2.7.3-4.el9_1.1 baseos
libsss_nss_idmap.x86_64 2.7.3-4.el9_1.1 baseos
libsss_sudo.x86_64 2.7.3-4.el9_1.1 baseos
libstdc++.x86_64 11.3.1-2.1.el9.alma baseos
libstdc++-devel.x86_64 11.3.1-2.1.el9.alma appstream
libtdb.x86_64 1.4.6-1.el9 baseos
libteam.x86_64 1.31-14.el9 baseos
libtevent.x86_64 0.12.0-0.el9 baseos
libtirpc.x86_64 1.3.3-0.el9 baseos
libusbx.x86_64 1.0.26-1.el9 baseos
libuser.x86_64 0.63-11.el9 baseos
libvirt-libs.x86_64 8.5.0-7.el9_1 appstream
libwbclient.x86_64 4.16.4-101.el9 baseos
libwpe.x86_64 1.10.0-4.el9 appstream
linux-firmware.noarch 20220708-127.el9 baseos
linux-firmware-whence.noarch 20220708-127.el9 baseos
lksctp-tools.x86_64 1.0.19-2.el9 baseos
llvm-libs.x86_64 14.0.6-1.el9 appstream
logrotate.x86_64 3.18.0-7.el9 baseos
lshw.x86_64 B.02.19.2-9.el9 baseos
lvm2.x86_64 9:2.03.16-3.el9 baseos
lvm2-libs.x86_64 9:2.03.16-3.el9 baseos
man-pages.noarch 5.10-5.el9 baseos
mcelog.x86_64 3:182-3.el9 baseos
mdadm.x86_64 4.2-6.el9 baseos
mesa-dri-drivers.x86_64 22.1.5-2.el9 appstream
mesa-filesystem.x86_64 22.1.5-2.el9 appstream
mesa-libEGL.x86_64 22.1.5-2.el9 appstream
mesa-libGL.x86_64 22.1.5-2.el9 appstream
mesa-libgbm.x86_64 22.1.5-2.el9 appstream
mesa-libglapi.x86_64 22.1.5-2.el9 appstream
mesa-libxatracker.x86_64 22.1.5-2.el9 appstream
mesa-vulkan-drivers.x86_64 22.1.5-2.el9 appstream
microcode_ctl.noarch 4:20220809-1.el9 baseos
mod_lua.x86_64 2.4.53-7.el9 appstream
mod_ssl.x86_64 1:2.4.53-7.el9 appstream
mokutil.x86_64 2:0.4.0-9.el9 baseos
mozilla-filesystem.x86_64 1.9-30.el9 appstream
mutter.x86_64 40.9-10.el9_1 appstream
nautilus.x86_64 40.2-9.el9_1 appstream
nautilus-extensions.x86_64 40.2-9.el9_1 appstream
netavark.x86_64 2:1.1.0-7.el9_1 appstream
netronome-firmware.noarch 20220708-127.el9 baseos
nftables.x86_64 1:1.0.4-2.el9 baseos
nginx-filesystem.noarch 1:1.20.1-13.el9.alma appstream
nm-connection-editor.x86_64 1.26.0-1.el9 appstream
nvme-cli.x86_64 2.0-4.el9 baseos
open-vm-tools.x86_64 12.0.5-2.el9 appstream
open-vm-tools-desktop.x86_64 12.0.5-2.el9 appstream
openjpeg2.x86_64 2.4.0-7.el9 appstream
openldap.x86_64 2.6.2-3.el9 baseos
openldap-clients.x86_64 2.6.2-3.el9 baseos
openldap-compat.x86_64 2.6.2-3.el9 baseos
openssh.x86_64 8.7p1-24.el9_1 baseos
openssh-clients.x86_64 8.7p1-24.el9_1 baseos
openssh-server.x86_64 8.7p1-24.el9_1 baseos
osinfo-db.noarch 20220727-3.el9 appstream
pam.x86_64 1.5.1-12.el9 baseos
parted.x86_64 3.5-2.el9 baseos
pcp.x86_64 5.3.7-7.el9 appstream
pcp-conf.x86_64 5.3.7-7.el9 appstream
pcp-devel.x86_64 5.3.7-7.el9 appstream
pcp-doc.noarch 5.3.7-7.el9 appstream
pcp-export-pcp2elasticsearch.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2graphite.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2influxdb.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2json.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2spark.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2xml.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2zabbix.x86_64 5.3.7-7.el9 appstream
pcp-export-zabbix-agent.x86_64 5.3.7-7.el9 appstream
pcp-gui.x86_64 5.3.7-7.el9 appstream
pcp-import-collectl2pcp.x86_64 5.3.7-7.el9 appstream
pcp-import-ganglia2pcp.x86_64 5.3.7-7.el9 appstream
pcp-import-iostat2pcp.x86_64 5.3.7-7.el9 appstream
pcp-import-mrtg2pcp.x86_64 5.3.7-7.el9 appstream
pcp-import-sar2pcp.x86_64 5.3.7-7.el9 appstream
pcp-libs.x86_64 5.3.7-7.el9 appstream
pcp-libs-devel.x86_64 5.3.7-7.el9 appstream
pcp-pmda-activemq.x86_64 5.3.7-7.el9 appstream
pcp-pmda-apache.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bash.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bcc.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bind2.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bonding.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bpf.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bpftrace.x86_64 5.3.7-7.el9 appstream
pcp-pmda-cifs.x86_64 5.3.7-7.el9 appstream
pcp-pmda-cisco.x86_64 5.3.7-7.el9 appstream
pcp-pmda-dbping.x86_64 5.3.7-7.el9 appstream
pcp-pmda-denki.x86_64 5.3.7-7.el9 appstream
pcp-pmda-dm.x86_64 5.3.7-7.el9 appstream
pcp-pmda-docker.x86_64 5.3.7-7.el9 appstream
pcp-pmda-ds389.x86_64 5.3.7-7.el9 appstream
pcp-pmda-ds389log.x86_64 5.3.7-7.el9 appstream
pcp-pmda-elasticsearch.x86_64 5.3.7-7.el9 appstream
pcp-pmda-gfs2.x86_64 5.3.7-7.el9 appstream
pcp-pmda-gluster.x86_64 5.3.7-7.el9 appstream
pcp-pmda-gpfs.x86_64 5.3.7-7.el9 appstream
pcp-pmda-gpsd.x86_64 5.3.7-7.el9 appstream
pcp-pmda-hacluster.x86_64 5.3.7-7.el9 appstream
pcp-pmda-haproxy.x86_64 5.3.7-7.el9 appstream
pcp-pmda-infiniband.x86_64 5.3.7-7.el9 appstream
pcp-pmda-json.x86_64 5.3.7-7.el9 appstream
pcp-pmda-libvirt.x86_64 5.3.7-7.el9 appstream
pcp-pmda-lio.x86_64 5.3.7-7.el9 appstream
pcp-pmda-lmsensors.x86_64 5.3.7-7.el9 appstream
pcp-pmda-logger.x86_64 5.3.7-7.el9 appstream
pcp-pmda-lustre.x86_64 5.3.7-7.el9 appstream
pcp-pmda-lustrecomm.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mailq.x86_64 5.3.7-7.el9 appstream
pcp-pmda-memcache.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mic.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mongodb.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mounts.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mssql.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mysql.x86_64 5.3.7-7.el9 appstream
pcp-pmda-named.x86_64 5.3.7-7.el9 appstream
pcp-pmda-netcheck.x86_64 5.3.7-7.el9 appstream
pcp-pmda-netfilter.x86_64 5.3.7-7.el9 appstream
pcp-pmda-news.x86_64 5.3.7-7.el9 appstream
pcp-pmda-nfsclient.x86_64 5.3.7-7.el9 appstream
pcp-pmda-nginx.x86_64 5.3.7-7.el9 appstream
pcp-pmda-nvidia-gpu.x86_64 5.3.7-7.el9 appstream
pcp-pmda-openmetrics.x86_64 5.3.7-7.el9 appstream
pcp-pmda-openvswitch.x86_64 5.3.7-7.el9 appstream
pcp-pmda-oracle.x86_64 5.3.7-7.el9 appstream
pcp-pmda-pdns.x86_64 5.3.7-7.el9 appstream
pcp-pmda-perfevent.x86_64 5.3.7-7.el9 appstream
pcp-pmda-podman.x86_64 5.3.7-7.el9 appstream
pcp-pmda-postfix.x86_64 5.3.7-7.el9 appstream
pcp-pmda-postgresql.x86_64 5.3.7-7.el9 appstream
pcp-pmda-rabbitmq.x86_64 5.3.7-7.el9 appstream
pcp-pmda-redis.x86_64 5.3.7-7.el9 appstream
pcp-pmda-roomtemp.x86_64 5.3.7-7.el9 appstream
pcp-pmda-rsyslog.x86_64 5.3.7-7.el9 appstream
pcp-pmda-samba.x86_64 5.3.7-7.el9 appstream
pcp-pmda-sendmail.x86_64 5.3.7-7.el9 appstream
pcp-pmda-shping.x86_64 5.3.7-7.el9 appstream
pcp-pmda-slurm.x86_64 5.3.7-7.el9 appstream
pcp-pmda-smart.x86_64 5.3.7-7.el9 appstream
pcp-pmda-snmp.x86_64 5.3.7-7.el9 appstream
pcp-pmda-sockets.x86_64 5.3.7-7.el9 appstream
pcp-pmda-statsd.x86_64 5.3.7-7.el9 appstream
pcp-pmda-summary.x86_64 5.3.7-7.el9 appstream
pcp-pmda-systemd.x86_64 5.3.7-7.el9 appstream
pcp-pmda-trace.x86_64 5.3.7-7.el9 appstream
pcp-pmda-unbound.x86_64 5.3.7-7.el9 appstream
pcp-pmda-weblog.x86_64 5.3.7-7.el9 appstream
pcp-pmda-zimbra.x86_64 5.3.7-7.el9 appstream
pcp-pmda-zswap.x86_64 5.3.7-7.el9 appstream
pcp-selinux.x86_64 5.3.7-7.el9 appstream
pcp-system-tools.x86_64 5.3.7-7.el9 appstream
pcp-testsuite.x86_64 5.3.7-7.el9 appstream
pcp-zeroconf.x86_64 5.3.7-7.el9 appstream
perf.x86_64 5.14.0-162.6.1.el9_1 appstream
perl-Net-SSLeay.x86_64 1.92-2.el9 appstream
perl-PCP-LogImport.x86_64 5.3.7-7.el9 appstream
perl-PCP-LogSummary.x86_64 5.3.7-7.el9 appstream
perl-PCP-MMV.x86_64 5.3.7-7.el9 appstream
perl-PCP-PMDA.x86_64 5.3.7-7.el9 appstream
pesign.x86_64 115-4.el9 appstream
php.x86_64 8.0.20-3.el9 appstream
php-cli.x86_64 8.0.20-3.el9 appstream
php-common.x86_64 8.0.20-3.el9 appstream
php-fpm.x86_64 8.0.20-3.el9 appstream
php-mbstring.x86_64 8.0.20-3.el9 appstream
php-mysqlnd.x86_64 8.0.20-3.el9 appstream
php-opcache.x86_64 8.0.20-3.el9 appstream
php-pdo.x86_64 8.0.20-3.el9 appstream
php-xml.x86_64 8.0.20-3.el9 appstream
podman.x86_64 2:4.2.0-7.el9_1 appstream
podman-catatonit.x86_64 2:4.2.0-7.el9_1 appstream
poppler.x86_64 21.01.0-13.el9 appstream
poppler-cpp.x86_64 21.01.0-13.el9 appstream
poppler-glib.x86_64 21.01.0-13.el9 appstream
poppler-utils.x86_64 21.01.0-13.el9 appstream
postfix.x86_64 2:3.5.9-19.el9 appstream
postfix-perl-scripts.x86_64 2:3.5.9-19.el9 appstream
power-profiles-daemon.x86_64 0.11.1-1.el9 appstream
procps-ng.x86_64 3.3.17-8.el9 baseos
protobuf-lite.x86_64 3.14.0-13.el9 appstream
python-unversioned-command.noarch 3.9.14-1.el9_1.1 appstream
python3.x86_64 3.9.14-1.el9_1.1 baseos
python3-audit.x86_64 3.0.7-103.el9 appstream
python3-bcc.noarch 0.24.0-4.el9 appstream
python3-cairo.x86_64 1.20.1-1.el9 appstream
python3-cryptography.x86_64 36.0.1-2.el9 appstream
python3-dnf.noarch 4.12.0-4.el9.alma baseos
python3-dnf-plugins-core.noarch 4.1.0-3.el9 baseos
python3-firewall.noarch 1.1.1-3.el9 baseos
python3-gobject.x86_64 3.40.1-6.el9 appstream
python3-gobject-base.x86_64 3.40.1-6.el9 baseos
python3-hawkey.x86_64 0.67.0-3.el9.alma baseos
python3-koji.noarch 1.31.0-1.el9 epel
python3-libdnf.x86_64 0.67.0-3.el9.alma baseos
python3-libs.x86_64 3.9.14-1.el9_1.1 baseos
python3-libvirt.x86_64 8.5.0-2.el9 appstream
python3-lxml.x86_64 4.6.5-3.el9 appstream
python3-nftables.x86_64 1:1.0.4-2.el9 baseos
python3-pcp.x86_64 5.3.7-7.el9 appstream
python3-psycopg2.x86_64 2.9.5-1.rhel9 pgdg-common
python3-rpm.x86_64 4.16.1.3-19.el9_1 baseos
python3-rtslib.noarch 2.1.75-1.el9 appstream
python3-setools.x86_64 4.4.0-5.el9 baseos
qemu-guest-agent.x86_64 17:7.0.0-13.el9 appstream
qpdf-libs.x86_64 10.3.1-6.el9 appstream
qt5-qtbase.x86_64 5.15.3-1.el9 appstream
qt5-qtbase-common.noarch 5.15.3-1.el9 appstream
qt5-qtbase-gui.x86_64 5.15.3-1.el9 appstream
qt5-qtsvg.x86_64 5.15.3-1.el9 appstream
qt5-srpm-macros.noarch 5.15.3-1.el9 appstream
rasdaemon.x86_64 0.6.7-8.el9 appstream
redhat-rpm-config.noarch 196-1.el9.alma appstream
rhel-system-roles.noarch 1.20.1-1.el9_1 appstream
rpm.x86_64 4.16.1.3-19.el9_1 baseos
rpm-build.x86_64 4.16.1.3-19.el9_1 appstream
rpm-build-libs.x86_64 4.16.1.3-19.el9_1 baseos
rpm-libs.x86_64 4.16.1.3-19.el9_1 baseos
rpm-plugin-audit.x86_64 4.16.1.3-19.el9_1 baseos
rpm-plugin-selinux.x86_64 4.16.1.3-19.el9_1 baseos
rpm-plugin-systemd-inhibit.x86_64 4.16.1.3-19.el9_1 appstream
rpm-sign.x86_64 4.16.1.3-19.el9_1 baseos
rpm-sign-libs.x86_64 4.16.1.3-19.el9_1 baseos
rsync.x86_64 3.2.3-18.el9 baseos
rsyslog.x86_64 8.2102.0-105.el9 appstream
rsyslog-gnutls.x86_64 8.2102.0-105.el9 appstream
rsyslog-gssapi.x86_64 8.2102.0-105.el9 appstream
rsyslog-logrotate.x86_64 8.2102.0-105.el9 appstream
rsyslog-relp.x86_64 8.2102.0-105.el9 appstream
runc.x86_64 4:1.1.4-1.el9_1 appstream
rust.x86_64 1.62.1-1.el9 appstream
rust-std-static.x86_64 1.62.1-1.el9 appstream
samba-client.x86_64 4.16.4-101.el9 appstream
samba-client-libs.x86_64 4.16.4-101.el9 baseos
samba-common.noarch 4.16.4-101.el9 baseos
samba-common-libs.x86_64 4.16.4-101.el9 baseos
sane-backends.x86_64 1.0.32-7.el9 appstream
sane-backends-drivers-cameras.x86_64 1.0.32-7.el9 appstream
sane-backends-drivers-scanners.x86_64 1.0.32-7.el9 appstream
sane-backends-libs.x86_64 1.0.32-7.el9 appstream
sdl12-compat.x86_64 1.2.52-1.el9 appstream
selinux-policy.noarch 34.1.43-1.el9 baseos
selinux-policy-devel.noarch 34.1.43-1.el9 appstream
selinux-policy-targeted.noarch 34.1.43-1.el9 baseos
setools-console.x86_64 4.4.0-5.el9 baseos
setroubleshoot-server.x86_64 3.3.28-4.el9 appstream
setup.noarch 2.13.7-7.el9 baseos
sg3_utils.x86_64 1.47-9.el9 baseos
sg3_utils-libs.x86_64 1.47-9.el9 baseos
shadow-utils.x86_64 2:4.9-5.el9 baseos
shadow-utils-subid.x86_64 2:4.9-5.el9 baseos
sos.noarch 4.3-5.el9_1.alma baseos
speex.x86_64 1.2.0-11.el9 appstream
sssd.x86_64 2.7.3-4.el9_1.1 baseos
sssd-ad.x86_64 2.7.3-4.el9_1.1 baseos
sssd-client.x86_64 2.7.3-4.el9_1.1 baseos
sssd-common.x86_64 2.7.3-4.el9_1.1 baseos
sssd-common-pac.x86_64 2.7.3-4.el9_1.1 baseos
sssd-ipa.x86_64 2.7.3-4.el9_1.1 baseos
sssd-kcm.x86_64 2.7.3-4.el9_1.1 baseos
sssd-krb5.x86_64 2.7.3-4.el9_1.1 baseos
sssd-krb5-common.x86_64 2.7.3-4.el9_1.1 baseos
sssd-ldap.x86_64 2.7.3-4.el9_1.1 baseos
sssd-proxy.x86_64 2.7.3-4.el9_1.1 baseos
strace.x86_64 5.18-2.el9 baseos
sushi.x86_64 3.38.1-2.el9 appstream
systemd.x86_64 250-12.el9_1 baseos
systemd-libs.x86_64 250-12.el9_1 baseos
systemd-pam.x86_64 250-12.el9_1 baseos
systemd-rpm-macros.noarch 250-12.el9_1 baseos
systemd-udev.x86_64 250-12.el9_1 baseos
systemtap.x86_64 4.7-2.el9 appstream
systemtap-client.x86_64 4.7-2.el9 appstream
systemtap-devel.x86_64 4.7-2.el9 appstream
systemtap-runtime.x86_64 4.7-2.el9 appstream
tar.x86_64 2:1.34-5.el9 baseos
tcl.x86_64 1:8.6.10-7.el9 baseos
teamd.x86_64 1.31-14.el9 baseos
tigervnc.x86_64 1.12.0-4.el9 appstream
tigervnc-icons.noarch 1.12.0-4.el9 appstream
tigervnc-license.noarch 1.12.0-4.el9 appstream
tpm2-tools.x86_64 5.2-2.el9_1 baseos
tpm2-tss.x86_64 3.0.3-8.el9 baseos
tzdata.noarch 2022g-1.el9_1 baseos
tzdata-java.noarch 2022g-1.el9_1 appstream
unbound-libs.x86_64 1.16.2-2.el9 appstream
valgrind.x86_64 1:3.19.0-3.el9 appstream
valgrind-devel.x86_64 1:3.19.0-3.el9 appstream
vdo.x86_64 8.2.0.2-1.el9 baseos
virt-what.x86_64 1.25-1.el9 baseos
vulkan-loader.x86_64 1.3.224.0-2.el9 appstream
wavpack.x86_64 5.4.0-5.el9 appstream
which.x86_64 2.21-28.el9 baseos
woff2.x86_64 1.0.2-15.el9 appstream
wpa_supplicant.x86_64 1:2.10-4.el9 baseos
wpebackend-fdo.x86_64 1.10.0-3.el9 appstream
xdg-dbus-proxy.x86_64 0.1.3-1.el9 appstream
xdg-desktop-portal.x86_64 1.12.4-1.el9 appstream
xdg-desktop-portal-gtk.x86_64 1.12.0-3.el9 appstream
xorg-x11-server-Xorg.x86_64 1.20.11-11.el9 appstream
xorg-x11-server-Xwayland.x86_64 21.1.3-3.el9 appstream
xorg-x11-server-common.x86_64 1.20.11-11.el9 appstream
yum.noarch 4.12.0-4.el9.alma baseos
zenity.x86_64 3.32.0-8.el9 appstream
zlib.x86_64 1.2.11-34.el9 baseos
zlib-devel.x86_64 1.2.11-34.el9 appstream
Obsoleting Packages
grub2-tools.x86_64 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-27.el9_0.7.alma @baseos
grub2-tools-efi.x86_64 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-27.el9_0.7.alma @baseos
grub2-tools-extra.x86_64 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-27.el9_0.7.alma @baseos
grub2-tools-minimal.x86_64 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-27.el9_0.7.alma @baseos
libpq5.x86_64 15.0-42.2PGDG.rhel9 pgdg-common
libpq.x86_64 13.5-1.el9 @AppStream
libpq5.x86_64 15.1-42PGDG.rhel9 pgdg-common
libpq.x86_64 13.5-1.el9 @AppStream |
AlmaLinux 9 - AppStream 2.9 MB/s | 7.0 MB 00:02
AlmaLinux 9 - BaseOS 1.6 MB/s | 2.0 MB 00:01
AlmaLinux 9 - Extras 19 kB/s | 17 kB 00:00
Extra Packages for Enterprise Linux 9 - x86_64 1.3 MB/s | 12 MB 00:09
PostgreSQL common RPMs for RHEL / Rocky 9 - x86 103 B/s | 195 B 00:01
PostgreSQL common RPMs for RHEL / Rocky 9 - x86 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL common RPMs for RHEL / Rocky 9 - x86 114 kB/s | 341 kB 00:02
PostgreSQL 15 for RHEL / Rocky 9 - x86_64 159 B/s | 195 B 00:01
PostgreSQL 15 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 15 for RHEL / Rocky 9 - x86_64 47 kB/s | 159 kB 00:03
PostgreSQL 14 for RHEL / Rocky 9 - x86_64 114 B/s | 195 B 00:01
PostgreSQL 14 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 14 for RHEL / Rocky 9 - x86_64 129 kB/s | 406 kB 00:03
PostgreSQL 13 for RHEL / Rocky 9 - x86_64 103 B/s | 195 B 00:01
PostgreSQL 13 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 13 for RHEL / Rocky 9 - x86_64 127 kB/s | 384 kB 00:03
PostgreSQL 12 for RHEL / Rocky 9 - x86_64 139 B/s | 195 B 00:01
PostgreSQL 12 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 12 for RHEL / Rocky 9 - x86_64 137 kB/s | 349 kB 00:02
PostgreSQL 11 for RHEL / Rocky 9 - x86_64 159 B/s | 195 B 00:01
PostgreSQL 11 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 11 for RHEL / Rocky 9 - x86_64 102 kB/s | 350 kB 00:03
PostgreSQL 10 for RHEL / Rocky 9 - x86_64 113 B/s | 195 B 00:01
PostgreSQL 10 for RHEL / Rocky 9 - x86_64 1.6 MB/s | 1.7 kB 00:00
Importing GPG key 0x442DF0F8:
Userid : "PostgreSQL RPM Building Project <pgsql-pkg-yum@postgresql.org>"
Fingerprint: 68C9 E2B9 1A37 D136 FE74 D176 1F16 D2E1 442D F0F8
From : /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG
Is this ok [y/N]: y
PostgreSQL 10 for RHEL / Rocky 9 - x86_64 66 kB/s | 197 kB 00:02
Visual Studio Code 7.5 MB/s | 31 MB 00:04
NetworkManager.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-adsl.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-bluetooth.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-config-server.noarch 1:1.40.0-1.el9 baseos
NetworkManager-libnm.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-team.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-tui.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-wifi.x86_64 1:1.40.0-1.el9 baseos
NetworkManager-wwan.x86_64 1:1.40.0-1.el9 baseos
aardvark-dns.x86_64 2:1.1.0-5.el9_1 appstream
almalinux-gpg-keys.x86_64 9.1-1.9.el9 baseos
almalinux-release.x86_64 9.1-1.9.el9 baseos
almalinux-repos.x86_64 9.1-1.9.el9 baseos
alsa-lib.x86_64 1.2.7.2-1.el9 appstream
alsa-ucm.noarch 1.2.7.2-1.el9 appstream
alsa-utils.x86_64 1.2.7-1.el9 appstream
annobin.x86_64 10.73-3.el9 appstream
ansible-core.x86_64 2.13.3-1.el9 appstream
at.x86_64 3.1.23-11.el9 baseos
audit.x86_64 3.0.7-103.el9 baseos
audit-libs.x86_64 3.0.7-103.el9 baseos
augeas-libs.x86_64 1.13.0-2.el9 appstream
authselect.x86_64 1.2.5-1.el9 baseos
authselect-libs.x86_64 1.2.5-1.el9 baseos
bash.x86_64 5.1.8-5.el9 baseos
bcc.x86_64 0.24.0-4.el9 appstream
bcc-tools.x86_64 0.24.0-4.el9 appstream
bind-libs.x86_64 32:9.16.23-5.el9_1 appstream
bind-license.noarch 32:9.16.23-5.el9_1 appstream
bind-utils.x86_64 32:9.16.23-5.el9_1 appstream
binutils.x86_64 2.35.2-24.el9 baseos
binutils-gold.x86_64 2.35.2-24.el9 baseos
bluez.x86_64 5.64-2.el9 baseos
bluez-libs.x86_64 5.64-2.el9 baseos
bluez-obexd.x86_64 5.64-2.el9 appstream
boost-filesystem.x86_64 1.75.0-8.el9 appstream
boost-regex.x86_64 1.75.0-8.el9 appstream
boost-system.x86_64 1.75.0-8.el9 appstream
boost-thread.x86_64 1.75.0-8.el9 appstream
bpftool.x86_64 5.14.0-162.6.1.el9_1 baseos
bpftrace.x86_64 0.13.1-1.el9 appstream
buildah.x86_64 1:1.27.2-2.el9_1 appstream
cargo.x86_64 1.62.1-1.el9 appstream
checkpolicy.x86_64 3.4-1.el9 appstream
chrony.x86_64 4.2-1.el9 baseos
clang-libs.x86_64 14.0.6-1.el9 appstream
clang-resource-filesystem.x86_64 14.0.6-1.el9 appstream
clevis.x86_64 18-106.el9 appstream
clevis-luks.x86_64 18-106.el9 appstream
cockpit.x86_64 276.1-1.el9 baseos
cockpit-bridge.x86_64 276.1-1.el9 baseos
cockpit-packagekit.noarch 276.1-1.el9 appstream
cockpit-podman.noarch 53-1.el9 appstream
cockpit-storaged.noarch 276.1-1.el9 appstream
cockpit-system.noarch 276.1-1.el9 baseos
cockpit-ws.x86_64 276.1-1.el9 baseos
compiler-rt.x86_64 14.0.6-1.el9 appstream
conmon.x86_64 2:2.1.4-1.el9 appstream
container-selinux.noarch 3:2.189.0-1.el9 appstream
containernetworking-plugins.x86_64 1:1.1.1-3.el9 appstream
containers-common.x86_64 2:1-45.el9_1 appstream
coreutils.x86_64 8.32-32.el9 baseos
coreutils-common.x86_64 8.32-32.el9 baseos
cpp.x86_64 11.3.1-2.1.el9.alma appstream
crash.x86_64 8.0.1-2.el9.alma appstream
criu.x86_64 3.17-4.el9 appstream
criu-libs.x86_64 3.17-4.el9 appstream
cronie.x86_64 1.5.7-8.el9 baseos
cronie-anacron.x86_64 1.5.7-8.el9 baseos
crun.x86_64 1.5-1.el9 appstream
crypto-policies.noarch 20220815-1.git0fbe86f.el9 baseos
crypto-policies-scripts.noarch 20220815-1.git0fbe86f.el9 baseos
cryptsetup.x86_64 2.4.3-5.el9 baseos
cryptsetup-libs.x86_64 2.4.3-5.el9 baseos
cups.x86_64 1:2.3.3op2-16.el9 appstream
cups-client.x86_64 1:2.3.3op2-16.el9 appstream
cups-filesystem.noarch 1:2.3.3op2-16.el9 appstream
cups-ipptool.x86_64 1:2.3.3op2-16.el9 appstream
cups-libs.x86_64 1:2.3.3op2-16.el9 baseos
curl.x86_64 7.76.1-19.el9 baseos
dbus.x86_64 1:1.12.20-6.el9 baseos
dbus-broker.x86_64 28-7.el9 baseos
desktop-file-utils.x86_64 0.26-6.el9 appstream
device-mapper.x86_64 9:1.02.185-3.el9 baseos
device-mapper-event.x86_64 9:1.02.185-3.el9 baseos
device-mapper-event-libs.x86_64 9:1.02.185-3.el9 baseos
device-mapper-libs.x86_64 9:1.02.185-3.el9 baseos
device-mapper-multipath.x86_64 0.8.7-12.el9_1.1 baseos
device-mapper-multipath-libs.x86_64 0.8.7-12.el9_1.1 baseos
device-mapper-persistent-data.x86_64 0.9.0-13.el9 baseos
dnf.noarch 4.12.0-4.el9.alma baseos
dnf-data.noarch 4.12.0-4.el9.alma baseos
dnf-plugins-core.noarch 4.1.0-3.el9 baseos
dnsmasq.x86_64 2.85-5.el9 appstream
dotnet-host.x86_64 7.0.1-1.el9_1 appstream
dotnet-hostfxr-7.0.x86_64 7.0.1-1.el9_1 appstream
dotnet-runtime-7.0.x86_64 7.0.1-1.el9_1 appstream
dracut.x86_64 057-13.git20220816.el9 baseos
dracut-config-rescue.x86_64 057-13.git20220816.el9 baseos
dracut-network.x86_64 057-13.git20220816.el9 baseos
dracut-squash.x86_64 057-13.git20220816.el9 baseos
dyninst.x86_64 12.1.0-1.el9 appstream
e2fsprogs.x86_64 1.46.5-3.el9 baseos
e2fsprogs-libs.x86_64 1.46.5-3.el9 baseos
elfutils.x86_64 0.187-5.el9 baseos
elfutils-debuginfod-client.x86_64 0.187-5.el9 baseos
elfutils-default-yama-scope.noarch 0.187-5.el9 baseos
elfutils-devel.x86_64 0.187-5.el9 appstream
elfutils-libelf.x86_64 0.187-5.el9 baseos
elfutils-libelf-devel.x86_64 0.187-5.el9 appstream
elfutils-libs.x86_64 0.187-5.el9 baseos
epel-release.noarch 9-4.el9 epel
evince.x86_64 40.5-2.el9 appstream
evince-libs.x86_64 40.5-2.el9 appstream
evince-nautilus.x86_64 40.5-2.el9 appstream
evince-previewer.x86_64 40.5-2.el9 appstream
evince-thumbnailer.x86_64 40.5-2.el9 appstream
evolution-data-server.x86_64 3.40.4-6.el9 appstream
evolution-data-server-langpacks.noarch 3.40.4-6.el9 appstream
expat.x86_64 2.4.9-1.el9_1 baseos
file.x86_64 5.39-10.el9 baseos
file-libs.x86_64 5.39-10.el9 baseos
firefox.x86_64 102.6.0-1.el9_1.alma appstream
firewalld.noarch 1.1.1-3.el9 baseos
firewalld-filesystem.noarch 1.1.1-3.el9 baseos
flac-libs.x86_64 1.3.3-10.el9 appstream
flatpak.x86_64 1.12.7-2.el9 appstream
flatpak-libs.x86_64 1.12.7-2.el9 appstream
flatpak-selinux.noarch 1.12.7-2.el9 appstream
flatpak-session-helper.x86_64 1.12.7-2.el9 appstream
fwupd.x86_64 1.7.9-1.el9.alma.1 baseos
fwupd-plugin-flashrom.x86_64 1.7.9-1.el9.alma.1 appstream
gcc.x86_64 11.3.1-2.1.el9.alma appstream
gcc-c++.x86_64 11.3.1-2.1.el9.alma appstream
gcc-plugin-annobin.x86_64 11.3.1-2.1.el9.alma appstream
gdb.x86_64 10.2-10.el9 appstream
gdb-headless.x86_64 10.2-10.el9 appstream
gdm.x86_64 1:40.1-17.el9_1 appstream
gjs.x86_64 1.68.6-1.el9 appstream
glibc.x86_64 2.34-40.el9 baseos
glibc-all-langpacks.x86_64 2.34-40.el9 baseos
glibc-common.x86_64 2.34-40.el9 baseos
glibc-devel.x86_64 2.34-40.el9 appstream
glibc-gconv-extra.x86_64 2.34-40.el9 baseos
glibc-headers.x86_64 2.34-40.el9 appstream
glibc-langpack-en.x86_64 2.34-40.el9 baseos
gnome-classic-session.noarch 40.7-2.el9 appstream
gnome-control-center.x86_64 40.0-27.el9 appstream
gnome-control-center-filesystem.noarch 40.0-27.el9 appstream
gnome-initial-setup.x86_64 40.4-3.el9 appstream
gnome-screenshot.x86_64 40.0-4.el9 appstream
gnome-settings-daemon.x86_64 40.0.1-8.el9 appstream
gnome-shell.x86_64 40.10-3.el9 appstream
gnome-shell-extension-apps-menu.noarch 40.7-2.el9 appstream
gnome-shell-extension-common.noarch 40.7-2.el9 appstream
gnome-shell-extension-launch-new-instance.noarch
40.7-2.el9 appstream
gnome-shell-extension-places-menu.noarch 40.7-2.el9 appstream
gnome-shell-extension-window-list.noarch 40.7-2.el9 appstream
gnome-software.x86_64 41.5-1.el9 appstream
gnome-system-monitor.x86_64 40.1-3.el9 appstream
gnome-tour.x86_64 40.1-2.el9 appstream
google-noto-fonts-common.noarch 20201206-4.el9 appstream
google-noto-sans-gurmukhi-fonts.noarch 20201206-4.el9 appstream
google-noto-sans-sinhala-vf-fonts.noarch 20201206-4.el9 appstream
grafana.x86_64 7.5.15-3.el9 appstream
grafana-pcp.x86_64 3.2.0-3.el9 appstream
grub2-common.noarch 1:2.06-46.el9.alma baseos
grub2-pc.x86_64 1:2.06-46.el9.alma baseos
grub2-pc-modules.noarch 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-46.el9.alma baseos
grub2-tools-efi.x86_64 1:2.06-46.el9.alma baseos
grub2-tools-extra.x86_64 1:2.06-46.el9.alma baseos
grub2-tools-minimal.x86_64 1:2.06-46.el9.alma baseos
grubby.x86_64 8.40-61.el9 baseos
gtk4.x86_64 4.4.1-2.el9 appstream
gvfs.x86_64 1.48.1-4.el9 appstream
gvfs-client.x86_64 1.48.1-4.el9 appstream
gvfs-fuse.x86_64 1.48.1-4.el9 appstream
gvfs-goa.x86_64 1.48.1-4.el9 appstream
gvfs-gphoto2.x86_64 1.48.1-4.el9 appstream
gvfs-mtp.x86_64 1.48.1-4.el9 appstream
gvfs-smb.x86_64 1.48.1-4.el9 appstream
gzip.x86_64 1.12-1.el9 baseos
hicolor-icon-theme.noarch 0.17-13.el9 appstream
httpd.x86_64 2.4.53-7.el9 appstream
httpd-filesystem.noarch 2.4.53-7.el9 appstream
httpd-tools.x86_64 2.4.53-7.el9 appstream
hwdata.noarch 0.348-9.5.el9 baseos
hyperv-daemons.x86_64 0-0.40.20190303git.el9 appstream
hyperv-daemons-license.noarch 0-0.40.20190303git.el9 appstream
hypervfcopyd.x86_64 0-0.40.20190303git.el9 appstream
hypervkvpd.x86_64 0-0.40.20190303git.el9 appstream
hypervvssd.x86_64 0-0.40.20190303git.el9 appstream
infiniband-diags.x86_64 41.0-3.el9 appstream
inih.x86_64 49-6.el9 baseos
initscripts.x86_64 10.11.5-1.el9 baseos
initscripts-rename-device.x86_64 10.11.5-1.el9 baseos
initscripts-service.noarch 10.11.5-1.el9 baseos
iotop.noarch 0.6-30.el9 baseos
iproute.x86_64 5.18.0-1.el9 baseos
iproute-tc.x86_64 5.18.0-1.el9 baseos
iptables-libs.x86_64 1.8.8-4.el9 baseos
iptables-nft.x86_64 1.8.8-4.el9 baseos
irqbalance.x86_64 2:1.9.0-3.el9 baseos
iscsi-initiator-utils.x86_64 6.2.1.4-3.git2a8f9d8.el9 baseos
iscsi-initiator-utils-iscsiuio.x86_64 6.2.1.4-3.git2a8f9d8.el9 baseos
iwl100-firmware.noarch 39.31.5.1-127.el9 baseos
iwl1000-firmware.noarch 1:39.31.5.1-127.el9 baseos
iwl105-firmware.noarch 18.168.6.1-127.el9 baseos
iwl135-firmware.noarch 18.168.6.1-127.el9 baseos
iwl2000-firmware.noarch 18.168.6.1-127.el9 baseos
iwl2030-firmware.noarch 18.168.6.1-127.el9 baseos
iwl3160-firmware.noarch 1:25.30.13.0-127.el9 baseos
iwl5000-firmware.noarch 8.83.5.1_1-127.el9 baseos
iwl5150-firmware.noarch 8.24.2.2-127.el9 baseos
iwl6000g2a-firmware.noarch 18.168.6.1-127.el9 baseos
iwl6000g2b-firmware.noarch 18.168.6.1-127.el9 baseos
iwl6050-firmware.noarch 41.28.5.1-127.el9 baseos
iwl7260-firmware.noarch 1:25.30.13.0-127.el9 baseos
kernel.x86_64 5.14.0-162.6.1.el9_1 baseos
kernel-core.x86_64 5.14.0-162.6.1.el9_1 baseos
kernel-devel.x86_64 5.14.0-162.6.1.el9_1 appstream
kernel-headers.x86_64 5.14.0-162.6.1.el9_1 appstream
kernel-modules.x86_64 5.14.0-162.6.1.el9_1 baseos
kernel-tools.x86_64 5.14.0-162.6.1.el9_1 baseos
kernel-tools-libs.x86_64 5.14.0-162.6.1.el9_1 baseos
kexec-tools.x86_64 2.0.24-5.el9 baseos
kmod-kvdo.x86_64 8.2.0.21-47.el9_1 baseos
kpartx.x86_64 0.8.7-12.el9_1.1 baseos
kpatch.noarch 0.9.4-3.el9 baseos
kpatch-dnf.noarch 0.4-3.el9 baseos
krb5-libs.x86_64 1.19.1-24.el9_1 baseos
ldns.x86_64 1.7.1-11.el9 appstream
ledmon.x86_64 0.96-4.el9 baseos
libarchive.x86_64 3.5.3-3.el9 baseos
libbabeltrace.x86_64 1.5.8-10.el9 appstream
libbasicobjects.x86_64 0.1.1-53.el9 baseos
libblockdev.x86_64 2.25-14.el9 appstream
libblockdev-crypto.x86_64 2.25-14.el9 appstream
libblockdev-fs.x86_64 2.25-14.el9 appstream
libblockdev-loop.x86_64 2.25-14.el9 appstream
libblockdev-lvm.x86_64 2.25-14.el9 appstream
libblockdev-mdraid.x86_64 2.25-14.el9 appstream
libblockdev-part.x86_64 2.25-14.el9 appstream
libblockdev-swap.x86_64 2.25-14.el9 appstream
libblockdev-utils.x86_64 2.25-14.el9 appstream
libbpf.x86_64 2:0.6.0-1.el9 baseos
libcollection.x86_64 0.7.0-53.el9 baseos
libcom_err.x86_64 1.46.5-3.el9 baseos
libcurl.x86_64 7.76.1-19.el9 baseos
libdhash.x86_64 0.5.0-53.el9 baseos
libdnf.x86_64 0.67.0-3.el9.alma baseos
libdrm.x86_64 2.4.111-1.el9 appstream
libertas-sd8787-firmware.noarch 20220708-127.el9 baseos
libestr.x86_64 0.1.11-4.el9 appstream
libgcc.x86_64 11.3.1-2.1.el9.alma baseos
libgomp.x86_64 11.3.1-2.1.el9.alma baseos
libgtop2.x86_64 2.40.0-9.el9 appstream
libibumad.x86_64 41.0-3.el9 baseos
libibverbs.x86_64 41.0-3.el9 baseos
libini_config.x86_64 1.3.1-53.el9 baseos
libipa_hbac.x86_64 2.7.3-4.el9_1.1 baseos
libldb.x86_64 2.5.2-1.el9 baseos
libnftnl.x86_64 1.2.2-1.el9 baseos
libnl3.x86_64 3.7.0-1.el9 baseos
libnl3-cli.x86_64 3.7.0-1.el9 baseos
libnma.x86_64 1.8.40-1.el9 appstream
libomp.x86_64 14.0.6-1.el9 appstream
libomp-devel.x86_64 14.0.6-1.el9 appstream
libpath_utils.x86_64 0.2.1-53.el9 baseos
libref_array.x86_64 0.1.5-53.el9 baseos
librepo.x86_64 1.14.2-3.el9 baseos
libsmbclient.x86_64 4.16.4-101.el9 baseos
libsolv.x86_64 0.7.22-1.el9 baseos
libss.x86_64 1.46.5-3.el9 baseos
libsss_certmap.x86_64 2.7.3-4.el9_1.1 baseos
libsss_idmap.x86_64 2.7.3-4.el9_1.1 baseos
libsss_nss_idmap.x86_64 2.7.3-4.el9_1.1 baseos
libsss_sudo.x86_64 2.7.3-4.el9_1.1 baseos
libstdc++.x86_64 11.3.1-2.1.el9.alma baseos
libstdc++-devel.x86_64 11.3.1-2.1.el9.alma appstream
libtdb.x86_64 1.4.6-1.el9 baseos
libteam.x86_64 1.31-14.el9 baseos
libtevent.x86_64 0.12.0-0.el9 baseos
libtirpc.x86_64 1.3.3-0.el9 baseos
libusbx.x86_64 1.0.26-1.el9 baseos
libuser.x86_64 0.63-11.el9 baseos
libvirt-libs.x86_64 8.5.0-7.el9_1 appstream
libwbclient.x86_64 4.16.4-101.el9 baseos
libwpe.x86_64 1.10.0-4.el9 appstream
linux-firmware.noarch 20220708-127.el9 baseos
linux-firmware-whence.noarch 20220708-127.el9 baseos
lksctp-tools.x86_64 1.0.19-2.el9 baseos
llvm-libs.x86_64 14.0.6-1.el9 appstream
logrotate.x86_64 3.18.0-7.el9 baseos
lshw.x86_64 B.02.19.2-9.el9 baseos
lvm2.x86_64 9:2.03.16-3.el9 baseos
lvm2-libs.x86_64 9:2.03.16-3.el9 baseos
man-pages.noarch 5.10-5.el9 baseos
mcelog.x86_64 3:182-3.el9 baseos
mdadm.x86_64 4.2-6.el9 baseos
mesa-dri-drivers.x86_64 22.1.5-2.el9 appstream
mesa-filesystem.x86_64 22.1.5-2.el9 appstream
mesa-libEGL.x86_64 22.1.5-2.el9 appstream
mesa-libGL.x86_64 22.1.5-2.el9 appstream
mesa-libgbm.x86_64 22.1.5-2.el9 appstream
mesa-libglapi.x86_64 22.1.5-2.el9 appstream
mesa-libxatracker.x86_64 22.1.5-2.el9 appstream
mesa-vulkan-drivers.x86_64 22.1.5-2.el9 appstream
microcode_ctl.noarch 4:20220809-1.el9 baseos
mod_lua.x86_64 2.4.53-7.el9 appstream
mod_ssl.x86_64 1:2.4.53-7.el9 appstream
mokutil.x86_64 2:0.4.0-9.el9 baseos
mozilla-filesystem.x86_64 1.9-30.el9 appstream
mutter.x86_64 40.9-10.el9_1 appstream
nautilus.x86_64 40.2-9.el9_1 appstream
nautilus-extensions.x86_64 40.2-9.el9_1 appstream
netavark.x86_64 2:1.1.0-7.el9_1 appstream
netronome-firmware.noarch 20220708-127.el9 baseos
nftables.x86_64 1:1.0.4-2.el9 baseos
nginx-filesystem.noarch 1:1.20.1-13.el9.alma appstream
nm-connection-editor.x86_64 1.26.0-1.el9 appstream
nvme-cli.x86_64 2.0-4.el9 baseos
open-vm-tools.x86_64 12.0.5-2.el9 appstream
open-vm-tools-desktop.x86_64 12.0.5-2.el9 appstream
openjpeg2.x86_64 2.4.0-7.el9 appstream
openldap.x86_64 2.6.2-3.el9 baseos
openldap-clients.x86_64 2.6.2-3.el9 baseos
openldap-compat.x86_64 2.6.2-3.el9 baseos
openssh.x86_64 8.7p1-24.el9_1 baseos
openssh-clients.x86_64 8.7p1-24.el9_1 baseos
openssh-server.x86_64 8.7p1-24.el9_1 baseos
osinfo-db.noarch 20220727-3.el9 appstream
pam.x86_64 1.5.1-12.el9 baseos
parted.x86_64 3.5-2.el9 baseos
pcp.x86_64 5.3.7-7.el9 appstream
pcp-conf.x86_64 5.3.7-7.el9 appstream
pcp-devel.x86_64 5.3.7-7.el9 appstream
pcp-doc.noarch 5.3.7-7.el9 appstream
pcp-export-pcp2elasticsearch.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2graphite.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2influxdb.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2json.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2spark.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2xml.x86_64 5.3.7-7.el9 appstream
pcp-export-pcp2zabbix.x86_64 5.3.7-7.el9 appstream
pcp-export-zabbix-agent.x86_64 5.3.7-7.el9 appstream
pcp-gui.x86_64 5.3.7-7.el9 appstream
pcp-import-collectl2pcp.x86_64 5.3.7-7.el9 appstream
pcp-import-ganglia2pcp.x86_64 5.3.7-7.el9 appstream
pcp-import-iostat2pcp.x86_64 5.3.7-7.el9 appstream
pcp-import-mrtg2pcp.x86_64 5.3.7-7.el9 appstream
pcp-import-sar2pcp.x86_64 5.3.7-7.el9 appstream
pcp-libs.x86_64 5.3.7-7.el9 appstream
pcp-libs-devel.x86_64 5.3.7-7.el9 appstream
pcp-pmda-activemq.x86_64 5.3.7-7.el9 appstream
pcp-pmda-apache.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bash.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bcc.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bind2.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bonding.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bpf.x86_64 5.3.7-7.el9 appstream
pcp-pmda-bpftrace.x86_64 5.3.7-7.el9 appstream
pcp-pmda-cifs.x86_64 5.3.7-7.el9 appstream
pcp-pmda-cisco.x86_64 5.3.7-7.el9 appstream
pcp-pmda-dbping.x86_64 5.3.7-7.el9 appstream
pcp-pmda-denki.x86_64 5.3.7-7.el9 appstream
pcp-pmda-dm.x86_64 5.3.7-7.el9 appstream
pcp-pmda-docker.x86_64 5.3.7-7.el9 appstream
pcp-pmda-ds389.x86_64 5.3.7-7.el9 appstream
pcp-pmda-ds389log.x86_64 5.3.7-7.el9 appstream
pcp-pmda-elasticsearch.x86_64 5.3.7-7.el9 appstream
pcp-pmda-gfs2.x86_64 5.3.7-7.el9 appstream
pcp-pmda-gluster.x86_64 5.3.7-7.el9 appstream
pcp-pmda-gpfs.x86_64 5.3.7-7.el9 appstream
pcp-pmda-gpsd.x86_64 5.3.7-7.el9 appstream
pcp-pmda-hacluster.x86_64 5.3.7-7.el9 appstream
pcp-pmda-haproxy.x86_64 5.3.7-7.el9 appstream
pcp-pmda-infiniband.x86_64 5.3.7-7.el9 appstream
pcp-pmda-json.x86_64 5.3.7-7.el9 appstream
pcp-pmda-libvirt.x86_64 5.3.7-7.el9 appstream
pcp-pmda-lio.x86_64 5.3.7-7.el9 appstream
pcp-pmda-lmsensors.x86_64 5.3.7-7.el9 appstream
pcp-pmda-logger.x86_64 5.3.7-7.el9 appstream
pcp-pmda-lustre.x86_64 5.3.7-7.el9 appstream
pcp-pmda-lustrecomm.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mailq.x86_64 5.3.7-7.el9 appstream
pcp-pmda-memcache.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mic.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mongodb.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mounts.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mssql.x86_64 5.3.7-7.el9 appstream
pcp-pmda-mysql.x86_64 5.3.7-7.el9 appstream
pcp-pmda-named.x86_64 5.3.7-7.el9 appstream
pcp-pmda-netcheck.x86_64 5.3.7-7.el9 appstream
pcp-pmda-netfilter.x86_64 5.3.7-7.el9 appstream
pcp-pmda-news.x86_64 5.3.7-7.el9 appstream
pcp-pmda-nfsclient.x86_64 5.3.7-7.el9 appstream
pcp-pmda-nginx.x86_64 5.3.7-7.el9 appstream
pcp-pmda-nvidia-gpu.x86_64 5.3.7-7.el9 appstream
pcp-pmda-openmetrics.x86_64 5.3.7-7.el9 appstream
pcp-pmda-openvswitch.x86_64 5.3.7-7.el9 appstream
pcp-pmda-oracle.x86_64 5.3.7-7.el9 appstream
pcp-pmda-pdns.x86_64 5.3.7-7.el9 appstream
pcp-pmda-perfevent.x86_64 5.3.7-7.el9 appstream
pcp-pmda-podman.x86_64 5.3.7-7.el9 appstream
pcp-pmda-postfix.x86_64 5.3.7-7.el9 appstream
pcp-pmda-postgresql.x86_64 5.3.7-7.el9 appstream
pcp-pmda-rabbitmq.x86_64 5.3.7-7.el9 appstream
pcp-pmda-redis.x86_64 5.3.7-7.el9 appstream
pcp-pmda-roomtemp.x86_64 5.3.7-7.el9 appstream
pcp-pmda-rsyslog.x86_64 5.3.7-7.el9 appstream
pcp-pmda-samba.x86_64 5.3.7-7.el9 appstream
pcp-pmda-sendmail.x86_64 5.3.7-7.el9 appstream
pcp-pmda-shping.x86_64 5.3.7-7.el9 appstream
pcp-pmda-slurm.x86_64 5.3.7-7.el9 appstream
pcp-pmda-smart.x86_64 5.3.7-7.el9 appstream
pcp-pmda-snmp.x86_64 5.3.7-7.el9 appstream
pcp-pmda-sockets.x86_64 5.3.7-7.el9 appstream
pcp-pmda-statsd.x86_64 5.3.7-7.el9 appstream
pcp-pmda-summary.x86_64 5.3.7-7.el9 appstream
pcp-pmda-systemd.x86_64 5.3.7-7.el9 appstream
pcp-pmda-trace.x86_64 5.3.7-7.el9 appstream
pcp-pmda-unbound.x86_64 5.3.7-7.el9 appstream
pcp-pmda-weblog.x86_64 5.3.7-7.el9 appstream
pcp-pmda-zimbra.x86_64 5.3.7-7.el9 appstream
pcp-pmda-zswap.x86_64 5.3.7-7.el9 appstream
pcp-selinux.x86_64 5.3.7-7.el9 appstream
pcp-system-tools.x86_64 5.3.7-7.el9 appstream
pcp-testsuite.x86_64 5.3.7-7.el9 appstream
pcp-zeroconf.x86_64 5.3.7-7.el9 appstream
perf.x86_64 5.14.0-162.6.1.el9_1 appstream
perl-Net-SSLeay.x86_64 1.92-2.el9 appstream
perl-PCP-LogImport.x86_64 5.3.7-7.el9 appstream
perl-PCP-LogSummary.x86_64 5.3.7-7.el9 appstream
perl-PCP-MMV.x86_64 5.3.7-7.el9 appstream
perl-PCP-PMDA.x86_64 5.3.7-7.el9 appstream
pesign.x86_64 115-4.el9 appstream
php.x86_64 8.0.20-3.el9 appstream
php-cli.x86_64 8.0.20-3.el9 appstream
php-common.x86_64 8.0.20-3.el9 appstream
php-fpm.x86_64 8.0.20-3.el9 appstream
php-mbstring.x86_64 8.0.20-3.el9 appstream
php-mysqlnd.x86_64 8.0.20-3.el9 appstream
php-opcache.x86_64 8.0.20-3.el9 appstream
php-pdo.x86_64 8.0.20-3.el9 appstream
php-xml.x86_64 8.0.20-3.el9 appstream
podman.x86_64 2:4.2.0-7.el9_1 appstream
podman-catatonit.x86_64 2:4.2.0-7.el9_1 appstream
poppler.x86_64 21.01.0-13.el9 appstream
poppler-cpp.x86_64 21.01.0-13.el9 appstream
poppler-glib.x86_64 21.01.0-13.el9 appstream
poppler-utils.x86_64 21.01.0-13.el9 appstream
postfix.x86_64 2:3.5.9-19.el9 appstream
postfix-perl-scripts.x86_64 2:3.5.9-19.el9 appstream
power-profiles-daemon.x86_64 0.11.1-1.el9 appstream
procps-ng.x86_64 3.3.17-8.el9 baseos
protobuf-lite.x86_64 3.14.0-13.el9 appstream
python-unversioned-command.noarch 3.9.14-1.el9_1.1 appstream
python3.x86_64 3.9.14-1.el9_1.1 baseos
python3-audit.x86_64 3.0.7-103.el9 appstream
python3-bcc.noarch 0.24.0-4.el9 appstream
python3-cairo.x86_64 1.20.1-1.el9 appstream
python3-cryptography.x86_64 36.0.1-2.el9 appstream
python3-dnf.noarch 4.12.0-4.el9.alma baseos
python3-dnf-plugins-core.noarch 4.1.0-3.el9 baseos
python3-firewall.noarch 1.1.1-3.el9 baseos
python3-gobject.x86_64 3.40.1-6.el9 appstream
python3-gobject-base.x86_64 3.40.1-6.el9 baseos
python3-hawkey.x86_64 0.67.0-3.el9.alma baseos
python3-koji.noarch 1.31.0-1.el9 epel
python3-libdnf.x86_64 0.67.0-3.el9.alma baseos
python3-libs.x86_64 3.9.14-1.el9_1.1 baseos
python3-libvirt.x86_64 8.5.0-2.el9 appstream
python3-lxml.x86_64 4.6.5-3.el9 appstream
python3-nftables.x86_64 1:1.0.4-2.el9 baseos
python3-pcp.x86_64 5.3.7-7.el9 appstream
python3-psycopg2.x86_64 2.9.5-1.rhel9 pgdg-common
python3-rpm.x86_64 4.16.1.3-19.el9_1 baseos
python3-rtslib.noarch 2.1.75-1.el9 appstream
python3-setools.x86_64 4.4.0-5.el9 baseos
qemu-guest-agent.x86_64 17:7.0.0-13.el9 appstream
qpdf-libs.x86_64 10.3.1-6.el9 appstream
qt5-qtbase.x86_64 5.15.3-1.el9 appstream
qt5-qtbase-common.noarch 5.15.3-1.el9 appstream
qt5-qtbase-gui.x86_64 5.15.3-1.el9 appstream
qt5-qtsvg.x86_64 5.15.3-1.el9 appstream
qt5-srpm-macros.noarch 5.15.3-1.el9 appstream
rasdaemon.x86_64 0.6.7-8.el9 appstream
redhat-rpm-config.noarch 196-1.el9.alma appstream
rhel-system-roles.noarch 1.20.1-1.el9_1 appstream
rpm.x86_64 4.16.1.3-19.el9_1 baseos
rpm-build.x86_64 4.16.1.3-19.el9_1 appstream
rpm-build-libs.x86_64 4.16.1.3-19.el9_1 baseos
rpm-libs.x86_64 4.16.1.3-19.el9_1 baseos
rpm-plugin-audit.x86_64 4.16.1.3-19.el9_1 baseos
rpm-plugin-selinux.x86_64 4.16.1.3-19.el9_1 baseos
rpm-plugin-systemd-inhibit.x86_64 4.16.1.3-19.el9_1 appstream
rpm-sign.x86_64 4.16.1.3-19.el9_1 baseos
rpm-sign-libs.x86_64 4.16.1.3-19.el9_1 baseos
rsync.x86_64 3.2.3-18.el9 baseos
rsyslog.x86_64 8.2102.0-105.el9 appstream
rsyslog-gnutls.x86_64 8.2102.0-105.el9 appstream
rsyslog-gssapi.x86_64 8.2102.0-105.el9 appstream
rsyslog-logrotate.x86_64 8.2102.0-105.el9 appstream
rsyslog-relp.x86_64 8.2102.0-105.el9 appstream
runc.x86_64 4:1.1.4-1.el9_1 appstream
rust.x86_64 1.62.1-1.el9 appstream
rust-std-static.x86_64 1.62.1-1.el9 appstream
samba-client.x86_64 4.16.4-101.el9 appstream
samba-client-libs.x86_64 4.16.4-101.el9 baseos
samba-common.noarch 4.16.4-101.el9 baseos
samba-common-libs.x86_64 4.16.4-101.el9 baseos
sane-backends.x86_64 1.0.32-7.el9 appstream
sane-backends-drivers-cameras.x86_64 1.0.32-7.el9 appstream
sane-backends-drivers-scanners.x86_64 1.0.32-7.el9 appstream
sane-backends-libs.x86_64 1.0.32-7.el9 appstream
sdl12-compat.x86_64 1.2.52-1.el9 appstream
selinux-policy.noarch 34.1.43-1.el9 baseos
selinux-policy-devel.noarch 34.1.43-1.el9 appstream
selinux-policy-targeted.noarch 34.1.43-1.el9 baseos
setools-console.x86_64 4.4.0-5.el9 baseos
setroubleshoot-server.x86_64 3.3.28-4.el9 appstream
setup.noarch 2.13.7-7.el9 baseos
sg3_utils.x86_64 1.47-9.el9 baseos
sg3_utils-libs.x86_64 1.47-9.el9 baseos
shadow-utils.x86_64 2:4.9-5.el9 baseos
shadow-utils-subid.x86_64 2:4.9-5.el9 baseos
sos.noarch 4.3-5.el9_1.alma baseos
speex.x86_64 1.2.0-11.el9 appstream
sssd.x86_64 2.7.3-4.el9_1.1 baseos
sssd-ad.x86_64 2.7.3-4.el9_1.1 baseos
sssd-client.x86_64 2.7.3-4.el9_1.1 baseos
sssd-common.x86_64 2.7.3-4.el9_1.1 baseos
sssd-common-pac.x86_64 2.7.3-4.el9_1.1 baseos
sssd-ipa.x86_64 2.7.3-4.el9_1.1 baseos
sssd-kcm.x86_64 2.7.3-4.el9_1.1 baseos
sssd-krb5.x86_64 2.7.3-4.el9_1.1 baseos
sssd-krb5-common.x86_64 2.7.3-4.el9_1.1 baseos
sssd-ldap.x86_64 2.7.3-4.el9_1.1 baseos
sssd-proxy.x86_64 2.7.3-4.el9_1.1 baseos
strace.x86_64 5.18-2.el9 baseos
sushi.x86_64 3.38.1-2.el9 appstream
systemd.x86_64 250-12.el9_1 baseos
systemd-libs.x86_64 250-12.el9_1 baseos
systemd-pam.x86_64 250-12.el9_1 baseos
systemd-rpm-macros.noarch 250-12.el9_1 baseos
systemd-udev.x86_64 250-12.el9_1 baseos
systemtap.x86_64 4.7-2.el9 appstream
systemtap-client.x86_64 4.7-2.el9 appstream
systemtap-devel.x86_64 4.7-2.el9 appstream
systemtap-runtime.x86_64 4.7-2.el9 appstream
tar.x86_64 2:1.34-5.el9 baseos
tcl.x86_64 1:8.6.10-7.el9 baseos
teamd.x86_64 1.31-14.el9 baseos
tigervnc.x86_64 1.12.0-4.el9 appstream
tigervnc-icons.noarch 1.12.0-4.el9 appstream
tigervnc-license.noarch 1.12.0-4.el9 appstream
tpm2-tools.x86_64 5.2-2.el9_1 baseos
tpm2-tss.x86_64 3.0.3-8.el9 baseos
tzdata.noarch 2022g-1.el9_1 baseos
tzdata-java.noarch 2022g-1.el9_1 appstream
unbound-libs.x86_64 1.16.2-2.el9 appstream
valgrind.x86_64 1:3.19.0-3.el9 appstream
valgrind-devel.x86_64 1:3.19.0-3.el9 appstream
vdo.x86_64 8.2.0.2-1.el9 baseos
virt-what.x86_64 1.25-1.el9 baseos
vulkan-loader.x86_64 1.3.224.0-2.el9 appstream
wavpack.x86_64 5.4.0-5.el9 appstream
which.x86_64 2.21-28.el9 baseos
woff2.x86_64 1.0.2-15.el9 appstream
wpa_supplicant.x86_64 1:2.10-4.el9 baseos
wpebackend-fdo.x86_64 1.10.0-3.el9 appstream
xdg-dbus-proxy.x86_64 0.1.3-1.el9 appstream
xdg-desktop-portal.x86_64 1.12.4-1.el9 appstream
xdg-desktop-portal-gtk.x86_64 1.12.0-3.el9 appstream
xorg-x11-server-Xorg.x86_64 1.20.11-11.el9 appstream
xorg-x11-server-Xwayland.x86_64 21.1.3-3.el9 appstream
xorg-x11-server-common.x86_64 1.20.11-11.el9 appstream
yum.noarch 4.12.0-4.el9.alma baseos
zenity.x86_64 3.32.0-8.el9 appstream
zlib.x86_64 1.2.11-34.el9 baseos
zlib-devel.x86_64 1.2.11-34.el9 appstream
Obsoleting Packages
grub2-tools.x86_64 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-27.el9_0.7.alma @baseos
grub2-tools-efi.x86_64 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-27.el9_0.7.alma @baseos
grub2-tools-extra.x86_64 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-27.el9_0.7.alma @baseos
grub2-tools-minimal.x86_64 1:2.06-46.el9.alma baseos
grub2-tools.x86_64 1:2.06-27.el9_0.7.alma @baseos
libpq5.x86_64 15.0-42.2PGDG.rhel9 pgdg-common
libpq.x86_64 13.5-1.el9 @AppStream
libpq5.x86_64 15.1-42PGDG.rhel9 pgdg-common
libpq.x86_64 13.5-1.el9 @AppStream
You can install the VSCode package using dnf dnf, like this as the sudoer user:
The log file for this is:
Display detailed console log →
Visual Studio Code 6.9 MB/s | 31 MB 00:04
Last metadata expiration check: 0:00:09 ago on Mon 19 Dec 2022 10:52:28 PM EST.
Dependencies resolved.
================================================================================
Package Architecture Version Repository Size
================================================================================
Installing:
code x86_64 1.74.1-1671015385.el7 code 132 M
Transaction Summary
================================================================================
Install 1 Package
Total download size: 132 M
Installed size: 384 M
Downloading Packages:
code-1.74.1-1671015385.el7.x86_64.rpm 7.6 MB/s | 132 MB 00:17
--------------------------------------------------------------------------------
Total 7.6 MB/s | 132 MB 00:17
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Regex version mismatch, expected: 10.40 2022-04-14 actual: 10.37 2021-05-26
Regex version mismatch, expected: 10.40 2022-04-14 actual: 10.37 2021-05-26
Preparing : 1/1
Installing : code-1.74.1-1671015385.el7.x86_64 1/1
Running scriptlet: code-1.74.1-1671015385.el7.x86_64 1/1
Verifying : code-1.74.1-1671015385.el7.x86_64 1/1
Installed:
code-1.74.1-1671015385.el7.x86_64
Complete! |
Visual Studio Code 6.9 MB/s | 31 MB 00:04
Last metadata expiration check: 0:00:09 ago on Mon 19 Dec 2022 10:52:28 PM EST.
Dependencies resolved.
================================================================================
Package Architecture Version Repository Size
================================================================================
Installing:
code x86_64 1.74.1-1671015385.el7 code 132 M
Transaction Summary
================================================================================
Install 1 Package
Total download size: 132 M
Installed size: 384 M
Downloading Packages:
code-1.74.1-1671015385.el7.x86_64.rpm 7.6 MB/s | 132 MB 00:17
--------------------------------------------------------------------------------
Total 7.6 MB/s | 132 MB 00:17
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Regex version mismatch, expected: 10.40 2022-04-14 actual: 10.37 2021-05-26
Regex version mismatch, expected: 10.40 2022-04-14 actual: 10.37 2021-05-26
Preparing : 1/1
Installing : code-1.74.1-1671015385.el7.x86_64 1/1
Running scriptlet: code-1.74.1-1671015385.el7.x86_64 1/1
Verifying : code-1.74.1-1671015385.el7.x86_64 1/1
Installed:
code-1.74.1-1671015385.el7.x86_64
Complete!
Click on Activities in the upper left corner and then the clustered nine dots to view applications. Choose the Visual Studio and double click and you should see the following dialog:
Choose a color schema that works for you, then click the less than symbol in the top left hand corner to start working with Visual Studio Code:
As always, I hope this helps those looking for step-by-step instructions and clarity of complete examples.
Having played around with Erlang some twelve years ago, I felt it was time to experiment with the Elixir programming language. The install on Fedora was straightforward with Dandified YUM. Naturally, you need to be the root
user or a user found in the sudoer‘s list:
sudo dnf install -y elixir |
sudo dnf install -y elixir
Display detailed console log →
Last metadata expiration check: 4:47:05 ago on Wed 20 May 2020 05:57:25 PM MDT.
Dependencies resolved.
======================================================================================================
Package Architecture Version Repository Size
======================================================================================================
Installing:
elixir x86_64 1.9.0-1.fc30 updates 4.9 M
Installing dependencies:
erlang-asn1 x86_64 21.3.8.15-1.fc30 updates 742 k
erlang-compiler x86_64 21.3.8.15-1.fc30 updates 1.1 M
erlang-crypto x86_64 21.3.8.15-1.fc30 updates 141 k
erlang-erts x86_64 21.3.8.15-1.fc30 updates 2.2 M
erlang-hipe x86_64 21.3.8.15-1.fc30 updates 2.8 M
erlang-inets x86_64 21.3.8.15-1.fc30 updates 646 k
erlang-kernel x86_64 21.3.8.15-1.fc30 updates 1.4 M
erlang-mnesia x86_64 21.3.8.15-1.fc30 updates 767 k
erlang-parsetools x86_64 21.3.8.15-1.fc30 updates 175 k
erlang-public_key x86_64 21.3.8.15-1.fc30 updates 612 k
erlang-runtime_tools x86_64 21.3.8.15-1.fc30 updates 215 k
erlang-sasl x86_64 21.3.8.15-1.fc30 updates 279 k
erlang-ssl x86_64 21.3.8.15-1.fc30 updates 931 k
erlang-stdlib x86_64 21.3.8.15-1.fc30 updates 3.0 M
erlang-syntax_tools x86_64 21.3.8.15-1.fc30 updates 410 k
erlang-tools x86_64 21.3.8.15-1.fc30 updates 618 k
Transaction Summary
======================================================================================================
Install 17 Packages
Total download size: 21 M
Installed size: 42 M
Downloading Packages:
(1/17): erlang-compiler-21.3.8.15-1.fc30.x86_64.rpm 911 kB/s | 1.1 MB 00:01
(2/17): erlang-crypto-21.3.8.15-1.fc30.x86_64.rpm 1.1 MB/s | 141 kB 00:00
(3/17): erlang-asn1-21.3.8.15-1.fc30.x86_64.rpm 441 kB/s | 742 kB 00:01
(4/17): erlang-erts-21.3.8.15-1.fc30.x86_64.rpm 2.7 MB/s | 2.2 MB 00:00
(5/17): erlang-inets-21.3.8.15-1.fc30.x86_64.rpm 2.6 MB/s | 646 kB 00:00
(6/17): erlang-kernel-21.3.8.15-1.fc30.x86_64.rpm 1.9 MB/s | 1.4 MB 00:00
(7/17): erlang-mnesia-21.3.8.15-1.fc30.x86_64.rpm 922 kB/s | 767 kB 00:00
(8/17): erlang-parsetools-21.3.8.15-1.fc30.x86_64.rpm 669 kB/s | 175 kB 00:00
(9/17): erlang-public_key-21.3.8.15-1.fc30.x86_64.rpm 602 kB/s | 612 kB 00:01
(10/17): erlang-runtime_tools-21.3.8.15-1.fc30.x86_64.rpm 384 kB/s | 215 kB 00:00
(11/17): erlang-sasl-21.3.8.15-1.fc30.x86_64.rpm 421 kB/s | 279 kB 00:00
(12/17): erlang-hipe-21.3.8.15-1.fc30.x86_64.rpm 465 kB/s | 2.8 MB 00:06
(13/17): erlang-ssl-21.3.8.15-1.fc30.x86_64.rpm 325 kB/s | 931 kB 00:02
(14/17): erlang-syntax_tools-21.3.8.15-1.fc30.x86_64.rpm 246 kB/s | 410 kB 00:01
(15/17): elixir-1.9.0-1.fc30.x86_64.rpm 392 kB/s | 4.9 MB 00:12
(16/17): erlang-stdlib-21.3.8.15-1.fc30.x86_64.rpm 580 kB/s | 3.0 MB 00:05
(17/17): erlang-tools-21.3.8.15-1.fc30.x86_64.rpm 294 kB/s | 618 kB 00:02
------------------------------------------------------------------------------------------------------
Total 1.5 MB/s | 21 MB 00:13
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : erlang-crypto-21.3.8.15-1.fc30.x86_64 1/17
Running scriptlet: erlang-erts-21.3.8.15-1.fc30.x86_64 2/17
Installing : erlang-erts-21.3.8.15-1.fc30.x86_64 2/17
Installing : erlang-kernel-21.3.8.15-1.fc30.x86_64 3/17
Installing : erlang-stdlib-21.3.8.15-1.fc30.x86_64 4/17
Installing : erlang-hipe-21.3.8.15-1.fc30.x86_64 5/17
Installing : erlang-compiler-21.3.8.15-1.fc30.x86_64 6/17
Installing : erlang-syntax_tools-21.3.8.15-1.fc30.x86_64 7/17
Installing : erlang-mnesia-21.3.8.15-1.fc30.x86_64 8/17
Installing : erlang-runtime_tools-21.3.8.15-1.fc30.x86_64 9/17
Installing : erlang-asn1-21.3.8.15-1.fc30.x86_64 10/17
Installing : erlang-public_key-21.3.8.15-1.fc30.x86_64 11/17
Installing : erlang-inets-21.3.8.15-1.fc30.x86_64 12/17
Installing : erlang-ssl-21.3.8.15-1.fc30.x86_64 13/17
Installing : erlang-tools-21.3.8.15-1.fc30.x86_64 14/17
Installing : erlang-sasl-21.3.8.15-1.fc30.x86_64 15/17
Installing : erlang-parsetools-21.3.8.15-1.fc30.x86_64 16/17
Installing : elixir-1.9.0-1.fc30.x86_64 17/17
Running scriptlet: elixir-1.9.0-1.fc30.x86_64 17/17
Verifying : elixir-1.9.0-1.fc30.x86_64 1/17
Verifying : erlang-asn1-21.3.8.15-1.fc30.x86_64 2/17
Verifying : erlang-compiler-21.3.8.15-1.fc30.x86_64 3/17
Verifying : erlang-crypto-21.3.8.15-1.fc30.x86_64 4/17
Verifying : erlang-erts-21.3.8.15-1.fc30.x86_64 5/17
Verifying : erlang-hipe-21.3.8.15-1.fc30.x86_64 6/17
Verifying : erlang-inets-21.3.8.15-1.fc30.x86_64 7/17
Verifying : erlang-kernel-21.3.8.15-1.fc30.x86_64 8/17
Verifying : erlang-mnesia-21.3.8.15-1.fc30.x86_64 9/17
Verifying : erlang-parsetools-21.3.8.15-1.fc30.x86_64 10/17
Verifying : erlang-public_key-21.3.8.15-1.fc30.x86_64 11/17
Verifying : erlang-runtime_tools-21.3.8.15-1.fc30.x86_64 12/17
Verifying : erlang-sasl-21.3.8.15-1.fc30.x86_64 13/17
Verifying : erlang-ssl-21.3.8.15-1.fc30.x86_64 14/17
Verifying : erlang-stdlib-21.3.8.15-1.fc30.x86_64 15/17
Verifying : erlang-syntax_tools-21.3.8.15-1.fc30.x86_64 16/17
Verifying : erlang-tools-21.3.8.15-1.fc30.x86_64 17/17
Installed:
elixir-1.9.0-1.fc30.x86_64 erlang-asn1-21.3.8.15-1.fc30.x86_64
erlang-compiler-21.3.8.15-1.fc30.x86_64 erlang-crypto-21.3.8.15-1.fc30.x86_64
erlang-erts-21.3.8.15-1.fc30.x86_64 erlang-hipe-21.3.8.15-1.fc30.x86_64
erlang-inets-21.3.8.15-1.fc30.x86_64 erlang-kernel-21.3.8.15-1.fc30.x86_64
erlang-mnesia-21.3.8.15-1.fc30.x86_64 erlang-parsetools-21.3.8.15-1.fc30.x86_64
erlang-public_key-21.3.8.15-1.fc30.x86_64 erlang-runtime_tools-21.3.8.15-1.fc30.x86_64
erlang-sasl-21.3.8.15-1.fc30.x86_64 erlang-ssl-21.3.8.15-1.fc30.x86_64
erlang-stdlib-21.3.8.15-1.fc30.x86_64 erlang-syntax_tools-21.3.8.15-1.fc30.x86_64
erlang-tools-21.3.8.15-1.fc30.x86_64
Complete!
The installation said to add it to the $PATH
variable but on Fedora 30, a symbolic link of elixir
is installed in the /usr/bin directory
that points to /usr/share/elixir/1.9.0/bin/elixir
shell script. Next, a version check, like this:
it returned
Erlang/OTP 21 [erts-10.3.5.11] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:1] [hipe]
Elixir 1.9.0 (compiled with Erlang/OTP 21) |
Erlang/OTP 21 [erts-10.3.5.11] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:1] [hipe]
Elixir 1.9.0 (compiled with Erlang/OTP 21)
Next, I created a little elixir
test program, naturally after I glanced through the documentation for a Hello World program, like this hello.exs
file:
IO.puts "Hello, Elixir World!" |
IO.puts "Hello, Elixir World!"
Then, I ran it as stand alone file with only read and write, read, and read privileges:
It returns:
Next, I tried to read the file from the file system in the iex
interactive shell. I thought the example on the website was odd because it gave the impression that you were to call iex
recursively but I discovered that’s not the case. You can only run it from the OS shell, and the file must have read, write, execute privileges for whomever calls it. Then, this syntax works from the Linux CLI interfaace:
Then, you exit the shell by issuing a ^Z
(CTRL+Z
). If you try ^C
, you’ll need to follow that with ^D
, which I found in some notes. The ^Z
is the normal kill signal for the current process, which appears the proper way to exit the iex
interactive shell. Overall, the interactive shell is virtually useless except to validate small syntax examples.