Skip to content

Instantly share code, notes, and snippets.

View jetsonhacks's full-sized avatar

JetsonHacks jetsonhacks

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
@jetsonhacks
jetsonhacks / createSwapfile.sh
Created October 4, 2014 21:19
Create a Swapfile
#!/bin/bash
#NVIDIA Jetson TK1
#Create a swapfile for Ubuntu at the current directory location
fallocate -l 4G swapfile
#List out the file
ls -lh swapfile
# Change permissions so that only root can use it
chmod 600 swapfile
#List out the file
ls -lh swapfile
@jetsonhacks
jetsonhacks / gist:3731cac47c2faf440926
Created August 15, 2014 15:53
Make Export for Jetson Variant
To prep for building:
$ export MAKEFLAGS="-j4 -s PLATFORM_VARIANT=jetson"