tiny c compiler

2024-09-30

Tiny C Compiler(TCC) 是一个轻量级高速的C语言编译器。与其他C语言编译器不同,它是一个自我依赖的系统,不需要其他外部的汇编器和连接器。TCC的编译速度十分快,以至于编译一些大型项目都不需要Makefile文件。  阅读全文...

linux disk uuid

2024-09-25

blkid   阅读全文...

win10配置L2TP

2024-09-25

1、设置、网络、增加vpn
安全ipsec2
允许使用协议:质询握手身份验证协议(CHAP)
2、注册表修改
Windows Registry Editor Version 5.00  阅读全文...

zabbix 数据库中表的字符集或排序规则不受支持

2024-09-24

SELECT @@character_set_database, @@collation_database;  阅读全文...

MinIO

2024-09-23

MinIO 是个基于 Golang 编写的开源对象存储服务,存储非结构化数据,如:图片,视频,音乐等  阅读全文...

crictl rmi/exec/images

2024-09-23

crictl rmi images  阅读全文...

nginx X-Forwarded-Proto

2024-09-19

proxy_set_header X-Forwarded-Proto https; #此处是https访问的关键环节
#proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-Proto $scheme;  阅读全文...

aliyun k8s get token

2024-09-11

kubectl get secret -n default $(kubectl get sa admin-token-sa -n default -o jsonpath='{.secrets[0].name}') -o jsonpath='{.data.token}' | base64 -d  阅读全文...

mysql uptime

2024-09-11

SHOW GLOBAL STATUS LIKE 'Uptime';  阅读全文...

nacos No message available

2024-08-28

1、No message available  阅读全文...

zentao.service

2024-08-27

zentao开机自启动  阅读全文...

nacos日志太大

2024-08-27

nacos磁盘不足会导致nacos崩溃。  阅读全文...

yum makecache fast

2024-08-26

当系统安装了新的Yum仓库或者仓库中的软件包有更新时,执行yum makecache fast命令可以快速重建这个本地缓存。  阅读全文...

kubectl get -A ValidatingWebhookConfiguration

2024-08-23

Internal error occurred: failed calling webhook "validate.nginx.ingress.kubernetes.io": failed to call webhook: Post "https://intranet-ingress-nginx-ack-ingress-nginx-v1-controller-admission.ingress-nginx.svc:443/networking/v1/ingresses?timeout=10s": service "intranet-ingress-nginx-ack-ingress-nginx-v1-controller-admission" not found  阅读全文...

python calculator pi

2024-08-23 [gallery ids="4462" ]

#!/bin/python  阅读全文...