Linux Debian execute alien conversion rpm error (error:specify sequence to run) solution
This article mainly introduces the solution to the error: dh: error:specify sequence to run when executing the alien command to convert the rpm package in Linux Debian.
Error message:
dh dh: error:specify sequence to run make:***[debian/rules:7:binary]Error 25
Solution:
1) Run the following command to fix the rpm problem
apt-get --fix-broken install
2) Execute the following command to download and install
wget http://archive.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-gtk2_2.24.0-5.1ubuntu2_amd64.deb wget http://azure.archive.ubuntu.com/ubuntu/pool/universe/p/pygobject-2/python-gobject-2_2.28.6-14ubuntu1... wget http://security.ubuntu.com/ubuntu/pool/universe/p/pycairo/python-cairo_1.16.2-2ubuntu2_amd64.deb dpkg -i python-gobject-2_2.28.6-14ubuntu1_amd64.deb dpkg -i python-cairo_1.16.2-2ubuntu2_amd64.deb dpkg -i python-gtk2_2.24.0-5.1ubuntu2_amd64.deb
3) After installing the above software package, install alien
the 8.90 version
apt-get remove alien wget http://archive.ubuntu.com/ubuntu/pool/main/a/alien/alien_8.90_all.deb dpkg -i alien_8.90_all.deb
0 Comments