Last active
November 19, 2015 05:50
-
-
Save jetsonhacks/9259acbd31b2dfc6dfe6 to your computer and use it in GitHub Desktop.
NVIDIA Jetson TK1 Configure System
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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