Installing
-
2. Installing Software
First, Install the needed Tools:
sudo apt-get install alien dpkg-dev debhelper build-essential
However all this stuff may be Already installed…
-
3. Converting Package
To Convert the Rpm package in Fedora format
First, access the Download location by default with:cd ~/Downloads
To Check it’s there List the contents with:
ls . | grep deb
The grep Command refine the output List showing only the Entries matching the Keyword.
But if you are in Trouble to Find it out on Terminal then See: How to Access Downloads Folder from Browser.alien -r ./[MYPACKAGE].deb
Replace [MYPACKAGE] with your current one in the above.
-
4. Installing Package
Then to Install the Package
Simply play:sudo rpm -ivh ./[MYPACKAGE].rpm
Or for trying to manage the eventual Dependencies:
sudo dnf install ./[MYPACKAGE].rpm
Contents