ChinaUnix.net
相关文章推荐:

arm linux httpd

arm_linux 启动信息 U-Boot 1.1.4 (May 8 2006 - 15:33:27) U-Boot code: 33F80000 -> 33F96D4C BSS: -> 33F9B038 RAM Configuration: Bank #0: 30000000 64 MB Flash: 16 MB In: serial Out: serial Err: serial Hit any key ...

by 自由之子 - Linux文档专区 - 2008-08-11 22:12:45 阅读(809) 回复(0)

相关讨论

file book``` 文件:070522204449.zip 大小:3922KB 下载: 下载 Download.............. 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/42989/showart_336762.html

by SSLinux - Linux文档专区 - 2007-07-09 17:00:10 阅读(599) 回复(0)

现在版本是httpd 2.2.15,想升级到最新版本。 请问如何升级? ps: 我进行过一次尝试,下载了httpd2.4.6的源码,进行编译安装,但是好像安装成功了,版本号没变,不知道是何原因。 请大家指教!

by samir1224 - Linux系统管理 - 2013-09-17 13:20:15 阅读(7986) 回复(19)

通常,httpd不应该被直接调用,而应该在类Unix系统中由 apachectl 调用, 在Windows NT/2000/XP/2003中作为服务运行 和 在Windows 95/98/ME中作为控制台程序运行 . 语法 httpd [ -d serverroot ] [ -f config ] [ -C directive ] [ -c directive ] [ -D parameter ] [ -e level ] [ -E file ] [ -k start|restart|graceful|stop|graceful-stop ] [ -R directory ] [ -h ] [ -l ] [ -L ] [ -S ] [ -t ] [ -v ] [ -V ] [ -X ] [ -M ...

by gyp334a - Linux文档专区 - 2009-01-14 14:42:17 阅读(1033) 回复(0)

功能说明:Apache HTTP服务器程序。 语  法:httpd [-hlLStvVX][-c指令>][-C指令>][-d服务器根目录>][-D设定文件参数>][-f设定文件>] 补充说明:httpd为Apache HTTP服务器程序。直接执行程序可启动服务器的服务。 参  数: -c指令> 在读取配置文件前,先执行选项中的指令。 -C指令> 在读取配置文件后,再执行选项中的指令。 -d服务器根目录> 指定服务器的根目录。 -D设定文件参数> 指定要传入配置文件...

by haichao_ - Linux文档专区 - 2008-11-27 19:31:38 阅读(719) 回复(0)

#!/bin/bash # # /etc/rc.d/init.d/httpd # # Starts the httpd daemon # # chkconfig: 345 95 5 # description: Runs commands scheduled by the at command at the time \ # specified when at was run, and runs batch commands when the load \ # average is low enough. # processname: httpd # Source function library. . /etc/init.d/functions httpd="/usr/local/apache/bin/httpd" test -x $httpd || exit 0 RETVA...

by evegl - Linux文档专区 - 2007-09-14 12:03:38 阅读(507) 回复(0)

AllowOverride参数就是指明Apache服务器是否去找.htacess文件作为配置文件,如果设置为none,那么服务器将忽略. htacess文件,如果设置为All,那么所有在.htaccess文件里有的指令都将被重写。对于AllowOverride,还可以对它指定如下一些能被重写的指令类型. 1 AuthConfig 允许使用所有的权限指令,他们包括AuthDBMGroupFile AuthDBMUserFile AuthGroupFile AuthName AuthTypeAuthUserFile和Require 2 FileInfo 允许使用文件控制类型...

by 77902543 - Linux文档专区 - 2006-05-16 15:52:41 阅读(903) 回复(0)

#!/bin/bash # # Startup script for the Apache Web Server # # chkconfig: - 85 15 # description: Apache is a World Wide Web server. It is used to serve \ # HTML files and CGI. # processname: httpd # pidfile: /var/run/httpd.pid # config: /etc/httpd/conf/httpd.conf # Source function library. . /etc/rc.d/init.d/functions if [ -f /etc/sysconfig/httpd ]; then . /etc/sysconfig/httpd fi ...

by gyouki - 系统管理 - 2006-03-03 13:33:27 阅读(973) 回复(0)

#!/bin/bash # # Startup script for the Apache Web Server # # chkconfig: - 85 15 # description: Apache is a World Wide Web server. It is used to serve \ # HTML files and CGI. # processname: httpd # pidfile: /var/run/httpd.pid # config: /etc/httpd/conf/httpd.conf # Source function library. . /etc/rc.d/init.d/functions if [ -f /etc/sysconfig/httpd ]; then . /etc/sysconfig/httpd fi ...

by gyouki - Linux系统管理 - 2006-03-03 13:33:27 阅读(849) 回复(0)

最近使用x86工控板,使用了tiny core linux。 疑惑1:这个linux是怎么启动的,系统和驱动是怎么联系起来的,是不是X86各种硬件都是已知的,所以不管什么样的X86工控板,基本的驱动都能跑起来。 疑惑2:arm有类似的linux系统可以用吗?

by captainliuy - Linux新手园地 - 2014-07-31 13:58:57 阅读(1274) 回复(0)

大家好,现在有个项目,想在嵌入式中发送EMAIL,我是SC2410+linux2.6.X的,没弄过 不知道如何做,是编译类似QMAIL这样的服务器后移植到系统上,然后在配置还是说要自己写代码

by conyhong - 嵌入式开发 - 2013-04-19 22:04:09 阅读(1360) 回复(2)