想知道一个问题,怎么样才可以进入x-windows 也就是gnome桌面环境。。

CPU/显卡/打印机/USB设备等硬件问题
回复
zthirteenth
帖子: 29
注册时间: 2006-09-09 15:10
系统: ubuntu13.10
来自: http://heely.us
联系:

想知道一个问题,怎么样才可以进入x-windows 也就是gnome桌面环境。。

#1

帖子 zthirteenth » 2006-10-25 21:57

最近一直因为显卡的问题搞的自己,焦头烂额。。。。
我是一名理科生,那么我就按照顺序写出来,希望所有看官给一点意见。。。。。(我如果成功安装了显卡驱动,那么我会写一个详细的不能再详细的说明。用来告诉比我更新的新手。。。。)
第一:
我的笔记本的一些概况: 华硕 A3v 显卡:Ati Radon X700 显卡

使用的操作系统是:ubuntu dapper(ubuntu 6.06)
使用linux的时间是3个月 .
我现在安装的显卡驱动,是完全参照着wiki中的Ati显卡的安装来操作的。
代码:

代码: 全选

sudo apt-get update 
sudo apt-get install linux-restricted-modules-$(uname -r)
sudo apt-get install xorg-driver-fglrx
sudo aticonfig --initial
sudo aticonfig --overlay-type=Xv
文章地址:
http://wiki.ubuntu.org.cn/ATI%E6%98%BE% ... 7%E5%8D%97

现在我在命令行中输入fglrxinfo 后,看到的信息为:

代码: 全选

display: :0.0  screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.4.1)
说明,我现在还没有成功安装Ati显卡驱动。。。

第二,我一直在论坛中采用了好多人的好多次(n>=5 && n<10)安装Ati显卡驱动的文章,但是都没有成功.

目前非常感谢zhuqin_83这位热心的哥们的帮助。我曾经好几次通过ubuntu forum的站内短信方式问他怎么安装Ati显卡的问题。。
这是我目前采用的参考文章 ,作者:zhuqin_83
文章的地址 :viewtopic.php?t=24390&highlight=
我采用的是第二种方法,也就是 zhuqin_83在文章中所说的,用Ati.com官方的驱动。。

第三: 问题出现的地方
因为通过这几天的连续的测试安装显卡,我个人感觉他的这种方法应该是最有可能成功的。
我用新立得管理工具,完全卸载了fglrx-control fglrx-kernel-* xorg-driver-fglrx 等相关的驱动。
同时也修改了 /etc/X11/xorg.conf文件
这是修改后的文件的内容:

代码: 全选

Section "Files"
	FontPath	"/usr/share/X11/fonts/misc"
	FontPath	"/usr/share/X11/fonts/cyrillic"
	FontPath	"/usr/share/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/Type1"
	FontPath	"/usr/share/X11/fonts/100dpi"
	FontPath	"/usr/share/X11/fonts/75dpi"
	# path to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
	Option		"XkbLayout"	"us"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ExplorerPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizScrollDelta"	"0"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "Device"
	Identifier	"ATI Technologies, Inc. Radeon Mobility X700 (RV410 PCIE)"
	Driver		"ati"
	BusID		"PCI:1:0:0"
	Option		"UseFBDev"		"true"
EndSection

Section "Monitor"
	Identifier	"Generic Monitor"
	Option		"DPMS"
	HorizSync	28-51
	VertRefresh	43-60
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"ATI Technologies, Inc. Radeon Mobility X700 (RV410 PCIE)"
	Monitor		"Generic Monitor"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus" "SendCoreEvents"
	InputDevice     "cursor" "SendCoreEvents"
	InputDevice     "eraser" "SendCoreEvents"
	InputDevice	"Synaptics Touchpad"
EndSection

Section "DRI"
	Mode	0666
EndSection

准备工作做完之后,重新启动电脑就可以进入安装步骤了(ati-driver-installer-8.29.6.run ,我从Ati.com下载了最新的源码包.)但是发现无法进入x-windows界面了,开机就是黑屏。。。。。。。。
最近一直在挣扎着,,,,,就是不知道怎么进入x-windows...

我一直有个问题很疑惑,,就是我把fglrx 的驱动删除了,然后在Device 中Driver 换成了Ati ,如果按照我在windows 下的操作方式,我觉的进不了桌面,很正常的,因为显卡驱动没有了吗?
但是听zhuqin_83兄说,Ati是ubuntu内核自带的驱动。。。??
不知道具体是怎么回事??

还有就是:之所以进不了x-windows我一直是怀疑的是自己以前装的fglrx 关于显卡方面的驱动没有完全卸载掉。。。
但是我在新立得软件包管理器中用xorg搜索的时候,搜出来好多
诸如:
xserver-xorg-core
它的英文Information:
The X.Org X server is an X server for several architectures and operating
systems, which is derived from the XFree86 4.x series of X servers.

The X.Org server supports most modern graphics hardware from most vendors
还有更多的如:
xserver-xorg-driver-fbdev
xerver-xorg-driver-nv
xserver-xorg-driver-rendition
等等
我大概的看了一下他们的information 大都是一些output 的驱动程序,还有vmware client sessions 等等 。
我也不敢乱删除,呵呵。
好了说的不少了,够详细的了。。
能到这一步,问题已经很清晰了。。关键是我不知道怎么解决该问题,,不过很感谢那些曾经回复过,或者回复这个帖子的人,因为你们的努力让我更快的了解了ubuntu-linux 。



and supersedes all XFree86 X servers.
回复