Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

Debian distro

115 bytes added, 21:16, 24 June 2019
Pbuilder
A [https://wiki.ubuntu.com/PbuilderHowto pbuilder] environment is a chrooted environment which can have a different distro series or architecture than your host system.
<pre>sudo apt-get install pbuilder pbuilder-scripts qemu-user-staticdebian-keyring debian-archive-keyring ubuntu-keyring emdebian-keyring debian-ports-archive-keyring</pre>
Create ~/.pbuilderrc file with your own pbuilder setup script, upu can use below script:
OS: Either debian, raspbian, or ubuntu
DIST: For example wheezy, jessie, trusty, stretch ...
ARCH: For example amd64, i386, armel, or armhf
Examples:
 <pre>sudo OS=debian DIST=wheezy ARCH=amd64 pbuilder --create
sudo OS=debian DIST=wheezy ARCH=i386 pbuilder --create
sudo OS=debian DIST=wheezy ARCH=armel pbuilder --create
sudo OS=debian DIST=wheezy ARCH=armhf pbuilder --create
</pre>