Re: [Emc-users] TCL ad g-code preprocessor, How to?

2007-01-12 Thread Manfredi Leto
>You need to execute "sudo apt-get update" after changing the apt >sources.list file. This message seems to indicate that you didn't run >the update. On my system, this file exists and is 5500 bytes long. > >Jeff > Thank you, I've done apt-get update, downloaded source again, compiled it and no

Re: [Emc-users] TCL ad g-code preprocessor, How to?

2007-01-11 Thread Jeff Epler
On Thu, Jan 11, 2007 at 09:58:00PM +, Manfredi Leto wrote: > I get the following message: > > E: Could not open file > /var/lib/apt/lists/www.linuxcnc.org_emc2_dists_dapper_emc2_source_Sources - > open (2 No such file or directory) > > why? Shouldn't this command download the needed libraries

Re: [Emc-users] TCL ad g-code preprocessor, How to?

2007-01-11 Thread Manfredi Leto
s, I don't know. thanks again, Manfredi >From: Jeff Epler <[EMAIL PROTECTED]> >Reply-To: "Enhanced Machine Controller (EMC)" > >To: "Enhanced Machine Controller (EMC)" >Subject: Re: [Emc-users] TCL ad g-code preprocessor, How to? >Date: Thu,

Re: [Emc-users] TCL ad g-code preprocessor, How to?

2007-01-11 Thread Jeff Epler
When you ran "./configure" it checked for the libraries and headers needed to compile axis. One of them must have been missing. re-run configure and look carefully at the output to find what is missing, install it, and finally re-run configure and make. Jeff

Re: [Emc-users] TCL ad g-code preprocessor, How to?

2007-01-11 Thread Manfredi Leto
ecute Display program /bin/axis... And I don't know how to install it, so if someone can help me... Thank you Manfredi >From: Jeff Epler <[EMAIL PROTECTED]> >Reply-To: "Enhanced Machine Controller (EMC)" > >To: "Enhanced Machine Controller (EMC)" >Subje

Re: [Emc-users] TCL ad g-code preprocessor, How to?

2007-01-11 Thread Jeff Epler
First, make gcode.tcl executable: chmod +x gcode.tcl then run it with the .gcl file as the argument, with the output redirected to an ngc file: ./gcode.tcl example.gcl > example.ngc now, you can load and run example.ngc in the emc2 GUI of your choice. If you are using emc 2.1-pre or later

[Emc-users] TCL ad g-code preprocessor, How to?

2007-01-11 Thread Manfredi Leto
Hi, I've read the article "Tcl as a g-code preprocessor" in the Axis home page (http://axis.unpy.net/), it seems interesting, I've downloaded the file "gcode.tcl" and the example file "example.gcl"...but, since I'm not a "guru" programmer, could you kindly tell me where I've to put these files