分页: 1 / 1

ubuntu 8.04.1安装HP TC1100显示卡驱动和手写驱动

发表于 : 2008-12-23 21:31
seekfind
我是初学者,在hp tc1100上安装了多次ubuntu。碰到最大的困难是显示卡和手写驱动。
1、显示卡驱动安装,使用envyng软件安装
首先安装envyng,打开应用程序-附件-终端,

代码: 全选

sudo apt-get update    
如果刚装好系统,未更新,没有这一步,下一步执行会找不到envyng

代码: 全选

sudo apt-get install envyng-core
安装好后

代码: 全选

 
sudo envyng -t
选择
1
安装完驱动后,选择
0
重启后,显示卡驱动安装完成

2.手写驱动安装(来自:http://timelady.com/blog/howtos-technic ... ons-howto/)
打开应用程序-附件-终端

代码: 全选

sudo apt-get install wacom-tools
sudo gedit /etc/X11/xorg.conf
在gedit编辑器中,用下面代码覆盖源内容

代码: 全选

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder3)  Tue Jan 22 19:53:46 PST 2008

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by failsafeDexconf, using
# values from the debconf database and some overrides to use vesa mode.
#
# You should use dexconf or another such tool for creating a "real" xorg.conf
# For example:
#   sudo dpkg-reconfigure -phigh xserver-xorg

#Section "ServerLayout"
 #   Identifier     "Default Layout"
  #  Screen      0  "Default Screen" 	0 0
   # InputDevice    "Generic Keyboard" "CoreKeyboard"
 #   InputDevice    "Configured Mouse" "CorePointer"
  #  InputDevice    "Synaptics Touchpad"
   # InputDevice    "stylus" 	      "SendCoreEvents"
#EndSection

Section "Files"
EndSection

Section "Module"
    Load           "glx"
    Load           "v4l"
EndSection

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

Section "InputDevice"
    Identifier     "Configured Mouse"
    Driver         "mouse"
EndSection

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

Section "InputDevice"
   Driver 	  "wacom"
   Identifier 	  "stylus"
   Option 	  "Device" 	"/dev/input/wacom"
   Option 	  "Type" 	"stylus"
   Option    	  "Button2"    	"3"
   Option 	  "ForceDevice" "ISDV4"# Tablet PC ONLY
EndSection

Section "Monitor"
    Identifier     "Configured Monitor"
    VendorName     "Generic LCD Display"
    ModelName      "LCD Panel 1024x768"
    HorizSync       31.5 - 48.0
    VertRefresh     56.0 - 65.0
    Gamma           1
    ModeLine       "640x480@60" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    ModeLine       "800x600@56" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    ModeLine       "800x600@60" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    ModeLine       "1024x768@60" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
EndSection

Section "Monitor"
 # 
    Identifier     "monitor1"
    Gamma           1
EndSection

Section "Device"
    Identifier     "Configured Video Device"
    Driver         "nvidia"
    BoardName      "vesa"
    BusID          "PCI:1:0:0"
    Screen          0
    Option          "RandRRotation"    "on"
    Option          "NvAGP"     "1"
EndSection

Section "Device"
 # 
    Identifier     "device1"
    Driver         "nv"
    BoardName      "vesa"
    BusID          "PCI:1:0:0"
    Screen          1
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "Configured Video Device"
    Monitor        "Configured Monitor"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1024x768@60" "800x600@60" "800x600@56" "640x480@60"
    EndSubSection
EndSection

Section "Screen"
 # 
    Identifier     "screen1"
    Device         "device1"
    Monitor        "monitor1"
    DefaultDepth    24
EndSection

Section "ServerLayout"
    Identifier     "Default Layout"
    Screen      0  "Default Screen"     0 0
    InputDevice    "Generic Keyboard" "CoreKeyboard"
    InputDevice    "Configured Mouse" "CorePointer"
    InputDevice    "Synaptics Touchpad"
    InputDevice    "stylus"           "SendCoreEvents"
EndSection
保存,重新启动。这样手写驱动也装好了