tcpdump[-ccount(抓几个包)][-s snaplen-bytes 每个包抓多长字节的数据-s64每包抓64字节-s0还原到默认][-i network-interface(指定网卡)][-nn Don't convert protocol and port numbers etc.to names either.][-v 让抓包过程打印更多详情][-wfile(保存到文件)][expression(see pcap-filter)] only pack...
把textfile1 的文档内容加上行号后输入 textfile2 这个文档里: cat -n textfile1 > textfile2 Shell 把textfile1 和 textfile2 的文档内容加上行号(空白行不加)之后将内容附加到 textfile3 文档里: cat -b textfile1 textfile2 >> textfile3 Shell 清空/etc/test.txt 文档内容: cat /dev/null > /...
-K<文件>或--starting-file=<文件> 从指定的文件开始还原。 -l或--one-file-system 复制的文件或目录存放的文件系统,必须与tar指令执行时所处的文件系统相同,否则不予复制。 -L<媒体容量>或-tape-length=<媒体容量> 设置存放每体的容量,单位以1024 Bytes计算。 -m或--modification-time 还原文件时,不变更文...
modprobe : 解决insmod无法解决的模块依赖 比如drv.ko依赖first.ko这个模块,就必须先使用insmod命令加载first.ko这个模块,然后再加载drv.ko这个模块。 但是**modprobe就不会存在这个问题,modprobe会分析模块的依赖关系,然后会将所有的依赖模块都加载到内核中,因此modprobe命令相比insmod要智能**一些。 modprobe命令主要智能...
xfsdump: ending media file xfsdump: media file size 140934528 bytes xfsdump: dump size (non- dir files) : 139858712 bytes xfsdump: dump complete: 32 seconds elapsed xfsdump: Dump Summary: xfsdump: stream 0 /mnt/lv01 .xfsdump OK (success) xfsdump: Dump Status: SUCCESS [root@wencheng ...
-U, --unlink-first remove each file prior to extracting over it -W, --verify attempt to verify the archive after writing it Select output stream: --ignore-command-error ignore exit codes of children --no-ignore-command-error treat non-zero exit codes of children as ...
Command (? for help): p Disk /dev/sdc: 134217728 sectors, 64.0 GiB Model: Virtual Disk Sector size (logical/physical): 512/4096 bytes Disk identifier (GUID): <Disk GUID> Partition table holds up to 128 entries Main partition table begins at sector 2 and ends at sector 33 First us...
-B 将输入/输出的区块大小改成5210 Bytes。 -c 使用旧ASCII备份格式。 -C<区块大小>或--io-size=<区块大小> 设置输入/输出的区块大小,单位是Byte。 -d或--make-directories 如有需要cpio会自行建立目录。 -E<范本文件>或--pattern-file=<范本文件> 指定范本文件,其内含有一个或多个范本样式,让cpio解开符...
将一个文件或其它对象映射到进程地址空间,实现文件在磁盘的存储地址和进程地址空间中一段虚拟地址的映射关系。有了这样的映射,进程利用指针直接读写虚拟地址就可以完成对文件的读写操作。这样可以避免进行read/write函数操作。 文件的内存映射示意图: 对于用户进程和内核进程: ...
*/ /* linked list of VM areas per task, sorted by address */ struct vm_area_struct *vm_next, *vm_prev; //3 指向下一个vma struct rb_node vm_rb; //4 vma 插入rb树的节点 /* * Largest free memory gap in bytes to the left of this VMA. * Either between this VMA and vma->vm...