-1

I am trying to convert .rpm to .deb using alien command:

sudo alien <name of package>.rpm

But it's just create a directory that has the same name but never get .deb to install it

There is no errors while converting it

How could I get .deb?

Jeff Schaller
  • 66,199
  • 35
  • 114
  • 250
  • 1
    Cross-posted: https://askubuntu.com/questions/1125154/converting-rpm-to-deb-using-alien – steeldriver Mar 12 '19 at 23:49
  • @steeldriver that's mine as well , is that not allowed? – Mohammed Rizqallah Mar 13 '19 at 00:53
  • It's discouraged: see [Is cross-posting a question on multiple Stack Exchange sites permitted if the question is on-topic for each site?](https://meta.stackexchange.com/questions/64068/is-cross-posting-a-question-on-multiple-stack-exchange-sites-permitted-if-the-qu) – steeldriver Mar 13 '19 at 01:21

1 Answers1

0

alien should default to using the --to-deb argument, according to the man page, but to be safe, try specifying it explicitly. According to the Debian wiki:

sudo alien --to-deb /path/to/file.rpm
Michael A
  • 1,501
  • 5
  • 19
  • 33