1. 安装必要的软件
sudo apt-get install nginx php5-cli php5-cgi spawn-fcgi psmisc mysql-server \
mysql-client php5-mysql memcached php5-memcache php5-curl php5-gd
2. 打开浏览器访问: 127.0.0.1。就能看到表示nginx安装成功的页面。但这时访问php文件页面还不行。 (注:ngnix的配置文件目录为 …
1. 安装必要的软件
sudo apt-get install nginx php5-cli php5-cgi spawn-fcgi psmisc mysql-server \
mysql-client php5-mysql memcached php5-memcache php5-curl php5-gd
2. 打开浏览器访问: 127.0.0.1。就能看到表示nginx安装成功的页面。但这时访问php文件页面还不行。 (注:ngnix的配置文件目录为 …
For each of the outputs listed below, find one sequence of commands connected by pipes that produces the output. For each problem, turn in the command sequence that you used to generate the requested output. (Do NOT turn in the output itself.)
1. A listing of all processes that you …
语法
ls [ options ] [ file(s) ]
用途
列出文件目录的内容
主要选项
-1 : 数字1.强制为单栏输出。在交互式模式下,ls一般会以适于当前窗口的最小宽度,使用多个列
-a : 显示 …
从http://www.iplaysoft.com/consolas.html下载Consolas字体。
然后
sudo mkdir -p /usr/share/fonts/yahei
sudo cp YaHei.Consolas.1.11b.ttf /usr/share/fonts/yahei/
改变权限:
sudo chmod 644 /usr/share/fonts/yahei/YaHei.Consolas.1.11b.ttf
安装:
cd /usr …
在系统内部,UNIX是以一个小的整数数字,称为文件描述符(file descriptors),表示每个进程打开的文件。数字由零开始,至多到系统定义的打开文件数目的限制。传 …
一般来说,执行文本替换的正确程序应该是sed --- 流编辑器(Stream Editor)。sed的设计就是用来以批处理的方式而不是交互的方式来编辑文件。当你知道要做好几个变更 --- 不管是对一个还是数个文 …
就像awk,cut与join一样,sort将输入看作具有多条记录的数据流,而记录是由可变宽度的字段组成,记录是以换行符作为定界符,字段的定界符则是空白字符或是用户指 …
软件工具的原则
一次做好一件事
处理文本行,不要处理二进制数据
使用正则表达式:正则表达式(regular expression)是 …