A1-X1000: Debian64
Posted: Sun Jul 13, 2014 7:06 pm
If you install Debian on your A1-X1000, then you get a 32-bit userland with a 64-bit kernel. But it is possible to install a 64-bit userland. 

Please install the following packages:
1. debootstrap
2. libc6-ppc64
3. libc6-dev-ppc64
4. socat
Setting up a ppc64 chroot on your ppc32 system:
Install the 'debian-ports-archive-keyring' package:
Close your 64-bit chroot environment:
If you want to use your X server for the chroot environment, then you have to open a TCP port for the chroot X clients:
Start your 64-bit chroot environment with X11 support:
And now you can use 64-bit programs on Debian. 

Please install the following packages:
1. debootstrap
2. libc6-ppc64
3. libc6-dev-ppc64
4. socat
Setting up a ppc64 chroot on your ppc32 system:
Code: Select all
debootstrap --no-check-gpg --arch=ppc64 --variant=buildd sid /chroots/sid-ppc64 http://ftp.de.debian.org/debian-ports
Code: Select all
chroot /chroots/sid-ppc64
Code: Select all
mount -t proc proc /proc
Code: Select all
apt-get install debian-ports-archive-keyring
Code: Select all
apt-get update
Code: Select all
apt-get install xorg
Code: Select all
exit
Code: Select all
socat -d -d TCP-LISTEN:6000,fork,reuseaddr,range=127.0.0.1/8 UNIX-CONNECT:/tmp/.X11-unix/X0
Code: Select all
DISPLAY=127.0.0.1:0.0 chroot /chroots/sid-ppc64
