Announcement

Collapse
No announcement yet.

How to install a rpm package?

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to install a rpm package?

    I need to install a rpm package.

    I was told to use dpkg -alien. However when I type man dpkg there is no -alien option.

    Is there another way?


    #2
    Re: How to install a rpm package?

    Either go to adept and install it or
    Code:
    sudo apt-get install alien
    in konsole.
    Challenges are what that keeps us from the borderline of boredom in life's journey. Linux user #419401

    Comment


      #3
      Re: How to install a rpm package?

      You use alien to convert it to a deb, then dpkg to install

      Use 'sudo apt-install alien' for the package

      Then its usually just a case of

      Code:
      alien somepackage.rpm
      dpkg -i somepackage.deb
      Be aware that it is not 100% due to various differences between distros.

      Comment


        #4
        Re: How to install a rpm package?

        Thanks for the help. It worked fine.

        Comment

        Working...
        X