aws 深度学习环境常用命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#jupyter notebook 设置登陆密码
jupyter notebook password
#后台启动jupyter notebook
nohup jupyter notebook > jnotebook.out 2>&1 &
#查看gpu信息
lspci | grep -i nvidia
#查看内存占用
free -m
#查看cpu占用率
top
#查看gpu占用,每 10秒刷新
watch -n 10 nvidia-smi