Is anyone successfully running 32-bit firefox in a chroot environment?
I need to run firefox in a 32-bit chroot to connect to a VPN. I also use this chroot environemnt to test Python development code in 32-bit environment. I do not have firefox installed outside of the chroot. I ran the following
I then run
Inside the chroot environment I install firefox.
Set the display
Then try to run firefox.
A dialogue box pops up with the message "Your Firefox profile cannot be loaded. It may be missing or inaccessible." The same message pops up when I run `firefox -P` to try and create a profile.
I need to run firefox in a 32-bit chroot to connect to a VPN. I also use this chroot environemnt to test Python development code in 32-bit environment. I do not have firefox installed outside of the chroot. I ran the following
Code:
sudo apt-get install debootstrap schroot CHROOT=/tmp/saucy-i386; mkdir -p $CHROOT; sudo debootstrap --arch=i386 --include=sudo,wget --components=main,universe,multiverse saucy $CHROOT [URL]http://debian.lcs.mit.edu/ubuntu[/URL] echo -e "[saucy-i386]\ndescription=Ubuntu saucy i386 architecture\ndirectory=$CHROOT\ntype=directory\nusers=$USER\nroot-groups=root\n" | sudo bash -c 'cat - > /etc/schroot/chroot.d/saucy-i386'
Code:
schroot -c saucy-i386
Code:
sudo apt-get install firefox
Code:
export DISPLAY=:0
Code:
firefox
Comment