
ubuntu
文章平均质量分 66
hhy_huang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux 常用命令 小技巧
转载来自:http://www.cnxct.com/linux-%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4-%E5%B0%8F%E6%8A%80%E5%B7%A7/ 1 、实现RedHat非正常关机的自动磁盘修复 先登录到服务器,然后在/etc/sysconfig里增加一个文件autofsck,内容如下: AUTOFSCK_DEF_C转载 2012-08-30 11:38:47 · 1161 阅读 · 0 评论 -
ubuntu 安装nginx apache php mysql
转载来自:http://wiki.ubuntu.org.cn/Nginx 安装nginx sudo apt-get install nginx Ubuntu安装之后的文件结构大致为: 所有的配置文件都在/etc/nginx下,并且每个虚拟主机已经安排在了/etc/nginx/sites-available下程序文件在/usr/sbin/nginx日志放在了/var/log/ngin转载 2012-08-24 16:51:13 · 1524 阅读 · 0 评论 -
实战Nginx与PHP(FastCGI)的安装、配置与优化
转载来自:http://ixdba.blog.51cto.com/2895551/806622 一、什么是 FastCGI FastCGI是一个可伸缩地、高速地在HTTP server和动态脚本语言间通信的接口。多数流行的HTTP server都支持FastCGI,包括Apache、Nginx和lighttpd等,同时,FastCGI也被许多脚本语言所支持,其中就有PHP。转载 2012-08-24 17:37:31 · 601 阅读 · 0 评论 -
window下安装virtualBox,Ubuntu
1. 去virtualBox官网https://www.virtualbox.org/wiki/Downloads 选择 VirtualBox 4.1.20 for Windows hosts x86/amd64下载,下载完后直接点击安装 2. 安装后,create a new vitural machine, base memory 差不多1G(1024MB)够了,因为当时没有在Settin原创 2012-08-24 16:14:16 · 642 阅读 · 0 评论 -
在ubuntu上配置PHP开发环境(转)
大概步骤: 1、安装NGINX sudo apt-get install nginx 2、安装php sudo apt-get install php5 php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php转载 2012-08-27 15:24:27 · 511 阅读 · 0 评论 -
ubuntu配置nginx
转载来自:http://xubaoguo.iteye.com/blog/1062078 第一步,安装nginx apt-get update apt-get install nginx 即可完成安装 启动nginx: /etc/init.d/nginx start 然后就可以访问了,http://localhost/ , 一切正常!如果不能访问,先不要继续,看转载 2012-08-27 15:28:36 · 733 阅读 · 0 评论 -
curl 常用方法
转载来自:http://www.ruanyifeng.com/blog/2011/09/curl.html 一、查看网页源码 直接在curl命令后加上网址,就可以看到网页源码。我们以网址www.sina.com为例(选择该网址,主要因为它的网页代码较短): curl www.sina.com 301 Moved Permanently转载 2012-09-13 15:10:22 · 6132 阅读 · 0 评论