similar to: STRANGE MOUSE POINTER BEHAVIOUR - CENTOS-5

Displaying 20 results from an estimated 10000 matches similar to: "STRANGE MOUSE POINTER BEHAVIOUR - CENTOS-5"

2007 Aug 29
1
nVdia C15G chipset and GeForce 6100 on board graphix controller
Hi, Apologies for the long post - but I'm being driven crazy by this problem. A while ago I built a new server that is intended to serve as a Xen server running multiple DomU systems used a test environments for systems that I am working on. The host Xen system will be CentOS 5 as will some of the DomU systems. The systems will all be hardware virtualized. The motherboard uses the nVidia
2007 Mar 23
4
DISAATER RECOVERY PROBLEM
Hi Guys, I am trying to set up a quick disaster recovery methodology for a client. It is supposed to work as follows:- All Data files , everything in /etc (except for a few hardware specific files such as fstab), all users .bashrc and .netrc files, all cron tables etc. is written to a DVD as a zipped tar file. A recovery script that unpacks this file, creates any directories required by the
2008 Jul 15
8
SERIOUSLY OT STREAM EDITING IMAGES
Hi All, I have been Googling my head off but cannot find a method to stream edit all the images in a directory and to resize them. I have a large number of images of up to 3GB in size that I want to put in albums on a website, but before I do this I need to resize them to a more realistic configuration. I know how to do this manually with the GIMP but it becomes tedious for more than a few
2008 Mar 03
2
RESTORING THUNDERBIRD FILES
Hi All, Last night I downloaded the latest security updates to my Centos 4 system, and rebooted afterwards. This morning I wanted to check my mail, but when I opened Thunderbird, it asked me to set up a mail account. I saved the contents of the previous .thunderbird file structure with tar and created a new mail account with the same details (name, isp, pasword, servers etc.) as the
2008 Nov 18
2
Where do I find perl XML::Parser module
Hi, I am trying to install a package that requires the perl XML::Parser module. So far I have: Googled Installed rpmforge and yum priorities set priorities for all repositories used with rpmforge at 10 tried yum install perl-XML, yum install mod_perl-XML etc. and get response "Nothing to do" so what is the correct yum request to get this package installed. uname -a Linux xxx.co.za
2008 Jan 13
4
LIMITING NUMBER OF KERNEL VERSIONS RETAINED
Hi Some time ago there was a discussion on the above subject. I have scanned the past few month's mailing list archives and cannot find the relevant mail(s). Could somebody please repost the solution or point me at the correct resource. I would also appreciate advice on how to do this on a RHEL4 server being updated with up2date. Is it safe just to delete the old kernel and initrd
2012 Apr 27
3
OT Open Cobol
Hi, Has anyone on this list had any success with installing and using Open Cobol on RH or CentOS? Any pointers would be very welcome. I have Googled and am working with Vince on the Open Cobol mailing list to try to resolve installation problems. ChrisG
2008 Aug 27
1
Problems with writing Dual Layer DVD
Hi, I am running Centos 4 (fully updated on this box). I removed the old DVD writer (/dev/hdc) and installed a new LG GH20 "Internal Super Multi DVD Rewriter" with a SATA interface - this shows up as /dev/scd0. When I insert a pre-recorded DVD autorun mounts it and displays the contents without any hassles. It appears to me that the required kernel modules are loaded - as copied
2008 Apr 16
2
CONNECTING VIA SSH BETWEEN CENTOS 4 AND 5
Hi, I am trying to set up an automatic connection between CentOS 4 system (server) and a CentOS 5 DomU VM (client) via ssh to enable my to back up development files on the server to the client with a cron process. I generate they key pair without a pass phrase on the client and copy the public key to the same user's .ssh directory on the server as authorized_keys2. When I try to ssh to
2008 Sep 30
3
Firefox distorted printing
Hi, I am running a fully updated CentOS 4 box. Since the last few rounds of updates - upgrading to the latest Firefox, I find that I can not print Bank statements etc ( .ps files when saved to disk). The Bank's logo and any lines on the form print OK but the actual content is distorted beyond recognition - printing a series of special characters (!"$%&#'(") instead of
2010 Apr 05
2
Problem updating VM
Hi, I am trying to bring one of my CentOS 5 VMs up to date. I have run: yum clean all yum update yum yum clean all yum update python* rpm* yum clean all without any problems or error messages. Now when I try to run yum update, I get the following: [root at tusker ~]# yum update There was a problem importing one of the Python modules required to run yum. The error leading to this problem
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
>> Consider a case like the following: >> struct X { int a; int b[10]; }; >> int f(struct X* a) { a->b[-1] = 1; return a->a; } >> >> This is technically illegal code, but various programs depend on >> constructs like this working. >> Actually if you want to do bit-casting in C the usual way is to very carefully use an union which informs the
2010 Jun 17
2
[LLVMdev] Strange pointer aliasing behaviour
On Jun 17, 2010, at 12:22 AM, Eli Friedman wrote: > On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote: >>> There are essentially two ways to "solve" this issue: one is >>> type-based alias analysis, i.e. assuming "double" and "int" don't >>> alias; LLVM doesn't implement this at the moment. The other
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote: >> There are essentially two ways to "solve" this issue: one is >> type-based alias analysis, i.e. assuming "double" and "int" don't >> alias; LLVM doesn't implement this at the moment.  The other is to >> attempt to analyze the loop and prove that %indvar.i
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
On Wed, Jun 16, 2010 at 1:39 PM, Pierre C <lists at peufeu.com> wrote: > > I'm hitting a strange pointer aliasing "bug". Here is a test case : > > /* SOURCE CODE */ > > #define little_list_size 8 > > class LittleList1 { > public: >        int     _length; >        double  _data[ little_list_size ]; > >        LittleList1( int length ) >
2010 Jun 28
0
[LLVMdev] Strange pointer aliasing behaviour
I think scev-aa does not succeed on the original example, because front ends do not put "nsw" on signed addition, so according to llvm rules addition can overflow and i can be < 0. Also, if original example used unsigned type (e.g. size_t, which is very common), I don't think ir can express the fact that i is guaranted to be >= 0. Another line of reasoning is that if
2010 Jun 17
2
[LLVMdev] Strange pointer aliasing behaviour
On Jun 17, 2010, at 9:42 AM, Pierre C wrote: > >>> Consider a case like the following: >>> struct X { int a; int b[10]; }; >>> int f(struct X* a) { a->b[-1] = 1; return a->a; } >>> >>> This is technically illegal code, but various programs depend on >>> constructs like this working. >>> > > Actually if you want to
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
On 06/17/2010 06:19 PM, Jeffrey Yasskin wrote: > On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman <eli.friedman at gmail.com> wrote: >> On Wed, Jun 16, 2010 at 11:14 PM, Pierre C <lists at peufeu.com> wrote: >>>> There are essentially two ways to "solve" this issue: one is >>>> type-based alias analysis, i.e. assuming "double" and
2010 Jun 17
3
[LLVMdev] Strange pointer aliasing behaviour
> There are essentially two ways to "solve" this issue: one is > type-based alias analysis, i.e. assuming "double" and "int" don't > alias; LLVM doesn't implement this at the moment. The other is to > attempt to analyze the loop and prove that %indvar.i is never > negative; LLVM doesn't implement anything like this at the moment >
2010 Jun 17
0
[LLVMdev] Strange pointer aliasing behaviour
> Do you have a reference to the standard that makes it undefined? I'm second this question. I tried to find anything banning calculating address of one field from address of another in the standard some time ago, but could not find it. On Thu, Jun 17, 2010 at 6:19 PM, Jeffrey Yasskin <jyasskin at google.com> wrote: > On Thu, Jun 17, 2010 at 12:22 AM, Eli Friedman