Is there any distribution of Ubuntu which can be used to install .rpm packages?

Clash Royale CLAN TAG#URR8PPP up vote
0
down vote
favorite
I am trying to install IBM MQ on my Ubuntu (Ubuntu 16.04.4 LTS). But I some how can't install .deb packages inside IBM MQ Visit (stuck on step 3). Every time I try to install the .deb packages I get the following Error. Is there any distribution of Ubuntu which supports .rpm packages, so that I can download and install IBM MQ with .rpm packages in it.
apt dpkg
add a comment |Â
up vote
0
down vote
favorite
I am trying to install IBM MQ on my Ubuntu (Ubuntu 16.04.4 LTS). But I some how can't install .deb packages inside IBM MQ Visit (stuck on step 3). Every time I try to install the .deb packages I get the following Error. Is there any distribution of Ubuntu which supports .rpm packages, so that I can download and install IBM MQ with .rpm packages in it.
apt dpkg
2
The RPM will have dependencies as well. You will have to sort out your dependencies, and then install the package. Not look for an alternate format.
â vidarlo
Apr 20 at 20:06
There is a command that converts rpm packets into deb There is a command that converts rpm package into deb google.com/â¦
â user186255
Apr 20 at 20:08
Have you instead tried the instructions listed in step 4 (the instructions are to use either step 3 or step 4 to install the packages)?
â dobey
Apr 20 at 20:17
I have not tried step 4 of the instructions. I don't need to convert rpm to deb. The packages in the setup are .deb by default. It's just that I am having issues installing these .deb packages.
â trougc
Apr 20 at 20:29
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to install IBM MQ on my Ubuntu (Ubuntu 16.04.4 LTS). But I some how can't install .deb packages inside IBM MQ Visit (stuck on step 3). Every time I try to install the .deb packages I get the following Error. Is there any distribution of Ubuntu which supports .rpm packages, so that I can download and install IBM MQ with .rpm packages in it.
apt dpkg
I am trying to install IBM MQ on my Ubuntu (Ubuntu 16.04.4 LTS). But I some how can't install .deb packages inside IBM MQ Visit (stuck on step 3). Every time I try to install the .deb packages I get the following Error. Is there any distribution of Ubuntu which supports .rpm packages, so that I can download and install IBM MQ with .rpm packages in it.
apt dpkg
asked Apr 20 at 20:03
trougc
1
1
2
The RPM will have dependencies as well. You will have to sort out your dependencies, and then install the package. Not look for an alternate format.
â vidarlo
Apr 20 at 20:06
There is a command that converts rpm packets into deb There is a command that converts rpm package into deb google.com/â¦
â user186255
Apr 20 at 20:08
Have you instead tried the instructions listed in step 4 (the instructions are to use either step 3 or step 4 to install the packages)?
â dobey
Apr 20 at 20:17
I have not tried step 4 of the instructions. I don't need to convert rpm to deb. The packages in the setup are .deb by default. It's just that I am having issues installing these .deb packages.
â trougc
Apr 20 at 20:29
add a comment |Â
2
The RPM will have dependencies as well. You will have to sort out your dependencies, and then install the package. Not look for an alternate format.
â vidarlo
Apr 20 at 20:06
There is a command that converts rpm packets into deb There is a command that converts rpm package into deb google.com/â¦
â user186255
Apr 20 at 20:08
Have you instead tried the instructions listed in step 4 (the instructions are to use either step 3 or step 4 to install the packages)?
â dobey
Apr 20 at 20:17
I have not tried step 4 of the instructions. I don't need to convert rpm to deb. The packages in the setup are .deb by default. It's just that I am having issues installing these .deb packages.
â trougc
Apr 20 at 20:29
2
2
The RPM will have dependencies as well. You will have to sort out your dependencies, and then install the package. Not look for an alternate format.
â vidarlo
Apr 20 at 20:06
The RPM will have dependencies as well. You will have to sort out your dependencies, and then install the package. Not look for an alternate format.
â vidarlo
Apr 20 at 20:06
There is a command that converts rpm packets into deb There is a command that converts rpm package into deb google.com/â¦
â user186255
Apr 20 at 20:08
There is a command that converts rpm packets into deb There is a command that converts rpm package into deb google.com/â¦
â user186255
Apr 20 at 20:08
Have you instead tried the instructions listed in step 4 (the instructions are to use either step 3 or step 4 to install the packages)?
â dobey
Apr 20 at 20:17
Have you instead tried the instructions listed in step 4 (the instructions are to use either step 3 or step 4 to install the packages)?
â dobey
Apr 20 at 20:17
I have not tried step 4 of the instructions. I don't need to convert rpm to deb. The packages in the setup are .deb by default. It's just that I am having issues installing these .deb packages.
â trougc
Apr 20 at 20:29
I have not tried step 4 of the instructions. I don't need to convert rpm to deb. The packages in the setup are .deb by default. It's just that I am having issues installing these .deb packages.
â trougc
Apr 20 at 20:29
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
There is no distribution that natively supports RPM as Buntus/debs use different package managers, but you can convert RPM to DEB and try to install from that. The program that will convert the RPM to DEB is called alien. However, this is normally not recommended as there are normally deb files as well. Or, try installing from source if you are having issues with the .deb.
Here is a link to a site on how to do this: https://www.howtoforge.com/converting_rpm_to_deb_with_alien
Pretty simple once your download alien. Just run alien -k someprogram.noarch.rpm and it will create a .deb file for you. Then you can install the .deb with dpkg -i newlycreateddebfromrpm.deb There is a lot of information on this if you search this site.
The IBM links shows some heavy dependencies and it looks a little quarky on how the install needs to run. Make sure that is followed properly.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
There is no distribution that natively supports RPM as Buntus/debs use different package managers, but you can convert RPM to DEB and try to install from that. The program that will convert the RPM to DEB is called alien. However, this is normally not recommended as there are normally deb files as well. Or, try installing from source if you are having issues with the .deb.
Here is a link to a site on how to do this: https://www.howtoforge.com/converting_rpm_to_deb_with_alien
Pretty simple once your download alien. Just run alien -k someprogram.noarch.rpm and it will create a .deb file for you. Then you can install the .deb with dpkg -i newlycreateddebfromrpm.deb There is a lot of information on this if you search this site.
The IBM links shows some heavy dependencies and it looks a little quarky on how the install needs to run. Make sure that is followed properly.
add a comment |Â
up vote
2
down vote
There is no distribution that natively supports RPM as Buntus/debs use different package managers, but you can convert RPM to DEB and try to install from that. The program that will convert the RPM to DEB is called alien. However, this is normally not recommended as there are normally deb files as well. Or, try installing from source if you are having issues with the .deb.
Here is a link to a site on how to do this: https://www.howtoforge.com/converting_rpm_to_deb_with_alien
Pretty simple once your download alien. Just run alien -k someprogram.noarch.rpm and it will create a .deb file for you. Then you can install the .deb with dpkg -i newlycreateddebfromrpm.deb There is a lot of information on this if you search this site.
The IBM links shows some heavy dependencies and it looks a little quarky on how the install needs to run. Make sure that is followed properly.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
There is no distribution that natively supports RPM as Buntus/debs use different package managers, but you can convert RPM to DEB and try to install from that. The program that will convert the RPM to DEB is called alien. However, this is normally not recommended as there are normally deb files as well. Or, try installing from source if you are having issues with the .deb.
Here is a link to a site on how to do this: https://www.howtoforge.com/converting_rpm_to_deb_with_alien
Pretty simple once your download alien. Just run alien -k someprogram.noarch.rpm and it will create a .deb file for you. Then you can install the .deb with dpkg -i newlycreateddebfromrpm.deb There is a lot of information on this if you search this site.
The IBM links shows some heavy dependencies and it looks a little quarky on how the install needs to run. Make sure that is followed properly.
There is no distribution that natively supports RPM as Buntus/debs use different package managers, but you can convert RPM to DEB and try to install from that. The program that will convert the RPM to DEB is called alien. However, this is normally not recommended as there are normally deb files as well. Or, try installing from source if you are having issues with the .deb.
Here is a link to a site on how to do this: https://www.howtoforge.com/converting_rpm_to_deb_with_alien
Pretty simple once your download alien. Just run alien -k someprogram.noarch.rpm and it will create a .deb file for you. Then you can install the .deb with dpkg -i newlycreateddebfromrpm.deb There is a lot of information on this if you search this site.
The IBM links shows some heavy dependencies and it looks a little quarky on how the install needs to run. Make sure that is followed properly.
answered Apr 20 at 20:23
saleetzo
314
314
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1026788%2fis-there-any-distribution-of-ubuntu-which-can-be-used-to-install-rpm-packages%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
2
The RPM will have dependencies as well. You will have to sort out your dependencies, and then install the package. Not look for an alternate format.
â vidarlo
Apr 20 at 20:06
There is a command that converts rpm packets into deb There is a command that converts rpm package into deb google.com/â¦
â user186255
Apr 20 at 20:08
Have you instead tried the instructions listed in step 4 (the instructions are to use either step 3 or step 4 to install the packages)?
â dobey
Apr 20 at 20:17
I have not tried step 4 of the instructions. I don't need to convert rpm to deb. The packages in the setup are .deb by default. It's just that I am having issues installing these .deb packages.
â trougc
Apr 20 at 20:29