apache安装问题,提示'echo'程序有错误

我的Linux发行版是Ubuntu7.04,2.6.20的内核。问题描述如下(按时间顺序)

1、自行编译Apache1.3.36,在运行configure时出现提示如下:
+ Warning: Configuring Apache with default settings.
+ This is probably not what you really want.
+ Please read the README.configure and INSTALL files
+ first or at least run './configure --help' for
+ a compact summary of available options.
+ Warning: Your 'echo' command is slightly broken.
+ It interprets escape sequences per default. We already
+ tried 'echo -E' but had no real success. If errors occur
+ please set the SEO variable in 'configure' manually to
+ the required 'echo' options, i.e. those which force your
+ 'echo' to not interpret escape sequences per default.
+ using installation path layout: Apache (config.layout)
大致上是说echo 输出转义字符有问题。使用echo -E也不行。
2、我查看了一下configure脚本的代码,其中的注释说到如果存在可用的参数就把SEO这个变量设定一下。
我于是把SEO设定为-E,结果果然可以继续configure了。但显示以下几条信息:
Creating Configuration.apaci in src
sed:文件 src/.apaci.sedsubst.1 行号:1:未知的命令:“-”
sed:文件 src/.apaci.sedsubst.3 行号:1:未知的命令:“-”
sed:文件 src/.apaci.sedsubst.0 行号:1:未知的命令:“-”
sed:文件 src/.apaci.sedsubst.2 行号:1:未知的命令:“-”
3、接着进行了编译,没什么异常
4、接着安装,没有异常
5、启动服务,出现问题:
Invalid command 'Order', perhaps mis-spelled or defined by a module not included in the server configuration
6、我查了一下,据说出现这个问题是因为没有加载mod_access模块,于是我查看了一下httpd.conf发现其中
果然没有加载任何模块,我试着在其中添加了几个加载模块的语句
LoadModule mod_access /usr/local/lib/apache/1.3/mod_access.so
7、再次试运行,还是报错:
Invalid command 'LoadModule', perhaps mis-spelled or defined by a module not included in the server configuration

这个问题请大家帮帮忙,看看是怎么回事。先谢谢了。