最新发布第4页
排序
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://...
N15※虚拟环境中UNC路径不受支持
打开注册表 计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor 2. 添加值 DisableUNCCheck, 类型为 REG_DWORD 并将该值设置为1 (十六进制)
L39※禁止Debian 11自动休眠
1> 查看休眠状态 systemctl status sleep.target 2> 设置禁止休眠 systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
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...
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...
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...
N32※Autodesk 提示无效的序列号的解决办法
1> 卸载原有License 找到C:\Program Files (x86)\Common Files\Autodesk Shared\AdskLicensing位置,双击uninstall.exe 2> 安装新的License adsklicensinginstaller下载文件 下载上述文件...
L51※好玩儿的docker项目
0> 私有镜像 docker login --username=condor369 registry.cn-hangzhou.aliyuncs.com docker tag [ImageId] registry.cn-hangzhou.aliyuncs.com/slx-docker/[命名空间]:[镜像版...
L42※使用 systemd 实现 screen 开机启动
1> 创建一个新的 systemd 服务文件 vim /etc/systemd/system/screen.service 2> 在新文件中添加以下内容 [Unit] Description=Screen Session [Service] Type=simple User=<you...
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...