使用Hexo搭建个人博客过程的各种问题

一、问题1

Q: hexo server后访问浏览器 http://0.0.0.0:4000/ 出现 cannot get

A: 依次执行如下命令就行:

1
2
3
4
5
6
7
8
9
npm install hexo-renderer-ejs --save
npm install hexo-renderer-stylus --save
npm install hexo-renderer-marked --save

npm install hexo-cli -g
hexo init blog
cd blog
npm install
hexo server

二、问题2

Q: npm install时报错:

Alt text

A: 执行如下命令:

1
sudo npm install

三、问题3

Q: 社会化评论多说duoshuo_shortname在哪看?

A: 到多说官网创建站点(站点为xxx.github.io),之后就会得到short_name。

四、问题4

Q: 如何设置分类和标签?

A: 在文章的开始位置进行如下设置:

1
2
3
4
5
6
7
8
---
title: 使用Hexo搭建个人博客过程的各种问题
categories:
- Hexo
tags:
- Hexo
- 问题
---

五、问题5

Q: 首页的文章目录,怎么设置显示部分摘要和read more?

A: 在文章中加一行如下的标记,在这个标记之前的就是摘要

1
<!--more-->

六、问题6

Q: 运行hexo clean && hexo g && hexo d命令后报错:

1
ERROR Deployer not found: git

A: 执行以下命令,安装hexo-deployer-git自动部署发布工具:

1
npm install hexo-deployer-git --save

感谢你的支持,让我继续努力分享有用的技术和知识点!