美文网首页
Ubuntu基本操作

Ubuntu基本操作

作者: rainyforest | 来源:发表于2019-07-15 16:34 被阅读0次
    1. 查看版本号
      cat /etc/issue
      sample output:Ubuntu 18.04.1 LTS \n \l

    2. 添加新用户 (参考链接)
      sudo useradd [username] -m
      -m的意思是在/home下创建username的目录,如果有root权限可省略sudo
      然后
      passwd [username]
      设置密码/修改已有用户密码

    3. 如果terminal的命令tab不能自动补全,等等情况需要安装linux bash。
      sudo apt-get install bash

    4. 列出所有user
      cat /etc/passwd

      sample output
    5. 将用户添加到sudoer列表(可以使用sudo权限)
      sudo vi /etc/sudoers
      用上面的命令打开sudoer文件, 找到下面的部分

    ## Next comes the main part: which users can run what software on 
    ## which machines (the sudoers file can be shared between multiple
    ## systems).
    ## Syntax:
    ##
    ##      user    MACHINE=COMMANDS
    ##
    ## The COMMANDS section may have other options added to it.
    ##
    ## Allow root to run any commands anywhere 
    root    ALL=(ALL)       ALL
    [username] ALL=(ALL)    ALL                    #将用户名如此添加在root用户下
    

    :wq! 保存退出

    1. 解压文件
      filename.tar.gz的解压:

    执行命令: tar -zxvf filename.tar.gz
    其中zxvf含义分别如下
    z:             压缩格式
    x:   extract       解压
    v:   verbose       详细信息
    f:   file (file=archieve)   文件

    相关文章

      网友评论

          本文标题:Ubuntu基本操作

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