1.配置php.ini vi /etc/php.ini 2.配置apache 先给需要配置的文件做个备份 cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak 编辑配置 vi /etc/httpd/conf/httpd.conf 配置完成后,启动apache服务 service httpd start 3.配置虚拟主机配置 vi /etc/httpd/conf/httpd.conf 在最后添加 <VirtualHost…
Anything is programmable with defined syntax and common lib. Bash Shell is created to programme to Linux command in defined grammar Linux 中的bash shell 拥有自己的一些语法,通过语法我们可以对命令进行编程,也就是脚本编写.脚本就是用一些特定的语法把要执行的命令联合起来自动执行.参考:http://wenku.baidu.com/view/e03456…
first,what is shell?其实只要是碰过计算机的,对于OS(Operation System操作系统,不管是linux.unix.windows)有点概念的人大多都听过这个名词,因为只要有OS那么就离不开Shell.其实Shell就是将我们输入的指令与kernel(核心)的沟通,使kernel可以控制hardware硬件(例如声卡,网卡,显卡)来正确无误工作. 基本上,替我们工作的是[hardware],控制硬件的是[kernel],而我们user则是利用[shell]控制一些ke…