Install Deb Package On Fedora 17 User New [patched] -

su -

su -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm' su -c 'yum install alien'

sudo yum localinstall mysoftware-version.rpm

(highly recommended):

Note: If Alien is not in your default repositories, you may need to enable the RPM Fusion or a similar legacy repository. Phase 3: Converting the Package

He spent the next hour on the forums, learning about rpm -e to erase the package and cleaning up his database.

Now, use alien to convert it. The command sudo alien -r package_name.deb creates a .rpm file in the same directory. sudo alien -r application.deb Use code with caution. Tells alien to generate an RPM file. install deb package on fedora 17 user new

In Fedora 17, you can sometimes double-click the newly created .rpm file to install it via the graphical software center, but the terminal method provided above is much more reliable for troubleshooting. Summary Checklist Search for an RPM version first. Install Alien via yum . Convert the .deb to .rpm using alien -r . Install the result with yum localinstall .

You should see epel in the list.

To bridge this gap, we will use , a command-line tool that converts between different package formats. Prerequisites A running installation of Fedora 17. Root or sudo privileges. An internet connection to download necessary tools. Step 1: Install Alien and Dependencies su - su -c 'rpm -Uvh http://download

You will need root privileges. Type the following command: sudo yum install alien Use code with caution.

Suddenly, a new file appears: package_name.rpm . It’s beautiful. The Final Boss: Dependencies

– you can overwrite critical system files. Always check what you are copying. For libraries, you might need to put them in /usr/local/lib and update the linker cache: The command sudo alien -r package_name

alien --to-rpm myprogram.deb

Installing Software on Fedora 17: Handling .deb Packages for New Users