ubuntu下使用hexo搭建博客

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下使用hexo搭建博客相关的知识,希望对你有一定的参考价值。

1.安装Node.js

  1. sudo add-apt-repository ppa:chris-lea/node.js
  2. sudo apt-get update
  3. sudo apt-get install nodejs

2.安装Git

  1. sudo apt-get install git

3.安装hexo

  1. sudo npm install hexo -g

初始你博客的根目录(或者cd到指定目录下,然后执行hexo init)

  1. hexo init <dir>

4.让博客可以发布到git(参考连接:https://hexo.io/docs/deployment.html

(1)安装hexo-deployer-git(不然会出现ERROR Deployer not found: git)

  1. npm install hexo-deployer-git --save

(2) 配置你hexo博客根目录下的_config.yml文件(应该是最下面一行,修改成你的github)

  1. # Deployment
  2. ## Docs: http://hexo.io/docs/deployment.html
  3. deploy:
  4. type: git
  5. repo: [email protected].com:ClaymanTwinkle/ClaymanTwinkle.github.io.git
  6. branch: master

5.hexo常用命令

  1. 创建页面:hexo new post "文章名字(可以是中文)"
  2. 生成html hexo generate(或者hexo g
  3. 发布到git hexo deploy
  4. 生成并发布:hexo generate -d (或者hexo g -d




以上是关于ubuntu下使用hexo搭建博客的主要内容,如果未能解决你的问题,请参考以下文章

动手搭建hexo博客

Hexo博客搭建过程

GitHub Pages + Hexo搭建个人博客网站-github风格-采坑记录

简单版hexo博客搭建流程梳理

在Windows下使用Hexo+GithubPage搭建博客的过程

使用Hexo搭建博客