Identifier
Linux对于生成随机字符串和随机UUID比windows要简单随机字符串:123# 带特殊符号、长度为25的随机字符串cat /dev/random | tr -dc 'A-Za-z0-9!@#$%^&*()_+-=' | head -c 25 ; echo ""openssl rand -base64 30 | tr -dc 'A-Za-z0-9!@#$%^&*()_+-=' | head -c 25 随机UUID:1234# 以下两种方式都是生成version4 UUID,完全随机,安全性更高uuidgen -r# 或者cat /proc/sys/kernel/random/uuid
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
tello eSIM
Tello eSIM 美国手机卡除了大多数全球卡可以注册chatgpt、google账号、tg账号等等,还可以开通诸如Google voice、一些美国专用服务。紫卡之类的由于莫名封号不在讨论之列。 后面也会介绍一下gaffgiff 卡 申请Tello eSIM前提: 国际信用卡或外区paypal。招行的全币种信用卡、中行美元信用卡等等 能够直连访问tello.com的网络 支持eSIM的手机或ESTK eSIM卡等 一个邮箱,尽量使用outlook、gmail一类的 一个国内手机号 911地址。用于开通wifi-calling,注意选免税州。 一个支持wifi-calling的手机,大部分都支持,名字或有不同,wlan通话之类的 Gatting Started一、访问 tello plans 在Check out the new Unlimited Plan选择 $5/month 套餐即,No data和100 minutes Free text 点击I want this plan ![[屏幕截图 2026-02-23 204746.png]] ...
DSM
在B站看到有不少黑群晖的方案,Github上有提供相关的解决方案,支持多平台部署。我在ESXI上部署使用后感觉一般,DSM面向对象一站式提供NAS解决方案,但在docker之类的应用中显得有些乏力,不如直接linux部署来的便捷。这里提供一下仓库地址,方便各位取用,觉得不错的话,记得给项目加个⭐ARC 👉 https://github.com/AuxXxilium/arc/releases
Flatcar Container Linux
Getting Started 以paopaodns镜像为例,esxi平台 前提 下载butane win版👉:https://github.com/coreos/butane/releases/ 下载最新版flatcar👉:[[[https://stable.release.flatcar-linux.net/amd64-usr/current/flatcar_production_vmware_ova.ova]] 参考flatcar.butane.yaml修改paopaodns.yaml 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171...
Oracle Cloud vm 优化
Oracle Cloud vm选择我这里使用的rocklinux 9 x86,Arm就算了,抢不到的直接抢不到~,其他linux系统也类似,我感觉rocklinux比较稳定罢了。 免费套餐我们能用到的都是内存0.75G(可怜啊),我们依次优化一下一、/boot瘦身12345678910111213141516171819# 使用df命令查看/boot占用情况,一般而言,会有多个内核及救援镜像dfFilesystem 1K-blocks Used Available Use% Mounted ondevtmpfs 4096 0 4096 0% /devtmpfs 389064 0 389064 0% /dev/shmtmpfs 155628 14744 140884 10% /runefivarfs 256 21 ...
First Blog
Blog 部署日记这是我的第一个 Blog。 正如你现在看到的这样,页面还比较原始,但这只是开始。 我相信,它会慢慢发展成我理想中的样子。 一、准备工作在开始部署之前,你需要准备好以下软件和服务: 一个 GitHub 账号👉 https://github.com/ 使用 GitHub 账号登录 Vercel👉 https://vercel.com/ Node.js(推荐 LTS 版本)👉 https://nodejs.org/ Git👉 https://git-scm.com/ 一个属于你自己的 域名示例:👉 本 Blog 域名 已配置好的 DNS 服务推荐使用 Cloudflare👉 https://www.cloudflare.com/ 二、本地搭建 Blog(Hexo) 以下命令可在 CMD / PowerShell / Terminal 中执行 1. 安装 Hexo CLI1npm install -g hexo-cli 2. 初始化博客项目1234hexo init myblog# “myblog” 可替换为你自己...