Re: [XFree86] Driver issue.
On Tue, 5 Jun 2007, Lucio Lastra wrote: I don't see my graphic card driver listed. The graphic card is onboard on a DG945GTP Intel motherboard. It's based on the Intel 945G Express Chipset. http://www.intel.com/products/chipsets/945g/index.htm - My questions are: ¿ Is the chipset backward compatible so i can run the i8xx driver ? If not, ¿ Which driver do you recommend ? ¿ Is it possible at all to configure XFree86 in this motherboard ? The driver appears to support the 945G, so it should work right out of the box. Marc. +--+--+ | Marc Aurele La France | work: 1-780-492-9310 | | Academic Information and| fax:1-780-492-1729 | |Communications Technologies | email: [EMAIL PROTECTED] | | 352 General Services Building +--+ | University of Alberta | | | Edmonton, Alberta |Standard disclaimers apply| | T6G 2H1 | | | CANADA | | +--+--+ XFree86 developer and VP. ATI driver and X server internals.
[XFree86] Driver issue.
Hi, I don't see my graphic card driver listed. The graphic card is onboard on a DG945GTP Intel motherboard. Detailed in here: http://www.intel.com/cd/channel/reseller/asmo-na/eng/products/desktop/bdb/d945gtp/feature/index.htm It's based on the Intel 945G Express Chipset. Detailed in here: http://www.intel.com/products/chipsets/945g/index.htm - My questions are: ¿ Is the chipset backward compatible so i can run the i8xx driver ? If not, ¿ Which driver do you recommend ? ¿ Is it possible at all to configure XFree86 in this motherboard ? Greetings and thanks in advance Lucio. P.S.: Will I get the answer (if you may answer of course) in my email account or I have to join some webpage to see the reply ?
[XFree86] relationship of XFree86 driver modules to linux kernel modules - what is it?
I have never understood exactly what the relationship is between the XFree86 driver modules and their linux kernel buddies with same or similar name. E.g. drm, radeon, etc.Do they perform identical function, but XFree86 mdule in user space and the linux module in kernel space??If so, what is the precedence rule when both are present? Or are they complementary and both needed? I recently was reminded of this question when installing 4.6.0 under linux 2.6.19.1.At the end of the XFree86 install, it asked me if I would like to rebuild my linux drm modules (not my XFree86 drm module). This surprised me since linux already supplies a drm module for my display (S3 savage). I said yes and it failed (because it was looking for an include file, linux/config.h, in the linux source tree, that no longer exists - linux has replaced it by autoconf.h. But after fixing that, it turns out there is no source code for my S3 savage in the /usr/X11R6/src/drm/linux/kernel anyway!. Does this mean XFree86 doesn't support DRI on S3 even though my linux kernel does?? I do see error messages such as Xlib: extension "XFree86-DRI missing on display 0:0 - maybe that is the symptom?That is from a wine application. Yet the XFree86.0.log claims to have successfully loaded each of dri, drm, glx and no warning about not supporting S3 savage. The application appears to work just fine anyway so no big deal but strange. This post is not really about that specidfic DRI/DRM problem, although I'll be happy to have it solved, but mainly could someone please explain what the two types of modules do and their relationship when in use, or point me to some write-up if there is one. I'm also curous to understand how XFree86 can claim to have loaded its drm module when there is apparently no source code for XFree86 drm on my savage display! John Lumby _ http://local.live.com/?mkt=en-ca/?v=2&cid=A6D6BDB4586E357F!420 ___ XFree86 mailing list XFree86@XFree86.Org http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] DRIVER NEEDED!
hi. i seem to be having trouble finding the driver for the s3virge-dx/gx pci(375/385) device and i cannot run games and other items due to the loss of this driver. if anyone is able to assist please contact me on [EMAIL PROTECTED] as soon as possible. thankyou.. S ANDERSON
Re: [XFree86] Driver H/W init delay
On Tue, 30 May 2006, Jun OKAJIMA wrote: > Thank you for usuful advices. > > > > > Things like getting monitor information through DDC take > >a long time. Also, because clocks are being set there are > >PLL settling times that need to be observed least you mess > >things up by touching the hardware before the PLLs lock. > > > > I have heard about this issue, but, in my env, doing DDC probe is > very fast. It is done instantaneously. > Is DDC really a cause? > > > > > > > It may be that particular drivers have unnecessary waits here > >and there, but you really have to address them one by one, > >profiling to find the wait and then investigating whether or > >not it's really necessary. > > > > Then, the VESA driver of current XFree86 has unnecessary waits? > If so, I will try to get rid of. But, as far as I have glanced > the code, it just does call a VESA BIOS and it is all it does. > So, even there are unnecessary waits, they seems to be in a BIOS > code, I suppose. > > > > > > > I have worked on systems with boot times times on the order of > >a few seconds but these weren't trying to access VESA bios services > >or probing monitors through DDC. If you remove stuff like that, the > >boot times will probably be dominated by IDE probing, but then > >you end up having to hardcode things like monitor EDIDs that > >the driver would usually try to probe. > > > > Well, in MACH BOOT, it is possible to hard-code IDE params, > because most PCs has same param. But not possible to hard-code > DDC (EDID or...) because there are so many kind of monitor. > Any idea? You really just need to profile it and find where all the time is spent. If the video BIOS is doing all the initialization then it's likely that all the waiting is done there. It's undoubtedly all the monitor probing and clock setting and the associated delays and timeouts related to that. If the video card has multiple connectors it will probably be looking for devices on all connectors and trying that until it's convinced that it has found them all. Mark. ___ XFree86 mailing list XFree86@XFree86.Org http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver H/W init delay
Thank you for usuful advices. > > Things like getting monitor information through DDC take >a long time. Also, because clocks are being set there are >PLL settling times that need to be observed least you mess >things up by touching the hardware before the PLLs lock. > I have heard about this issue, but, in my env, doing DDC probe is very fast. It is done instantaneously. Is DDC really a cause? > > It may be that particular drivers have unnecessary waits here >and there, but you really have to address them one by one, >profiling to find the wait and then investigating whether or >not it's really necessary. > Then, the VESA driver of current XFree86 has unnecessary waits? If so, I will try to get rid of. But, as far as I have glanced the code, it just does call a VESA BIOS and it is all it does. So, even there are unnecessary waits, they seems to be in a BIOS code, I suppose. > > I have worked on systems with boot times times on the order of >a few seconds but these weren't trying to access VESA bios services >or probing monitors through DDC. If you remove stuff like that, the >boot times will probably be dominated by IDE probing, but then >you end up having to hardcode things like monitor EDIDs that >the driver would usually try to probe. > Well, in MACH BOOT, it is possible to hard-code IDE params, because most PCs has same param. But not possible to hard-code DDC (EDID or...) because there are so many kind of monitor. Any idea? --- Okajima, Jun. Tokyo, Japan. http://www.digitalinfra.co.jp/ http://www.machboot.com/ ___ XFree86 mailing list XFree86@XFree86.Org http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver H/W init delay
Things like getting monitor information through DDC take a long time. Also, because clocks are being set there are PLL settling times that need to be observed least you mess things up by touching the hardware before the PLLs lock. It may be that particular drivers have unnecessary waits here and there, but you really have to address them one by one, profiling to find the wait and then investigating whether or not it's really necessary. I have worked on systems with boot times times on the order of a few seconds but these weren't trying to access VESA bios services or probing monitors through DDC. If you remove stuff like that, the boot times will probably be dominated by IDE probing, but then you end up having to hardcode things like monitor EDIDs that the driver would usually try to probe. Mark. On Mon, 29 May 2006, Jun OKAJIMA wrote: > I am working on making a very fast booting technology for Linux. > Check this: > http://www.machboot.com/ > This boots within 10sec with x48 CD-ROM. > I dont intend to blow my own horn, but not so bad result, dont you? > > > One of the bottle neck at the moment is, XFree86 driver. > For example, VESA driver seems to spend several seconds for > hardware initialization. Other drivers (S3 or such) also > needs several seconds. > > My questions are: > > 1. This delay really comes from H/W init (or detect)? > 2. If so, is there any way to reduce this delay? >For example, if I hard-code all parameters about H/W to a driver, >It starts faster? > > Especially, I have much interest in tweaking VESA driver. > > --- Okajima, Jun. Tokyo, Japan. > ___ > XFree86 mailing list > XFree86@XFree86.Org > http://XFree86.Org/mailman/listinfo/xfree86 > ___ XFree86 mailing list XFree86@XFree86.Org http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver H/W init delay
I am working on making a very fast booting technology for Linux. Check this: http://www.machboot.com/ This boots within 10sec with x48 CD-ROM. I dont intend to blow my own horn, but not so bad result, dont you? One of the bottle neck at the moment is, XFree86 driver. For example, VESA driver seems to spend several seconds for hardware initialization. Other drivers (S3 or such) also needs several seconds. My questions are: 1. This delay really comes from H/W init (or detect)? 2. If so, is there any way to reduce this delay? For example, if I hard-code all parameters about H/W to a driver, It starts faster? Especially, I have much interest in tweaking VESA driver. --- Okajima, Jun. Tokyo, Japan. ___ XFree86 mailing list XFree86@XFree86.Org http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] re-activating xfree86 driver without restarting x window?
Hello, I have an elographics touch screen (serial port) working with xfree86 in Debian system. It works when the X window starts. But after calibrating it, I should restart X window to use new settings. 1. Is it possible to use the new settings after calibrating the touch screen without restarting the x window or rebooting the system? 2. Is it possible to stop and restart a driver of xfree86 (such as touch screen driver, mouse driver or monitor driver) without without restarting the x window or rebooting the system? Many Thanks H Zheng ___ XFree86 mailing list XFree86@XFree86.Org http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver can't suport depth 24
Motherboard = ASUS P$S533 redhat 9 driver cannot suport depth 24 Do you Yahoo!? Yahoo! Small Business - Try our new resources site!
[XFree86] Driver Problem in S3 Prosavage KM133 Video Card
Hi My hardware configuration is Processor : AMD Athlon XP ViA Chipset, S3 Prosavage KM133 Video Card and Samtron 56v monitor I installed Redhat Linux 9 on my machine. While installing it doesn't detected GUI. So I installed in text mode. After that I logged in using text mode and started the xserver by #startx the screen is blinking and it is loading the GUI. In net I found that problem is by the video driver. So can you help me to work in GUI mode ? Thanks Jayaprakash Chandrasekaran ___ XFree86 mailing list XFree86@XFree86.Org http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver for VIA KM400 in Mandrake 9.2
I have Mandrake 9.2 installed in an Asus A7V8X-MX motherboard with chipset VIA KM400. Video driver being used after installation is Vesa. XFree86 version is 4.3.0. Looking in XFree86 resources page, current video drivers, I knew there is a VIA driver. A VIA driver exists in my installation, and when I type "man via" I read: "The via driver supports the VIA CLE266 (CLE3122, CLE3022) chipset video and the VIA KM400/K8M800 VT3204/5/7204/5 video, including 2D acceleration and the Xv video overlay extensions. Flat panel, TV and VGA outputs are supported." However, trying to change the video driver manually, using Mandrake configuration software or xf86config, I can find no mention to VIA or KM400 in video cards database. May I get some help to install the VIA driver? ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver for Acer Travelmate291
On Tue, 2004-02-24 at 03:52, Christoph Ludwig wrote: > Hello, > > On my Acer Notebook Travelmate 291LCI with a 1400x1050 LCD > I get only a resolution of 1280x1024. > > I use Suse-Linux 9.0 with XFree86 Version 4.3.0.1 > Configuration tool was sax2 with the following options: > Monitor: LCD [EMAIL PROTECTED] > Graphics: Intel 855GM > > I have tried different monitors: > LCD 1400x1050 (Acer Travelmate 800) > LCD [EMAIL PROTECTED] > LCD [EMAIL PROTECTED] > LCD [EMAIL PROTECTED] > ... with no better result > > Do I need an newer driver or do I use a wong configuration ?? > Please help So what driver are you using? http://www.xfree.org/help.html suggests "it is usually a good idea to include with your message a copy of your XFree86 log file (/var/log/XFree86.0.log) and XF86Config file". -- - Ron Johnson, Jr. [EMAIL PROTECTED] Jefferson, LA USA "Adventure is a sign of incompetence" Stephanson, great polar explorer ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver for Acer Travelmate291
Hello, On my Acer Notebook Travelmate 291LCI with a 1400x1050 LCD I get only a resolution of 1280x1024. I use Suse-Linux 9.0 with XFree86 Version 4.3.0.1 Configuration tool was sax2 with the following options: Monitor: LCD [EMAIL PROTECTED] Graphics: Intel 855GM I have tried different monitors: LCD 1400x1050 (Acer Travelmate 800) LCD [EMAIL PROTECTED] LCD [EMAIL PROTECTED] LCD [EMAIL PROTECTED] ... with no better result Do I need an newer driver or do I use a wong configuration ?? Please help Christoph ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver
Jerry robards wrote: Is there a driver update for sis 5598/6326? Jerry Robards www.winischhofer.net/linuxsisvga.shtml -- Thomas Winischhofer Vienna/Austria thomas AT winischhofer DOT net http://www.winischhofer.net/ twini AT xfree86 DOT org ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver
Is there a driver update for sis 5598/6326? Jerry Robards <>
[XFree86] Driver
Please send me the driver. ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver
I am trying to find a driver for S3Virge DX/GX to ryn Windows XP. Can you help? W Kelly
[XFree86] driver for a ProSavage-DDR400
Hi there, since the XFree86 4.4 is about to release, I'd like to know whether it would be possible to obtain a driver for the ProSavage DDR400 (which should support what Acer describes as chipset-integrated S3 Graphics Savage8â AGP graphics core with default shared memory up to 64MB) that would be compatible with the 4.3 release, so that it won't be necessary to update the X server. Thanks for your help, Pablo ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver
Hello!! I lost my disk-driver for " S3 Virge/DXD5" I need to charge a new operating systen in my P.C. Can you help me sending a driver for Windows NT? Thanks
[XFree86] Driver help
Im trying to find a sis video driver for my video card to access my higher resolution,thanks for any responses. Christopher Duran [EMAIL PROTECTED] Why Wait? Move to EarthLink.
[XFree86] driver cannot support deapth 24?
Hi, I have an older, (late 90's vintage Pentium Pro) computer that I am hoping to convert to run MSC linux, for which I have a set of V2001 CD's. I am booting off their distribution CD with a essentially blank, NTFS formatted secondary 18G Hard disk where I wanted to install the OS and apps. In attepting the installation I get these last two "server" errors- (EE) VGA(0): Driver Can't support depth 24 and (EE) Screen(s) found, but none have a usable configuration. followed by; Fatal Server Error: no screens found. This machine has an Elsa Gloria SVGA graphics card but I don't know how linux is supposed to recognize that? Is it something I should go and manually edit on the pre-boot system config screen? I know it tells me I should be reporting the whole server output instead of just the end of the message, but I don't know linux command line stuff well enough to accress the file you point me to. The last error message I see is this; XIO: fatal error 104 (Connection reset by peer) on X server ":0.0" after 0 requests (0 known processed) with 0 events remaining then I get a "Welcome to MSC.Linux 2001" header followed by a direction to login as root, where I find myself staring at a blinking dollar sign prompt, just like my old days on the VAX-80, but I can't seem to tell it to do anything beyond that. by the way- the kernal number is 2.4.6-1.msc-smp Any suggestions on where to look or what to try to fix this up? Thanks Pete Soper Berkeley CA
[XFree86] Driver for ATI Mobility M3
Hi!!! I'm installing a Java Desktop from SUN on my laptop, but when i finished the installation and reboot it the system not entry to graphic mode, the system send me a error like: (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found My laptop is a DELL Latitude C600/c500 with ATI Mobility 3M !!! What is the solution? ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver issue.
I have an ATI Radeon 7000 64MB SDR TVO and can not get this card to work with XFree. I tried 4.3.0 with and without hardware acceleration. I tried re-installing Linux(Mandrake 9.1) multiple times, but every time XFree would not start, when I viewed the log, it said there was no valid resolutions. I no longer have the log, re-installed with a GeForce 3 instead. The Radeon is working good in my Winblows box... If this is an issue that you would be interested in, I could swap the video cards again to try to get an error log... But I'm not sure how I would send you the log, I myself have no clue how to access the net via the Linux command line interface... saving it to a floppy would be pretty difficult... Logan _ Crave some Miles Davis or Grateful Dead? Your old favorites are always playing on MSN Radio Plus. Trial month free! http://join.msn.com/?page=offers/premiumradio ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver for ATI Radeon 9600 Pro
Hi, i didn't find video driver for ATI Radeon 9600 Pro for XFree86 for my RedHat Linux9 desktop. but video drivers are available for next version like 9700 Pro, not for 9600Pro. is there any problem with 9600Pro.. regards/Narendra ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver for ATI Radeon IGP 340M
Actually I think the IGP code went in after 4.3.0 was released. you may need to use the driver from CVS. Also if you want 3D support to need to use this patch: http://bugs.xfree86.org/show_bug.cgi?id=314 Alex On Tue, 2003-10-07 at 16:23, =?iso-8859-1?B?SXNpZG9ybyBUcmV2afFv ?= wrote: > Sir, I have an ATI Radeon IGP 340M and I wish you could tell me which driver I \ > should use and how I can configure it. > Thanks You should run XFree86 4.3.0 or later and use the "radeon" driver. Something like this for your device section: Section "Device" Identifier "Mobility" Driver "radeon" VendorName "ATI" BoardName "IGP 340M" Screen 0 EndSection Regards, Brandon Wittenburg __ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver for ATI Radeon IGP 340M
On Tue, 2003-10-07 at 16:23, =?iso-8859-1?B?SXNpZG9ybyBUcmV2afFv ?= wrote: > Sir, I have an ATI Radeon IGP 340M and I wish you could tell me which driver I > should use and how I can configure it. > > Thanks You should run XFree86 4.3.0 or later and use the "radeon" driver. Something like this for your device section: Section "Device" Identifier "Mobility" Driver "radeon" VendorName "ATI" BoardName "IGP 340M" Screen 0 EndSection Regards, Brandon Wittenburg ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver for ATI Radeon IGP 340M
Sir, I have an ATI Radeon IGP 340M and I wish you could tell me which driver I should use and how I can configure it. Thanks -- Powered by Outblaze ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver compatibility
Dear sir, I have installed linux 8 red hat in my pc whose configuration is PIV0-2.40 GHz and 845gbve2 board. xwindow does not started. please suggest me what to do?. Thanking you. ___ Meet your old school or college friends from 1 Million + database... Click here to reunite www.batchmates.com/rediff.asp ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
RE: [XFree86] Driver problem for RADEON 9100
On Sun, 2003-08-17 at 18:49, Alexander Stohr wrote: > (WW) RADEON(0): Mode 640x480 is out of range. > (WW) RADEON(0): Valid modes must be between 320x200-0x0 > (II) RADEON(0): Total number of valid FP mode(s) found: 0 > (EE) RADEON(0): No valid mode found for this DFP/LCD > > (EE) Screen(s) found, but none have a usable configuration. > > Let me say, there must be some driver problem. > I think the major problem for setting up a cloned > LCD/DFP mode is the lack of DDC detected modes > for the 2nd port, so the driver is unable to clone any mode at all. > > i would like to pass that on to the experts. > i dont know if using a snapshot version of the drivers > or of X11 will help in any way. Assuming this is from 4.3, a snapshot driver will likely help. -- Earthling Michel Dänzer \ Debian (powerpc), XFree86 and DRI developer Software libre enthusiast \ http://svcs.affero.net/rm.php?r=daenzer ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
RE: [XFree86] Driver problem for RADEON 9100
(WW) RADEON(0): monitor1: Using default hsync range of 28.00-33.00kHz (WW) RADEON(0): monitor1: using default vrefresh range of 43.00-72.00Hz (II) RADEON(0): Clock range: 20.00 to 350.00 MHz (II) RADEON(0): Not using default mode "800x600" (hsync out of range) (II) RADEON(0): Not using mode "800x600" (no mode of this name) (--) RADEON(0): Virtual size is 640x480 (pitch 640) (**) RADEON(0): *Mode "800x600" (**) RADEON(0): *Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz (II) RADEON(0): Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (II) RADEON(0): Valid Clone Mode: 640x480 (II) RADEON(0): Total of 1 clone modes found (II) RADEON(0): Total number of valid DDC mode(s) found: 0 (WW) RADEON(0): Mode 800x600 is out of range. (WW) RADEON(0): Valid modes must be between 320x200-0x0 (WW) RADEON(0): Mode 640x480 is out of range. (WW) RADEON(0): Valid modes must be between 320x200-0x0 (II) RADEON(0): Total number of valid FP mode(s) found: 0 (EE) RADEON(0): No valid mode found for this DFP/LCD (EE) Screen(s) found, but none have a usable configuration. Let me say, there must be some driver problem. I think the major problem for setting up a cloned LCD/DFP mode is the lack of DDC detected modes for the 2nd port, so the driver is unable to clone any mode at all. i would like to pass that on to the experts. i dont know if using a snapshot version of the drivers or of X11 will help in any way. -Original Message- From: ddeki [mailto:[EMAIL PROTECTED] Sent: Sunday, August 17, 2003 17:50 To: [EMAIL PROTECTED] Subject: [XFree86] Driver problem for RADEON 9100 Hi I have a problem whit drivers for my graphic card RADEON 9100, I tray whit ati and radeon drivers and still is the same problem. The config and log file is attached. Thanks Dejan Bogoevski Macedonia [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver problem for RADEON 9100
Hi I have a problem whit drivers for my graphic card RADEON 9100, I tray whit ati and radeon drivers and still is the same problem. The config and log file is attached. Thanks Dejan Bogoevski Macedonia [EMAIL PROTECTED] [EMAIL PROTECTED] ati XFree86.0.log Description: Binary data ati XF86Config-4 Description: Binary data RADEON XF86Config-4 Description: Binary data RADEON XFree86.0.log Description: Binary data
Re: [XFree86] Driver Problem
You need to be using XFree86 4.3. It's not supported in older versions. Mark. On Thu, 31 Jul 2003, RED_KOMISSAR wrote: > Hi! > I have a card GeForce FX 5200 AGP8x. > What should I choose as a Video Card? For any kind of GeForce it > gives an error. I have a FreeBSD 4.8 operating system. > > Thank you for support! > > > -- > RED_KOMISSAR > [EMAIL PROTECTED] uin: 801960 > > ERNESTO FERNANDO SANCHEZ > Paramaribo (Suriname) > > > ___ > XFree86 mailing list > [EMAIL PROTECTED] > http://XFree86.Org/mailman/listinfo/xfree86 > ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver Problem
Hi! I have a card GeForce FX 5200 AGP8x. What should I choose as a Video Card? For any kind of GeForce it gives an error. I have a FreeBSD 4.8 operating system. Thank you for support! -- RED_KOMISSAR [EMAIL PROTECTED] uin: 801960 ERNESTO FERNANDO SANCHEZ Paramaribo (Suriname) ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver Cirrus logic gd-546x vga
On Sun, Jul 13, 2003 at 04:44:12AM -0500, Andy Goth wrote: > On Sunday, July 13, 2003 3:10 am, Giacomo wrote: > > ho un problema con la scheda video integrata su un IBM CIRRUS LOGIC GD-546X > > VGA, e no riesco a trovare il driver > > Attempted translation: > I have a problem with my integrated video card, an "IBM CIRRUS LOGIC GD-546X > VGA", and I am not able to find a driver. > > Have you tried the "cirrus" driver that comes with XFree86 4.3.0? Or even > "vesa" or simply "vga"? the 546x is a laguna chip, so use the "cirrus" driver, and it'll load the laguna sub driver. DF ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver Cirrus logic gd-546x vga
On Sunday, July 13, 2003 3:10 am, Giacomo wrote: > ho un problema con la scheda video integrata su un IBM CIRRUS LOGIC GD-546X > VGA, e no riesco a trovare il driver Attempted translation: I have a problem with my integrated video card, an "IBM CIRRUS LOGIC GD-546X VGA", and I am not able to find a driver. Have you tried the "cirrus" driver that comes with XFree86 4.3.0? Or even "vesa" or simply "vga"? -- Andy Goth | [EMAIL PROTECTED] | http://ioioio.net/ End communication. ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver Cirrus logic gd-546x vga
ho un problema con la scheda video integrata su un IBM CIRRUS LOGIC GD-546X VGA, e no riesco a trovare il driver
RE: [XFree86] driver
We haven't got any of those here. Try microsoft's website or the website for the manufacturer (S3) of your video card. -Original Message- From: Fabrizio [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 9:36 AM To: [EMAIL PROTECTED] Subject: [XFree86] driver Salve vorrei avere i driver per S3 VIRGE/DX ( tornado) per Win ME Grazie ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver
Salve vorrei avere i driver per S3 VIRGE/DX ( tornado) per Win ME Grazie
Re: [XFree86] Driver for Trident XP4 m32
On Thu, Jun 26, 2003 at 08:14:10AM -0400, Jaroslav Kautsky wrote: > (sending again after subscribing and hoping for response :) > > > I am looking for a driver for Trident XP4 m32LP in the Toshiba > Portege R100 notebook. > > I have looked at http://www.xfree86.org/~alanh/ where some drivers > under development are mentioned. > > I would appreciate information if some suitable driver for the above > mentioned configuration exists and can be tried. No driver exists yet for this chip, so your left with the vesa driver for unaccelerated support. Alan. ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver for Trident XP4 m32
(sending again after subscribing and hoping for response :) I am looking for a driver for Trident XP4 m32LP in the Toshiba Portege R100 notebook. I have looked at http://www.xfree86.org/~alanh/ where some drivers under development are mentioned. I would appreciate information if some suitable driver for the above mentioned configuration exists and can be tried. -- Kind regards, Jerry - - - - - - - - - - - - - Dr. Jaroslav Kautsky Phone : +61-8-8201 2360 School of Informatics and Engineering Mobile: 0414 190 109 Flinders UniversityFAX : +61-8-8201 2904 GPO Box 2100 ADELAIDE SA 5001, Australia email: [EMAIL PROTECTED] WWW: http://www.mathstat.flinders.edu.au/maths/Staff/kautsky.html ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
RE: [XFree86] Driver for Trident XP4 m32
I have installed DRI and X, but I keep getting the message that the X11 driver is not configured for OpenGL. Also, direct rendering is turned off. I'm using Debian Woody, X 4.3.99.5, Mesa-5.01, and an ATI Rage128. Can anybody assist me? Thank you. Sincerely, Iain Marcuson. ___ Join Excite! - http://www.excite.com The most personalized portal on the Web! XFREE86.0 Description: Binary data
[XFree86] Driver for Trident XP4 m32
I am looking for a driver for Trident XP4 m32LP in the Toshiba Portege R100 notebook. I have looked at http://www.xfree86.org/~alanh/ where some drivers under development are mentioned. I would appreciate information if some suitable driver for the above mentioned configuration exists and can be tried. -- Kind regards, Jerry - - - - - - - - - - - - - Dr. Jaroslav Kautsky Phone : +61-8-8201 2360 School of Informatics and Engineering Mobile: 0414 190 109 Flinders UniversityFAX : +61-8-8201 2904 GPO Box 2100 ADELAIDE SA 5001, Australia email: [EMAIL PROTECTED] WWW: http://www.mathstat.flinders.edu.au/maths/Staff/kautsky.html ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] xfree86 driver implementation
Mark thanks for your help. I tryed to rewrite glide driver and it seems to be the right way. Jaroslav On Friday 30 May 2003 21:17, Mark Vojkovich wrote: >It seems likely that this device was never intended for anything > other than video. You can probably run X on it with a shadow framebuffer. > See the glide driver. It renders to the 3Dfx Voodoo 1 and 2 boards > by putting the framebuffer in system memory and then copying rectangles > over to the real framebuffer using the Glide(tm) library. You could > have a shadowFB RefreshArea function that did the colorspace conversion > from RGB into YUV. > > Mark. > > On Fri, 30 May 2003, Jaroslav Vozab wrote: > > Hi, > > I try to implement xfree86 driver for one of IBM PPC based chips. > > Graphics of this chip is not based on RGB colorspace but on YUV > > colorspace and there are two planes one for Y and one for UV. I have no > > idea how to implement it. I can mmap the video memory but i have no idea > > how to describe how the data should be displayed. Is there any > > possibility to set a callback function that draws pixel? Or is possible > > to describe the format? Or is there any other possibilyty how to do it? > > > > Jaroslav > > > > ___ > > XFree86 mailing list > > [EMAIL PROTECTED] > > http://XFree86.Org/mailman/listinfo/xfree86 > > ___ > XFree86 mailing list > [EMAIL PROTECTED] > http://XFree86.Org/mailman/listinfo/xfree86 ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] xfree86 driver implementation
It seems likely that this device was never intended for anything other than video. You can probably run X on it with a shadow framebuffer. See the glide driver. It renders to the 3Dfx Voodoo 1 and 2 boards by putting the framebuffer in system memory and then copying rectangles over to the real framebuffer using the Glide(tm) library. You could have a shadowFB RefreshArea function that did the colorspace conversion from RGB into YUV. Mark. On Fri, 30 May 2003, Jaroslav Vozab wrote: > Hi, > I try to implement xfree86 driver for one of IBM PPC based chips. Graphics of > this chip is not based on RGB colorspace but on YUV colorspace and there are > two planes one for Y and one for UV. I have no idea how to implement it. I > can mmap the video memory but i have no idea how to describe how the data > should be displayed. Is there any possibility to set a callback function that > draws pixel? Or is possible to describe the format? Or is there any other > possibilyty how to do it? > > Jaroslav > > ___ > XFree86 mailing list > [EMAIL PROTECTED] > http://XFree86.Org/mailman/listinfo/xfree86 > ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] xfree86 driver implementation
Hi, I try to implement xfree86 driver for one of IBM PPC based chips. Graphics of this chip is not based on RGB colorspace but on YUV colorspace and there are two planes one for Y and one for UV. I have no idea how to implement it. I can mmap the video memory but i have no idea how to describe how the data should be displayed. Is there any possibility to set a callback function that draws pixel? Or is possible to describe the format? Or is there any other possibilyty how to do it? Jaroslav ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
S3 ViRGE - was (Re: [XFree86] Driver)
> > Please can you tell me where I might be able to find and download the following > driver > > ViRGE GX2 V3.42.02 > > Thanks for any help > > Stephen Jackson For what OS? XFree86 with ViRGE drivers is available from http://www.xfree86.org . Windows drivers for ViRGE ship with the OS, and are also available from http://www.s3graphics.com -- Kevin ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver
Please can you tell me where I might be able to find and download the following driver ViRGE GX2 V3.42.02 Thanks for any help Stephen Jackson
Re: [XFree86] Driver
Hi Alex, The ViRGE GX2 is supported by XFree86 4.3.0 on Unix operating systems. Downloads of XFree86 are available from http://www.xfree86.org . The binaries are in ftp://ftp.xfree86.org/pub/XFree86/4.3.0/ -- Kevin ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver
To whom it may concern. I am facing some problem on downloading the driver for below chipset. Could you please find me the exactly website to get the driver please. Thank you. S3 VIRGE/GX2 86C357 (AGP) Regards, Alex
Re: [XFree86] driver for ATI Xpert98 AGP under Xfree86 4.3?
On Fri, 28 Feb 2003, Reid Vail wrote: > I have this older ATI card (Xpert 98 AGP) and am wondering if theATI > driver that runs under Xfree86 4.3 supports the AGP functionality? The > Xfree86 site which references this seems pretty ambigious to me. It > says it supports the Rage classd. But the old Xfree 3.3.6 looks more > comprehensive, but am not sure if I need to get that Xfree86 version loaded. Use 4.3. I'm not sure whether the 4.3 driver will use the extra functionality of the AGP bus, but if it doesn't 3.3.6 certainly wont. I have an Xpert98 PCI and an Xpert99 AGP running with 4.2 and 4.3 - I'm reasonable certain that 4.3 supports the Xpert98 AGP as well. -- Dr. Andrew C. Aitchison Computer Officer, DPMMS, Cambridge [EMAIL PROTECTED] http://www.dpmms.cam.ac.uk/~werdna ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver for ATI Xpert98 AGP under Xfree86 4.3?
I have this older ATI card (Xpert 98 AGP) and am wondering if theATI driver that runs under Xfree86 4.3 supports the AGP functionality? The Xfree86 site which references this seems pretty ambigious to me. It says it supports the Rage classd. But the old Xfree 3.3.6 looks more comprehensive, but am not sure if I need to get that Xfree86 version loaded. thx Reid ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] RE: i810 xfree86 driver & tv-out
Hi, I was wondering if you could implement tv-out capability for the i810 in xfree86. So far I can view only the console in linux, and not xfree86. I would greatly appreciate it. I am willing to test it out for you if you like. ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver nVidia
On Thu, 20 Feb 2003, Jeremy D'Inverno wrote: > You are using the "nv" driver that comes with XFree86 yet you are trying to load the glx module from NVIDIA's binary drivers. If you want to use the "nv" driver that comes with XFree86 then uninstall NVIDIA's drivers, in particular, remove NVIDIA's /usr/X11R6/lib/modules/extensions/libglx.so. Mark. ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver nVidia
XFree86 Version 4.2.1 / X Window System (protocol Version 11, revision 0, vendor release 6600) Release Date: 3 September 2002 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (See http://www.XFree86.Org/) Build Operating System: Linux 2.4.18-23mdkenterprise i686 [ELF] Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/XFree86.0.log", Time: Sun Feb 16 12:45:48 2003 (==) Using config file: "/etc/X11/XF86Config-4" (==) ServerLayout "layout1" (**) |-->Screen "screen1" (0) (**) | |-->Monitor "monitor1" (**) | |-->Device "device1" (**) |-->Input Device "Keyboard1" (**) Option "XkbModel" "pc105" (**) XKB: model: "pc105" (**) Option "XkbLayout" "fr_CH" (**) XKB: layout: "fr_CH" (WW) Option "XkbOptions" requires an string value (==) Keyboard: CustomKeycode disabled (**) |-->Input Device "Mouse1" (**) FontPath set to "unix/:-1" (==) RgbPath set to "/usr/X11R6/lib/X11/rgb" (==) ModulePath set to "/usr/X11R6/lib/modules" (**) Option "AllowMouseOpenFail" Using vt 7 (--) using VT number 7 (II) Open APM successful (II) Module ABI versions: XFree86 ANSI C Emulation: 0.1 XFree86 Video Driver: 0.5 XFree86 XInput driver : 0.3 XFree86 Server Extension : 0.1 XFree86 Font Renderer : 0.3 (II) Loader running on linux (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.2.1, module version = 1.0.0 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.3 (II) Loading font Bitmap (II) LoadModule: "pcidata" (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="The XFree86 Project" compiled for 4.2.1, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) PCI: Probing config type using method 1 (II) PCI: Config type is 1 (II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 10b9,1647 card , rev 04 class 06,00,00 hdr 00 (II) PCI: 00:01:0: chip 10b9,5247 card , rev 00 class 06,04,00 hdr 01 (II) PCI: 00:02:0: chip 10b9,5237 card 10b9,5237 rev 03 class 0c,03,10 hdr 00 (II) PCI: 00:04:0: chip 10b9,5229 card 1043,8053 rev c4 class 01,01,fa hdr 00 (II) PCI: 00:06:0: chip 10b9,5237 card 10b9,5237 rev 03 class 0c,03,10 hdr 00 (II) PCI: 00:07:0: chip 10b9,1533 card 10b9,1533 rev 00 class 06,01,00 hdr 00 (II) PCI: 00:09:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00 (II) PCI: 00:0a:0: chip 1013,6003 card 1681,a010 rev 01 class 04,01,00 hdr 00 (II) PCI: 00:0d:0: chip 9004,8178 card , rev 00 class 01,00,00 hdr 00 (II) PCI: 00:11:0: chip 10b9,7101 card , rev 00 class 06,80,00 hdr 00 (II) PCI: 01:00:0: chip 10de,0171 card 1462,8730 rev a3 class 03,00,00 hdr 00 (II) PCI: End of PCI scan (II) LoadModule: "scanpci" (II) Loading /usr/X11R6/lib/modules/libscanpci.a (II) Module scanpci: vendor="The XFree86 Project" compiled for 4.2.1, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) UnloadModule: "scanpci" (II) Unloading /usr/X11R6/lib/modules/libscanpci.a (II) Host-to-PCI bridge: (II) PCI-to-ISA bridge: (II) PCI-to-PCI bridge: (II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus 0 I/O range: [0] -1 0x - 0x (0x1) IX[B] (II) Bus 0 non-prefetchable memory range: [0] -1 0x - 0x (0x0) MX[B] (II) Bus 0 prefetchable memory range: [0] -1 0x - 0x (0x0) MX[B] (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x08 (VGA_EN is set) (II) Bus 1 I/O range: (II) Bus 1 non-prefetchable memory range: [0] -1 0xee00 - 0xef5f (0x160) MX[B] (II) Bus 1 prefetchable memory range: [0] -1 0xef70 - 0xfbff (0xc90) MX[B] (II) Bus -1: bridge is at (0:7:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus -1 I/O range: (II) Bus -1 non-prefetchable memory range: (II) Bus -1 prefetchable memory range: (--) PCI:*(1:0:0) NVidia 0x0171 rev 163, Mem @ 0xee00/24, 0xf000/27, 0xef80/19, BIOS @ 0xef7e/17 (II) Addressable bus resource ranges are [0] -1 0x - 0x (0x0) MX[B] [1] -1 0x - 0x (0x1) IX[B] (II) OS-reported resource ranges: [0] -1 0xffe0 - 0x (0x20) MX[B](B) [1] -1 0x0010 - 0x3fff (0x3ff0) MX[B]E(B) [2] -1 0x000f - 0x000f (0x1) MX[B] [3] -1 0x000c - 0x000e (0x3) MX[B] [4] -1 0x - 0x0009 (0xa) MX[B] [5] -1 0x - 0x (0x1) IX[B] [6] -1 0x - 0x00ff (0x100) IX[B] (II) Active PCI resource ranges: [0] -1 0xea00 - 0xea000fff (0x1000) MX[B] [1] -1 0xea80 - 0xea8f (0x10) MX[B] [2] -1 0xeb00 - 0xeb000fff
[XFree86] Driver SIS650 64MB shared
Salve non riesco a configurare la mia scheda video help
Re: [XFree86] driver for intel original 845GLAD motherboard
Hi, rinku deopura wrote: dear sir, I have installed redhat linux 8.0 on my computer but it does not support my vedio card and sound card so please tell me about drivers availability.you please quickly mail me your reply i have urgently required these drivers.i had also search on internet. Date:6 Feb 2003 yours rinku Take a look at: http://www.mail-archive.com/xfree86@xfree86.org/msg00515.html Best Regards Hans Öfverbeck ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] driver
S3 Virge/GX for Windows 98. Ich kuke.
[XFree86] driver for intel original 845GLAD motherboard
dear sir, I have installed redhat linux 8.0 on my computer but it does not support my vedio card and sound card so please tell me about drivers availability.you please quickly mail me your reply i have urgently required these drivers.i had also search on internet. Date:6 Feb 2003 yours rinku -- ___ Get your free email from http://www.indiya.com Powered by Outblaze ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver for Radeon Mobility 7500
Quoting John Tapsell <[EMAIL PROTECTED]>: > The ATI Mobility card (I think) is an R200 core. > Both 2D and 3D will be supported in XFree86 4.3.0. Any word on higher resolutions (e.g. 1600x1024 and 1920x1200) via the DVI port? (R200/7500 or 8500) Previous efforts appeared to be limited to 1280x1024. tia for any enlightenment, Jean. ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver for Radeon Mobility 7500
The ATI Mobility card (I think) is an R200 core. Both 2D and 3D will be supported in XFree86 4.3.0. On Thursday 30 January 2003 9:34 pm, Mark Collins wrote: > Can someone recommend a driver and/or Xserver for a > Radeon Mobility 7500? > > I have been able to get it to work using fbdev, but > only with mediocre results. If I use fbdev in XFree86 > 3.3.6 I have good screen resolution, but choppy > graphics when moving windows, scolling in text, etc. > When I use fbdev in XFree 4.2.1 I get good graphics > motion, but the resolution is incorrect and I can't > seem to alter it. > > I am running Mandrake 8.2/9.0. Any advice? > > Thanks > > = > > > __ > Do you Yahoo!? > Yahoo! Mail Plus - Powerful. Affordable. Sign up now. > http://mailplus.yahoo.com > ___ > XFree86 mailing list > [EMAIL PROTECTED] > http://XFree86.Org/mailman/listinfo/xfree86 ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver for Radeon Mobility 7500
Can someone recommend a driver and/or Xserver for a Radeon Mobility 7500? I have been able to get it to work using fbdev, but only with mediocre results. If I use fbdev in XFree86 3.3.6 I have good screen resolution, but choppy graphics when moving windows, scolling in text, etc. When I use fbdev in XFree 4.2.1 I get good graphics motion, but the resolution is incorrect and I can't seem to alter it. I am running Mandrake 8.2/9.0. Any advice? Thanks = __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR
If you don't want to use NVIDIA's binary drivers, this chip is also supported in XFree86 CVS. The last binary snapshot of CVS was 4.2.99.3 which is available at ftp.xfree86.org in the snapshots directory. This chip was released after the last official XFree86 release, which is why it's only supported in CVS. Only the binary drivers from NVIDIA's web site support OpenGL acceleration, however. Mark. On Mon, 13 Jan 2003, Robin Rosenberg wrote: > The impatient can go to >http://www.nvidia.com/view.asp?IO=linux_display_ia32_1.0-4191 and > get a driver (non-free, but gratis). > > > From: Riccardo de Sangro <[EMAIL PROTECTED]> > > > > >To: [EMAIL PROTECTED] > > >Reply-To: [EMAIL PROTECTED] > > >Content-Type: text/plain; charset=US-ASCII > > >Subject: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR > > > > > >Hi all, > > > I have a DELL notebook with a very nice 1600x1200 display, but > > >installing Linux RH 8.0 I discovered that the NVIDIA card I have listed > > >in the subject line is not yet supported (I have checked the XFree86 > > >site). > > ___ > XFree86 mailing list > [EMAIL PROTECTED] > http://XFree86.Org/mailman/listinfo/xfree86 > ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR
The impatient can go to http://www.nvidia.com/view.asp?IO=linux_display_ia32_1.0-4191 and get a driver (non-free, but gratis). > From: Riccardo de Sangro <[EMAIL PROTECTED]> > > >To: [EMAIL PROTECTED] > >Reply-To: [EMAIL PROTECTED] > >Content-Type: text/plain; charset=US-ASCII > >Subject: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR > > > >Hi all, > > I have a DELL notebook with a very nice 1600x1200 display, but > >installing Linux RH 8.0 I discovered that the NVIDIA card I have listed > >in the subject line is not yet supported (I have checked the XFree86 > >site). ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
Re: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR
On Mon, 13 Jan 2003, Riccardo de Sangro wrote: >Date: Mon, 13 Jan 2003 11:10:24 +0100 >From: Riccardo de Sangro <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >Content-Type: text/plain; charset=US-ASCII >Subject: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR > >Hi all, > I have a DELL notebook with a very nice 1600x1200 display, but >installing Linux RH 8.0 I discovered that the NVIDIA card I have listed >in the subject line is not yet supported (I have checked the XFree86 >site). > >Does anyone knows if such driver already exists and if/when will be >available, or if there is a way I can fiddle with the conf file(s) to >make the present driver work? Red Hat Linux 8.0 comes with XFree86 4.2.0, which does not support the GeForce 4 series of hardware. XFree86 development code contains such support however, and the next release of Red Hat Linux will have this support later this year. -- Mike A. Harris ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86
[XFree86] Driver for NVIDIA GeForce4 440 Go DDR
Hi all, I have a DELL notebook with a very nice 1600x1200 display, but installing Linux RH 8.0 I discovered that the NVIDIA card I have listed in the subject line is not yet supported (I have checked the XFree86 site). Does anyone knows if such driver already exists and if/when will be available, or if there is a way I can fiddle with the conf file(s) to make the present driver work? Thanks a lot Riccardo ___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86