Ubuntu 18.04 LTS 配置 Hexo

2018-09-01  本文已影响0人  谖瓞

GitHub Pages + Hexo 搭建博客可参考 GitHub Pages + Hexo 搭建博客


1. 环境搭建

2. 安装 Hexo

  1. 创建目录
    mkdir hexo
    
  2. 切换目录
    cd hexo
    
  3. 全局安装 Hexo
    sudo npm install -g hexo-cli
    
  4. 初始化 Hexo
    hexo init
    
  5. 运行 Hexo
    hexo server
    
    成功运行的话会提示:
    INFO  Start processing
    INFO  Hexo is running at http://localhost:4000 . Press Ctrl+C to stop.
    

3. Hexo 主题

  Hexo 主题可以从这里找:https://hexo.io/themes/
  推荐安装主题 NexT
  到目录 hexo 下:

cd ~/Documents/hexo/ 
git clone https://github.com/iissnan/hexo-theme-next themes/next

  并在目录 hexo 下的 _config.yml 中找到 theme: 修改后面的参数,默认是 landscape,改为

theme: next

常用指令

上一篇 下一篇

猜你喜欢

热点阅读