View Single Post
  #12   Ban this user!
Old 12-16-2008, 04:30 PM
boort boort is offline
 
Join Date: Feb 2005
Location: usa
Posts: 2
boort is on a distinguished road
Talking How-to run Vectric Vcarve under Ubuntu Linux (EMC2 BDI)

Alan, et al:

I understand that this is a dead thread (Last update having been on 05-07-2007 11:13 PM), but I wanted to let anyone know that I now have the Vectric Vcarve trial software running under Ubuntu v8.04 / Wine 1.1.10. This same fix also allowed me to run Google Sketchup v6 on the same wine installation.

In case anyone else is trying to get this software going under the EMC2 / Ubuntu BDI cd here is a writeup that I posted to the Vectric forums:


In case anyone else wants to try running VCarve under Linux. I now have it up and running under wine and have been able to produce gcode from the trial version that matches that which was produced when installed under Windows.
When installing I ran into 2 problems. the first was that the fonts kept getting reloaded every time I started Vcarve. (This was a minor delay but I found a fix while trying to fix the show stopper noted below.) The second problem was that the 3D display was blank which meant that no part or tool path preview. The cause of my black screen problem was that my computer is running an Intel 945 integrated graphics card. I used the "lspci -v | less" command to find out what card my system had. The relevant section began with a line containing:

VGA compatible controller: Intel Corporation 82945G/GZ Integrated Graphics Controller (rev 02)

This family of video cards does not support the Direct Rendering Infrastructure (DRI) for applications running under Wine. If you are have installed a 3D application such as Vectric's Cut3d, Vcarve Pro, PhotoVcarve, or Google Sketchup v6 on an Ubuntu (or EMC2 live CD install) system you can workaround this issue by:

Note: these instructions assume that you are familiar with your Linux system and are not afraid of the using the command line to edit configuration files.

1) Open a terminal window
Click on Menu/Accessories/Terminal

2) Back up your current configuration, enter your password when prompted
gksudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.BAK

3) Edit the config file, enter your password if prompted
gksudo gedit /etc/X11/xorg.conf

4) Look for a section that looks like this (the exact wording on each system will be different):
This is what it looked like on one of my systems:
Section "Device"
Identifier "Configured Video Device"
EndSection
This is what it looked like on another system that this procedure was tested on:
Section "Device"
Identifier "Videocard0"
Driver "intel"
EndSection

5) Add the line to disable the DRI functions
Section "Device"
Identifier "Configured Video Device"
Option "NoDRI"
EndSection
This is what it fix looked like on the other system:
Section "Device"
Identifier "Videocard0"
Option "NoDRI"
Driver "intel"
EndSection

6) Save the file

7) Logout or reboot to restart the X11 windowing system so the change can take effect


Video cards form nvidia (with the propitiatory drivers installed) do not require this workaround, other video chipsets such as ATI may or may not need this workaround to get 3d Apps running under Wine.

For the record here is my system configuration and what was installed to get this working:

Ubuntu v8.04 (Installed form the EMC2 live CD available from

* http://www.linuxcnc.org/hardy/ubuntu...-aj07-i386.iso )

Wine version wine-1.1.10 installed via packages from Wind HQ

* http://www.winehq.org/download/deb

DirectX, and "allfonts" v9 installed by the wine tricks script (These were installed while debugging and to avoid the delay when the fonts were being redone every time VCarve Pro was started) Winetricks can be downloaded from:

* http://wiki.winehq.org/winetricks


VCarvePro v4.6 Trial from Vectric's download page.

Google SketchUP v6.4.122 (free) from Google

I also posted this on Vectric's forum so that it may help a wider audience.

Regards,
BoorT
Reply With Quote

 

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