最新发布第4页
N05※nginx反向代理配置-霜林轩

N05※nginx反向代理配置

1> 域名重定向 vi /usr/local/nginx/conf/vhost/google.cn.conf # goole.cn为示例域名 upstream proxy { server 127.0.0.1:8085; server 127.0.0.1:8086; } location / { proxy_pass http://...
slzxf的头像-霜林轩slzxf6个月前
1210
N15※虚拟环境中UNC路径不受支持-霜林轩

N15※虚拟环境中UNC路径不受支持

打开注册表 计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor 2. 添加值 DisableUNCCheck, 类型为 REG_DWORD 并将该值设置为1 (十六进制)
slzxf的头像-霜林轩slzxf2年前
1190
L39※禁止Debian 11自动休眠-霜林轩

L39※禁止Debian 11自动休眠

1> 查看休眠状态 systemctl status sleep.target 2> 设置禁止休眠 systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
slzxf的头像-霜林轩slzxf2年前
1191
L31※nginx反向代理为Notion加速-霜林轩

L31※nginx反向代理为Notion加速

1> 用oneinstack一键安装nginx wget -c http://mirrors.linuxeye.com/oneinstack-full.tar.gz && tar xzf oneinstack-full.tar.gz && ./oneinstack/install.sh --nginx_opti...
slzxf的头像-霜林轩slzxf2年前
1191
L07※Linux安装chrome-霜林轩

L07※Linux安装chrome

1> Centos安装chrome ① 安装方法1 a. 修改yum源 cd /etc/yum.repos.d/ vi google-chrome.repo [google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/sta...
slzxf的头像-霜林轩slzxf4个月前
1151
L04※vps搭建moon#为Zerotier传输加速-霜林轩

L04※vps搭建moon#为Zerotier传输加速

1> 配置服务器端 ① 安装配置ZeroTier客户端 curl -s https://install.zerotier.com/ | sudo bash wget https://mirrors.condor.vip/zerotier/zerotier-install.sh && bash zer...
slzxf的头像-霜林轩slzxf2个月前
1110
N32※Autodesk 提示无效的序列号的解决办法-霜林轩

N32※Autodesk 提示无效的序列号的解决办法

1> 卸载原有License 找到C:\Program Files (x86)\Common Files\Autodesk Shared\AdskLicensing位置,双击uninstall.exe 2> 安装新的License adsklicensinginstaller下载文件 下载上述文件...
slzxf的头像-霜林轩slzxf4个月前
01080
L51※好玩儿的docker项目-霜林轩

L51※好玩儿的docker项目

0> 私有镜像 docker login --username=condor369 registry.cn-hangzhou.aliyuncs.com docker tag [ImageId] registry.cn-hangzhou.aliyuncs.com/slx-docker/[命名空间]:[镜像版...
slzxf的头像-霜林轩slzxf3个月前
1080
L42※使用 systemd 实现 screen 开机启动-霜林轩

L42※使用 systemd 实现 screen 开机启动

1> 创建一个新的 systemd 服务文件 vim /etc/systemd/system/screen.service 2> 在新文件中添加以下内容 [Unit] Description=Screen Session [Service] Type=simple User=<you...
slzxf的头像-霜林轩slzxf2年前
1062
L29※ubuntu搭建NTP Server-霜林轩

L29※ubuntu搭建NTP Server

1> 寻找NTP SERVER http://www.pool.ntp.org是NTP的官方网站,这里可以查询最近的NTP Server。 ntp1.aliyun.com ntp.tencent.com ntp.ntsc.ac.cn # 中国NTPserver server 0.cn.pool.ntp.org s...
slzxf的头像-霜林轩slzxf3个月前
1051