使用条件:
使用Xshenll或SecureCRT(putty不支持);
安装特定的包:
[root@hyc-01-01 ~]# yum install -y lrzsz
Linux向windows传文件:
1
[root@hyc-01-01 ~]# ls
111 222 3.txt anaconda-ks.cfg.1 hyc2 ls2
[root@hyc-01-01 ~]# sz 3.txt
2
输入命令回车后在弹出的对话框选择文件在windows上保存的位置
Windows向linux传文件
1
在Xshell输入rz
2
在弹出的对话框选择要上传的文件
传输目前在使用的文件可能会失败
传输空文件可能会失败
被传输文件与当前目录下某文件重名传输会失败
文件会被传输到linux下的当前目录
3.1 用户配置文件和密码配置文件
每创建一个用户都会在/etc/passwd中添加一行该用户的信息
[root@hyc-01-01 ~]# cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
nobody:x:99:99:Nobody:/:/sbin/nologin
systemd-network:x:192:192:systemd Network Management:/:/sbin/nologin
dbus:x:81:81:System message bus:/:/sbin/nologin
polkitd:x:999:997:User for polkitd:/:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin
chrony:x:998:996::/var/lib/chrony:/sbin/nologin
hyc:x:1000:1000::/home/hyc:/bin/bash
hyc1:x:1001:1001::/home/hyc1:/bin/bash
在文件中每个用户独占一行;
除了hyc开头的两个用户其他用户为系统安装完后就默认存在的;
第一段:用户名
第二段:原先这里存放用户的密码,目前用户密码由专门的文件存储
第三段:用户uid
第四段:用户组id(gid)
第五段:表示用户的注释信息,一般为空
第六段:用户家目录
第七段:用户的shell,用户每次用终端登录机器都会获得一个可以和机器交互的窗口,该窗口即为shell,常见的shell有/bin/bash和/sbin/nologin
/bin/bash:表示该用户可以登录
/sbin/nologin:该用户无法登录
从前向后每个用户与/etc/passwd对应,专门用于控制用户密码
[root@hyc-01-01 ~]# cat /etc/shadow
root:$6$7wgDiZg1$fc9tgPTcsrgR3IBGPaafhRgXK14ByF1I9Fj09ezA8YtOHEJ1HEFSFPThAdtJtye6eNXxIUCRXCaPAoMTYADql/:17680:0:99999:7:::
bin:*:17110:0:99999:7:::
daemon:*:17110:0:99999:7:::
adm:*:17110:0:99999:7:::
lp:*:17110:0:99999:7:::
sync:*:17110:0:99999:7:::
shutdown:*:17110:0:99999:7:::
halt:*:17110:0:99999:7:::
mail:*:17110:0:99999:7:::
operator:*:17110:0:99999:7:::
games:*:17110:0:99999:7:::
ftp:*:17110:0:99999:7:::
nobody:*:17110:0:99999:7:::
systemd-network:!!:17675::::::
dbus:!!:17675::::::
polkitd:!!:17675::::::
postfix:!!:17675::::::
sshd:!!:17675::::::
chrony:!!:17675::::::
hyc:$6$TWH9da/v$ge4.QfW0swR/a4S1RcWEfP4SXxrgUeRHsuyByOts0b9rnCfjIz53rZMJyhiLLl4w22udQWuVcyMdXmfagiqj//:17689:0:99999:7:::
hyc1:$6$phKSf3Hn$D4NVl/0AB9OkuI.QoY.nfB6y62q0tjfs19nnEMeSQVl2oFo74oHoVuqvgdmd4idUxHHa5lJ6StJ29zH11jh390:17689:0:99999:7:::
第一段:用户名
第二段:用户密码,此处密码加密,无法反编译(可以由明文获得加密密码,但无法由加密密码获得明文密码)
第三段:表示天数,即上次修改密码距离1970年1月1号的天数
第四段:表示要过多少天才能修改密码,默认为0,即不受限制
第五段:表示多少天内密码必须更改,即多少天后密码到期,到期后密码无法更改
第六段:若将该值设置为7则表示距离密码到期还有7天时提醒用户密码即将到期需要修改密码
第七段:用户在密码到期前都未修改密码,该值表示从密码到期开始过多少天后账户会被锁定,无法继续使用
第八段:表示用户被锁定的日期距离1970年1月1日有多少天
第九段:保留未用
[root@hyc-01-01 ~]# head -1 /etc/shadow;tail -2 /etc/shadow
root:$6$7wgDiZg1$fc9tgPTcsrgR3IBGPaafhRgXK14ByF1I9Fj09ezA8YtOHEJ1HEFSFPThAdtJtye6eNXxIUCRXCaPAoMTYADql/:17680:0:99999:7:::
hyc:$6$TWH9da/v$ge4.QfW0swR/a4S1RcWEfP4SXxrgUeRHsuyByOts0b9rnCfjIz53rZMJyhiLLl4w22udQWuVcyMdXmfagiqj//:17689:0:99999:7:::
hyc1:$6$phKSf3Hn$D4NVl/0AB9OkuI.QoY.nfB6y62q0tjfs19nnEMeSQVl2oFo74oHoVuqvgdmd4idUxHHa5lJ6StJ29zH11jh390:17689:0:99999:7:::
想在一行敲两个命令可以使用;分割
3.2 用户组管理
用户组配置文件
[root@hyc-01-01 ~]# cat /etc/group
root:x:0:
bin:x:1:
daemon:x:2:
sys:x:3:
adm:x:4:
tty:x:5:
disk:x:6:
lp:x:7:
mem:x:8:
kmem:x:9:
wheel:x:10:
cdrom:x:11:
mail:x:12:postfix
man:x:15:
dialout:x:18:
floppy:x:19:
games:x:20:
tape:x:30:
video:x:39:
ftp:x:50:
lock:x:54:
audio:x:63:
nobody:x:99:
users:x:100:
utmp:x:22:
utempter:x:35:
ssh_keys:x:999:
input:x:998:
systemd-journal:x:190:
systemd-network:x:192:
dbus:x:81:
polkitd:x:997:
postdrop:x:90:
postfix:x:89:
sshd:x:74:
chrony:x:996:
hyc:x:1000:
hyc1:x:1001:
slocate:x:21:
该配置文件为每个组添加一行信息
[root@hyc-01-01 ~]# cat /etc/gshadow
root:::
bin:::
daemon:::
sys:::
adm:::
tty:::
disk:::
lp:::
mem:::
kmem:::
wheel:::
cdrom:::
mail:::postfix
man:::
dialout:::
floppy:::
games:::
tape:::
video:::
ftp:::
lock:::
audio:::
nobody:::
users:::
utmp:!::
utempter:!::
ssh_keys:!::
input:!::
systemd-journal:!::
systemd-network:!::
dbus:!::
polkitd:!::
postdrop:!::
postfix:!::
sshd:!::
chrony:!::
hyc:!::
hyc1:!::
slocate:!::
与/etc/shadow对应,记录组密码信息
以下以-结尾的文件均为对应文件的备份文件,用户误删原文件后可以拷贝以-结尾的同名文件来恢复原来的信息;
可能带-的文件由于更新不及时导致缺失部分信息;
[root@hyc-01-01 ~]# ls /etc/shadow
/etc/shadow
[root@hyc-01-01 ~]# ls /etc/sha*
/etc/shadow /etc/shadow-
[root@hyc-01-01 ~]# ls /etc/gsh*
/etc/gshadow /etc/gshadow-
[root@hyc-01-01 ~]# ls /etc/pass*
/etc/passwd /etc/passwd-
[root@hyc-01-01 ~]# ls /etc/grou*
/etc/group /etc/group-
创建组
[root@hyc-01-01 ~]# groupadd grp1
[root@hyc-01-01 ~]# tail -1 /etc/group
grp1:x:1002:
[root@hyc-01-01 ~]# groupadd -g 1005 grp2 指定创建组的组id
[root@hyc-01-01 ~]# tail -1 /etc/group
grp2:x:1005:
只有当组没有用户时才可删除组
[root@hyc-01-01 ~]# groupdel hyc
groupdel:不能移除用户“hyc”的主组
3.3 用户管理
[root@hyc-01-01 ~]# tail -2 /etc/passwd
hyc:x:1000:1000::/home/hyc:/bin/bash
hyc1:x:1001:1001::/home/hyc1:/bin/bash
所有普通用户的uid从1000开始,根据用户增加有规律的增加
[root@hyc-01-01 ~]# useradd -u 1006 -g hyc1 hyc2
添加用户hyc2,指定uid为1006,指定组为hyc1
[root@hyc-01-01 ~]# tail -3 /etc/passwd
hyc:x:1000:1000::/home/hyc:/bin/bash
hyc1:x:1001:1001::/home/hyc1:/bin/bash 指定组是hyc1组,所以hyc1和hyc2的gid一致
hyc2:x:1006:1001::/home/hyc2:/bin/bash
被指定的组必须是已经存在的组
[root@hyc-01-01 ~]# useradd -u 1007 -g grp2 -d /home/hyc111 -s /sbin/nologin hyc3
[root@hyc-01-01 ~]# tail -1 /etc/passwd
hyc3:x:1007:1005::/home/hyc111:/sbin/nologin
指定uid和组,指定家目录和shell
[root@hyc-01-01 ~]# ls /home
3.txt- hyc hyc1 hyc111 hyc2
创建用户时不创建家目录(有家目录但不创建)
[root@hyc-01-01 ~]# useradd -M hyc4
[root@hyc-01-01 ~]# tail -1 /etc/passwd
hyc4:x:1008:1008::/home/hyc4:/bin/bash
[root@hyc-01-01 ~]# ls /home
3.txt- hyc hyc1 hyc111 hyc2 家目录下没有hyc4
[root@hyc-01-01 ~]# tail -5 /etc/passwd
hyc:x:1000:1000::/home/hyc:/bin/bash
hyc1:x:1001:1001::/home/hyc1:/bin/bash
hyc2:x:1006:1001::/home/hyc2:/bin/bash
hyc3:x:1007:1005::/home/hyc111:/sbin/nologin
hyc4:x:1008:1008::/home/hyc4:/bin/bash
[root@hyc-01-01 ~]# groupadd -g 1011 grp5
[root@hyc-01-01 ~]# useradd -g grp5 hyc5
[root@hyc-01-01 ~]# useradd hyc6
[root@hyc-01-01 ~]# tail -7 /etc/passwd
hyc:x:1000:1000::/home/hyc:/bin/bash
hyc1:x:1001:1001::/home/hyc1:/bin/bash
hyc2:x:1006:1001::/home/hyc2:/bin/bash
hyc3:x:1007:1005::/home/hyc111:/sbin/nologin
hyc4:x:1008:1008::/home/hyc4:/bin/bash
hyc5:x:1009:1011::/home/hyc5:/bin/bash
hyc6:x:1010:1010::/home/hyc6:/bin/bash
用户gid不会由上一位gid顺序增加,而是根据uid顺序增加
adduser与useradd用法相同
[root@hyc-01-01 ~]# adduser hyc7
[root@hyc-01-01 ~]# tail -1 /etc/passwd
hyc7:x:1011:1012::/home/hyc7:/bin/bash
删除用户
[root@hyc-01-01 ~]# userdel hyc7
在/etc/passwd等配置文件中删除hyc7的信息,但不会删除hyc7的家目录
[root@hyc-01-01 ~]# ls /home
3.txt- hyc hyc1 hyc111 hyc2 hyc5 hyc6 hyc7 目录hyc7依然存在
[root@hyc-01-01 ~]# userdel -r hyc6
[root@hyc-01-01 ~]# ls /home
3.txt- hyc hyc1 hyc111 hyc2 hyc5 hyc7 指定-r参数会在删除用户时将家目录一并删除
原文地址:http://blog.51cto.com/12216458/2128258