給系统进程和计划任务做管理。

1、通过ps命令的两种选项形式查看进程信息
     [root@localhost ~]# ps aux
     [root@localhost ~]# ps -elf
 
2、通过top命令查看进程
     [root@localhost ~]# top
 
3、通过pgrep命令查看sshd服务的进程号
     [root@localhost ~]# pgrep ssh
 
4、查看系统进程树
     [root@localhost ~]# pstree
  
5、使dd if=/dev/zero of=/root/file bs=1M count=8190 命令操作在前台运行
     [root@localhost ~]# dd if=/dev/zero of=/root/file2 bs=1M count=1024
 
6、将第5题命令操作调入到后台并暂停
      [root@localhost ~]# dd if=/dev/zero of=/root/file2 bs=1M count=1024
      ^Z
 
7、使dd if=/dev/zero of=/root/file2 bs=1M count=1024 命令操作在后台运行
      [root@localhost ~]# dd if=/dev/zero of=/root/file2 bs=1M count=2048 &
 
8、查看后台的任务列表
      jobs -l
 
9、恢复dd if=/dev/zero of=/root/file bs=1M count=8190 让其在后台继续运行
      fg
 
10、查询dd if=/dev/zero of=/root/file bs=1M count=8190 命令的进程并通过kill杀死
        [root@localhost ~]#pgrep -l "dd"
        [root@localhost ~]# kill 44170
 
11、设置一次性计划任务在18:00时关闭系统,并查看任务信息
       [root@localhost ~]# at 18:00
       at> shutdown now
       [root@localhost ~]# atq
       [root@localhost ~]# atrm 1
 
12、以root身份设置周期性计划任务
a. 每天晚上的24点时打包压缩 /etc/passwd /etc/shadow /etc/group /etc/gshadow 为 file.tar.gz
   
    0 0 * * 1-7 tar /bin/tar -zcf file.tar.gz /etc/passwd |/etc/shadow | /etc/group | /etc/gshadow
b. 每周一的每隔五分钟列出磁盘使用状况
     */5     *       *       *       1       du -a
c. 每天的8:30与互联网时间同步服务器pool.ntp.org同步时间
    [root@localhost ~]# crontab -e
    8       *       *       *       ntpdate pool.ntp.org
 
13、通过crontab命令查看root的计划任务,通过文件查看类工具列出/var/spool/cron下对应的文件内容
      [root@localhost ~]# crontab  -l
      [root@localhost ~]# vi /var/spool/cron/root
      0        0       *       *      1-7    tar /bin/tar -zcf file.tar.gz /etc/passwd |/etc/shadow | /etc/group | /etc/gshadow
      */5     *       *       *       1       du -a
      30      8       *       *       *       ntpdate pool.ntp.org
posted @ 2019-08-09 08:17  偷瞄你的🐖  阅读(178)  评论(0编辑  收藏  举报