curl+api创建Github仓库
github_name=你的github用户名 github_repo_key=你的有repo权限的key或者github密码 repo_name=你要创建的仓库名 private=true #true或者false,true为创建私有仓库 curl -u $github_name:$github_repo_key https://api.git……
一键检测奈飞Netflix的IP解锁范围和对应地区
这个是使用Go语言编写的流媒体NetFlix解锁检测脚本。 Github地址:https://github.com/sjlleo/netflix-verify 使用方法 简约模式 Github主站下载链接(IPv6 Only的VPS请使用下方的CDN链接): wget -N -O nf https://github.com/sjlleo/netflix-……
CentOS7+warp+wgcf+wireguard-go+wireguard-tools给VPS添加IPV6访问,Ubuntu、Debian同理
本文以CentOS7 x64系统为例 一、安装wireguard-go Github地址:https://github.com/WireGuard/wireguard-go 编译安装 一些需要的软件yum install -y wget git make 如果是debian/ubuntu:apt install -y wget git make 1.安装go……
俄罗斯套娃之Docker里使用Docker
好像并没有什么用 docker run -v /var/run/docker.sock:/var/run/docker.sock ……
Linux下ls命令根据文件/夹属性不同显示不同颜色,效率更高
将alias ls='ls --color=auto'添加到.bashrc或者.profile或者/etc/profile 命令如下 echo "alias ls='ls --color=auto'" >> ~/.bashrc 效果如下图 ……
记录——Debian10+Warp+WireGuard
安装 WireGuard # 先安装linux-headers apt update apt install linux-headers-$(uname -r) -y # 安装WireGuard echo "deb http://deb.debian.org/debian/ unstable main" > /etc……
使用SHC加密shell脚本的教程
Debian下可以直接apt安装 apt-get install -y shc 如果没有安装gcc也要安装,否则会出现sh: 1: cc: not found apt-get install -y shc gcc 加密脚本 shc -f 脚本路径 [email protected]:~/shc# echo -e '#!/bin/bash……
编译Rclone——官方已经支持世纪互联Onedrive、Sharepoint
现在Rclone官方终于正式支持世纪互联了,详见:https://github.com/rclone/rclone/pull/4963。 不过在Releases现在还没有更新,所以就自己编译一下吧。 编译方法如下 一、安装Golang,Git yum install -y golang git apt-get install -y golang git 二、……
Windows子系统WSL安装宝塔的情况下开放防火墙
前些天嗷嗷发了篇《腾讯云轻量应用服务器国内机安装Windows10 Ltsc并安装WSL子系统Linux双系统安装宝塔教程》:https://haoduck.com/747.html 其实除了在WSL中开放端口,还需要在Windows防火墙放行Nginx才行。 方法如下: 1. 在Windows设置中打开网络和 Internet>以太网>Windows 防火……
腾讯云轻量应用服务器国内机安装Windows10 Ltsc并安装WSL子系统Linux双系统安装宝塔教程
最近腾讯云轻量应用服务器可以免费升级配置。 学生机是108元1年,升级后2核4G6M80G硬盘,配置很香。 没有学生资质也是可以看看常规款(实际也是优惠的),一样可以升级配置,总之很香:https://curl.qcloud.com/ElW64Ifi 本文以一台2核4G6M的北京轻量为例 操作步骤如下: 一、安装Windows Server 2012 腾讯云……