rpm is a package type used by Red Hat/Fedora. It is possible to install rpm packages in Ubuntu but I don't recommend it as I had bad experiences doing that.
Firebird is already in the Ubuntu repository, you don't have to download it and install it by yourself. Just open a terminal (Ctrl+Alt+T) and run:
rpm is a package type used by Red Hat/Fedora. It is possible to install rpm packages in Ubuntu but I don't recommend it as I had bad experiences doing that.
Firebird is already in the Ubuntu repository, you don't have to download it and install it by yourself. Just open a terminal (Ctrl+Alt+T) and run:
Have you read this?
It doesn't look like you need the
.rpm
file, running:sudo apt-get install firebird2.1-super
from a terminal should install FireBird. The link I gave provides details on further configuration as well.First, install Alien. Alien is a utility that converts .rpm to .deb files.
sudo apt-get install alien dpkg-dev debhelper build-essential
Navigate to your downloads directory with the following command:
cd ~/Downloads
Run alien on your Firebird package:
sudo alien FirebirdSS-2.5.2.26540-0.i686.rpm
Install the new deb file with
dpkg
sudo dpkg -i FirebirdSS-2.5.2.26540-0.i686.deb