沉默啊沉默,不在沉默中爆发,就在沉默中灭亡

你在gmc中看到后就装看看
也可以从光盘启动text升级安装把包全装了省事      
这里的人气好旺!
再一次谢谢大家的帮助!
为了解决我机器声卡(帝盟s90)的问题我下载了他的专用驱动程序(for redhat6.0,6.1)
在readme中有着这样一句话:

3.Edit the Makefile to suit your system (SMP, CPU type, etc)

我才我大概得修改Makefile,但我不会请大家帮忙
我的机器配置:处理器P3-550 内存320M 主板:华硕P3BF(440BX)
声卡:帝盟s90(PCI)

# Makefile for Vortex au88xx driver
#
# Copyright (c) 1999 Aureal Inc.
# Copyright (c) 2000 Warren Chartier
# Modified to adapt the new source tree by Nikos Kalogridis
#
# Environment:
#        AUCHIP                - AU8830 (default), AU8820, or AU8810
#        AUSMP                - empty (default) or -D__SMP__
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Contact: http://aureal.sourceforge.net

ifndef AUCHIP
AUCHIP = AU8830
endif

ifeq ($(AUCHIP),AU8830)
NAME = au8830
ASP_OBJ = asp30.o
endif

ifeq ($(AUCHIP),AU8810)
NAME = au8810
ASP_OBJ = asp10.o
endif

ifeq ($(AUCHIP),AU8820)
NAME = au8820
ASP_OBJ = asp20.o
endif

VER    = $(shell uname -r)
MODDIR = /lib/modules/$(VER)/misc
CONF   = $(wildcard /etc/modules.conf)
ifeq ($(strip $(CONF)),)
CONF   = /etc/conf.modules
endif

INCLUDEDIRS = -I/usr/src/linux/include

#
# CPU types, Uncomment one only!
#
#CFCPU = 486
CFCPU = pentium
#CFCPU = pentiumpro

#
# If you have an SMP system uncomment the following (experimental)
#
#AUSMP = -D__SMP__

#
# Debug/Optimization
#
#CFDEBUG = -g -DDEBUG=1 -DDEBUG_AU -D__VerboseMode
CFOPT = -O6 -fomit-frame-pointer

# Do Not Modify Anything Below This Line!      
默认的应该可以      
问题解决了没有?我想,解决后,把这里的资料整理一下。      
暂时还没解决,我会尽力的,最后我会把所有心得汇集起来贴出来。      
干脆买多一块声卡算了      
http://www.linuxeden.com/forum/showthread.php?threadid=4783      
干脆换声卡算了      
问题还是没有解决
在参考各位高手的意见后我重新装了redhat7.1,
安装了两张光盘中所有的包(足足2700M)
但在安装asla-driver-0.5.11 时还是有问题如下:
[root@localhost alsa-driver-0.5.11]# ./configure
loading cache ./config.cache
checking for gcc... gcc
checking whether the C compiler (gcc ) works... yes
checking whether the C compiler (gcc ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for ranlib... ranlib
checking for a BSD compatible install... /usr/bin/install -c
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for linux/fs.h... yes
checking for working const... yes
checking for inline... inline
checking whether time.h and sys/time.h may both be included... yes
checking whether gcc needs -traditional... no
checking for directory with kernel source... /usr/src/linux
checking for kernel version... expr: syntax error
expr: syntax error
expr: syntax error
failed (probably missing /usr/src/linux/include/linux/version.h)i8-ub!
请问这是什么错误,应该怎样解决呢?

linux新手愿意结交各路linux爱好者
piupiu@163.net
qq:65204749
      
I fu you!  

s90声卡在redhat7.1很好装的,下载他的驱动au88xx.-1.1.2.tar.gz
修改makefile文件(下面的是改好的makefile),然后make install20,
将编译好的au8820.o装入模块 insmod au8820.o,在x-windows就有声了。

# Makefile for Vortex au88xx driver
#
# Copyright (c) 1999 Aureal Inc.
# Copyright (c) 2000 Warren Chartier
# Modified to adapt the new source tree by Nikos Kalogridis
#
# Environment:
# AUCHIP - AU8830 (default), AU8820, or AU8810
# AUSMP - empty (default) or -D__SMP__
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Contact: http://aureal.sourceforge.net

ifndef AUCHIP
AUCHIP = AU8830
endif

ifeq ($(AUCHIP),AU8830)
NAME = au8830
ASP_OBJ = asp30.o
endif

ifeq ($(AUCHIP),AU8810)
NAME = au8810
ASP_OBJ = asp10.o
endif

ifeq ($(AUCHIP),AU8820)
NAME = au8820
ASP_OBJ = asp20.o
endif

VER = $(shell uname -r)
MODDIR = /lib/modules/$(VER)/misc
CONF = $(wildcard /etc/modules.conf)
ifeq ($(strip $(CONF)),)
CONF = /etc/conf.modules
endif

INCLUDEDIRS = -I/usr/src/linux-2.4.2/include (就改这里!!!)

#
# CPU types, Uncomment one only!
#
#CFCPU = 486
CFCPU = pentium
#CFCPU = pentiumpro

#
# If you have an SMP system uncomment the following (experimental)
#
#AUSMP = -D__SMP__

#
# Debug/Optimization
#
#CFDEBUG = -g -DDEBUG=1 -DDEBUG_AU -D__VerboseMode
CFOPT = -O6 -fomit-frame-pointer

# Do Not Modify Anything Below This Line!