08 2024 档案
Linux 命令: paste
摘要:dewan ~/Downloads/b% cat 1 1 2 3 dewan ~/Downloads/b% cat 2 a b c dewan ~/Downloads/b% paste 1 2 1 a 2 b 3 c dewan ~/Downloads/b% paste -d , 1 2 1,a 2
什么是linux的复合命令
摘要:Linux中的复合命令(Compound Commands)是一种在shell(如bash)中允许将多个命令组合成一个逻辑单元进行执行的方式。这种方式允许你通过特定的语法结构,将多个命令组织起来,以实现更复杂的逻辑处理。复合命令可以帮助你减少脚本中的重复代码,提高脚本的可读性和可维护性。 Linux
tomcat 8.0 升级 9.0,启动报错Protocol handler start failed
摘要:关键日志如下: Caused by: java.lang.IllegalArgumentException: The AJP Connector is configured with secretRequired="true" but the secret attribute is either n
Linux 制作U盘启动盘
摘要:使用dd命令 sudo dd if=AlmaLinux-9.4-x86_64-minimal.iso of=/dev/sdX bs=4M status=progress oflag=sync if参数指定输入文件(即ISO镜像文件)。 of参数指定输出文件(即U盘设备名)。 bs=4M设置块大小为4
Pod网络创建过程
摘要:创建过程为: kubelet 先创建pause容器生成network namespace 调用网络CNI driver CNI driver 根据配置调用具体的cni 插件 cni 插件给pause 容器配置网络 pod 中其他的容器都使用 pause 容器的网络