免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: king2k
打印 上一主题 下一主题

Linux高手请进来!~!有急事求救!!!!!!!在线等待.......... [复制链接]

论坛徽章:
0
11 [报告]
发表于 2003-05-21 11:48 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

怎样配置啊,弱智太哥这个网上不了啊!
http://www.redhat.com/docs/manuals/linux/RHL-8.0-Manual/ref-guide/s1-x-server.html

XF86Config怎样配置!

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
12 [报告]
发表于 2003-05-21 11:52 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

http://www.redhat.com/docs/manuals/linux/RHL-8.0-Manual/ref-guide/s1-x-server.html

Red Hat Linux 8.0: The Official Red Hat Linux Reference Guide
Prev Chapter 6. The X Window System Next

--------------------------------------------------------------------------------

XFree86
Red Hat Linux 8.0 uses XFree86 version 4.2 as the base X Window System, which includes the various necessary X libraries, fonts, utilities, documentation, and development tools.


Note
  Red Hat no longer provides the older XFree86 version 3 server packages. Before upgrading to the latest version of Red Hat Linux be sure that your video card is compatible with XFree86 version 4 by checking the Red Hat Hardware Compatibility List located at this URL:http://hardware.redhat.com/hcl/.


The X server includes many cutting edge XFree86 technology enhancements such as hardware 3D acceleration support, the XRender extension for anti-aliased fonts, a modular driver based design, support for modern video hardware and input devices, and many other features.

The Red Hat Linux installation program installs the base components of XFree86. You may choose to install any optional XFree86 packages.

The X Window System resides primarily in two locations in the file system:


/usr/X11R6/ directory
A directory containing X client binaries (the bin directory), assorted header files (the include directory), libraries (the lib directory), and manual pages (the man directory), and various other X documentation (the /usr/X11R6/lib/X11/doc/ directory).

/etc/X11/ directory
The /etc/X11/ directory hierarchy contains all of the configuration files for the various components that make up the X Window System. This includes configuration files for the X server itself, the X font server (xfs), the X Display Manager (xdm), and many other base components. Display managers such as gdm and kdm, as well as various window managers, and other X tools also store their configuration in this hierarchy.

XFree86 version 4 server is a single binary executable — /usr/X11R6/bin/XFree86. This server dynamically loads various X server modules at runtime from the /usr/X11R6/lib/modules/ directory including video drivers, font engine drivers, and other modules as needed. Some of these modules are automatically loaded by the server, whereas some are optional features that you must specify in the XFree86 server's configuration file, /etc/X11/XF86Config, before they can be used. The video drivers are located in the /usr/X11R6/lib/modules/drivers/ directory. The DRI hardware accelerated 3D drivers are located in the /usr/X11R6/lib/modules/dri/ directory.

XFree86 Server Configuration Files
The XFree86 server configuration files are stored in the /etc/X11/ directory. The XFree86 version 4 server uses /etc/X11/XF86Config. When Red Hat Linux is installed, the configuration files for XFree86 are created using information gathered during the installation process.

While there is rarely a need to manually edit these files, it is useful to know about the various sections and optional parameters found in them.

Each section begins with a Section "<section-name>;" line and ends with an EndSection line. Within each of the sections, you will find several lines containing an option name and at least one option value, occasionally seen in quotes. The following list explores the most useful sections of an XFree86 version 4 file and the roles of various popular settings.


Device
Specifies information about the video card used by the system. You must have at least one Device section in your configuration file. You may have multiple Device sections in the case of multiple video cards or multiple settings that can run a single card. The following options are required or widely used:


BusID — Specifies the bus location of the video card. This option is only necessary for systems with multiple cards and must be set so that the Device section will use the proper settings for the correct card.

Driver — Tells XFree86 which driver to load in order to use the video card.

Identifier — Provides a unique name for this video card. Usually, this name is set to the exact name of the video card used in the Device section.

Screen — An optional setting used when a video card has more than one head, or connector, to go out to a separate monitor. If you have multiple monitors connected to one video card, separate Device sections must exist for each of them with a different Screen value for each Device section. The value accepted by this option is a number starting at 0 and increasing by one for each head on the video card.

VideoRam — The amount of RAM available on the video card in kilobytes. This setting is not normally necessary since the XFree86 server can usually probe the video card to autodetect the amount of video RAM. But since there are some video cards XFree86 cannot correctly autodetect, this option allows you to specify the amount of video RAM.

DRI
Direct Rendering Infrastructure (DRI) is an interface which primarily allows 3D software applications to take advantage of the 3D hardware acceleration capabilities on modern supported video hardware. In addition, DRI can improve 2D hardware acceleration performance when using drivers that have been enhanced to use the DRI for 2D operations. This section is ignored unless DRI is enabled in the Module section.

Since different video cards use DRI in different ways. Before changing any DRI values, read the /usr/X11R6/lib/X11/doc/README.DRI file for specific information about your particular video card.

Files
This section sets paths for services vital to the XFree86 server, such as the font path. Common options include:


FontPath — Sets the locations where the XFree86 server can find fonts. Different fixed paths to directories holding font files can be placed here, separated by commas. By default, Red Hat Linux uses xfs as the font server and points FontPath to unix/:7100. This tells the XFree86 server to obtain font information by using UNIX-domain sockets for inter-process communication (IPC).

See the Section called Fonts for more information concerning XFree86 and fonts.

ModulePath — Allows you to set up multiple directories to use for storing modules loaded by the XFree86 server.

RgbPath — Tells the XFree86 server where the RGB color database is located on the system. This database file defines all valid color names in XFree86 and ties them to specific RGB values.

InputDevice
Configures an input device such as a mouse or keyboard used to submit information into the system using the XFree86 server. Most systems have at least two InputDevice sections, keyboard and mouse. Each section includes these two lines:


Driver — Tells XFree86 the name of the driver to load to use the device.

Identifier — Sets the name of the device, usually the name of the device followed by a number, starting with 0 for the first device. For example, the first keyboard InputDevice would have an Identifier of Keyboard0.

Most InputDevice sections contain lines assigning specific options to that device. Each of these lines start with Option and contain the name of the option in quotes, followed by the value to assign to that option. Mice usually receive options such as Protocol, such as PS/2, and Device, which designates the mouse to use for this section. The InputDevice section is well commented, allowing you to configure additional options for your particular devices by uncommenting certain lines.

Module
Tells the XFree86 server which modules from the /usr/X11R6/lib/modules/ directory to load. Modules provide the XFree86 server with additional functionality.


Caution
  You should not edit these values.


Monitor
Refers to the type of monitor used by the system. While one Monitor section is the minimum, there may be several Monitor sections, one for each monitor in use with the machine.


Warning
  Be careful when manually editing values in the options of the Monitor section. Inappropriate values in this section could damage or destroy your monitor. Consult the documentation that came with your monitor for the safe operating parameters available.


The following options are usually configured during installation or when using X Configuration Tool:


HorizSync — Tells XFree86 the range of horizontal sync frequencies compatible with the monitor in kHz. These values are used as a guide by the XFree86 server so that it will know whether to use a particular Modeline entry's values with this monitor.

Identifier — Provides a unique name for this monitor, usually numbering each monitor starting at 0. The first monitor would be named Monitor0, the second Monitor1, and so on.

Modeline — Used to specify the video modes used by the monitor at particular resolutions, with certain horizontal sync and vertical refresh resolutions. Modeline entries are usually preceded by a comment that explains what the mode line specifies.

If your configuration file does not include comments for the various mode lines, you can scan over the values (also called mode descriptions) to uncover what the mode line is attempting to do. See the XF86Config man page for detailed explanations of each mode description section.

ModelName — An optional parameter that displays the model name of the monitor.

VendorName — An optional parameter that displays the vendor that manufactured the monitor.

VertRefresh — Lists the vertical refresh range frequencies supported by the monitor, in kHz. These values are used as a guide by the XFree86 server so that it will know whether to use a particular Modeline entry's values with this monitor.

Screen
Binds together a particular Device and Monitor that can be utilized as a pair and contain certain settings. You must have at least one Screen section in your configuration file. The following options are common:


DefaultDepth — Tells the Screen section the default color depth to try in bits. 8 is the default, 16 provides thousands of colors, and 32 displays millions of colors.

Device — Signifies the name of the Device section to use with this Screen section.

Identifier — Identifies the Screen section so that it can be referred to by a ServerLayout section and be utilized.

Monitor — Tells the name of the Monitor section to be used with this Screen section.

You may also have a Display subsection within the Screen section which tells the XFree86 server the color depth (Depth) and resolution (Mode) to try first when using this particular monitor and video card.

ServerFlags
Contains miscellaneous global XFree86 server settings. These settings may be overridden by options placed in the ServerLayout section. Among the most useful settings:


DontZap — Prevents the use of the [Ctrl]-[Alt]-[Backspace] key combination to immediately terminate the XFree86 server.

DontZoom — Prevents cycling through configured video resolutions using the [Ctrl]-[Alt]-[Keypad-Plus] and [Ctrl]-[Alt]-[Keypad-Minus] key combinations.

ServerLayout
Binds together a Screen section with the necessary InputDevice sections and various options to create a unified collection of preferences used by the XFree86 server as it starts. If you have more than one ServerLayout section, and the one to use is not specified on the command line when bringing up the XFree86 server, the first ServerLayout section in the configuration file is used.

The following options are used in a ServerLayout section:


Identifier — A unique name used to describe this ServerLayout section.

InputDevice — The names of any InputDevice sections to be used with the XFree86 server. Most users will only have two lines here, Keyboard0 and Mouse0, the first keyboard and mouse configured for the system. The options CoreKeyboard and CorePointer refer to the fact that these are the preferred keyboard and mouse, respectively, to use with the XFree86 server.

Screen — The name of the Screen section to use. The number to the left of the name of the Screen section refers to the particular screen number to use in a multi-head configuration. For standard single-head video cards, this value is 0. The numbers to the right give the X and Y absolute coordinates for the upper-left corner of the screen, by default 0 0.

Below is an example of a typical screen entry:

Screen      0  "Screen0" 0 0


For more information, refer to the XF86Config man page.

To review the current configuration of your XFree86 server, type the xset -q command. This provides you with information about the keyboard, pointer, screen saver, and font paths.

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
13 [报告]
发表于 2003-05-21 11:52 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/s1-x-server-configuration.html

Red Hat Linux 9: Red Hat Linux Reference Guide
Prev Chapter 7. The X Window System Next

--------------------------------------------------------------------------------

7.3. XFree86 Server Configuration Files
The XFree86 server is a single binary executable (/usr/X11R6/bin/XFree86) that dynamically loads any necessary X server modules at runtime from the /usr/X11R6/lib/modules/ directory. Some of these modules are automatically loaded by the server, while others are optional and must be specified in the XFree86 server configuration file.

The XFree86 server and associated configuration files are stored in the /etc/X11/ directory. The configuration file for the XFree86 server is /etc/X11/XF86Config. When Red Hat Linux is installed, the configuration files for XFree86 are created using information gathered about the system hardware during the installation process.

7.3.1. XF86Config
While there is rarely a need to manually edit /etc/X11/XF86Config, it is useful to know about the various sections and optional parameters available, especially when troubleshooting.

7.3.1.1. The Structure
The /etc/X11/XF86Config file is comprised of a many different sections which address specific aspects of the system hardware.

Each section begins with a Section "<section-name>;" line (where <section-name>; is the title for the section) and ends with an EndSection line. Within each of the sections, are lines containing option names and at least one option value, occasionally seen in quotes.

Lines beginning with a hash mark [#] are not read by the XFree86 server and are used for human-readable comments.

Some options within the /etc/X11/XF86Config file accept a boolean switch which turns the feature on or off. Acceptable boolean values are:


1, on, true, or yes — Turns the option on.

0, off, false, or no — Turns the option off.

The following are some of the more important sections ordered as they appear in a typical /etc/X11/XF86Config file. More detailed information about the XFree86 server configuration file can be found in the XF86Config man page.

7.3.1.2. ServerFlags
The optional ServerFlags section contains miscellaneous global XFree86 server settings. Any settings in this section may be overridden by options placed in the ServerLayout section (refer to Section 7.3.1.3 ServerLayout for details).

Entries within the ServerFlags section are on their own lines and begin with the term Option followed by an option enclosed in double quotation marks ["].

The following is a sample ServerFlags section:

Section "ServerFlags"
      Option "DontZap" "true"     
EndSection


The following is a list of some of the most useful options:


"DontZap" "<boolean>;" — When the value of <boolean>; is set to true, this setting prevents the use of the [Ctrl]-[Alt]-[Backspace] key combination to immediately terminate the XFree86 server.

"DontZoom" "<boolean>;" — When the value of <boolean>; is set to true, this setting prevents cycling through configured video resolutions using the [Ctrl]-[Alt]-[Keypad-Plus] and [Ctrl]-[Alt]-[Keypad-Minus] key combinations.

7.3.1.3. ServerLayout
The ServerLayout section binds together the input and output devices controlled by the XFree86 server. At a minimum, this section must specify one output device and at least two input devices (a keyboard and a mouse).

The following example illustrates a typical ServerLayout section:

Section  "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection


The following entries are commonly used in the ServerLayout section:


Identifier — Specifies a unique name for this ServerLayout section.

Screen — Specifies the name of a Screen section to be used with the XFree86 server. More than one Screen options may be present.

The following is an example of a typical Screen entry:

Screen      0  "Screen0" 0 0


The first number in this example Screen entry (0) indicates that the first monitor connector or head on the video card uses the configuration specified in the Screen section with the identifier "Screen0".

If the video card has more than one head, another Screen entry would be necessary with a different number and a different Screen section identifier.

The numbers to the right of "Screen0" give the X and Y absolute coordinates for the upper-left corner of the screen (0 0 by default).

InputDevice — Specifies the name of an InputDevice section to be used with the XFree86 server.

There must be at least two InputDevice entires: one for the default mouse and one for the default keyboard. The options CorePointer and CoreKeyboard indicate these are the primary mouse and keyboard.

Option "<option-name>;" — An optional entry which specifies extra parameters for the section. Any options listed here override those listed in the ServerFlags section.

Replace <option-name>; with a valid option listed for this section in the XF86Config man page.

It is possible to create more than one ServerLayout section. However, the server will only read the first one to appear unless an alternate ServerLayout section is specified as a command line argument.

7.3.1.4. Files
The Files section sets paths for services vital to the XFree86 server, such as the font path.

The following example illustrates a typical Files section:

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        FontPath     "unix/:7100"
EndSection


The following entries are commonly used in the Files section:


RgbPath — Specifies the location of the RGB color database. This database defines all valid color names in XFree86 and ties them to specific RGB values.

FontPath — Specifies where the XFree86 server must connect to obtain fonts from the xfs font server.

By default, the FontPath is unix/:7100. This tells the XFree86 server to obtain font information using UNIX-domain sockets for inter-process communication (IPC) on port 7100.

See Section 7.4 Fonts for more information concerning XFree86 and fonts.

ModulePath — An optional parameter which specifies alternate directories which store XFree86 server modules.

7.3.1.5. Module
The Module section specifies which modules from the /usr/X11R6/lib/modules/ directory the XFree86 server is to load. Modules add additional functionality to the XFree86 server.

The following example illustrates a typical Module section:

Section "Module"
        Load  "dbe"
        Load  "extmod"
        Load  "fbdevhw"
        Load  "glx"
        Load  "record"
        Load  "freetype"
        Load  "type1"
        Load  "dri"
EndSection


7.3.1.6. InputDevice
Each InputDevice section configures one input device for the XFree86 server. Systems typically have at least two InputDevice sections, keyboard and mouse.

The following example illustrates a typical InputDevice section for a mouse:

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "rotocol" "IMPS/2"
        Option            "Device" "/dev/input/mice"
        Option            "Emulate3Buttons" "no"
EndSection


The following entries are commonly used in the InputDevice section:


Identifier — Specifies a unique name for this InputDevice section. This is a required entry.

Driver — Specifies the name of the device driver XFree86 must load for the device.

Option — Specifies necessary options pertaining to the device.

For a mouse, these options typically include:


Protocol — Specifies the protocol used by the mouse, such as IMPS/2.

Device — Specifies the location of the physical device.

Emulate3Buttons — Specifies whether to allow a two button mouse to act like a three button mouse when both mouse buttons are pressed simultaneously.

Consult the XF86Config man page for a list of valid options for this section.

By default the InputDevice section has comments to allow users to configure additional options.

7.3.1.7. Monitor section
Each Monitor section configures one type of monitor used by the system. While one Monitor section is the minimum, additional instances may occur for each monitor type in use with the machine.

The best way to configure a monitor is to configure X during the installation process or by using X Configuration Tool. For more about using the X Configuration Tool refer to the chapter titled Audio, Video, and General Amusement in the Red Hat Linux Getting Started Guide.

This example illustrates a typical Monitor section for a monitor:

          
Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "DDC Probed Monitor - ViewSonic G773-2"
        DisplaySize  320        240
        HorizSync    30.0 - 70.0
        VertRefresh  50.0 - 180.0
EndSection



Warning
  Be careful if manually editing values in the Monitor section of /etc/X11/XF86Config. Inappropriate values can damage or destroy the monitor. Consult the monitories documentation for the a listing of safe operating parameters.


The following are commonly entries used in the Monitor section:


Identifier — Specifies a unique name for this Monitor section. This is a required entry.

VendorName — An optional parameter which specifies the vendor of the monitor.

ModelName — An optional parameter which specifies the monitor's model name.

DisplaySize — An optional parameter which specifies, in millimeters, the physical size of the monitor's picture area.

HorizSync — Specifies the range of horizontal sync frequencies compatible with the monitor in kHz. These values help the XFree86 server determine the validity of built in or specified Modeline entries for the monitor.

VertRefresh — Specifies the range of vertical refresh range frequencies supported by the monitor, in kHz. These values help the XFree86 server determine the validity of built in or specified Modeline entries for the monitor.

Modeline — An optional parameter which specifies additional video modes for the monitor at particular resolutions, with certain horizontal sync and vertical refresh resolutions. See the XF86Config man page for a more detailed explanation of Modeline entries.

Option "<option-name>;" — An optional entry which specifies extra parameters for the section. Replace <option-name>; with a valid option listed for this section in the XF86Config man page.

7.3.1.8. Device
Each Device section configures one video card on the system. While one Device section is the minimum, additional instances may occur for each video card installed on the machine.

The best way to configure a video card is to configure X during the installation process or by using X Configuration Tool. For more about using the X Configuration Tool refer to the chapter titled Audio, Video, and General Amusement in the Red Hat Linux Getting Started Guide.

The following example illustrates a typical Device section for a video card:

Section "Device"
        Identifier  "Videocard0"
        Driver      "mga"
        VendorName  "Videocard vendor"
        BoardName   "Matrox Millennium G200"
        VideoRam    8192
        Option      "dpms"
EndSection


The following entries are commonly used in the Device section:


Identifier — Specifies a unique name for this Device section. This is a required entry.

Driver — Specifies which driver the XFree86 server must load in order to utilize the video card. A list of drivers can be found in /usr/X11R6/lib/X11/Cards, which is installed with the hwdata package.

VendorName — An optional parameter which specifies the vendor of the video card.

BoardName — An optional parameter which specifies the name of the video card.

VideoRam — An optional parameter which specifies the amount of RAM available on the video card in kilobytes. This setting is only necessary for video cards the XFree86 server cannot probe to detect the amount of video RAM.

BusID — An optional entry which specifies the bus location of the video card. This option is only mandatory for systems with multiple cards.

Screen — An optional entry which specifies which monitor connector or head on the video card the Device section configures. This option is only useful for video cards with multiple heads.

If multiple monitors are connected to different heads on the same video card, separate Device sections must exist and each of these sections must have a different Screen value.

Values for the Screen entry must be an integer. The first head on the video card has a value of 0. The value for each additional head increases this value by one.

Option "<option-name>;" — An optional entry which specifies extra parameters for the section. Replace <option-name>; with a valid option listed for this section in the XF86Config man page.

One of the more common options is "dpms", which activates Service Star energy compliance for the monitor.

7.3.1.9. Screen
Each Screen section binds one video card (or video card head) to one monitor by referencing the Device section and the Monitor section for each. While one Screen section is the minimum, additional instances may occur for each video card and monitor combination present on the machine.

The following example illustrates a typical Screen section:

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth     16
        SubSection "Display"
                Depth     24
                Modes    "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth     16
                Modes    "1152x864" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection


The following entries are commonly used in the Screen section:


Identifier — Specifies a unique name for this Screen section. This is a required entry.

Device — Specifies the unique name of a Device section. This is a required entry.

Monitor — Specifies the unique name of a Monitor section. This is a required entry.

DefaultDepth — Specifies the default color depth in bits. In the previous example, 16, which provides thousands of colors, is the default. Multiple DefaultDepth entries are permitted, but at least one must be present.

SubSection "Display" — Specifies the screen modes available at a particular color depth. A Screen section may have multiple Display subsections, but there must be at least one for the color depth specified in the DefaultDepth entry.

Option "<option-name>;" — An optional entry which specifies extra parameters for the section. Replace <option-name>; with a valid option listed for this section in the XF86Config man page.

7.3.1.10. DRI
The optional DRI section specifies parameters for the Direct Rendering Infrastructure (DRI). DRI is an interface which allows 3D software applications to take advantage of 3D hardware acceleration capabilities built into most modern video hardware. In addition, DRI can improve 2D performance via hardware acceleration, if supported by the video card's driver.

This section is ignored unless DRI is enabled in the Module section.

The following example illustrates a typical DRI section:

Section "DRI"
        Group        0
        Mode         0666
EndSection


Since different video cards use DRI in different ways, do not alter the values for this section without first referring to the /usr/X11R6/lib/X11/doc/README.DRI file.

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
14 [报告]
发表于 2003-05-21 11:55 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

设置不难,显示芯片、显存、RAMDAC;显示器场扫、行扫;显示分辨率、色度。就可以了。

论坛徽章:
0
15 [报告]
发表于 2003-05-21 14:50 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

怎样配置啊,全部英语!

进不了图形界面调哪里啊!

还有我把FTP开了,但关不了,输入ftpshut关不了,
只有用kill -9 来把进程删掉!

论坛徽章:
0
16 [报告]
发表于 2003-05-21 15:25 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

关闭服务不能这样关闭,如果是wu-ftp,修改/etc/xinet.d/wu-ftp,把disable=no 改成yes,然后重启xinetd服务就可以了;
如果是proftp用/etc/rc.d/init.d/proftpd stop关闭

在命令行下运行Xconfigurator,按照提示做就可以了啊!
如果不行,直接修改/etc/X11/XF86Config-4,调整显卡驱动,色深,分辨率等就可以了

论坛徽章:
0
17 [报告]
发表于 2003-05-21 15:26 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

关闭服务不能这样关闭,如果是wu-ftp,修改/etc/xinet.d/wu-ftp,把disable=no 改成yes,然后重启xinetd服务就可以了;
如果是proftp用/etc/rc.d/init.d/proftpd stop关闭

在命令行下运行Xconfigurator,按照提示做就可以了啊!
如果不行,直接修改/etc/X11/XF86Config-4,调整显卡驱动,色深,分辨率等就可以了

论坛徽章:
0
18 [报告]
发表于 2003-05-21 15:28 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

关闭服务不能这样关闭,如果是wu-ftp,修改/etc/xinet.d/wu-ftp,把disable=no 改成yes,然后重启xinetd服务就可以了;
如果是proftp用/etc/rc.d/init.d/proftpd stop关闭

在命令行下运行Xconfigurator,按照提示做就可以了啊!
如果不行,直接修改/etc/X11/XF86Config-4,调整显卡驱动,色深,分辨率等就可以了

论坛徽章:
0
19 [报告]
发表于 2003-05-21 15:56 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

试一下行不行!多谢了,还有一个问题如果想要一开机就启动FTP
应该怎样做啊!~

我的是PROFTPD

论坛徽章:
0
20 [报告]
发表于 2003-05-21 16:10 |只看该作者

Linux高手请进来!~!有急事求救!!!!!!!在线等待..........

运行ntsysv,选种proftpd就可以了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP