Install Deb Package On Fedora 17 User New Instant
su -c 'alien -rk my_program.deb'
It sounds like you're asking how to install a .deb package on as a new user .
alien --to-rpm myprogram.deb
By using the native RPM format, your system remains stable and easier to manage. If you'd like, I can: Help you find the specific yum command for a program. Explain how to set up third-party repositories. Give you a crash course in yum commands. Let me know what software you are trying to install! install deb package on fedora 17 user new
If you’re new to Fedora 17 and coming from a Debian‑based distribution like Ubuntu or Linux Mint, you might be wondering how to install a .deb package. After all, .deb is the native package format for Debian and its derivatives, while Fedora uses (Red Hat Package Manager) packages.
This method is tedious and error‑prone. Only use it for simple, self‑contained applications or when you absolutely cannot use alien .
This places the application files into their intended folders (like /usr/bin/ or /usr/share/ ). Note that manually extracted apps will not automatically update, and you must delete the files manually if you want to uninstall the app later. Troubleshooting Dependency Issues su -c 'alien -rk my_program
While converting packages works for simple applications, it can sometimes cause stability issues.
su -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm' su -c 'yum install alien'
A .deb file is an ar archive containing three files: debian-binary , control.tar.gz , and data.tar.gz (or data.tar.xz ). Explain how to set up third-party repositories
Before you wrestle with converting a .deb package, consider these safer, easier options:
Fedora 17 is based on the package management system. The package manager ( yum in Fedora 17, though newer versions use dnf ) expects files with the .rpm extension. A .deb file is a different archive format (an ar archive containing compressed tar files) with its own internal structure and dependency metadata.