coding图床
安装插件coding
填写相关参数
个人token权限全部勾选
设置为默认图床即可
静态博客搭建教程 hexo
运行目录为C:\Users\surface\Documents\hexo-blog
安装hexo
npm install -g hexo
新建hexo网站
hexo init
安装依赖
npm install cheerio@0.22.0 --save
下载主题butterfly
git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/Butterfly
修改站点配置文件./_config.yml, 主题修改为Butterfly
theme: Butterfly
安装依赖
npm install hexo-renderer-pug hexo-renderer-stylus --save or yarn add hexo-renderer-pug hexo-renderer-stylus
把主题配置文件./_config.yml复制到./source/_data/_config.butterfly.yml
添加ICP备案号修改文件目录./themes/butterfl ...
scoop使用教程
安装Scoop修改组策略
管理员权限运行windows powershell,执行下方命令后,输入A 回车【窗口勿关闭】。开始菜单右键即可找到windows powershell,选择带管理员的那条运行。
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
安装Scoop继续在windows powershell窗口中运行如下命令,安装scoop
iwr -useb gitee.com/glsnames/scoop-installer/raw/master/bin/install.ps1 | iex
安装scoop更新依赖程序
scoop install git
添加其他 bucketbucket是软件库,其包含了软件基本信息、安装卸载命令等。scoop仅是一个软件库管理程序,负责按照bucket给出的信息执行安装。
scoop-main是合并多个上游bucket资源,并添加反代链接用以加速软件安装。添加bucket命令如下
scoop bucket add scoop-main https://gitee.com/glsn ...
【zerotier】 搭建moon中转服务器
上午
已剪辑自: https://blog.csdn.net/RadiantJeral/article/details/104159031
本文介绍 ZeroTier Moon 的部署.环境: 机器 A:Notebook, Windows8 机器 B:Desktop, Ubuntu16.04 机器 C:Cloud Server, Ubuntu16.04, 公网 IP:1.2.3.4通过 ZeroTier 建立虚拟局域网,在机器 C 的云服务器上部署 ZeroTier Moon,加速网络.
1. 部署 Moon 服务 官方手册部署 Moon.
1. 1 设置 ZeroTier NodeMoon 节点可以是具有固定 IP 的公网设备,也可以是具有物理 IP 的内网设备. 如果使用内网设备,依然需要借助官方根服务器作为中间链路. 因此,这里我们在云服务器上搭建 Moon 服务,云服务器的公网 IP 为 1.2.3.4.
在机器 C 上部署 ZeroTier Moon 首先需要安装 ZeroTier One 将其部署为为 ZeroTier Node,参考 ZeroTier ...
【zerotier] 使用Linux Kernel设置转发代理
1. 场景
如图,园区网内(校园网或企业网)有台 Ubuntu 主机,家里有台 Windows 主机. 由于居家办公需求,使用 ZeroTier One 建立了虚拟局域网并自建 Moon 加速网络,Ubuntu 和 Windows 可以互联. 但是经过一段时间使用发现,还是有许多不便. 例如,需要获取园区网内资源时必须首先从 Windows 登录 Ubuntu,在 Ubuntu 上下载所需资源后再通过虚拟局域网传输到 Windows 本地.
这就产生了新的需求,能否通过转发代理让 Windows 直接连入 Ubuntu 所在的真实物理网络. 这样不仅可以让 Windows 直接访问园区网内资源,还可以让 Windows 以 Ubuntu 的公网 IP 访问互联网. 这样就能极大提高工作效率,避免频繁的数据传输工作.
通过调研发现:在上述条件下,仅使用 Ubuntu 上的 linux 内核的数据转发和 iptables 控制路由就能实现所需功能.
2. 配置2.1 配置 Linux 的数据转发和路由控制Linux 系统内核可以通过 sysctl 和 iptables 两个命令 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post$ hexo new "My New Post"
More info: Writing
Run server$ hexo server
More info: Server
Generate static files$ hexo generate
More info: Generating
Deploy to remote sites$ hexo deploy
More info: Deployment