Jetson之刷机后配置大全

0 背景

NVIDIA Jetson刷jetpack之后有很多重复操作,本文记录下如何在一个裸的jetpack中进行相关环境的配置,如有其它软件的需求,欢迎留言,我会完善补充

1 开发环境搭建

1.1 替换apt源

《Ubuntu更换apt源之arm版》

1.2 pip

sudo apt install curl
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python get-pip.py
sudo python3 get-pip.py

替换pip源

cd ~
mkdir ./pip
vim ./pip/pip.conf

# 改为下边内容
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

1.3 安装jtop

jtop可以用来查看jetson的硬件和软件信息,一定要装上,很方便。

《NVIDIA查看CPU、内存、GPU使用情况》

1.4安装htop

htop主要用来监控进程占用cpu的情况,是jtop的补充

sudo apt install htop

1.5安装tmux

tmux用来实现关闭终端后依然运行程序

《Linux之Tmux使用教程》

1.6 安装samba

samba用来通过windows快速访问ubuntu上的文件

《Linux之配置samba服务实现文件夹共享》

1.7安装bmon

bmon用来做网口带宽监控

《Linux之网络带宽监控工具bmon》

2 软件安装

2.1 deepstream

《DeepStream5.0系列之环境安装》

2.2 tensorflow

 

2.3 keras

 

(待续)

 

你可能感兴趣的:(NVIDIA,Jetson)