2026
07
18
14:53

补方:艾草煮鸡蛋

整理如下:
如果能采到新鲜艾草,一定要掐顶端最嫩的那两寸嫩尖,大概需要50克,如果找不到就买干艾叶15g(要叶片完整背面有浓密白浓毛闻起来有香味),切3片生姜,3枚放养土鸡蛋,冷水下锅煮8分钟后用漏勺取出敲出裂纹放回再煮15分钟,关火前5分钟放入紅糖,吃蛋喝几口湯。早晨7~9点吃,千萬不能晚上吃,阻阳气收敛。一周2~3次即可,吃上一个月。
肾阳虚者, 加核桃仁15克
气血虛弱,加5颗去核红枣
严重寒湿,加15克赤小豆 
妇科宮寒,加当归10g 
不適合人群:阴虚火旺,
体内实热, 孕妇,感冒
2026
07
09
04:16

我的药方

药物去杂:请药材铺务必剔除药材中的杂质,特别是远志要求去心(现代药房一般直接提供远志筒/远志肉)

熟地黄:120克;

干山药:120克 ;

山萸肉:90克;

茯 神:90克;

巴戟天:60克 ;

肉苁蓉:60克;

杜 仲:60克;

川牛膝:60克 ;

续 断:60克 ;

枸杞子:60克 ;

五味子:60克;

楮实子:60克 ;

小茴香:60克 ;

远 志:60克 ;

石菖蒲:60克 ;

陈 皮:30克 ;

[中药方]

2024
12
01
02:37

openwrt 6300V2 USB无法显示的问题


There's a method to turn USB power on which is probably not persistent. I hope this will help you.

echo 0 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio0/direction
echo 1 > /sys/class/gpio/gpio0/value
echo 0 > /sys/class/gpio/unexport

At this time, you can add these code to /etc/rc.local for your convenience, which should be executed once the system init finished. But pay attention to the system upgrade which could overwrite this file. I will contribute a kernel patch in order to make this change persistent soon. You can mark this topic as [Solved] when your problem is solved.

2024
04
28
00:25

windown10开机背景好图收藏

 %UserProfile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets

目录下的文件改成JPG格式即可
 
2023
11
27
11:32

VPS DD LINUX

# Debian 与 Ubuntu
apt-get install -y xz-utils openssl gawk file
# CentOS 与 RedHat
yum install -y xz openssl gawk file wget


wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && chmod a+x InstallNET.sh

# 安装 debian 11 64位  -p指定密码
bash InstallNET.sh -d 11 -v 64 -a -p 123456 --mirror 'http://mirrors.ustc.edu.cn/debian/'

# 安装 debian 12 64位  -p指定密码
bash InstallNET.sh -d 12 -v 64 -a -p 123456 --mirror 'http://mirrors.ustc.edu.cn/debian/'

2023
05
01
18:58

windows 创建存储池,不支持该请求 0x00000032


解决方法,用管理员身份运行 PowerShell 输入以下命令,先查看物理磁盘状态

PS C:\Windows\system32> Get-PhysicalDisk

DeviceId FriendlyName         SerialNumber         MediaType   CanPool OperationalStatus HealthStatus Usage        Size
-------- ------------         ------------         ---------   ------- ----------------- ------------ -----        ----
2        WDC WD400BB-00JHA0   WD-WMAMC1388003      Unspecified False   OK                Healthy      Auto-Select ...GB
0        ST3808110AS          5LRDLM2E             Unspecified False   OK                Healthy      Auto-Select ...GB
1        Colorful SL300 160GB AA000000000000002468 SSD         False   OK                Healthy      Auto-Select ...GB


PS C:\Windows\system32> Get-PhysicalDisk -SerialNumber WD-WMAMC1388003 | Reset-physicalDisk
PS C:\Windows\system32> Get-PhysicalDisk -SerialNumber 5LRDLM2E | Reset-physicalDisk
PS C:\Windows\system32> Get-PhysicalDisk

DeviceId FriendlyName         SerialNumber         MediaType   CanPool OperationalStatus HealthStatus Usage            Size
-------- ------------         ------------         ---------   ------- ----------------- ------------ -----            ----
2        WDC WD400BB-00JHA0   WD-WMAMC1388003      Unspecified True    OK                Healthy      Auto-Select  37.27 GB
0        ST3808110AS          5LRDLM2E             Unspecified True    OK                Healthy      Auto-Select  74.53 GB
1        Colorful SL300 160GB AA000000000000002468 SSD         False   OK                Healthy      Auto-Select 149.05 GB
2023
04
04
10:10

docker on debian 11

apt update
apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
apt update
apt install docker-ce