Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Debian i386 support on i686
- sudo dpkg --add-architecture i386
- sudo apt update
- sudo apt-get -f install schroot debootstrap lintian
- #creating i386 chroot
- mkdir -p /srv/chroot
- cd /srv/chroot
- debootstrap --arch i386 wheezy wheezy_i386 http://ftp.de.debian.org/debian
- # Changing into the new env (Details: http://wiki.debian.org/chroot)
- chroot /srv/chroot/wheezy_i386 su -
- apt-get update
- apt-get install aptitude alien
- # Converting from rpm to deb
- alien --scripts --verbose --to-deb strangei386.rpm
- #changing back
- exit
- lintian -c strangei386.deb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement