linux-1基础命令
命令echo
1 [root@linuxprobe~]# echo LinuxProbe.com 3 LinuxProbe.com
命令date
查看直接date或 date "+%Y-%m-%d %H:%M:%S" 2020-09-05 09:14:35 设置 date -s "20201101 8:30:00" Sun Nov 1 08:30:00 CST 2020 查看时区 # timedatectl status 设置时区 timedatectl set-timezone Asia/Shanghai 设置日期 timedatectl set-time 2021-05-18 设置时间 timedatectl set-time 9:30
命令reboot重启,poweroff关机
命令wget
wget 参数 网址 -b 后台下载模式 -P下载到指定目录 -t最大尝试次数 -c断点续传 -P下载页面内所有资源,包括图片、视频等 -r递归下载 [root@linuxprobe~]# wget https://www.linuxprobe.com/docs/LinuxProbe.pdf
ps命令
-a显示所有进程(包括其他用户的进程) -u用户以及其他详细信息 -x显示没有控制终端的进程
pstree树状图显示进程间的关系
top动态显示进程活动和负载
top中pr与ni代表优先级 范围为-20----19 数字越低优先级越高
命令nice
调整优先级bash服务最高 nice -n -20 bash
pidof查询服务进程号
1 [root@linuxprobe~]# pidof sshd 2 2156
kill中止进程
-9为强制执行 kill -9 2156
killall中止服务对应的全部进程
1 [root@linuxprobe~]# pidof httpd 2 13581 13580 13579 13578 13577 13576 3 [root@linuxprobe~]# killall httpd 4 [root@linuxprobe~]# pidof httpd 5 [root@linuxprobe~]#