Questions tagged [yum]

yum is a software package manager that installs, updates, and removes packages on RPM-based systems.

yum is a software package manager that installs, updates, and removes packages on RPM-based systems. It automatically computes dependencies and figures out what things should occur to install packages. yum makes it easier to maintain groups of machines without having to manually update each one using rpm.

1853 questions
0
votes
0 answers

yum not working because of difficulty importing python module

I am running a CentOS 7.2 system, and I recently used pyenv to install Python 2.7.5. I am rather new to Linux, and I was under the impression that I should use pyenv to install Python so as not to interfere with the "system Python." Before…
dyson
  • 93
  • 8
0
votes
1 answer

error in installing ruby-devel using yum?

Hello I try to install ruby gem json but it gives following error `Building native extensions. This could take a while... ERROR: Error installing json: ERROR: Failed to build gem native extension. mkmf.rb can't find header files for ruby at…
naresh
  • 1
  • 4
0
votes
1 answer

How to install phpMyAdmin to CentOS

I am working on installing and configuring phpMyAdmin at work and I am having issue with my repo not finding all the dependences of phpMyAdmin. Below is my yum.repos.d list: yum.repos.d]# ls epel.repo  redhat.repo      remi-php71.repo …
0
votes
1 answer

can not yum install anything on AWS RHEL-7.3

I am new user to AWS. I tried to install some software on by using yum, but it always return things like this : [ec2-user@ip-173-32-39-168 yum.repos.d]$ sudo yum install python-pip Loaded plugins: amazon-id, rhui-lb, search-disabled-repos No package…
Pzhang
  • 193
  • 2
  • 14
0
votes
1 answer

PHP Fatal error: Class 'Threaded' not found in /var/www/ ... .php on line nn

I've installed php70 using the Remi repository on Centos 7 and need to get thread safety enabled as I am getting the error mentioned in the title. running: php70 -i|grep -i thread I get: Thread Safety => disabled I have tried installing the…
Willem van Ketwich
  • 5,666
  • 7
  • 49
  • 57
0
votes
1 answer

Oracle Linux: Metadata file does not match checksum

I am facing this issue : Metadata file does not match checksum while am doing - yum update I followed every step of this link but yet it fails: https://community.oracle.com/thread/2550364 I have even tried the following yum clean metadata adding…
Hardik Gupta
  • 4,700
  • 9
  • 41
  • 83
0
votes
1 answer

Chef issue with local rpm package installation on oracle linux (oel)

I'm struggling with installation of packages available in form of locally downloaded rpm file - just on Oracle Linux (OEL). Is there a bug? Has anyone observed this? It would be a huge bug, so I'm bit surprised. Chef recipe is quite…
r2oro
  • 43
  • 6
0
votes
1 answer

Reading Linux Repositories from Third Party

I am trying to create an app that would be able to generate kickstart scripts (along other things) and for one of the things to add was a list of packages you can install (obviously wont display them all, but will have a function to allow you to…
Rhodderz
  • 25
  • 3
0
votes
1 answer

Trouble with installing Monitorix (Centos 7)

I am trying to install Monitorix; but I can't seem to overcome certain issues with the required modules. I have every prerequisite except for three of the perl modules (MIME-Lite, HTTP-Server-Simple, and Config-General). Even though I have installed…
0
votes
0 answers

Ansible playbook exiting without giving proper error message

I'm facing an issue with an Ansible playbook. Ansible is exiting without giving any proper error message. Here is my code: - name: Installing dependencies yum: pkg={{ item }} state=latest with_items: - gtk+-devel - gtk2-devel I…
rolz
  • 591
  • 2
  • 11
  • 23
0
votes
1 answer

Issue while installing graylog-web

While installing graylog2-web application with yum, I faced the below issue --> Finished Dependency Resolution Error: graylog-server conflicts with graylog2-web-0.20.6-4.noarch You could try using --skip-broken to work around the problem You could…
0
votes
2 answers

How can I silence the Yum Python API module output?

Is there a way to prevent the yum API from creating output when it runs? For instance, if I run this simple code (with yum-3.4.3-132.el7.centos.0.1): import yum yb = yum.YumBase() yb.repos.populateSack(mdtype='metadata', cacheonly=0) I get the…
sosiouxme
  • 1,226
  • 16
  • 26
0
votes
0 answers

How to create a self sustained python program

Is it possible using virtualenv to create self sustained deb package for python program. which doesn't need any external dependencies, every dependencies are within deb/rpm package.
Sumit Murari
  • 1,597
  • 3
  • 28
  • 43
0
votes
1 answer

How to sudo yum install a list of packages only if they are not installed?

I am trying to improve a build script (bash or Makefile) to install some prerequisites if necessary. I do have a long list of packages (10-15) and I do want to install them only if they are not installed. As the build script may be run by non root…
sorin
  • 161,544
  • 178
  • 535
  • 806
0
votes
1 answer

Warning: RPMDB altered outside of yum hangs on rpm install

I just created rpm package which contains few shell scripts and My rpm executes those shell scripts in post installation step ( i.e %post section). My RPM is created successfully and when I run rpm -ivh myrpmfile.rpm RPM able to find my shell…