holiday12
holiday12--linux basis
super user(root)
- In linux, account root usually use for system maintain and managerment ,it has all access permission for all resources of system
- In most linux system version,not recommended use root account log in system directly
sudo
su
is abbreviation ofsubstitute user
, repersent use another usersudo
command used to execute commands in othter user , default identity isroot
group managerment command
tips:add/delete group must execute as root
add/delete group
command | action |
---|---|
groupadd [group name] |
add group |
groupdel [group name] |
delete group |
cat /etc/group |
make sure group information |
chgrp -R [group name] [file/directory] |
recursive modify the group of file directory |
user managerment command
tips:add/delete user or modify other users password must execute as root
add/delete user and change password
command | action | description |
---|---|---|
useradd -m -g [grup] [new user] |
add new user | -m automatically create home directory, -g appoint the user's group, otherwise will create a group which has same name with user |
passwd user | set user's password | if you are normal user, you can use passwd command to change password directly |
userdel -r [user name] |
delete user | -r option will delete home directory automatically |
cat /etc/passwd | grep [user name]
#make sure user's information
holiday12的更多相关文章
随机推荐
- 【电路理论】Flyback dc-dc convertor 反激式dc-dc变换器
最近在学dc-dc电源时,遇到Flyback电路的,感觉云里雾里,不太明白,四处翻阅,方才有所理解,记录一下 一般Flyback convertor的拓扑如下 认为,当VT导通时,原边变压器储能,由于 ...
- Jenkins提供了哪些功能
我的这篇文章仅仅是简单的根据上文,介绍Jenkins提供了哪些功能.具体大家还是要自己学习啦~ 官网首页就提供了windows版本的Jenkins安装包.我们可以下载一个用于学习.安装后自动打开htt ...
- win10系统IE浏览器打不开 点击无反应 解决办法
打开左下角开始菜单 步骤阅读 2 点击右边的Cortana,在下面的输入框中输入:regedit,等待它自动搜索出来后,以管理员身份打开这个注册表编辑器:当然熟悉电脑的同学可以直接打开运行----re ...
- java的jvm学习
- 浅析sleep()方法与wait()方法
为什么 wait() 方法不定义在 Thread 中? wait() 是让获得对象锁的线程实现等待,会自动释放当前线程占有的对象锁.每个对象(Object)都拥有对象锁,既然要释放当前线程占有的对 ...
- 【当年笔记】Collection集合部分
集合继承关系图 1)Vector 特点:线程安全,消耗偏大 2)ArrayList 特点:基于数组实现,随机访问某个元素效率高.集和头尾之间包括头插入删除操作效率较低,因为插入元素后,其他元素要后移. ...
- IaaS--云虚拟机(三)(何恺铎《深入浅出云计算》笔记整理)
云虚拟机收费之省钱办法. [包年包月] 包年包月就是我们要提前预估好自己虚拟机的使用时间,比如半年.一年甚至三年,并提前支付相关款项的一种购买方式.这样的购买方式,通常能够给你带来较大幅度的折扣,帮你 ...
- 基于winds10 安装docker 踩坑记录
1.官方下载 https://www.docker.com/ 2.根据提示安装 并重庆计算机3.双击运行 报 Docker Desktop is shutting down 提示 计算机c: 盘 A ...
- for in 和 for of 的区别(枚举解释)
一.for....of 1.for-of是作为ES6新增的遍历方式,允许遍历一个含有iterator接口的数据结构(数组.对象等)并且返回各项的值,普通的对象用for-of遍历是会报错的. 2.for ...
- Windows系统运行selenium
1.系统已安装python: 2.安装pip 官网下载pip安装包:https://pypi.org/project/pip/#files 解压后 python setup.py install ...