1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## 安装 nvm (需要按照提示导入环境变量)
sudo apt-get update
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
nvm install node

## 安装 git
sudo apt-get install git

## 安装 hexo
npm install hexo-cli -g
hexo init blog
cd blog
npm install

## 安装 Next 主题
git clone https://github.com/iissnan/hexo-theme-next themes/next

## 编辑基本配置文件,修改 url、public_dir 及其他信息或主题
vi ~/blog/_config.yml