赞
踩
[root@localhost ~]#useradd user2 (创建用户名为user2的用户)
[root@localhost ~]#passwd user2 (以root用户给user2修改密)
命令:
[root@localhost ~]#su - user2 (切换到user2用户,此时从root用户模式下切换到普通用户不需要输入普通用户的密码,但如果普通用户切换到root用户则需要输入root用户密码。)
[root@localhost ~]#passwd:直接修改当前用户密码。
zhangsan.txt。并写入名字、年龄、出生日期、性别,每一项占一行,保存并退出。
命令解释:pwd (Print Working Directory,pwd命令的作用是输出显示当前工作目录的绝对路径名称)
[root@localhost ~]#touch zhangsan.txt #创建一个名为zhangsan的文件
[root@localhost ~]# vim zhangsan.txt # 编辑zhangsan这个文件(打开文件后输入i进入编辑模式,编辑完成后按esc键,输入:wq保存并退出)
[root@localhost ~]# cat zhangsan.txt #查看文件
[root@localhost ~]# man -k passwd #linux系统的命令可以通过man命令来查询使用方法,就是一个命令使用手册。
passwd: nothing appropriate.
[root@localhost ~]# mandb #刷新数据库。
命令 [root@localhost ~]# man man
1 Executable programs or shell commands #可执行程序或shell命令
2 System calls (functions provided by the kernel) #系统调用(内核提供的函数)
3 Library calls (functions within program libraries) #库调用(程序库中的函数)
4 Special files (usually found in /dev) #特殊文件(通常在/dev目录下)
5 File formats and conventions eg /etc/passwd #文件格式和约定,例如/etc/passwd
6 Games
7 Miscellaneous (including macro packages and conventions), e.g. man(7), groff(7) #杂项(包括宏包和约定),例如man(7), groff(7)
8 System administration commands (usually only for root) #系统管理员命令(通常只针对root用户)
9 Kernel routines [Non standard] #内核例程【非标准】
[root@localhost /]# mkdir /data #表示在当前目录下创建文件
[root@localhost /]# mkdir -p /data/test/ #参数p可以指定在文件夹下创建文件,如果目录不存在则创建目录。
[root@localhost /]# ls /data/
test
[root@localhost /]#
提示:参考man date帮助
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。