linux命令cl Linux命令查找关键字

2-15 Linux中的文件查看 --- head、tail 和 wc 命令head / taillinux命令cl:显示文件头或尾几行
-nlinux命令cl:指定显示几行 。默认是10行
head /etc/passwd:查看 /etc/passwd 头 10 行信息 。不加选项默认前10行 。
head -5 /etc/passwd:指定查看 etc/passwd 文件前 5 行 。
tail /etc/passwd:查看 /etc/passwd 后 10 行信息 。不加选项默认后10行 。
tail -5 /etc/passwd:指定查看 etc/passwd 文件后 5 行 。
wc:显示文件linux命令cl的行数、字数、字节 。
-c:只显示字节 。
-w:只显示字数 。这里的字数指的是由空格linux命令cl,换行符等分隔的字符串 。
-l:只显示行 。
wc -l /etc/passwd:显示/etc/passwd 文档行数 。
wc -c /etc/passwd:显示 /etc/passwd 文档字节数 。
wc -w /etc/passwd:显示etc/passwd 文档字数 。
wc -cl /etc/passwd:-cl 组合选项linux命令cl,查看/etc/passwd 文档的行数和字节数
linux终端命令的使用shutdown
功能说明:系统关机命令
语法:shutdown [-t sec] [-arkhncfFHP] time [warning-message]
包名称:SysVinit
相关命令:halt,reboot
补充说明:本命令可以关闭所有linux命令cl的程序linux命令cl,并依用户的需要linux命令cl,进行重新开机或关机的操作 。Shutdown命令可以指定系统在特定时间关机linux命令cl,但仅限于当日 。若需指定在特定日期关机linux命令cl,则需搭配at命令执行 。
参数:
-a
Use /etc/shutdown.allow.
-t sec
Tell init(8) to wait sec seconds between sending processes the warning and the kill signal, before changing to another runlevel.
-k
Don't really shutdown; only send the warning messages to everybody.
-r
Reboot after shutdown.
-h
Halt or poweroff after shutdown.
-H
Halt action is to halt or drop into boot monitor on systems that support it.
-P
Halt action is to turn off the power.
-n
[DEPRECATED] Don't call init(8) to do the shutdown but do it ourself. The use of this option is discouraged, and its results are not always what you'd expect.
-f
Skip fsck on reboot.
-F
Force fsck on reboot.
-c
Cancel an already running shutdown. With this option it is of course not possible to give the time argument, but you can enter a explanatory message on the command line that will be sent to all users.
time
When to shutdown.
warning-message
Message to send to all users.
范例:
1)立即关闭系统:
# shutdown -h now
2)执定在21:10将系统重新开机:
# shutdown -r 21:10
3)指定10分钟后关机,并发送警告信息:
# shutdown +10 “conputer will shut down”
4)取消关机:
# shutdown -c
Linux 常用命令(要求全而精)1、linux分区
--在linux里面所有linux命令cl的设备、任何东西linux命令cl,在linux看来都是文件 。
--文件在它看来,有两种形式:
第一种是字符型(键盘输入、打印机);
第二种是二进制型(硬盘、光驱、U盘)
--linux中所有硬件
--手动分区
--A、至少有两个分区
/根分区
SWAP 交换分区(物理内存大小的两倍)
--B、个人桌面分区
/
/boot 128MB is enough
/usr
SWAP
/tmp(用于光盘刻录)
2、linux目录说明
--/dev/xxyN
--xx (分区所在设备类型:hd--IDE硬盘sd--SCSI硬盘)
--y(标明分区所在设备
例如:/dev/hda 第一个IDE硬盘 或 /dev/hdb 第二个IDE硬盘 或 /dev/sdb 第二个SCSI硬盘)
--N(数字代表分区:1-4--主分区或扩展分区;逻辑分区从5开始linux命令cl!
例如:/dev/hda3 第一个IDE硬盘上的第三个主分区或扩展分区

推荐阅读