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-build the ATI drivers on Fedora 20 after upgrading the kernel.

I recently updated to a new kernel version and the ATI drivers were not loaded as they had not been built for that kernel. I had to re-compile the ATI drivers, so I switched to the root user and navigated to this folder. [root@localhost homer]# cd /lib/modules/fglrx/build_mod/[root@localhost homer]# cd /lib/modules/fglrx/build_mod/…

Read More

How to install libdvdcss on Fedora 20 to enable DVD playback.

The libdvdcss library is used to playback encrypted DVD disks on a Linux operating system. Download the tarball here: http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libdvdcss.html. Then we need to unpack the tarball. [homer@localhost libdvdcss-1.2.13]$ tar -xvf libdvdcss-1.2.13.tar.bz2[homer@localhost libdvdcss-1.2.13]$ tar -xvf libdvdcss-1.2.13.tar.bz2 Then enter the directory. [homer@localhost libdvdcss-1.2.13]$ cd libdvdcss-1.2.13/[homer@localhost libdvdcss-1.2.13]$ cd libdvdcss-1.2.13/ Then begin the…

Read More

E16 window manager available for Fedora Core 19.

The old E16 window manager is available for Fedora 19. I just discovered this when installing some new software to try out. Install it using this command. yum install e16 e16-themes.noarch e16-epplets.x86_64 This is a very old but good looking window manager. There are some awesome themes available for this…

Read More

Another way to remove the Testing Only watermark for ATI drivers on Linux.

If the ATI drivers for Linux have the Testing Only watermark; you may remove it by performing this small edit. echo “9777c589791007f4aeef06c922ad54a2:ae59f5b9572136d99fdd36f0109d358fa643f2bd4a2644d9efbb4fe91a9f6590a145:f612f0b01f2565cd9bd834f8119b309bae11a1ed4a2661c49fdf3fad11986cc4f641f1ba1f2265909a8e34ff1699309bf211a7eb4d7662cd9f8e3faf14986d92f646f1bc” > /etc/ati/signature Just run this command to add this long line to the /etc/ati/signature file; removing the UNSIGNED text. This works perfectly if you want to get rid…

Read More

A look at the CentOS Linux distribution. This is very good for servers.

The CentOS Linux distribution is a free version of the Red Hat Enterprise Linux distribution that is intended for datacenter deployments. This free operating system allows someone to setup a Linux server easily with a free and reliable operating system. CentOS comes with an older kernel version; 2.6.32. [homer@neo ~]$…

Read More

How to install Virtualbox 4.3 on Fedora Core 19.

To install Virtualbox 4.3 on Fedora 19; firstly navigate to the directory that contains the *.repo files. cd /etc/yum.repos.d/cd /etc/yum.repos.d/ Then retrieve the file for the Virtualbox repository. wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repowget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo And update the repository files. yum updateyum update Now you should be able to install Virtualbox. yum install VirtualBox-4.3yum…

Read More

The old xmms music player is still available for Fedora 19!

To install the old xmms mp3 player on Fedora 19 just use this command. root@neo homer# yum install xmms.x86_64 xmms-mp3.x86_64 xmms-pulse.x86_64 xmms-flac.x86_64root@neo homer# yum install xmms.x86_64 xmms-mp3.x86_64 xmms-pulse.x86_64 xmms-flac.x86_64 This will install xmms as well as support for the Pulseaudio sound system and the FLAC sound codec. I thought that…

Read More

How to install some cool GTK themes in Fedora 19 MATE.

To install some awesome GTK themes for Fedora 19 MATE; type this command. yum install gtk-equinox-engine.x86_64 gtk-nimbus-engine.x86_64 gtk-nodoka-engine.x86_64yum install gtk-equinox-engine.x86_64 gtk-nimbus-engine.x86_64 gtk-nodoka-engine.x86_64 To install some extra wallpapers and a couple of extra themes for Fedora, use this command. yum install gnome-themes-legacy.noarch gnome-theme-curvylooks.noarch desktop-backgrounds-waves.noarchyum install gnome-themes-legacy.noarch gnome-theme-curvylooks.noarch desktop-backgrounds-waves.noarch There is a…

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

How to fix an annoying dependency issue when updating Fedora 19.

I ran yum-update on my Fedora 19 installation today and I got this error. root@neo homer# yum update Loaded plugins: fastestmirror, langpacks, refresh-packagekit Loading mirror speeds from cached hostfile * rpmfusion-free: rpmfusion.mirror.uber.com.au * rpmfusion-free-debuginfo: rpmfusion.mirror.uber.com.au * rpmfusion-free-source: rpmfusion.mirror.uber.com.au * rpmfusion-free-updates: rpmfusion.mirror.uber.com.au * rpmfusion-free-updates-debuginfo: rpmfusion.mirror.uber.com.au * rpmfusion-free-updates-source: rpmfusion.mirror.uber.com.au * rpmfusion-nonfree: rpmfusion.mirror.uber.com.au…

Read More

Apple open source code that is available to everyone. How I installed the zsh shell on Fedora 19 from source code.

http://www.apple.com/opensource/. There is a good selection of open-source code here that Apple is using on their machines. I downloaded the tarball of the zsh shell here: http://www.opensource.apple.com/source/zsh/zsh-55/zsh-4.3.11.tar.bz2. This was compiled very easily after I installed the ncurses-devel RPM from this location for Fedora 19: ftp://rpmfind.net/linux/fedora/linux/releases/19/Everything/x86_64/os/Packages/n/ncurses-devel-5.9-11.20130511.fc19.x86_64.rpm. Then I was able to…

Read More