个人交互外壳

Read, Think, Write and Loop

起因

jekyll的整个环境是运行在cygwin下面的,每次要在本次运行jekyll server的话,总是提示说是4000的端口被占用了。一只没有去找原因,偷懒加了个 –port 4400 来解决问题。

netstat

今天打算去解决这个问题,那就看看是哪个程序在占用4000的端口吧。打开cmd窗口:

$ netstat -aon | more

看看是哪个PID在占用4000.通过PID去找到这个process。在task manager中去找PID。
是foxitprotect.exe,福昕的保护进程。把福昕卸载了。

问题解决了。话说,用什么看PDF呢?

安装cygwin server

cygserver是为Cygwin作为后台service运行而设计的。Linux的后台是daemon,Windows的后台是service。cygwin的程序要作为daemon运行,就必须成为win的service,这时候就需要cygserver。

在Cygwin中安装:

1
cygserver-config

按照界面提示进行差一个server的安装,并同意将其安装为服务。

运行该服务

1
cygrunsrv --start cygserver

cygrunsrv其实是启动的win的cygserver的service,可以在cmd中启动

1
net start cygserver

我已经记不得这算是我的第几个blog了。前前后后大概也要有四、五个了吧。希望这个可以一直写下去。
既然是以github来搭建的blog,那就先来说说,怎么用github来建立个人blog吧。

准备

你必须要有一个github的帐号,这个必须有。
登录github,建立USERNAME.github.com的仓库。当然,USERNAME是你自己的用户名。

开始

1
2
3
4
git clone https://github.com/plusjade/jekyll-bootstrap.git USERNAME.github.com
cd USERNAME.github.com
git remote set-url origin git@github.com:USERNAME/USERNAME.github.com.git
git push origin master

使用jekyll-bootstrap作为快速开始的基础。
Jekyll QuickStart jekyll bootstrap的3分钟建站教程。

编写日志

rake post title="Hello World"

会在_posts文件夹下面生成一个已YYYY-MM-DD-title.md的文件,使用Markdown的语法编辑这个文件。

本地发布

如果要在本地查看的话,你需要jekyll。当然,jekyll是基于ruby的,你同样需要ruby。

1
2
$ cd USERNAM.github.com
$ jekyll server --port 4400

在浏览器中打开localhost:4400,就可以看到了。

发布

1
2
3
$ git add .
$ git commit -m "Add new content"
$ git push origin master

在浏览器中打开https://USERNAME.github.com,看看自己的第一篇blog吧。

0%