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 | |
| #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 |
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
| To prep for building: | |
| $ export MAKEFLAGS="-j4 -s PLATFORM_VARIANT=jetson" |
NewerOlder