感谢支持
我们一直在努力

Ubuntu 9.10 安装VIA S3 unichmore PRO 驱动黑屏解决

Ubuntu 8.04 9.04 8.10 ==所有VIA集成显卡都适用


用USBLOAD安装系统时发生了悲剧,黑屏了~


原因是我的显卡是VIA s3 graphics unichmore pro 悲剧啊!


低端显卡在Ubuntu 中居然没法使用CN700主板


我的方法是这样的我以前用过Puppy Linux 里面的xorg.conf复制到了U盘然后重启了桌面


sudo mkdir /media/sda
sudo mount /dev/sda1 /media/sda
sudo service gdm stop
sudo Xorg -configure
sudo mv /media/sda/xorg.conf /etc/X11/xorg.conf
sudo service gdm start
如果你用service gdm start 启动不了桌面 Ubuntu 8.04 9.04 8.10 ==
top 1722 ko        20   0  462m  88m  36m S 24.3  9.0  11:05.25 firefox           
1107 root      20   0 44972  21m 6900 R 13.1  2.2   2:55.90 Xorg              
1698 ko        20   0 52784  15m  10m S  6.6  1.5   0:14.07 gnome-terminal    
1344 ko        20   0  156m 4988 3788 S  4.9  0.5   0:37.95 pulseaudio        
1434 ko        20   0  116m  15m  11m S  3.0  1.5   0:14.67 metacity          
1671 ko        20   0 13296 2916 1316 R  3.0  0.3   1:30.54 sp-sc-auth        
1437 ko        20   0 59192  23m  16m S  2.0  2.4   0:17.13 gnome-panel       
1339 ko        20   0 51824  21m  12m S  1.3  2.2   0:29.95 python            
1326 ko        20   0  8196 3276 2472 S  0.7  0.3   0:08.35 ibus-daemon       
2165 ko        20   0  2472 1164  884 R  0.7  0.1   0:00.10 top               
1350 ko        20   0 32064  18m 4192 S  0.3  1.8   0:54.50 python            
1 root      20   0  2664 1540 1128 S  0.0  0.2   0:02.29 init 
找到Xorg的 PID
1107 root      20   0 44972  21m 6900 R 13.1  2.2   2:55.90 Xorg
sudo kill 1107
就好了

下面是xorg.conf复制后保存为xorg.conf 如果不能用自己弄个U盘PUPPY在ETC/X11下复制一个
#Special base config file used in Puppy Linux.

# **********************************************************************
# qq669880521
# yankkokk
# **********************************************************************
#
Section “Module”
Load “synaptics”


# This loads the DBE extension module.


Load        “dbe”      # Double buffer extension


# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection  “extmod”
Option    “omit xfree86-dga”   # don’t initialise the DGA extension
EndSubSection


# This loads the font modules
Load        “type1”
Load        “freetype”


# This loads xtrap extension, used by xrandr
Load       “xtrap”


# This loads the GLX module (if present)
Load       “glx”


# This loads dri module (if present)
Load       “dri”


EndSection


# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************


Section “Files”


# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like “.txt” or “.db”).  There is normally
# no need to change the default.


RgbPath    “/usr/X11R7/lib/X11/rgb”


# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)


FontPath   “/usr/X11R7/lib/X11/fonts/misc/”
FontPath   “/usr/X11R7/lib/X11/fonts/Type1/”
FontPath   “/usr/X11R7/lib/X11/fonts/TTF/”


EndSection


# **********************************************************************
# Server flags section.
# **********************************************************************


Section “ServerFlags”


# Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
# (where n is 1 through 12).  This allows clients to receive these key
# events.


#    Option “DontVTSwitch”


# Enables mode switching with xrandr
# There is a report that this can cause Xorg not to work on some
# video hardware, so default is commented-out…
# but i want to use it in xorgwizard so leave on…


Option “RandR” “on”


EndSection


#everything past here is auto-generated by Puppy’s Xorg Wizard…



Section “ServerLayout”
InputDevice “Synaptics Mouse” “AlwaysCore”
Identifier     “X.org Configured”
Screen      0  “Screen0” 0 0
InputDevice    “Mouse0” “CorePointer”
InputDevice    “Keyboard0” “CoreKeyboard”
EndSection


Section “InputDevice”
Identifier  “Keyboard0”
Driver      “kbd”
Option      “XkbRules” “xorg”
Option      “XkbModel” “pc102”
Option      “XkbLayout” “us” #xkeymap0
EndSection


Section “InputDevice”
Identifier  “Mouse0”
Driver      “mouse”
Option        “Protocol” “IMPS/2” #mouse0protocol
Option        “Device” “/dev/mouse”
#Option      “Emulate3Buttons”
#Option      “Emulate3Timeout” “50”
Option      “ZAxisMapping” “4 5” #scrollwheel
EndSection


Section “InputDevice”
Identifier “Synaptics Mouse”
Driver “synaptics”
Option “Device” “/dev/psaux”
Option “Protocol” “auto-dev”
Option “LeftEdge” “120”
Option “RightEdge” “930”
Option “TopEdge” “120”
Option “BottomEdge” “650”
Option “FingerLow” “14”
Option “FingerHigh” “15”
Option “MaxTapTime” “0”
Option “MaxTapMove” “110”
Option “VertScrollDelta” “20”
Option “MinSpeed” “0.3”
Option “MaxSpeed” “0.75”
Option “AccelFactor” “0.030”
Option “EdgeMotionMinSpeed” “200”
Option “EdgeMotionMaxSpeed” “200”
Option “UpDownScrolling” “1”
Option “CircularScrolling” “1”
Option “CircScrollDelta” “0.1”
Option “CircScrollTrigger” “2”
EndSection


Section “Monitor”
Identifier   “Monitor0”
VendorName   “Monitor Vendor”
ModelName    “Monitor Model”
HorizSync    31.5-48.5
VertRefresh  40
#UseModes     “Modes0” #monitor0usemodes
Option      “PreferredMode” “1024×768”
EndSection


Section “Modes”
Identifier “Modes0”
#modes0modeline0
EndSection


Section “Device”
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: “True”/”False”,
### <string>: “String”, <freq>: “<f> Hz/kHz/MHz”
### [arg]: arg optional
#Option     “ShadowFB”               # [<bool>]
#Option     “DefaultRefresh”         # [<bool>]
#Option     “ModeSetClearScreen”     # [<bool>]
Identifier  “Card0”
Driver      “vesa” #card0driver
VendorName  “Unknown Vendor”
BoardName   “Unknown Board”
BusID       “PCI:1:0:0”
EndSection


Section “Screen”
Identifier “Screen0”
Device     “Card0”
Monitor    “Monitor0”
DefaultDepth 16
Subsection “Display”
Depth       16
Modes       “1024×768”
EndSubsection
EndSection


#PuppyHardwareProfile=VIA_P4N800_PRO

赞(0) 打赏
转载请注明出处:服务器评测 » Ubuntu 9.10 安装VIA S3 unichmore PRO 驱动黑屏解决
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏