SuikaEd Blog

Linux终端常用命令(更新中)

Word count: 75Reading time: 1 min
2024/03/29

1. 显卡

1
2
3
4
5
#查看显卡
nvidia-smi

#查看CUDA
nvcc -V

2. 网络

1
2
3
4
5
6
7
8
9
10
11
12
#查看网络状态
ifconfig

#限制网络速度(下载/上传)
sudo wondershaper <interface> <download_speed> <upload_speed>
#例如
sudo wondershaper enp8s0 36000 36000

#清除限速
sudo wondershaper clear <interface>
#例如
sudo wondershaper clear enp8s0

(持续更新)