xconfigurator로 잡의면 card database missing라고나오면서 튕기고..
xf86config로 잡을려면 그래픽카드리스트에 부두밴쉬(tdfx)가 아예없어서 우선 아무그래픽
카드를 선택해서 /etc/X11/XF86Config를 생성해서 수동으로 부두밴쉬에 맞게 아래와 같이
했습니다. 그런데.. 이게 어찌된건지 해상도가 640x480으로만 뜹니다.
같은 부두밴쉬 쓰시는분 조언부탁 바랍니다. 그리고 XF86config파일을 멜로좀 보내주세여..
비교줌 해볼려구여~~ 왕부탁드립니다.
-----------------------------------------------------------------------------
# **********************************************************************
# Monitor section
# **********************************************************************
# Any number of monitor sections may be present
Section "Monitor"
Identifier "My Monitor"
# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
HorizSync 31.5
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
VertRefresh 50-70
EndSection
# **********************************************************************
# Graphics device section
# **********************************************************************
# Any number of graphics device sections may be present
# Standard VGA Device:
Section "Device"
Identifier "Voodoo"
VendorName "3dfx"
BoardName "tdfx"
# The chipset line is optional in most cases. It can be used to override
# the driver's chipset detection, and should not normally be specified.
# Chipset "generic"
# The Driver line must be present. When using run-time loadable driver
# modules, this line instructs the server to load the specified driver
# module. Even when not using loadable driver modules, this line
# indicates which driver should interpret the information in this section.
Driver "tdfx"
# The BusID line is used to specify which of possibly multiple devices
# this section is intended for. When this line isn't present, a device
# section can only match up with the primary video device. For PCI
# devices a line like the following could be used. This line should not
# normally be included unless there is more than one video device
# intalled.
# BusID "PCI:0:10:0"
# VideoRam 256
# Clocks 25.2 28.3
EndSection
# Device configured by xf86config:
Section "Device"
Identifier "y"
Driver "tdfx"
VideoRam 16204
# Device section for Cirrus Logic GD5430/34-based cards.
#MemBase 0x00e00000 # ISA card that maps to 14Mb
#MemBase 0x04000000 # VLB card that maps to 64Mb
#MemBase 0x80000000 # VLB card that maps to 2048Mb
#MemBase 0x02000000 # VLB card that maps to 32Mb
#Option "linear"
# Use Option "no_bitblt" if you have graphics problems. If that fails
# try Option "noaccel".
# Refer to /usr/X11R6/lib/doc/README.cirrus.
# To allow linear addressing, uncomment the Option line and the
# address that the card maps the framebuffer to.
# Insert Clocks lines here if appropriate
EndSection
# **********************************************************************
# Screen sections
# **********************************************************************
# Any number of screen sections may be present. Each describes
# the configuration of a single screen. A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
Identifier "Screen 1"
Device "Voodoo"
Monitor "My Monitor"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1152x864"
ViewPort 0 0
EndSubsection
EndSection