Bitcoin Forum

Bitcoin => Mining => Topic started by: gigabytecoin on May 08, 2011, 03:02:33 AM



Title: Using Ubuntu 11.04? Be sure not to move your mouse off of your main screen!
Post by: gigabytecoin on May 08, 2011, 03:02:33 AM
I have 4 * 5870s setup on one motherboard.

I have downclocked them and use a high -f value for poclbm so they are running cool enough - ~75-80C at most...

I (for some reason) took my mouse pointer and started dragging it off the screen, to the far right.

The computer immediately showed a black screen and said:

Code:
>> Starting CUPS spooler/server                                             [ok]
>> Checking battery status                                                  [ok]
>> Stopping System V runlevel compatibility                                 [ok]

I had to re-start and everything was all good again. I also double checked this behavior, it is most definitely caused by allowing your mouse to wonder... which worries me because I know some optical mice will simply do that given long periods of inactivity... Whenever I leave my mouse in the top right of the screen for example if I am watching something, it will occasionally and randomly move itself.

Has anybody else experienced this? Do you have any idea what could be causing it? Do you know how I can stop it!?

Specs:
Ubuntu 11.04 desktop 64 bit, latest poclbm, SDK 2.1, catalyst v11.4, 16gb usb as hdd... ask if you need more info.


Title: Re: Using Ubuntu 11.04? Be sure not to move your mouse off of your main screen!
Post by: ryepdx on May 16, 2011, 09:27:54 AM
Sounds like a memory problem. Could be your cards, could be your RAM. That's my best guess.


Title: Re: Using Ubuntu 11.04? Be sure not to move your mouse off of your main screen!
Post by: fpgaminer on May 16, 2011, 08:49:23 PM
I can confirm this. Same problem on my Ubuntu 11.04 (64-bit) machines. I also heard mention of it on an IRC chat. Apparently you need to edit xorg.conf and move the second screen over so that your mouse can't get to it. I haven't tried it yet since my machines are headless.

EDIT: Well I can't find any options in man xorg.conf to "move the screen over" which is what I remember someone suggesting. Perhaps the extra Screens can just be removed?


Title: Re: Using Ubuntu 11.04? Be sure not to move your mouse off of your main screen!
Post by: dingus on May 16, 2011, 09:49:36 PM
If you're using gnome, go down to where you can switch between desktops. Then, right click and go to preferences and set the number of desktops to 1.


Title: Re: Using Ubuntu 11.04? Be sure not to move your mouse off of your main screen!
Post by: humble on May 17, 2011, 12:11:25 AM
Could try simply unplugging your mouse so it doesn't wander.


Title: Re: Using Ubuntu 11.04? Be sure not to move your mouse off of your main screen!
Post by: loglow on July 21, 2011, 04:54:59 AM
Has anybody else experienced this? Do you have any idea what could be causing it? Do you know how I can stop it!?

I had the same problem, and I just managed to fix it.

In a terminal, type:

Code:
sudo gedit /etc/X11/xorg.conf

You should see this section in the file:

Code:
Section "ServerLayout"
Identifier     "aticonfig Layout"
Screen      0  "aticonfig-Screen[0]-0" 0 0
Screen         "aticonfig-Screen[1]-0" RightOf "aticonfig-Screen[0]-0"
Screen         "aticonfig-Screen[2]-0" RightOf "aticonfig-Screen[1]-0"
Screen         "aticonfig-Screen[3]-0" RightOf "aticonfig-Screen[2]-0"
EndSection

You need to move the second screen beyond the boundaries of the first, and the remaining two will follow it. In my case, 2000 pixels is enough since my resolution is less than that in both directions; adjust for your monitor as needed.

Code:
Section "ServerLayout"
Identifier     "aticonfig Layout"
Screen      0  "aticonfig-Screen[0]-0" 0 0
Screen         "aticonfig-Screen[1]-0" 2000 2000
Screen         "aticonfig-Screen[2]-0" RightOf "aticonfig-Screen[1]-0"
Screen         "aticonfig-Screen[3]-0" RightOf "aticonfig-Screen[2]-0"
EndSection

Restart and you should be all set.

Let me know if this worked for you!