月度归档: 2025 年 8 月
VPS常用命令及脚本
自动同步校正系统时间
apt install systemd-timesyncd
timedatectl set-ntp true
设置时区为北京时间
timedatectl set-timezone Asia/Shanghai
&n……
使用cloudflare测速及生成测速文件
测速网址:https://speed.cloudflare.com/
生成测速文件:
1G测速文件
https://speed.cloudflare.com/__down?during=download&bytes=1073741824
……
Debain使用ntp同步时间
apt-get update
apt-get install ntpdate
ntpdate ntp1.aliyun.com
Debian11 服务器禁用IPv6
1、编辑/etc/sysctl.conf文件
sudo nano /etc/sysctl.conf
在文件末尾添加:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1……
服务器挂载webdav
1、安装davfs2
apt install davfs2
2、挂载
挂载时根据提示输入账号密码
mkdir /webdav
mount -t davfs 这里是webdav地址 /webdav
3、保存账号……
使用阿里云ESA边缘函数获取访问用户IP
async function handleRequest(request) {
const url = new URL(request.url);
const path = url.pathname;
const ip = request.headers.get……