Linux下perl模块的安装
先参看一下目录下的README文档
主要有以下几个步骤:
1) perl **.PL 生成makefile 文件
2) make
3) make test (this is optional,如果这步没啥问题,会显示一切ok)
4) make install
出现的问题,多看下提示,一般都是缺包少库
相关文档:
总览
用iptables -ADC 来指定链的规
则
,-A添加 -D删除 -C 修改
iptables - [RI] chain rule num rule-specification[option]
用iptables - RI 通过规则的顺序指定
iptables -D chain rule num[option]
删除指定规则
iptables -[LFZ] [chain][option]
用iptables -LFZ 链名 [选项]
iptables -[NX] chain
用 -NX ......
Description of the "runinfo" format
-----------------------------------
Purpose of the "runinfo" files
------------------------------
"runinfo" files found in the source tree allow the "rtai-load" script
(see rtai-core/scripts/rtai-load) to retrieve the information it needs
to execute a RTAI ......
Linux文件系统之文件、分区大小限制
以下为红帽ext3文件系统所支持的max file size和max filesystem size:
对文件系统
的限制如下:
ext3 文件系统,红帽企业版 Linux 3 的文件系统最大是 2TB(已验证),红帽企业版 Linux 4 和 5 提高到了
8TB(已验证),红帽企业版 Linux 5 支持文件系统的理论值是 16TB。
GFS ......
Linux下可以用ls –l 命令来判断文件类型,如上 图所示。可以依据第一列中的10个字符来判断。
• -rw-r—r—指明了1.txt文件是一个普通文件,1.txt和myprog04文件都是普通文件。以”-“开头的都是普通文件,而以”d”开头的是目录文件。
• brw-rw---- 指明了/dev/sd ......
Linux下查看文档内容命令总结
主要有如下几个命令:
cat 由第一行开始显示文档内容
tac 从最后一行开始显示,可以看出 tac 是 cat 的倒着写
nl 显示的时候,顺道输出行号
more 一页一页的显示文档内容
less& ......