月度归档: 2025 年 2 月
thumbnail

docker部署本地iptv 肥羊Allinone部署

使用镜像youshandefeiyang/allinone 生成AES密钥 访问:ALLINONE部署指令生成器 https://imgtool.v1.mk/allinone.html 获取AES密钥 支持系统 Linux MAc ……
thumbnail

docker部署Watchtower 自动更新 Docker 容器

使用镜像containrrr/watchtower docker-compose.yml version: '3' services: watchtower: image: containrrr/watchtower:latest container_name: ……
thumbnail
VPS

宝塔稳定版怎么切换正式版

curl https://download.bt.cn/install/update_panel.sh|bash  
thumbnail

解决Electron项目下载慢和打包慢的问题

更换源 #清空缓存 cache clean -f #设置华为镜像源 config set registry https://mirrors.huaweicloud.com/repository/ 修改浏览器引擎驱动镜像 npm config s……
thumbnail

zerotier安装和卸载

安装: curl -s https://install.zerotier.com | sudo bash 或 curl -s https://install.zerotier.com | bash 卸载: apt remove zerotier* 加入节点: zeroti……
thumbnail

“Mac应用”已损坏,打不开解决办法

macOS 15系统以上(手动修复) 打开任何来源选项 打开「终端.app」,输入以下命令并回车,输入开机密码回车 sudo spctl --master-disable 此时会提示:Globall……
thumbnail
VPS

宝塔面板自动挂载硬盘

Centos/Fedora系统: yum install wget -y && wget -O auto_disk.sh http://download.bt.cn/tools/auto_disk.sh && bash auto_disk.sh Ubuntu……
thumbnail
VPS

linux挂载新硬盘

查看硬盘的使用情况,也就是哪些硬盘没有挂载 fdisk -l   查看挂载情况 fdisk -l   首先,使用命名 mkfs.ext4 硬盘名称 进行格式化,本例的命令如下……