上一页 1 2 3 4 5 6 7 8 9 ··· 61 下一页
摘要: 1. tcp/ip封装 当应用程序用TCP传送数据时,数据被送入协议栈中,然后逐个通过每一层直到被当作一串比特流送入网络。其中每一层对收到的数据都要增加一些首部信息(有时还要增加尾部信息),该过程如图1-7所示。TCP传给IP的数据单元称作TCP报文段或简称为TCP段(TCPsegment),是UD 阅读全文
posted @ 2023-01-30 15:19 MoonXu 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 替换功能,用^w替换为空即可 阅读全文
posted @ 2023-01-30 15:14 MoonXu 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 摘自tcp/ip详解3卷 1. tcp/ip协议分层 1) 链路层,有时也称作数据链路层或网络接口层, 通常包括操作系统中的设备驱动程序和计算机 中对应的网络接口卡。它们一起处理与电缆(或其他任何传输媒介)的物理接口细节 2) 网络层,有时也称作互联网层,处理分组在网络中的活动,例如分组的选路。在 阅读全文
posted @ 2023-01-30 15:02 MoonXu 阅读(153) 评论(0) 推荐(0) 编辑
摘要: int *p = (int []){2, 4}; 初始化p指向一个元素的第一个元素两个整数的数组。 这个化合物中的表达式字面值必须是常量。未命名的对象具有静态存储持续时间。 阅读全文
posted @ 2023-01-28 11:16 MoonXu 阅读(46) 评论(0) 推荐(0) 编辑
摘要: OSGI:https://blog.csdn.net/acmman/article/details/50848595 阅读全文
posted @ 2023-01-06 10:52 MoonXu 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1.生成一个空的2MiB文件 dd if=/dev/zero of=rootfs.ext4 bs=1024 count=2048 (指定每一块大小为1024字节,一共又2048块,那么就是2048 * 1024 B = 2MiB) 2.对生成的文件进行格式化 mkfs.ext4 rootfs.ext 阅读全文
posted @ 2022-12-22 15:04 MoonXu 阅读(580) 评论(0) 推荐(0) 编辑
摘要: PON :Passive Optical Network ,无源光纤网络 ONT:Optical network terminal,光网络终端) “OLT”、“ONU”和“PON”分别是什么意思?三者有什么区别? https://blog.csdn.net/baidu_37503452/articl 阅读全文
posted @ 2022-12-22 13:53 MoonXu 阅读(76) 评论(0) 推荐(0) 编辑
摘要: du -ah --max-depth=1 阅读全文
posted @ 2022-12-20 15:30 MoonXu 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 服务器 sudo apt install nfs-kernel-server /etc/exports中添加共享目录 /home/xpy/cig *(rw,sync,no_root_squash) 客户端 sudo apt install nfs-common mount -t nfs 192.16 阅读全文
posted @ 2022-12-20 13:24 MoonXu 阅读(19) 评论(0) 推荐(0) 编辑
摘要: sudo apt install cifs-utils sudo mount -t cifs -o username=Administrator,password=666666,uid=1000,gid=1000 //192.168.1.100/linux destdir/ 没亲自试过 window 阅读全文
posted @ 2022-12-20 10:08 MoonXu 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 61 下一页