Installing Eagle CAD Software in Ubuntu 14.04
Download from the official website http://www.cadsoftusa.com/download-eagle/
After downloading
You need to make the .run file executable. This can be achieved using chmod
.
chmod +x filename.run
The above command gives executable rights to filename.run
In your case – chmod +x eagle-lin-7.2.0.run
Now, you can execute it using either ./eagle-lin-7.2.0.run
or sh eagle-lin-7.2.0.run
I got error regarding dependency issues
1 2 3 4 5 6 7 8 9 10 11 12 |
mohan-a@mohan-a-desktop:~/Downloads$ ./eagle-lin-7.2.0.run Ensure the following 32 bit libraries are available: libXrender.so.1 => not found libXrandr.so.2 => not found libXcursor.so.1 => not found libfreetype.so.6 => not found libfontconfig.so.1 => not found libXext.so.6 => not found libX11.so.6 => not found libXi.so.6 => not found libssl.so.1.0.0 => not found libcrypto.so.1.0.0 => not found |
To fix dependency problems of Eagle CAD under a 64-bit Ubuntu distribution. The current installer (Eagle CAD 7.2) works quite well under a 32-bit Ubuntu 12.04, 12.10 and 13.04 distribution. The eagle binary is linked against 32-bit libraries, so installing “all possible” 32-bit libs might be a possible (but uncomfortable) solution. This can actually be done by installing the following packages:
1 |
sudo apt-get install libxrender1:i386 libxrandr2:i386 libxcursor1:i386 libfreetype6:i386 libfontconfig1:i386 libxext6:i386 libx11-6:i386 libxi6:i386 libssl1.0.0:i386 libstdc++6:i386 libgcc1:i386 libc6:i386 libc6-i386 libxfixes3:i386 libexpat1:i386 libxcb1:i386 libxdmcp6:i386 libxau6:i386 |
sudo apt-get install libxrender1:i386 libxrandr2:i386 libxcursor1:i386 libfreetype6:i386 libfontconfig1:i386 libxext6:i386 libx11-6:i386 libxi6:i386 libssl1.0.0:i386 libstdc++6:i386 libgcc1:i386 libc6:i386 libc6-i386 libxfixes3:i386 libexpat1:i386 libxcb1:i386 libxdmcp6:i386 libxau6:i386
After completion of the dependency installation run the following command
./eagle-lin-7.2.0.run
or sh eagle-lin-7.2.0.run
Now you ‘re done!!