Skip to content

Instantly share code, notes, and snippets.

View bollig's full-sized avatar

Evan Bollig bollig

View GitHub Profile
@jetsonhacks
jetsonhacks / configureJetson.sh
Last active November 19, 2015 05:50
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
@mathnathan
mathnathan / ubuntu_install
Created March 22, 2012 15:28
Viz Lab Install Script
#! /bin/bash
function green {
echo -e "\e[00;32m$1\e[00m"
}
function red {
echo -e "\e[00;31m$1\e[00m"
}