分页: 1 / 1

[问题]恢复xorg.conf后,没有声音了

发表于 : 2007-01-11 21:05
zhiwasa
由于安装驱动而导致xorg.conf错误,而进不去图形界面了。(也没备份)。
使用命令sudo dpkg-reconfigure xserver-xorg
然后点Yes,就提示要我输入一些Video Card的信息。然而我实在不知道怎么设置。所以就一路默认,遇到输入信息也都没输入,结果倒是能进了图形界面,但是没了声音。
要怎么办啊?我以前没用过Linux,可否说的详细些,谢谢。

声卡集成到主板里,主板是精英k8,查了一下,说什么南桥VIA 8237。这个东西实在不懂

发表于 : 2007-01-11 21:56
zhiwasa
哭。。。。
一直在线等,居然没人回复,惨。

发表于 : 2007-01-12 9:17
zhiwasa
再等一天,明天没人解决就重装Ubuntu

发表于 : 2007-01-12 9:23
xiechy
aptitude reinstall alsa-base

发表于 : 2007-01-12 14:43
yohu
看看/etc/X11下有没有xorg.conf 的备份,有的话恢复一个试试看。

发表于 : 2007-01-12 15:45
zhiwasa
yohu 写了:看看/etc/X11下有没有xorg.conf 的备份,有的话恢复一个试试看。
没备份

发表于 : 2007-01-12 15:50
xiechy
五楼的兄弟误人了。xorg.conf是对X的配置,怎么会和声音有关?要知其然阿~~声音可不需要什么x服务。lz首先看看用root能不能放出声音吧。

发表于 : 2007-01-12 17:57
zhiwasa
xiechy 写了:五楼的兄弟误人了。xorg.conf是对X的配置,怎么会和声音有关?要知其然阿~~声音可不需要什么x服务。lz首先看看用root能不能放出声音吧。
怎样用root放出声音?
我开机也没有声音,是指这个吗??

发表于 : 2007-01-12 19:03
ttand
你安装的 是源里面的驱动还是自己在显卡 网站上下的驱动
还有你的显卡型号

估计是 驱动模块冲突了

发表于 : 2007-01-12 20:30
zhiwasa
ttand 写了:你安装的 是源里面的驱动还是自己在显卡 网站上下的驱动
还有你的显卡型号

估计是 驱动模块冲突了
安装的是源里的驱动,使用命令:sudo apt-get install nvidia-glx
我的显卡是nvidia GeForce FX 5200

我不装驱动也好好的,但想装个Wine,所以就先装驱动了。
可以用自己显卡带的光盘驱动装吗??

发表于 : 2007-01-12 21:06
ttand
系统自带了通用 nv 卡驱动 教室我们说的 “nv” 模块
我们装的驱动也是一个内核模块 叫 “nvidia”

你的xorg.conf 声明了使用哪一个模块
我以前也是有这个问题,两个驱动模块冲突 结果就没有声音(比较神奇)

结果看帖子 屏蔽了 nv模块就可以了

看看 你的
/etc/default/linux-restricted-modules-common
这个配置文件
有没有 吧 nv显示模块disable掉

我装了显卡驱动以后 就把其他的显示模块 和杂项都 屏蔽了

# This file is sourced from the linux-restricted-modules-common init
# script and is used to disable the link-on-boot feature, one module
# at a time. This can be useful if you want to use hand-compiled
# versions of one or more modules, but keep linux-restricted-modules
# installed on your system, or just to disable modules you don't use
# and speed up your boot process by a second or two.
#
# Use a space-separated list of modules you wish to not have linked
# on boot. The following example shows a (condensed) list of all
# modules shipped in the linux-restricted-modules packages:
#
DISABLED_MODULES="ath_hal fc fglrx ltm nv"
#
# Note that disabling "fc" disables all fcdsl drivers, "ltm" disables
# ltmodem and ltserial, and "nv" disables both the nvidia drivers.
# You can also name each module individually, if you prefer a subset.

发表于 : 2007-01-13 10:50
zhiwasa
ttand 写了:系统自带了通用 nv 卡驱动 教室我们说的 “nv” 模块
我们装的驱动也是一个内核模块 叫 “nvidia”

你的xorg.conf 声明了使用哪一个模块
我以前也是有这个问题,两个驱动模块冲突 结果就没有声音(比较神奇)

结果看帖子 屏蔽了 nv模块就可以了

看看 你的
/etc/default/linux-restricted-modules-common
这个配置文件
有没有 吧 nv显示模块disable掉

我装了显卡驱动以后 就把其他的显示模块 和杂项都 屏蔽了

# This file is sourced from the linux-restricted-modules-common init
# script and is used to disable the link-on-boot feature, one module
# at a time. This can be useful if you want to use hand-compiled
# versions of one or more modules, but keep linux-restricted-modules
# installed on your system, or just to disable modules you don't use
# and speed up your boot process by a second or two.
#
# Use a space-separated list of modules you wish to not have linked
# on boot. The following example shows a (condensed) list of all
# modules shipped in the linux-restricted-modules packages:
#
DISABLED_MODULES="ath_hal fc fglrx ltm nv"
#
# Note that disabling "fc" disables all fcdsl drivers, "ltm" disables
# ltmodem and ltserial, and "nv" disables both the nvidia drivers.
# You can also name each module individually, if you prefer a subset.
用了你这种方法了,还是不行,但多谢你。