删除文件或非空文件夹的命令:rm
删除文件夹的命令:rmdir(空文件夹)

[root@bogon ~]# rm -rf 2(非空文件夹)
[root@bogon ~]# touch 1 2 3
[root@bogon ~]# mkdir 1 2 3

d rwx rwx
文件类型 主(owner) 组(group) 其他(other)

r读=4 w写=2 x执行=1

7 6 4

[root@bogon ~]#chmod 764 1

[root@bogon ~]# ll
total 24
dr-xr-xrw-. 2 root root 4096 Jul 14 08:46 3
-rw-------. 1 root root 1099 Jul 14 05:31 anaconda-ks.cfg
-rw-r--r--. 1 root root 9458 Jul 14 05:31 install.log
-rw-r--r--. 1 root root 3091 Jul 14 05:29 install.log.syslog
[root@bogon ~]# chown root:a 3
[root@bogon ~]# ll
total 24
dr-xr-xrw-. 2 root a 4096 Jul 14 08:46 3
-rw-------. 1 root root 1099 Jul 14 05:31 anaconda-ks.cfg
-rw-r--r--. 1 root root 9458 Jul 14 05:31 install.log
-rw-r--r--. 1 root root 3091 Jul 14 05:29 install.log.syslog
[root@bogon ~]#

[root@bogon ~]# chmod 766 3
[root@bogon ~]# ll
total 24
drwxrw-rw-. 2 root root 4096 Jul 14 08:46 3
-rw-------. 1 root root 1099 Jul 14 05:31 anaconda-ks.cfg
-rw-r--r--. 1 root root 9458 Jul 14 05:31 install.log
-rw-r--r--. 1 root root 3091 Jul 14 05:29 install.log.syslog
[root@bogon ~]# chmod g+x 3
[root@bogon ~]# ll
total 24
drwxrwxrw-. 2 root root 4096 Jul 14 08:46 3
-rw-------. 1 root root 1099 Jul 14 05:31 anaconda-ks.cfg
-rw-r--r--. 1 root root 9458 Jul 14 05:31 install.log
-rw-r--r--. 1 root root 3091 Jul 14 05:29 install.log.syslog
[root@bogon ~]# chmod a-w 3
[root@bogon ~]# ll
total 24
dr-xr-xr--. 2 root root 4096 Jul 14 08:46 3
-rw-------. 1 root root 1099 Jul 14 05:31 anaconda-ks.cfg
-rw-r--r--. 1 root root 9458 Jul 14 05:31 install.log
-rw-r--r--. 1 root root 3091 Jul 14 05:29 install.log.syslog
[root@bogon ~]# chmod o+w 3
[root@bogon ~]# ll
total 24
dr-xr-xrw-. 2 root root 4096 Jul 14 08:46 3
-rw-------. 1 root root 1099 Jul 14 05:31 anaconda-ks.cfg
-rw-r--r--. 1 root root 9458 Jul 14 05:31 install.log
-rw-r--r--. 1 root root 3091 Jul 14 05:29 install.log.syslog

[root@bogon ~]# useradd admin
[root@bogon ~]# passwd admin
Changing password for user admin.
New password:
BAD PASSWORD: it is WAY too short
BAD PASSWORD: is too simple
Retype new password:
passwd: all authentication tokens updated successfully.
[root@bogon ~]#

Ctrl+alt+f1—f6 命令行
Ctrl+alt+f7 图形

[root@bogon ~]# vi /etc/inittab
id:3:initdefault:

init + num
0---关机
1—单用户
3---命令行
5---图形
6---重启

你可能感兴趣的:(二)