element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Chat (English) Linux Installation Pain
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Autodesk EAGLE to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 11 replies
  • Subscribers 181 subscribers
  • Views 1192 views
  • Users 0 members are here
  • linux
Related

Linux Installation Pain

Former Member
Former Member over 11 years ago

There might be a good argument for me not understanding quite how to install Eagle on Linux, but I have however not been able to instal the demo as specified in the simple instruction given on the Eagle www HERE

 

I have allowed the file to be executable and tried opening it as sudo and directly and the terminal window opens and then exits about 5 seconds later with no indication of what happened.

 

Linux Mint Cinnamon not sure of the Kernel, but latest version with updates as of 12/3/2014

 

Baring in mind this program costs a packet... what am I to do to get the executable running for the demo version?

  • Sign in to reply
  • Cancel
  • AnalogNotes
    0 AnalogNotes over 11 years ago

    You might get some troubleshooting help by using the strace command.  That should tell you what it's doing...

     

    cd $EAGLEDIR/bin

    strace ./eagle

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to AnalogNotes

    Hi there Doug,

     

    I dont think the package has even unpacked from the file download (eagle-lin-6.5.0.run). When allowing it to be executable and running it in shell and directly it just exits and no extraction script seems to have run. There are no files created, or no dialogue for the script as expected.

     

    Best

     

    J

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • AnalogNotes
    0 AnalogNotes over 11 years ago in reply to Former Member

    Ooops, I obviously misunderstood...  image

     

    How comfortable are you with files and the shell under Linux?  That run file is basically just a compressed tar file embedded in a shell script.  I think the first thing to try is to specify an install directory on the command line.  Something like:

     

    ./eagle-lin-6.5.0.run eagle-6.5

     

    Which should create a subdirectory called "eagle-6.5" in the current directory.  If that doesn't work, you can try using an editor to remove everything before and including the "__DATA__" line in the file and then use the tar command to extract the contents.  Recent systems should understand how to deal with the bzip2 compression already, so you can just use "tar xf" on the data part.  For example, if you're familiar with vi (might be installed as "vim"):

     

    CommandExplanation
    vi eagle-lin-6.5.0.runuse vi to edit the file
    /^__DATA__search for the line that starts with "__DATA__"
    :1,.ddelete everything from the beginning of the file
    :w eagle.tar.bz2write the data to a different file name
    :qquit
    tar xf eagle.tar.bz2extract the contents of that file

     

    (Sorry about the table, I couldn't figure out a better way to format that.  This site sucks for inserting formatted text.)

     

    Then you can cd into the eagle directory and down into the bin directory to see if the EAGLE program will run...

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • backwoodsjack
    0 backwoodsjack over 11 years ago in reply to AnalogNotes

    thanks for that STRACE command..it helped me with my eagle----ubuntu install problem..but still wont run..I am trying to install my eagle-4.09r2 on ubuntu 14.04...it throws error when i try to launch eagle.. shared file not found..libstdc++-lib6.1-1.so.2  i have located those old files on the web and have installed them where STRACE shows it was looking..still doesnt see the file..?? i'm lost..

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago in reply to backwoodsjack

    I tried installing and running Eagle 4.09r2 on 14.04 and received the same response when trying to run it. The following package contains libstdc++-libc6.2-2.so.3 and should work after installing it.

     

    wget http://archive.debian.org/debian/pool/main/g/gcc-2.95/libstdc++2.10-glibc2.2_2.95.4-27_i386.deb

    sudo dpkg -i libstdc++2.10-glibc2.2_2.95.4-27_i386.deb

     

    Eric

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • backwoodsjack
    0 backwoodsjack over 11 years ago in reply to autodeskguest

    thankyou very much.. that worked great..i can now get to the

    license/freeware screen..

    i noticed that it has some transparency issue..its there but kinda funny..i

    can see eagle if its over a dark background (like terminal)..i tried to

    write a xorg.conf with the 'fix' i found at cadsoft and just about lost

    everything..blank screen..reboot in recovery and just barely was able to

    rename xorg.conf to something else..wow..nerves bad now..i will take a

    break..

    thanks again..

    jack in arkansas

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago in reply to backwoodsjack

    Turn off composting in Window Manager Tweaks.

     

    Eric

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • autodeskguest
    0 autodeskguest over 11 years ago in reply to autodeskguest

    I'm all thumbs today. That should be 'Compositing' in the Window Manager Tweaks of Settings Manager.

     

    Eric

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • backwoodsjack
    0 backwoodsjack over 11 years ago in reply to autodeskguest

    i dont see a windows manager or a settings manager.. i have the classic

    gnome shell..got system settings>>appearance and displays..but nothing

    there about windows manager..

    i have dconf also.. looked there..dont see what u say to go tweak..

    ??

     

    On Tue, Nov 25, 2014 at 11:31 AM, cadsoftnntp <messages@element14.com>

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • backwoodsjack
    0 backwoodsjack over 11 years ago in reply to autodeskguest

    i found something that i could make work--on ubuntuforums

    http://ubuntuforums.org/showthread.php?t=441069

    so i made a eagle.sh and with what u provided me earlier and this command ,

    i am happily working on my first project while on my ubuntu laptop--

    thankyou sir..

     

     

     

    On Tue, Nov 25, 2014 at 11:31 AM, cadsoftnntp <messages@element14.com>

    Attachments:
    https://community.element14.com/cfs-file/__key/communityserver-discussions-components-files/309/eagle.sh
    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
>
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube