本篇文章将教你如何在Ubuntu/Debian系统中搭建hexo博客。
本篇文章将用香橙派的zero2 Debian11系统作为演示,
虽然这是一个arm64的板子,不过与普通x86机器的安装过程没有区别,大家可以放心食用。
安装hexo
更新软件包
使用下面的命令把软件包更新至最新版本
sudo apt-get update
sudo apt-get upgrade -y
安装依赖
hexo需要依赖Node.js和Git才可以工作。
安装Git
sudo apt update && sudo apt-get install git-all -y
安装Node.js(这个是我写的时候最新的版本了)
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - &&\
sudo apt-get install -y nodejs
如图,在输完第一条命令后会出现一个>
,目的是为了让前面的命令执行无误后再执行下一条命令。
使用npm安装hexo
先cd到你想安装的目录,然后使用
npm install hexo-cli -g
hexo init hexo
就会在当前目录安装并初始化hexo,一般成功了之后最底下会有这么几行字
INFO Cloning hexo-starter https://github.com/hexojs/hexo-starter.git
INFO Install dependencies
INFO Start blogging with Hexo!
然后进入hexo根目录,并安装相关插件以及依赖。
cd hexo
npm install
hexo到这里就安装完成了,关于它的使用可以看我的这篇文章https://xuzijin.com/2023/11/25/hexo的使用
Please indicate the source for reprinting, welcome to research the sources quoted in the article, welcome to point out any errors or not clear expression. Leave a comment in the comment section below or email us at [email protected]