TEST_BLOG

Home Archives
2023-05-07

Cloud-Computing-Course hw9

博客框架:Hexo
实验环境:WSL-Ubuntu18

安装步骤

安装node.js

1
2
3
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt install nodejs
node --version

安装hexo

1
2
3
4
5
6
7
8
# 安装
sudo npm install hexo-cli -g
hexo -v

# 创建项目
hexo init hexo-blog
cd hexo-blog/
npm install

Reference: https://zhuanlan.zhihu.com/p/514982831

Share
2023-05-07

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

Share

Archives

  • May 2023

Recent Posts

  • Cloud-Computing-Course hw9
  • Hello World
© 2023 nobody
Powered by Hexo
Home Archives