• Linux常用命令


    TCP/UDP

    * TCP活动网络服务状态
        netstat -tnlp 
        netstat -tnlp | grep 7077
    

    防火墙

    * 查看防火墙状态
        service iptables status
    
    * 关闭防火墙
        service iptables stop
    
    * 查看防火墙开机启动状态
        chkconfig iptables --list
    
    * 关闭防火墙开机启动
        chkconfig iptables off
    

    解压缩

    * tar -zxvf filename -C dir
        C:指定要解压到的目的目录
    

    时区

    * cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
        修改为中国的东八区
    * vi /etc/sysconfig/clock
        ZONE="Asia/Shanghai"
        UTC=false
        ARC=false
    

    定时计划任务

    * crontab格式如下:
        For details see man 4 crontabs
        Example of job definition:
        .---------------- minute (0 - 59)
        |  .------------- hour (0 - 23)
        |  |  .---------- day of month (1 - 31)
        |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
        |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
        |  |  |  |  |
        *  *  *  *  *  command to be executed
    
    * 设定crontab计划任务也有两种方式:
        1. 写在/etc/crontab里
        代码:
        00 11 * * * root ntpdate 210.72.145.44
        每天11点与中国国家授时中心同步时间
        每天11点与中国国家授时中心同步时间
        当然前提是
        apt-get install ntpdate
        代码也可是
        00 11 * * * root ntpdate us.pool.ntp.org
        2. 使用命令crontab -e
            crontab -e 
                10 5 * * * root ntpdate us.pool.ntp.org;hwclock -w 
            这样每天5:10自动进行网络校时,并同时更新BIOS的时间
  • 相关阅读:
    Oracle ref cursor和sys_refcursor
    一些命令可以帮您了解Linux 操作系统用户信息
    Linux 6上使用UDEV绑定共享存储
    Oracle VirtualBox 问题汇总
    Linux 常用操作
    CentOS 7 运行级别切换
    Oracle 更新Opatch、打补丁
    django rest framework restful 规范
    CBV FBV rest framework
    CRM
  • 原文地址:https://www.cnblogs.com/fuyiming/p/6160376.html
Copyright © 2020-2023  润新知