Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jetsonhacks
Last active November 19, 2015 05:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jetsonhacks/9259acbd31b2dfc6dfe6 to your computer and use it in GitHub Desktop.
Save jetsonhacks/9259acbd31b2dfc6dfe6 to your computer and use it in GitHub Desktop.
NVIDIA Jetson TK1 Configure System
#!/bin/sh
# Add some niceties for a new NVIDIA Jetson TK1 - LT 19.3
# Installs Chromium, git and aptitude
# Mark this file as executable in the permissions are of the properties dialog then
# $ sudo ./configureJetson.sh
# Don't allow apt-get upgrade of xorg overwrite libglx.so
# May be fixed in future versions of LT4
sudo apt-mark hold xserver-xorg-core
apt-add-repository universe
apt-add-repository multiverse
# install the mp3 decoders and such
apt-get install ubuntu-restricted-extras
apt-get update
apt-get install bash-completion command-not-found -y
gsettings set com.canonical.Unity.Lenses disabled-scopes "['more_suggestions-amazon.scope', \
'more_suggestions-u1ms.scope', 'more_suggestions-populartracks.scope', 'music-musicstore.scope', \
'more_suggestions-ebay.scope', 'more_suggestions-ubuntushop.scope', 'more_suggestions-skimlinks.scope']"
apt-get install chromium-browser -y
apt-get install git -y
apt-get install aptitude -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment