Ubuntu基本操作
2019-07-15 本文已影响0人
rainyforest
-
查看版本号
cat /etc/issue
sample output:Ubuntu 18.04.1 LTS \n \l
-
添加新用户 (参考链接)
sudo useradd [username] -m
-m的意思是在/home
下创建username
的目录,如果有root权限可省略sudo
然后
passwd [username]
设置密码/修改已有用户密码 -
如果terminal的命令tab不能自动补全,等等情况需要安装linux bash。
sudo apt-get install bash
-
列出所有user
sample output
cat /etc/passwd
-
将用户添加到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!
保存退出
- 解压文件
filename.tar.gz
的解压:
执行命令: tar -zxvf filename.tar.gz
其中zxvf
含义分别如下
z: 压缩格式
x: extract 解压
v: verbose 详细信息
f: file (file=archieve) 文件