Find the answer to your Linux question:
Results 1 to 5 of 5
Hi all, i am using debian linux on my home pc and want to install some packages of websphere mq over it the problem is that ,those packages are of ...
  1. #1
    Just Joined!
    Join Date
    Sep 2007
    Posts
    3

    Question how can we install packages with extension as .rpm

    Hi all,

    i am using debian linux on my home pc

    and want to install some packages of websphere mq over it

    the problem is that ,those packages are of .rpm extension so when i try to install the same it says as comand not found

    is there any equivalent command for installing .rpm packages over debian

    or else what linux package i should install over debian to install those .rpm packages


    i am using rpm -ivh command which works over red hat linux as it is obvious but not on debian

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi and Welcome !

    Debian doesn't support rpm. Convert .rpm into .deb with alien.
    Code:
    su 
    apt-get install alien
    Check manual of aline. man alien.

    Isn't Websphere available in Debian Sources? Post the exact name of rpm packages here. Try to search it in Debian sources.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Sep 2007
    Posts
    3

    Cool here's the package name

    MQSeriesRuntime-6.0.0-0.i386.rpm and other is

    MQSeriesServer-6.0.0-0.i386.rpm

    and the command i used on red hat was like

    rpm -ivh MQSeriesRuntime-6.0.0-0.i386.rpm

    and same for the other one

    i tried to search over the ibm's site but dint found any packages compatible to the debain
    it might be possible that they recommends red hat for their products

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    I couldn't find those in Debian sources. Convert rpm packages in .deb with alien.
    Code:
    sudo alien -d MQSeriesRuntime-6.0.0-0.i386.rpm
    It will convert package in .deb format. Install it using 'dpkg -i' command.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Sep 2007
    Posts
    3

    Thanx

    ok thanx will follow the instruction provided by you

    hope it works

    will let you know on the same post if done

    thanx again

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •