文章

debian安装hexo

debian安装hexo

更新软件列表

sudo apt-get update

安装git

sudo apt-get install git-core

安装node-js

sudo apt-get install nodejs npm

查看版本

git --version
node -v
npm -v

安装hexo
首先更换为淘宝的镜像源

npm config set registry https://registry.npmmirror.com/
npm config set ELECTRON_MIRROR https://npmmirror.com/mirrors/electron/

安装

npm install hexo-cli -g

初始化hexo目录

mkdir /blog
cd /blog
hexo init

后台运行hexo

screen -S  hexo
hexo s

注:关于screen

screen -ls 列出所有的session
删除session:screen -S name -X quit

安装主题Annie

cd /blog
git clone https://github.com/Sariay/hexo-theme-Annie

打开_config.yml
将theme改为Annie
hexo s
设置语言
将language改成zh-CN

修改post模板
修改/blog/scaffolds/post.md

---
title: {{ title }}
date: {{ date }}
cover: https://.../
categories: categories
tags: tags
---

新建文章

hexo n 文章名

创建的文件在source_posts下

License:  CC BY 4.0