Linux常用命令

文章目录

    • 生成公钥
    • 查看端口占用
    • 查看进程
    • 杀死进程
    • 让进程在后台运行

生成公钥

git config --global user.name zh805
git config --global user.email [email protected]
cd ~/ && ssh-keygen -t rsa -C [email protected]
ls -a ~/.ssh
cat id_rsa.pub #拷贝到github

查看端口占用

# 方式1
lsof -i:port

# 方式2
netstat -tunpl | grep port

查看进程

top | grep xxx

杀死进程

kill -9 PID

让进程在后台运行

nohup python3 test.py &

你可能感兴趣的:(Linux)