A friend's machine (PCQ7.1) hangs mysteriously after an X crash. What we found was this:
When running at a high resolution, there is insufficient memory to load the direct rendering manager (drm), and the server runs properly.
When the resolution is lowered, there is more video memory available, and hence the drm is loaded. In particular, the RENDER extension, which is used for Anti Aliased fonts.
When drm is loaded, OpenGL programs crash X and the entire system. When drm is not loaded, OpenGL programs run slowly.
Any ideas?
The card is Matrox Millenium with 8MB VRAM.
Philip
--- Philip S Tellis philip.tellis@iname.com wrote:
A friend's machine (PCQ7.1) hangs mysteriously after an X crash. What we found was this: Any ideas?
The card is Matrox Millenium with 8MB VRAM.
[snip] philip...the issue that u mention is very strange...at FreeOS we used the Matrox cards 200 and the 400 series with veyr high resolutions. Frankly there weren't ny issues that we ever faced.
R these the same series of cards that u r makin use of...??
Trevor Warren
Philip
-- panic("esp: what could it be... I wonder..."); 2.2.16 /usr/src/linux/drivers/scsi/esp.c
===== ( >- LINUX, It's all about CHOICE -< ) /~\ __ http://www.trevorwarren.com __ /~\ | ) / mailto: trevorwarren@yahoo.com \ (/ | |_|_ \ Urgent ->9820349221@maxtouch.co.in / / _|_| ___________________________________/
__________________________________________________ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1
Hi Philip
i have attended regex seminar with Dinesh shah and other collegues there u said abt finding duplicates in a text file
Can u give me that regex....... i am desparentely trying to solve that but really cudnt solve that... using just regex
thanks Vikram
----- Original Message ----- From: "Philip S Tellis" < > To: "Linux Users" linuxers@mm.ilug-bom.org.in Sent: Thursday, October 04, 2001 4:44 PM Subject: [ILUG-BOM] X crashes mysteriously
A friend's machine (PCQ7.1) hangs mysteriously after an X crash. What we found was this:
When running at a high resolution, there is insufficient memory to load the direct rendering manager (drm), and the server runs properly.
When the resolution is lowered, there is more video memory available, and hence the drm is loaded. In particular, the RENDER extension, which is used for Anti Aliased fonts.
When drm is loaded, OpenGL programs crash X and the entire system. When drm is not loaded, OpenGL programs run slowly.
Any ideas?
The card is Matrox Millenium with 8MB VRAM.
Philip
-- panic("esp: what could it be... I wonder..."); 2.2.16 /usr/src/linux/drivers/scsi/esp.c
Visit my webpage at http://www.ncst.ernet.in/~philip/ Read my writings at http://www.ncst.ernet.in/~philip/writings/
MSN philiptellis Yahoo! philiptellis AIM philiptellis ICQ 129711328
Sometime on Oct 8, Vikram Ojha assembled some asciibets to say:
i have attended regex seminar with Dinesh shah and other collegues there u said abt finding duplicates in a text file
Ok, before I answer your question, I must ask you to please not include irrelevant mails in your posts. You included my mail about X crashing, which is totally irrelevant here.
Now, to your question. This should work, using grep to check words on one line:
grep -e "<([[:alpha:]]+)>[^[:alpha:]]+\1"
if you need to check for words across lines, then use sed:
<untested> sed -ne "h;n;x;G;/regex/p;x;" </untested>
This may require some additions, but I'll have to actually try it to know for sure.
In perl, just slurp the entire file ($/=undef), and do a single line match (m//s)
Philip