使用Termux在手机上建站
手机上Termux安装hexo环境,搭建网页,并上传到github。
Termux
官网
hexo
官网
nodejs
pkg install nodejs
git
pkg install git
hexo
npm install hexo-cli -g
新建网页并测试
hexo # 安装
hexo g # 编译
hexo s # 本地服务器
hexo clean #清理
hexo d # 上传
ssh
pkg install openssh
ssh-keygen -t rsa -C "邮箱@xx.com"
修改全局git的用户名和邮箱
git config --global user.name "用户名"
git config --global user.email 邮箱@xx.com
测试
ssh -T git@github.com
原文作者: ababwbq
原文链接: https://www.unkaer.cf/Termux-hexo.html
版权声明: 转载请注明出处(必须保留原文作者署名原文链接)