Last active 1713206136

Revision b9d878cfe50eafa7f4a4dcec65bcaace9eca9537

firefox.txt Raw
1```
2docker run -p 6080:80 -v /dev/shm:/dev/shm dorowu/ubuntu-desktop-lxde-vnc
3```
4
5Browse to http://127.0.0.1:6080/
6
7In the VNC UI, run the LXTerminal. Paste these commands to install a given version of Firefox. Set `FF_VERS` to the release you want. See available releases at http://releases.mozilla.org/pub/firefox/releases
8
9```
10apt-get update && apt-get install wget
11FF_VERS=60.6.3esr
12FF_INST=/firefox/$FF_VERS
13FF_URL=http://releases.mozilla.org/pub/firefox/releases/$FF_VERS/linux-x86_64/en-US/firefox-$FF_VERS.tar.bz2
14mkdir -p $FF_INST
15wget -qO- $FF_URL | tar xvj --strip 1 -C $FF_INST/
16$FF_INST/firefox
17# Optionally link this install as the default FF install:
18# ln -s "$FF_INST/firefox" /usr/bin/firefox
19```
20
21If you have trouble pasting the commands into the Terminal, first launch the Leafpad accessory and try copy/pasting in there first. Then use the Edit menu to copy/paste within apps. You might also try pasting the commands into the novnc clipboard toolbar flyout before pasting into Leafpad.