CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > LinuxCNC (formerly EMC2)


LinuxCNC (formerly EMC2) Discuss LinuxCNC (formerly EMC2) Controlers here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 03-16-2009, 09:28 PM
 
Join Date: Nov 2008
Location: USA
Posts: 14
stoughto is on a distinguished road
axis causes horizontal streaks in display

I have an EMC2/Ubuntu 8.04 installation on a Dell Dimension L667r.

Once emc2 starts the axis interface, the display (in and out of the emc2 window) has horizontal bands. You can see most of the display, but it is not that useful. The tkemc and mini guis display fine.

1. Is axis that much better that I should figure out how to make it work?
2. What can I try? The problem reappears when I change the screen resolution via system->preferences->screen resolution. What else can I do?

Thanks
Reply With Quote

  #2   Ban this user!
Old 03-17-2009, 01:40 AM
 
Join Date: May 2005
Location: canada
Posts: 1,149
cyclestart is on a distinguished road

Originally Posted by stoughto View Post
1. Is axis that much better that I should figure out how to make it work?
imo yes. Recent emc2 development has been centered around axis as the interface. Not that the other ones aren't functional, but you'll be missing out on some nice features. Especially when 2.3 is released with additional good stuff.
2. What can I try? The problem reappears when I change the screen resolution via system->preferences->screen resolution. What else can I do?
Not sure. The resolution would have also been my first guess.

Hardy 8.04 has been a bit of a step backwards for some hardware Sometimes it doesn't become obvious until you try an openGL app.

What's your graphics hardware ? (model, card or onboard, monitor)

A proprietary driver (you would have been asked for permission before installing) or the default open source driver ?
Code:
 lspci
will return what hardware was detected.
Code:
cat /var/log/Xorg.0.log | grep Driver
should return what driver is in use
Code:
cat /var/log/Xorg.0.log | grep -i render\*
might give a clue if hardware acceleration is being used

I'm grasping at straws here a little, but more info never hurts. Maybe someone here is running similar gear. There's a a driver called vesa if all else fails but it can be ugly or not work at all..
__________________
Anyone who says "It only goes together one way" has no imagination.
Reply With Quote

  #3   Ban this user!
Old 03-17-2009, 07:30 AM
 
Join Date: Jul 2003
Location: Holmen, WI
Posts: 1,081
samco is on a distinguished road

How was emc installed? Livecd? If not - set 'visual effects' to none. (this is under the menu - system -> preferences -> Appearance.)

(easy to test)

sam
Reply With Quote

  #4   Ban this user!
Old 03-17-2009, 08:12 AM
 
Join Date: Nov 2008
Location: USA
Posts: 14
stoughto is on a distinguished road
more info

samco,
I installed from the livecd. I forgot to mention that the first thing I checked was that the visual effects were disabled. I thought that would have done it, but no such luck.

cyclestart

Here are the specs of the system.

$ lspci
00:00.0 Host bridge: Intel Corporation 82810E DC-133 (GMCH) Graphics Memory Controller Hub (rev 03)
00:01.0 VGA compatible controller: Intel Corporation 82810E DC-133 (CGC) Chipset Graphics Controller (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801AA PCI Bridge (rev 02)
00:1f.0 ISA bridge: Intel Corporation 82801AA ISA Bridge (LPC) (rev 02)
00:1f.1 IDE interface: Intel Corporation 82801AA IDE Controller (rev 02)
00:1f.2 USB Controller: Intel Corporation 82801AA USB Controller (rev 02)
00:1f.3 SMBus: Intel Corporation 82801AA SMBus Controller (rev 02)
01:09.0 Multimedia audio controller: Ensoniq ES1371 [AudioPCI-97] (rev 06)
01:0a.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78)
$ grep Driver /var/log/Xorg.0.log
X.Org Video Driver: 2.0
ABI class: X.Org Video Driver, version 2.0
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 2.0
Module class: X.Org XInput Driver
Module class: X.Org XInput Driver
(II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
ABI class: X.Org Video Driver, version 2.0
ABI class: X.Org Video Driver, version 2.0
ABI class: X.Org Video Driver, version 2.0
ABI class: X.Org Video Driver, version 2.0

$ grep -i render /var/log/Xorg.0.log
X.Org Font Renderer : 0.5
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.5
(II) intel(0): Direct rendering enabled
(II) Initializing built-in extension RENDER


I have the package xserver-xorg-video-vesa installed. What is the best way to try it out? Do I edit xorg.conf, or is there a more polite way to try it out?

Thanks again.
Reply With Quote

  #5   Ban this user!
Old 03-17-2009, 08:37 AM
 
Join Date: May 2005
Location: canada
Posts: 1,149
cyclestart is on a distinguished road

Go here
http://www.linuxcnc.org/content/view/4/8/lang,en/

and do a search of the user-mail-archives for the term "i810"

I didn't have time to give it a full read. Got to run. Good luck.
__________________
Anyone who says "It only goes together one way" has no imagination.
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 03-17-2009, 09:47 PM
 
Join Date: Nov 2008
Location: USA
Posts: 14
stoughto is on a distinguished road
Thumbs up Option "NoAccel" "On" helps

Thanks for the tip. In /etc/X11/xorg.conf I added a line to the "Device" section so it looks like this.


Section "Device"
Identifier "Configured Video Device"
Option "NoAccel" "On"
EndSection


then restarted x with ctrl-alt-bksp

By the way, adding this line

Driver "i810"

or this line

Driver "vesa"

did not work at all. Had to ctrl-alt-f1 and login to revert xorg.conf to a working version.
Reply With Quote

  #7   Ban this user!
Old 03-18-2009, 10:13 PM
 
Join Date: Mar 2004
Location: St. Louis, MO
Posts: 309
jmelson is on a distinguished road

Originally Posted by stoughto View Post
I have an EMC2/Ubuntu 8.04 installation on a Dell Dimension L667r.

Once emc2 starts the axis interface, the display (in and out of the emc2 window) has horizontal bands. You can see most of the display, but it is not that useful. The tkemc and mini guis display fine.

1. Is axis that much better that I should figure out how to make it work?
2. What can I try? The problem reappears when I change the screen resolution via system->preferences->screen resolution. What else can I do?

Thanks
Sounds like an OpenGL problem. To be totally sure, run glxgears from a terminal window. If you get the same trash on the screen, then that is the problem. OpenGL is a 3-D rendering package that supports a variety of graphics hardware, some better than others. Some other comments mention other solutions, but I just put in a different graphics card from nVidia - way overkill for this, but it works.
Reply With Quote

  #8   Ban this user!
Old 03-19-2009, 05:07 AM
 
Join Date: May 2005
Location: canada
Posts: 1,149
cyclestart is on a distinguished road

Originally Posted by jmelson View Post
Some other comments mention other solutions, but I just put in a different graphics card from nVidia - way overkill for this, but it works.
But you also provided the fix stoughto applied (?)
http://thread.gmane.org/gmane.linux....emc.user/10390

The similarity in names is more than a coincidence I think

8.04 is mis-configuring some older graphics hardware that worked in 6.06. There are other examples.
__________________
Anyone who says "It only goes together one way" has no imagination.
Reply With Quote

  #9   Ban this user!
Old 03-19-2009, 11:12 AM
 
Join Date: Mar 2004
Location: St. Louis, MO
Posts: 309
jmelson is on a distinguished road

Originally Posted by cyclestart View Post
But you also provided the fix stoughto applied (?)
http://thread.gmane.org/gmane.linux....emc.user/10390

The similarity in names is more than a coincidence I think

8.04 is mis-configuring some older graphics hardware that worked in 6.06. There are other examples.
Aha! So, I already had run into this last year - I forgot! I set that machine up for a customer and then it just got purged out of my memory. Sometime I will have to try this with the more recent box I have here.

Jon
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
HS1 horizontal mill with auxillary axis alarm teal854t Haas Mills 2 04-18-2009 12:47 PM
origin axis display in x3 1ctoolfool Mastercam 2 01-11-2009 05:20 PM
HORIZONTAL MILLS fastlanecafe General Metal Working Machines 3 08-16-2008 06:56 PM
B axis for horizontal mill OM nabil_elbadri Fanuc 3 11-16-2007 06:19 PM
4-5 axis control recomendations for home built horizontal machine Kmed General CNC (Mill and Lathe) Control Software (NC) 3 01-17-2005 04:04 PM




All times are GMT -5. The time now is 05:34 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361