Skip to content

Latest commit

 

History

History
101 lines (64 loc) · 863 Bytes

README.md

File metadata and controls

101 lines (64 loc) · 863 Bytes

3oR’s blog source

= = = = = = = = = =

🎉ノートはこれから。

= = = = = = = = = =

Hexo操作备忘录

  • 新建文章
hexo new post "给文章取一个标题"
  • 清除Cache
hexo clean
  • 启动服务
hexo s --debug
  • More
hexo --help

如何开始Hexo?

1. 安装Nginx

sudo  apt install nginx -y

nginx -v

2. 安装Git

git一般系统自带

sudo  apt install git -y

git --version

git version 2.25.1

3. 安装Node.js

sudo apt install nodejs

node -v

v10.19.0

sudo apt install npm

npm -v
  • 更新node.js
None
  • 更新npm
None

4. 安装Hexo

npm install -g hexo-cli

hexo --version

5. 安装Next主题

None

Nothing...

= = = = = = = = = =

END