[Hexo] Hux Blog 迁移至新电脑

Posted by xiuyuantech on 2021-12-24

Ported Theme of
Hux Blog, Thank
Huxpro for designing such a flawless theme.
This BeanTech theme created by
YuHsuan modified from the original Porter
Kaijun

新手教程

新手指导请参考:Theme BeanTech

迁移方式


  1. 复制整个文件夹至新电脑
  2. 安装Hexo、git、nodejs
    注意点:nodejs 版本不能过高,需要和hexo最低要求匹配。否则发布文章时,整个blog都是空白!!!
  3. 配置环境变量(特殊情况)
    例如:Mac m1 pro
    需要把命令变量添加到 ~/.zprofile或.zshrc 文件中,否则不生效
    export JAVA=“/usr/用户/zulu-jdk8”
  4. 删除无用的缓存文件
    .deploy_git、.idea、node_modules、public、db.json
    scaffolds、source、themes、_config.yml、package.json、package-lock.json 这些文件不能删
    其中"node_modules"可以用"npm install"自动生成; 注意hexo安装之后不要在你的博客目录下执行hexo init,否则会覆盖之前配置好的"_config.yml"文件内容。

发布内容


常用命令(Some hexo command):

1
2
3
4
hexo new post "<post name>" # you can change post to another layout if you want
hexo clean && hexo generate # generate the static file
hexo server # run hexo in local environment
hexo deploy # hexo will push the static files automatically into the specific branch(gh-pages) of your repo!