共计 1083 个字符,预计需要花费 3 分钟才能阅读完成。
Ghost 是一个很优秀的博客平台,设计美观,使用简便,且完全免费。同时也是一款开源软件,源代码共享在 github 上。到 2014 年 1 月,我们能感觉到界面更趋于简洁,分析图表可调整,分屏显示的方式让编辑更加的简便。
好了,下面我们讲解下如何在 Ubuntu Server 14.04 LTS 上来进行 Ghost 的安装。
1.第一步,让我们通过 Ubuntu 的更新命令来安装一些我们需要的额外的包
sudo apt-get update
sudo apt-get upgrade -y
sudo aptitude install -y build-essential zip vim wget
2.下载和安装 Node.js 源码
wget http://nodejs.org/dist/node-latest.tar.gz
tar -xzf node-latest.tar.gz
cd node-v*
安装 Node.js
./configure
make
sudo make install
Ubuntu 14.04 下搭建 Node.js 开发环境 http://www.linuxidc.com/Linux/2014-12/110983.htm
3.下载和安装 Ghost
sudomkdir -p /var/www/
cd /var/www/
sudowget https://ghost.org/zip/ghost-latest.zip
sudo unzip -d ghost ghost-latest.zip
cd ghost/
sudonpm install –production
4.配置 Ghost
sudonano config.example.js
找到 Production 一节,将:
host: ‘127.0.0.1’,
修改为:
host: ‘0.0.0.0’,
创建 Ghost 用户
sudoadduser –shell /bin/bash –gecos ‘Ghost application’ ghost
sudochown -R ghost:ghost /var/www/ghost/
用“ghost”用户登录
su – ghost
cd /var/www/ghost/
现在你已经用“ghost”用户登录,可以启动 Ghost 了
npm start –production
更多 Ubuntu 相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2
点击这里查看原文
译者:bobsmoke
本文由 Linux 公社翻译组 原创翻译 Linux 公社 诚意奉献
Linux 公社原创翻译频道:http://www.linuxidc.com/topicnews.aspx?tid=15