Linux
文章平均质量分 70
北境の守卫
Good
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【Linux】系统账户管理 system user
以 Ubuntu 为例 # add user sudo adduser user_name # grant new user root privilege usermod -aG sudo user_name # delete a user sudo deluser user_name # switch user su – another_user_name # show which user I am using whoami原创 2020-10-29 14:28:08 · 1127 阅读 · 0 评论 -
【Linux】Linux GUI/命令行 模式的切换
Linux 有7 个启动级别:init 0,1,2,3,4,5,6 其含义是 0:停机 1:单用户形式,只root进行维护 2:多用户,不能使用net file system 3:完全多用户 5:图形化 4:安全模式 6:重启 分别对应, /etc/rc.d/中的rc*.d的文件。比如 init 0,对应的系统会运行,/etc/rc.d/rc0.d里指定的程序。 系统运行中的切换 使用 sudo ...原创 2018-12-25 17:55:16 · 4142 阅读 · 0 评论 -
【Linux】压缩文件 tar 指令指南
Backto [] c – create a archive file. x – extract a archive file. t – viewing content of archive file. f – filename of archive file. v – show the progress of archive file. j – filter archive through ...原创 2019-03-19 17:43:20 · 244 阅读 · 0 评论
分享