Skip to content

Instantly share code, notes, and snippets.

@raspberrypisig
Created November 18, 2015 09:52
Show Gist options
  • Save raspberrypisig/3a2b6bad08354910f7a0 to your computer and use it in GitHub Desktop.
Save raspberrypisig/3a2b6bad08354910f7a0 to your computer and use it in GitHub Desktop.
// The instructions https://www.raspberrypi.org/forums/viewtopic.php?f=63&t=121195 will get
// chromium 45 installed on rpi2 with jessie, but couldn't get it to run
// This is how I did it
//run from terminal under user pi - one time operation
mkdir /home/pi/chromium
cat <<EOF > start-chrome.sh
lxterminal --command='sudo chromium-browser --disable-setuid-sandbox --user-data-dir=/home/pi/chromium'
EOF
chmod +x start-chrome.sh
//run chrome every time from command line - haven't figured out how to run from menu
./start-chrome.sh
// Can run apps downloaded from store by typing chrome://apps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment