GaGa's Blog

One GaGa, One World !

如果你是在 Cloudflare(不是 Cloudware)中定义 URL 重写规则,可以通过 “规则(Rules)” 功能来实现。


方法 1:使用 重写规则(Transform Rules)

Cloudflare 支持使用「Transform Rules → URL Rewrite」功能对请求 URL 进行重写(Rewrite Path)。

Read more »

解决

1.查看系统ID
cat /etc/os-release

2.修改repo
sed -e "s|^mirrorlist=|#mirrorlist=|g" \
    -e "s|^#baseurl=http://mirror.centos.org/centos/\$releasever|baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos-vault/7.9.2009|g" \
    -e "s|^#baseurl=http://mirror.centos.org/\$contentdir/\$releasever|baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos-vault/7.9.2009|g" \
    -i.bak \
    /etc/yum.repos.d/CentOS-*.repo

python2

# 默认端口 8000
python2 -m SimpleHTTPServer

# 自定义端口8080
python2 -m SimpleHTTPServer 8080	

python3

# 默认监听8000
python3 -m http.server

# 自定义监听端口
python3 -m http.server 8080
Read more »

windows_exporter(前身为 wmi_exporter)是一个用于在 Windows 系统上导出系统指标(metrics)到 Prometheus 的开源工具。它允许你收集各种系统级别的数据,用于监控和告警分析。


🔧 项目基本信息

Read more »

iShell(又名 iShellPro)这款现代化 SSH 工具。

🔎 概览

项目 内容
定位 一款轻量、高性能、跨平台(Windows、macOS(Intel & M1)、Linux,未来支持 iOS/Android)的 SSH 客户端,集成 AI 和 SFTP 功能
免费策略 基础功能永久免费,离线使用支持;高级功能如 AI、云同步等需订阅或一次性付费
Read more »

Termius 是一个现代化的 SSH 客户端工具,适用于开发者、系统管理员以及任何需要远程管理服务器的用户,支持跨平台。


🌐 Termius 简介

Termius 提供了一种可视化、用户友好的方式来管理 SSH 连接,比传统的命令行客户端(如 PuTTY 或系统默认终端)更加现代化和功能全面。

Read more »

KeyDB 是一个高性能的 Redis 兼容数据库系统,最初是作为 Redis 的一个分支(fork)开发的。它在保留 Redis 所有核心特性的同时,引入了多线程处理、内存管理优化、复制增强等功能,使其在多核 CPU 上具有更好的性能表现。


🌟 KeyDB 简介

Read more »
0%