Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ###################################################################################################################
- #####
- ##### BREAKING DOWN A .deb FILE AND CHANGEIN THE ARCHITECTURE
- #####
- ###################################################################################################################
- sudo alien -g package-name.rpm
- cd package-dir/
- sudo vi debian/control
- Now change the architecture (i386 in my case) to be the one you need. For example, I added the amd64 archicture and this is how the line ended up:
- Architecture: i386, amd64
- Last step:
- sudo debian/rules binary
- This will produce the .deb file.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement