Please indicate the source:http://blog.csdn.net/gaoxiangnumber1
Welcome to my github:https://github.com/gaoxiangnumber1
xiang :~ $ command -options parameter1 parameter2 ...
指令 选项 参数(1) 参数(2)
语系的支援
xiang :~ $ locale
LANG=en_US.UTF-8 #语言语系的输出
LANGUAGE=en_US:en
LC_CTYPE="en_US.UTF-8" # 底下为许多信息的输出使用的特别语系
LC_NUMERIC=zh_CN.UTF-8
LC_TIME=zh_CN.UTF-8 # 时间方面的语系数据
LC_COLLATE="en_US.UTF-8"
...
LC_IDENTIFICATION=zh_CN.UTF-8
LC_ALL= # 全部的数据同步更新的设定值
xiang :~ $ LANG=en_US.utf8
xiang :~ $ export LC_ALL=en_US.utf8 #LANG只与输出讯息有关,若需要更改
#其他不同的信息,要同步更新LC_ALL才行。
xiang :~ $ locale
LANG=en_US.utf8
LC_CTYPE="en_US.utf8"
LC_NUMERIC="en_US.utf8"
...
LC_ALL=en_US.utf8
LANG=en_US.utf8
是连续输入的,等号两边没有空格。显示日期的指令:date
xiang :~ $ date
2016年 10月 06日 星期四 13:08:00 CST
xiang :~ $ date +%Y/%m/%d
2016/10/06
xiang :~ $ date +%H:%M
13:09
显示日历的指令:cal
xiang :~ $ cal
十月 2016
日 一 二 三 四 五 六
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
xiang :~ $ cal 2016
2016
一月 二月 三月
日 一 二 三 四 五 六 日 一 二 三 四 五 六 日 一 二 三 四 五 六
1 2 1 2 3 4 5 6 1 2 3 4 5
3 4 5 6 7 8 9 7 8 9 10 11 12 13 6 7 8 9 10 11 12
10 11 12 13 14 15 16 14 15 16 17 18 19 20 13 14 15 16 17 18 19
17 18 19 20 21 22 23 21 22 23 24 25 26 27 20 21 22 23 24 25 26
24 25 26 27 28 29 30 28 29 27 28 29 30 31
31
...
xiang :~ $ cal 2 2017
二月 2017
日 一 二 三 四 五 六
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28
简单好用的计算器:bc
scale=number
,number就是小数点位数。xiang :~ $ bc
bc 1.06.95
Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'.
71*88
6248
71/88
0
scale=10
71/88
.8068181818
quit
[Tab]按键
xiang :~ $ ca[tab][tab] #所有以ca为开头的指令都被显示出来
cabextract canonical-driver-test-suite-cli
cal capinfos
calendar capsh
calibrate_ppa captoinfo
caller case
xiang :~ $ ls -al ~/.bash[tab][tab]
#该目录下所有以`.bash`为开头的文件名都被显示出来
.bash_history .bash_history~ .bash_logout .bashrc
xiang :~ $ date --[tab][tab]
--date --help --reference= --rfc-3339= --universal
--date= --iso-8601 --rfc-2822 --set= --version
[Ctrl+c按键
xiang :~ $ find /
...
#按下[ctrl]-c
xiang :~ $ #提示字符回来了,find程序被中断。
[Ctrl]+d按键
[shift]+{[Page UP]|[Page Down]}按键
--help
选项都能够将该指令的用法作一个大致的理解。搜寻特定指令/文件的man page说明文件
xiang :~ $ man -f man
man (1) - an interface to the on-line reference manuals
man (7) - macros to format man pages
xiang :~ $ man 1 man #这里是用man(1)的文件数据
xiang :~ $ man 7 man #这里是用man(7)的文件数据
man man
时,取出的数据跟搜寻的顺序有关(记录在/etc/manpath.config中),先搜寻到的说明档,就会先被显示出来。通常会先找到数字较小的那个。-f
输出: man -f
时,man只会找数据左边那个指令(或文件)的完整名称,全部相同才可以。xiang :~ $ man -k man
fallocate (2) - manipulate file space
zshall (1) - the Z shell meta-man page
...
man -k
同时找两个地方的内容,只要该内容有关键词存在,不需要完全相同的指令(或文件)就能够找到。xiang :~ $ whatis [指令或者是数据] #相当于 man -f [指令或者是数据]
xiang :~ $ apropos [指令或者是数据] #相当于 man -k [指令或者是数据]
xiang :~ $ info info
File: info.info, Node: Top, Next: Getting Started, Up: (dir)
Info: An Introduction
*********************
The GNU Project distributes most of its on-line manuals in the "Info
....(中间省略)....
* Menu:
* Getting Started:: Getting started using an Info reader.
* Advanced:: Advanced Info commands.
* Expert Info:: Info commands for experts.
* Index:: An index of topics, commands, and variables.
--zz-Info: (info.info.gz)Top, 52 lines --Bot------------------------------------------
数据同步写入磁盘:sync
xiang :~ $ su -i #这个指令让你的身份变成root。底下输入密码。
Password:#输入安装时设定的密码。
root :~ # sync
惯用的关机指令:shutdown
root :~ # /sbin/shutdown [-krhc] [时间] [警告讯息]
root :~ # shutdown -h 10 'I will shutdown after 10 mins'
Broadcast message from root (Tue 2015-06-02 10:51:34 CST):
I will shutdown after 10 mins
The system is going down for power-off at Tue 2015-06-02 11:01:34 CST。
shutdown -c
取消关机指令。shutdown
后,系统默认会在1分钟后关机。root :~ # shutdown -h now #立刻关机,now相当于时间为0
root :~ # shutdown -h 20:25
#在今天20:25关机;若在20:25才下达此指令,则隔天才关机
root :~ # shutdown -h +10 #系统再过十分钟后关机
root :~ # shutdown -r now #系统立刻重新启动
root :~ # shutdown -r +30 'The system will reboot'
#再过三十分钟系统会重新启动,并显示后面的讯息给所有在在线的使用者
root :~ # shutdown -k now 'This system will reboot'
#仅发出警告的参数。系统不会关机。
重新启动,关机:reboot,halt,poweroff
root :~ # sync; reboot;
root :~ # halt #系统停止,屏幕可能会保留系统已经停止的讯息。
root :~ # poweroff #系统关机,所以没有提供额外的电力,屏幕空白。
实际使用管理工具 systemctl 关机
Please indicate the source:http://blog.csdn.net/gaoxiangnumber1
Welcome to my github:https://github.com/gaoxiangnumber1