05-28-2020, 01:58 PM
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.
Once this is done, one can launch chromium as follows:
this is without docker or chroot or x forwarding ..
i think it should be possible to get rid of docker completely using debootstrap.
I got google chrome running as follows:
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 ..