在该单元学习结束时,需要会 -登录登出系统 -清楚Unix命令结构 -执行简单的Unix命令 -能够找到帮助
UNIX是多用户和多任务的操作系统 - 通常,必须要登录操作系统才能使用 - 登录Unit/Linux可以有多种方式 - 通过Console输入登录,例如:鼠标、键盘等外设 - 通过虚拟终端登录 - 网络连接登录,使用SSH或者Telnet登录
Login with your username and password.
Login:
Password: < NO ECHO !!!>
$
The command prompt indicates that the system is ready to accept commands.
To logout: exit / ctrl-d / logout
操作练习login与logout。Hint:与Windows不同,密码位数都被隐藏
Unix commands have the following format:
$ command options arguments
ls
ls /home
ls -l
ls -l /home
Multiple options
ls -a -l -h /home
ls -alh /home
常用命令ls窥见Unix命令的语法,用help查看指令的syntax 错误例子: - mail - f personal - who-u - mail test root -s - -u who - who -m-u - who -m u
帮助命令:man 格式:man 【命令】 作用:获取指定命令的帮助 例如查看ls的帮助命令 格式:man ls
The collection of manual pages is divided into nine sections:
查看命令拥有哪个级别的帮助 格式:man -f 【命令】 相当于 whatis 【命令】 man的级别: 1 : 查看命令的帮助 2 : 查看可被内核调用的函数的帮助 3 : 查看函数和函数库的帮助 4 : 查看文件的帮助(主要是/dev目录下的文件) 5 : 查看配置文件的帮助 6 : 查看游戏的帮助 7 : 查看其它杂项的帮助 8 : 查看系统管理员可用命令的帮助 9 : 查看和内核相关文件的帮助
Certain subjects appear in multiple sections.
To select correct section, add section number:
– man 1 passwd (about the passwd command)
– man 5 passwd (about the passwd file)
The -k option of the man command or the apropos command prints out a description of all entries that match the given keyword.
info指令是man 指令的详细内容。但man 使用起来要方便的多。一个man 只有一页,而info总是将它们的内容组织成多个区段(节点),每个区段也可能包含子区段(子节点)。info工具可显示更完整的最新的GNU工具信息。通常man中若包含的信息概要在info中也有时,会有提示:“请参考info页更详细内容”。
Table of Contents | t |
---|---|
Exposé | ESC |
Full screen slides | e |
Presenter View | p |
Source Files | s |
Slide Numbers | n |
Toggle screen blanking | b |
Show/hide slide context | c |
Notes | 2 |
Help | h |