linux
阿迪dos
这个家伙很懒,什么也没有留下
展开
-
gcc 编译选项
-g 编译debug版 -m64 编译64位 -pg 使用gprof性能评估原创 2012-09-03 10:18:55 · 203 阅读 · 0 评论 -
dup重定向到标准
#include #include #include #include #include using namespace std; int main() { int fd = open("data", O_CREAT | O_RDWR | O_TRUNC, S_IRUSR | S_IWUSR); if(fd < 0) { perror("op原创 2013-02-01 09:56:00 · 214 阅读 · 0 评论 -
redhat6.3 sabma共享目录在window下无权限访问
chcon -R -t samba_share_t /share_dir -R 递归修改安全上下文类型 -t 指定修改安全上下文类型值 /share_dir samba共享目录原创 2013-04-18 08:51:15 · 435 阅读 · 0 评论 -
linux命令记录
1. 多文件内容的查找替换 sed -i "s/oldstring/newstring/g" `grep oldstring -rl dir` 2.tcpdump 网络抓包 tcpdump -Xns0 -i any udp/tcp port -i 指定网卡 upd/tcp 协议 port 指定端口 其他具体选型参考:man tcpdump 3. 网络包接受情况(原创 2012-08-29 08:57:53 · 310 阅读 · 0 评论