This file contains hidden or 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 |
This file contains hidden or 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/bash | |
function green { | |
echo -e "\e[00;32m$1\e[00m" | |
} | |
function red { | |
echo -e "\e[00;31m$1\e[00m" | |
} |