
linux
mstangyuq
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ifconfig:conmand not found
问题:在red hat enterprise linux 5中查询IP地址时,输入ifconfig命令报错:“ifconfig: command not found” 原因:ifconfig命令所在路径/sbin未包含在系统环境变量PATH中 解决方法: 1. 直接输入:/sbin/ifconfig 2. 临时修改环境变量:在shell中输入 $export PATH = $PAT转载 2014-06-25 14:11:55 · 1023 阅读 · 0 评论 -
linux实用命令(1)
To copy, preserving permissions AND structure AND recursively, from a remote system to your local system: 1 rsync -r -a -v -e ssh server1.address.com:/dir/youwant/to/copy/ /local翻译 2014-07-20 17:37:38 · 377 阅读 · 0 评论 -
Linux使用locate命令定位文件
Linux使用locate命令定位文件翻译 2014-07-20 18:11:54 · 2116 阅读 · 0 评论 -
Linux单双引号的区别
单引号与双引号的最大不同在于双引号仍然可以保有变量的内容,但单引号内仅能是一般字符 ,而不会有特殊符号。我们以底下的例子做说明:假设您定义了一个变量,name=VBird ,现在想以 name 这个变量的内容定义出 myname 显示 VBird its me 这个内容,要如何订定呢? [root@linux ~]# name=VBird转载 2014-07-24 10:22:43 · 682 阅读 · 0 评论 -
linux禁ping(Disable ping response)
Disable ping response Temporarily To disable the PING response, login as root and type the following command # echo 1 >/proc/sys/net/ipv4/icmp_echo_ignore_all To reenable the PING response翻译 2014-07-24 20:26:39 · 705 阅读 · 0 评论 -
Linux下DOS攻击探测
通常情况下使用netstat命令列出所有连接,原创 2014-07-24 20:16:53 · 1107 阅读 · 0 评论 -
Linux File System - Basics
/ Root Directory. Everything is stored under the root directory. Only the root user has write privilege /bin User Binaries. Contains binary executables, common linux commands (example翻译 2014-07-26 14:43:51 · 459 阅读 · 0 评论