摘要: https://blog.csdn.net/weixin_52690231/article/details/125172061 阅读全文
posted @ 2022-11-09 00:19 rincloud 阅读(24) 评论(0) 推荐(0)
摘要: containerd-shim-runc-v2 启动了一个ttrpc server(类似grpc) containerd 通过 ttrpc和containerd-shim-runc-v2 通信来管理容器 service Task { rpc State(StateRequest) returns ( 阅读全文
posted @ 2022-11-05 13:50 rincloud 阅读(308) 评论(0) 推荐(0)
摘要: 使用 netstat 找到进程 # netstat -antp|grep 6789 tcp 0 0 1.1.1.1:59950 1.1.1.2:6789 ESTABLISHED 45059/ceph-fuse 如上,进程 pid 为 45059。 使用 lsof 找到进程 45059 打开的所有文件 阅读全文
posted @ 2022-11-04 12:57 rincloud 阅读(279) 评论(0) 推荐(0)
摘要: 缓冲与冲洗 标准IO是带缓冲的IO,一共有3种类型的缓冲: 全缓冲:缓冲区填满后才进行IO操作,如磁盘文件 行缓冲:遇到换行符才进行IO操作,如命令行终端(stdin和stdout) 无缓冲:不经过缓冲,立即进行IO操作,如stderr 一般情况下,系统默认使用下列类型的缓冲: stderr是无缓冲 阅读全文
posted @ 2022-11-01 11:35 rincloud 阅读(62) 评论(0) 推荐(0)
摘要: https://chuna2.787528.xyz/sparkdev/p/9032209.html 阅读全文
posted @ 2022-10-28 00:49 rincloud 阅读(43) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/woshaguayi/article/details/114086207 阅读全文
posted @ 2022-10-27 18:41 rincloud 阅读(18) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/jdsjlzx/article/details/123831178 阅读全文
posted @ 2022-10-20 22:13 rincloud 阅读(10) 评论(0) 推荐(0)
摘要: https://blog.51cto.com/ghostwritten/5345108 阅读全文
posted @ 2022-10-20 21:43 rincloud 阅读(25) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/m0_53133879/article/details/124892548 阅读全文
posted @ 2022-10-18 15:49 rincloud 阅读(19) 评论(0) 推荐(0)
摘要: 1.解压 tar -xzf go1.17.8.linux-amd64.tar.gz -C /usr/local/ 2./etc/profile增加 export GOROOT=/usr/local/go export PATH=$PATH:$GOROOT/bin 3.source /etc/prof 阅读全文
posted @ 2022-10-18 10:51 rincloud 阅读(29) 评论(0) 推荐(0)