Install updates and install software on Fedora 22 Linux.

The new dnf command for Fedora 22 replaces the old yum command. But this new utility is still easy to use. To install all pending updates for Fedora 22, use this command. [root@localhost homer]# dnf update[root@localhost homer]# dnf update Use the dnf install command to install software. [root@localhost homer]# dnf…

Read More

How to find out which rpm package provides a file that you need.

How to find out what rpm package provides a file that you need. The yum provides command is useful for finding out this information. You may use wildcards to search for a file, this can make finding it easier. [homer@localhost jackhammer]$ yum provides */redhat**.jpg Loaded plugins: langpacks nagios-3.5.1-4.fc20.x86_64 : Nagios…

Read More

How to re-enable repositories on Fedora Core 19 for YUM.

I had a problem on my Fedora Core 19 system where the Fedora & Livna repositories where not enabled. I found out that I had to edit the /etc/yum.repos.d/fedora.repo file and uncomment the baseurl string for the repo I wanted to use. And then change the enabled=0 value to enabled=1….

Read More