Blog
N编译OPENWRT
首先装好 Linux 系统,推荐 Debian 11 或 Ubuntu LTS 安装编译依赖 sudo apt update -y sudo apt full-upgrade -y sudo apt install -y ack antlr3 aria2 as...
minisforum U820 Ventura安装
创建USB安装盘 下载安装镜像 下载balenaEtcher,选择安装镜像,选择需要制作的U盘,点击 Flash 即可。Windows10需要以管理员权限运行 下载efi https://github...
VPS安装Alist,Rclone,Emby
Centos安装运行环境 安装EPEL源 yum -y install epel-release 安装一些基本组件和依赖 yum -y install wget unzip screen fuse fuse-devel ...
解决OPENWRT无线未开启或未关联
在无线设置中,必须指定信道,信道选项不能选择auto。 对于2.4G频率,模式选择N,信道设置为11。 对于5G频率,模式选择Legacy,信道设置为149。
为openwrt samba设置root密码
vi /etc/samba/smb.conf.template或者编辑模板 将[global]中的invalid users = root注掉,如下 #invalid users = root 但是我们输入用户root 和它的密码...
centos7 安装docker
yum 包更新到最新 yum update 安装需要的软件包 yum install -y yum-utils device-mapper-persistent-data lvm2 docker安装 curl -fsSL https://get.doc...
WIN11自动登录
WIN+R Regedit 打开注册表 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device 将DevicePasswordLessBuildVersion的...
UNRAID配置RCLONE挂载Google云盘
安装 rclone 在unraid的apps商店中搜索Rclone(Waseh/rclone)插件安装 安装 User Scripts 在unraid的apps商店中搜索User Scripts插件安装 SSH初始化配置RCLO...
centos虚拟内存设置
centos虚拟内存设置 查看内存 free -m 查看文件系统 df -h 增加虚拟内存 if 表示infile,of表示outfile,bs=1024代表增加的模块大小,count=16384000代...
centos下载文件命令
例如下载https://drive.voxhuang.workers.dev/2:/emby.zip链接文件至/root目录 wget -P /root https://drive.voxhuang.workers.dev/2:/emby.zip