本文把自己在学习或开发Jetson TK1过程中遇到的一些细节性的问题罗列出来,并提供解决方案。
首先就是wiki上提供的一些注意事项,网址:http://elinux.org/Jetson_TK1
It is really important to tell "apt" not to overwrite the file "libglx.so" if you upgrade the system. "libglx.so" is a specific file in NVIDIA‘s graphics driver that might get replaced by an incorrect version from Ubuntu that stops you from being able to
boot into the graphical environment! So please execute this command on your Jetson before you connect it to Internet or perform an update:
sudo apt-mark hold xserver-xorg-coreNow you can allow Ubuntu to update itself automatically or you can run "sudo apt-get upgrade" without problems.
sudo apt-add-repository universe sudo apt-get update
sudo apt-get install bash-completion command-not-found exit
You probably should also change the shell prompt (by adjusting "PS1" in the ".bashrc" file in your home directory) to be more useful, such as getting the shell prompt to have a different color than regular commands, and make it obvious if a command returned
with an error. There are thousands of custom .bashrc configurations on the web, including Shervin‘s that provides a different colored shell prompt depending on whether a command was succesful or returned an error.
turn off the desktop shopping suggestions that are enabled by default in Ubuntu 14.04 (despite the spyware concerns discussed by huge numbers of people) by running this:
gsettings set com.canonical.Unity.Lenses disabled-scopes "['more_suggestions-amazon.scope', 'more_suggestions-u1ms.scope', 'more_suggestions-populartracks.scope', 'music-musicstore.scope', 'more_suggestions-ebay.scope', 'more_suggestions-ubuntushop.scope', 'more_suggestions-skimlinks.scope']"
The eMMC on the Jetson has a capacity of 16GB, however some instructions or boards default to only using 8GB of the drive (or 12GB, see discussion). If you require more disk space in your rootfs such as for installing toolkits or compiling large projects,
you can flash the Jetson (from a Linux desktop) to have a larger filesystem (note that this will erase all data on the Jetson TK1, and it takes roughly 1 hour to flash the whole eMMC!):
sudo ./flash.sh -S 14580MiB jetson-tk1 mmcblk0p1结果截图如下:(注意:慎重使用此命令。因为会清空你的所有数据)
Just like any Linux computer, the recommended way to shut-down or turn off Jetson TK1 is to click Shutdown in the GUI or run this in a terminal, to ensure the filesystem will not be corrupt:
sudo shutdown -h now
相信仍然有很多细节性的问题亟待发现并解决,待续。。。。
NVIDIA Jetson TK1学习与开发(四):一些细节问题
原文地址:http://blog.csdn.net/frd2009041510/article/details/42921715