美文网首页
【Linux学习-01】Linux基本命令

【Linux学习-01】Linux基本命令

作者: 境与界 | 来源:发表于2019-05-06 15:42 被阅读0次

    一、 系统命令

    1、 查看系统版本命令

    lsb_release -a
    

    若提示:lsb_release: command not found,则在root用户下执行如下命令:

    yum install redhat-lsb -y
    
    [root@m m]# lsb_release -a
    LSB Version:    :core-4.1-amd64....
    Distributor ID: CentOS
    Description:    CentOS Linux release 7.2.1511 (Core) 
    Release:        7.2.1511
    Codename:       Core
    

    二、解压缩

    1、解压到指定目录 -C

    tar zxvf /source/kernel.tgz -C /source/ linux-2.6.29
    

    三、文本编辑

    1、文件内使用vim编辑查找
    在normal模式下按下 / 即可进入查找模式,输入要查找的字符串并按下回车。 Vim会跳转到第一个匹配。按下n查找下一个,按下N查找上一个。

    2、杀掉进程

     kill -s 9 25960
    

    3、查看进程

     ps aux|grep yum
    

    4、查看某个组下的用户

    cat /etc/group | grep docker
    

    5、查找某个文件

    find / -name tnsnames.ora
    

    6、关机、重启

    # 立刻关机,其中 now 相当于时间为 0 的状态
    shutdown -h now
    
    # 系统在今天的 20:25 分会关机,若在21:25才下达此命令,则隔天才关机
    shutdown -h 20:25
    
    # 系统再过十分钟后自动关机
    shutdown -h +10
    
    # 立刻重启
    shutdown -r now
    

    复制文件夹到指定目录

    cp -r /usr/local/soft/es  /usr/local/develop/es
    

    四、服务

    1、命令脱离终端在后台运行

    (1)输入命令:
    
    nohup 你的shell命令 &
    
    (2)回车,使终端回到shell命令行;
    
    (3)输入exit命令退出终端:
    
    exit
    

    相关文章

      网友评论

          本文标题:【Linux学习-01】Linux基本命令

          本文链接:https://www.haomeiwen.com/subject/xduczftx.html