Questions tagged [rpm]

RPM Package Manager is a package management system used primarily for GNU/Linux operating systems. It used the .rpm file format.

RPM Package Manager is a package management system. "RPM" refers to the .rpm file format, files in this format, software packaged in such files, and the package manager itself. RPM was intended primarily for GNU/Linux distributions. The file format is the baseline package format of the Linux Standard Base.

718 questions
0
votes
1 answer

After power failure restart both DNF and YUM stopped working, do nothing, not even metadata check

My environment, happily functioning for a long time, experienced a power outage - of course, the immortal power supply was offline at the time, needing new batteries. As the administrator, I know there hadn't been any updates in some time and there…
Richard T
  • 1,206
  • 12
  • 29
0
votes
1 answer

Oracle Linux 8.3 can't find libyaml-devel

I'm evaluating Oracle Linux as a CentOS alternatives. During my tests I have to compile a package depending on libyaml-devel but the lib isn't present in the repo. I had the impression Oracle Linux would provide the same packages as RHEL. So why I…
0
votes
1 answer

I can use my local apt repository as a local yum repository?

I'm a newbie in Linux. I have a local apt repository. I didn't want to set up a separate machine and http server for my rpm packages and occupy disk. I wonder if there is some way I can use my local apt repository as a local yum repository as well?…
Sheele
  • 16
  • 2
0
votes
3 answers

`yum`/`dnf`/`rpm` equivalent to `dpkg -l` for RHEL/CentOS?

Is there an equivalent yum, dnf, or rpm command to Debian/Ubuntu's dpkg -l command to list both package names and installation status?
wyphan
  • 105
  • 5
0
votes
1 answer

update kernel version that higher then next rhel update

we have rhel server with the following details kernel version - 3.10.0-327.el7.x86_64 more /etc/redhat-release Red Hat Enterprise Linux Server release 7.2 (Maipo) from dmesg we see many problems about i40e: TX driver issue detected, PF reset…
sheffadmin
  • 49
  • 1
  • 3
  • 11
0
votes
1 answer

RHEL4 PHP5 CGI Internal Server Error with SugarCRM 5.5

I'm running an RHEL4 server with Apache 2.0, and I need PHP 5.2.1 - 5.2.11 for SugarCRM Pro 5.5.0. I also need to run it side-by-side with another version of PHP, so I compiled it from source for CGI. Problem is, I keep getting an Internal Server…
geofflee
  • 196
  • 1
  • 2
  • 10
0
votes
1 answer

yum history list + how to verify rpm historical status

The rpm command gives every package installed a transaction ID. The transaction ID is a Unix time stamp (number of seconds since January 1, 1970). You can then perform some operations on packages based on the transaction ID. but on our rhel machines…
sheffadmin
  • 49
  • 1
  • 3
  • 11
0
votes
0 answers

why there are missing rpms when installing the same rhel ISO on different machines

we have a very strange behavior after installing new machines with rhel 7.x ( FROM ISO INSTALLER ) we notice that rpm - libcgroup , isn't installed on the current new machines while before couple month on other machines this rpm - libcgroup was…
sheffadmin
  • 49
  • 1
  • 3
  • 11
0
votes
1 answer

replace rpm with yum while rpm using replacepkgs flag

I use the following rpm syntax in order to install few rpm' syntax that exist under pkgs rpm -ivh --replacefiles --replacepkgs /home/pkgs/*.rpm unfortunately in case of rpm dependencies rpm failed , so we want to use yum in order to solve…
sheffadmin
  • 49
  • 1
  • 3
  • 11
0
votes
1 answer

rpm + how to identify if some rpm was removed or was not installed when installing the OS

we have rhel 7.6 machines we notice that some specific rpm isn't installed on the machine the problem is that we not sure if someone remove it by yum remove or rpm -i or simply rpm was not installed from beginning when OS installed from scratch any…
sheffadmin
  • 49
  • 1
  • 3
  • 11
0
votes
1 answer

rhel + upgrade individual rpm's from rhel 7.1 to rhel 7.7 or batch upgrade of rpms

We have rhel 7.1 version server , with local repositories of rhel 7.1 ( with rpms’ from rhel 7.1 ) We want to replace the local repository with rpm’s of rhel 7.7 so we intend to Remove the local repo of 7.1 as rm -rf /var/RHEL7.1 and create new…
sheffadmin
  • 49
  • 1
  • 3
  • 11
0
votes
0 answers

Unable to update package, because it requires jre1.8 - "Try using --skip-broken". Jre1.8 is already installed on the machine, though

so I'm unable to run a yum update on one of my machines. It returns the following error: [root@yadayada ~]# yum -y update Loaded plugins: fastestmirror Setting up Update Process Loading mirror speeds from cached hostfile Resolving Dependencies There…
0
votes
0 answers

How to build kernel-debuginfo from upstream kernel

box: centos7.5 x86_64 from upstream: tar xvfz linux-4.xx.xx make menuconfig ( set CONFIG_DEBUG_INFO=y) save .config make rpm-pkg output 3 rpm:kernel-xxx, kernel-devel-xxx, src.rpm but where is debuginfo and debuginfo-common rpm packages? How to…
CVN004
  • 1
  • 1
0
votes
2 answers

I cannot add Centos 7 repository to install FFMPEG

When trying to use this command to add ffmpeg repository in Centos 7, I tried to add the repository using this command: yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm After several seconds,…
jstuardo
  • 155
  • 1
  • 7
0
votes
4 answers

Install rpm packages with Ansible using rpm application (not yum)

I want to install some RPM packages using Ansible and the installed rpm package manager. yum is not installed. Using command module with rpm -i {{package}} causes the task to fail if the package is already installed. I'm searching for an idiomatic…
Michael
  • 345
  • 6
  • 19