• Linux笔记(第一天)


    一、命令

    lscpu                               -- 查看cpu

    free                                 -- 内存查看

         -m 以M查看

         -g 以G查看

    cat                                 --查看文件内容

    lsblk                              --查看磁盘分区情况

    uname  -r                      --查看内核版本

    lsb_release -a               -- 查看Linux版本   (centos7版本为安装命令下使用  cat /etc/centos-release即可查看)

    rz                                  --打开本地系统浏览(centos7版本下)

    ll                                   --查看文件大小

    pwd                              --当前目录路径

    cp                                 --复制

    reboot                          -- 重启

    poweroff                      -- 关机

    -------关闭开机用户登录-------------

    nano /etc/gdm/custom.conf     ---文件修改 Ctrl+x 退出  ,在按Y保存。

    [daemon]

    AutomaticLoginEnable=true

    AutomaticLogin=root

    echo $SHELL            --  查看shell

    ll /bin/bash -h            --查看shell文件大小

    enable                      --查看shell内部命令

    >                               --清空文件内容

    logout=ctrl+d             --注销(推出)

    help                          --查看命令帮助

    man                          --查看命令帮助

    enable -n XXX         --禁用内部命令

    enable XXX             --启用内部命令

    enable -n                --查看所有禁用的内部命令          

    -------外部命令---------------------

    外部命令存在位置:1、/bin 2、/sbin/ 3、/use/bin 4、/use/sbin

    type                        -- 判断命令是否是内部命令还是外部命令 

    $开头表示变量

    echo                        --显示(磁盘文件位置)

    rm                           --删除

    hash                       --显示曾经执行过的命令所有外部命令信息(缓存表)

           -d  XXX            --清除缓存外部命令

           -l   XXX            --详细显示hash缓存命令

           -t  XXX            --打印命令完整路径

      -r               --清空所有缓存命令

    which   XXX           --磁盘搜索命令位置

            -a XXX           --列出所有路径下的XXX

    type     XXX           -- 先内存查找-在去磁盘文件查找 

    alias  lo='XXX'       --取别名(等价于变量赋值)

    hash -p XXX f        --将一个路径取名为f

  • 相关阅读:
    nrm安装与配置(nrm管理npm源)
    Mac启动MongoDB报错:exception in initAndListen: NonExistentPath: Data directory /data/db not found., terminating
    基本类型(例如:int)数组和ArrayList之间的转化
    sqlite3--sqlite3_prepare
    fgets
    strdup
    openssl-EVP_md5()
    FIPS--Federal Information Processing Standards
    pthread_mutexattr_gettype、pthread_mutexattr_settype、pthread_mutexattr_destroy、pthread_mutexattr_init!
    gethostname&&getdomainname
  • 原文地址:https://www.cnblogs.com/sheshidu/p/11561156.html
Copyright © 2020-2023  润新知