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 | |
# 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 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 | |
# Fresh install for CUDA 6.0 on Jetson TK1 for Grinch (L4T) 19.3.* | |
# CUDA 6.0 REQUIRES L4T/Grinch 19.3.* !!! | |
sudo apt-mark hold xserver-xorg-core | |
sudo apt-add-repository universe | |
sudo apt-get update | |
#wget http://developer.download.nvidia.com/compute/cuda/6_0/rel/installers/cuda-repo-l4t-r19.2_6.0-42_armhf.deb | |
# Install the CUDA repo metadata that you downloaded |
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 | |
# Based on gist.github.com/gboudreau/install-ffmpeg-amazon-linux.sh | |
# and https://trac.ffmpeg.org/wiki/CompilationGuide/Centos | |
if [ "`/usr/bin/whoami`" != "root" ]; then | |
echo "You need to execute this script as root." | |
exit 1 | |
fi | |
cat > /etc/yum.repos.d/centos.repo<<EOF |
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
# rivian.com credentials: | |
USERNAME= | |
PASSWORD= | |
# optional twilio.com credentials. If set, will send an SMS when a change in status is detected: | |
TWILIO_ACCOUNT_SID= | |
TWILIO_AUTH_TOKEN= | |
TWILIO_FROM_PHONE_NUMBER= | |
TWILIO_TO_PHONE_NUMBER= |