I downloaded one of the drivers and saw that it is a
.rpm file. Ubuntu normally uses
.deb files. You need to convert the drivers to .deb to be able to install.
There’s a utility called Alien that converts packages from one format to the other.
Run this command to install alien and other necessary packages:
Code:
sudo apt-get install alien dpkg-dev debhelper build-essential
To convert a package from rpm to debian format, use this command syntax:
Code:
sudo alien -d packagename.rpm
To install the package, you’ll use the dpkg utility, which is the internal package management tool behind debian and Ubuntu.
Code:
sudo dpkg -i packagename.deb
Source
---------- Post added at 12:42 AM ---------- Previous post was at 12:35 AM ----------
Example
Suppose you have to install the touch pad driver
HP-SLED-Commercial-15.3.18_32.rpm file
To convert .rpm to debian
Code:
sudo alien -k HP-SLED-Commercial-15.3.18_32.rpm
Now you should be having
HP-SLED-Commercial-15.3.18_32.deb file
To install .deb file
Code:
sudo dpkg -i HP-SLED-Commercial-15.3.18_32.deb