查看当下路径

pwd

解压zip命令

unzip 文件名.zip

删除文件命令

rm -rf /root/Download/*

删除root/Download/下的所有文件,-f 代表不询问

创建文件夹

mkdir 文件夹名字

给权限

chmod +x 文件名
or
chmod 777 文件名

修改密码

passwd

查看端口占用命令

netstat -nlp |grep LISTEN

如果出现-bash: nginx: command not found
运行

yum install net-tools

杀死进程命令

kill -9 3190(进程号)

centos系统安装git命令

yum -y install git-core

使用curl命令下载文件

curl -O 地址