07-16-2020, 01:26 AM
(05-28-2020, 01:58 PM)kervel Wrote: Hello,
i think it should be possible to get rid of docker completely using debootstrap.
I got google chrome running as follows:
Now inside the chroot i edited /etc/apt/sources.list to enable non-free and contrib and then i was able to do apt update && apt install chromium.Code:mkdir deb
debootstrap --arch=armhf buster deb
cp deb/lib/ld-linux-armhf.so.3 /lib
sudo chroot deb /bin/bash
Once this is done, one can launch chromium as follows:
Code:LD_LIBRARY_PATH=$PWD/lib:$PWD/usr/lib/:$PWD/usr/lib/arm-linux-gnueabihf/:\
$PWD/lib/arm-linux-gnueabihf/:$PWD/usr/lib/arm-linux-gnueabihf/pulseaudio/ \
usr/lib/chromium/chromium
this is without docker or chroot or x forwarding ..
Hey,
I just did this based on a systemd-nspawn container following the guides here:
- https://patrickskiba.com/sysytemd-nspawn...spawn.html
- https://patrickskiba.com/sysytemd-nspawn...spawn.html
Like this idea much better than the docker image approach...