linux集锦

裸机安装命令

unzip tar.xz: xz -d **.tar.xz
解压zip: yum install zip unzip
上传下载: yum -y install lrzsz

常用命令

用户主目录 cd == cd ~
解压:tar -C 目标解压目录 -xzf 需解压的文件
打包命令:tar -cf fileName.tar.gz needTarfile
查看内网ip:ip a
sz: 将选定的文件发送(send)到本地机器
rz: 运行该命令会弹出一个文件选择窗口,从本地选择文件上传到服务器(receive)
查看是否安装某软件:whereis softName
查看端口:netstat -tunlp|grep 8000
发送post请求:curl -d "name=value&name2=value2" http://www.baidu.com
发送get请求带参数:curl -Gd "city=北京" http://www.sojson.com/open/api/weather/json.shtml
后台下载:wget -b http://www.linuxde.net/testfile.zip
查看下载进度:tail -f wget-log
树状显示当前目录:treee -a
查看系统版本:lsb_release -a
alias:

常见问题

1.command not found
使用的命令没有安装,使用yum install + command即可。

你可能感兴趣的:(linux集锦)