<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: 9.2.0 Installation on Linux in Installation &amp; Licensing Forum</title>
    <link>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8332005#M59569</link>
    <description>&lt;P&gt;Thanks, the launcher and the desktop icon are also not properly implemented in the Autodesk "Install procedure". I wonder why we, the users, who are paying for using Eagle, are required to provide proper installers. The Autodesk-folks should do that.&lt;/P&gt;</description>
    <pubDate>Sat, 13 Oct 2018 09:43:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-10-13T09:43:22Z</dc:date>
    <item>
      <title>9.2.0 Installation on Linux</title>
      <link>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8331383#M59567</link>
      <description>&lt;P&gt;The installation is not really an installation procedure as we knew it from version 6 or 7. One has to unpack a tag.gz archive and has to copy it where one pleases. From my point of view this is a non-professional way to install software as it implies issues when installing as root in /opt/ for example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;If you do that as non-root user, there is not much to fix: After unpacking change into directory eagle-9.2.0/lib and delete all files starting with libxcb*. If the executable "eagle" in eagle-9.2.0 is started, everything should work fine (make sure this stuff is installed: libx11-xcb1, libxcb-dri2-0, libxcb-dri3-0, libxcb-glx0, libxcb-present0, libxcb-sync1, libxcb-xfixes0. see also &lt;A href="https://forums.autodesk.com/t5/eagle-forum/can-t-run-eagle-on-debian-10-testing/td-p/8312348" target="_blank"&gt;https://forums.autodesk.com/t5/eagle-forum/can-t-run-eagle-on-debian-10-testing/td-p/8312348&lt;/A&gt;).&lt;/LI&gt;&lt;LI&gt;If you want to install it as root in /opt for example, there is a lot to be fixed. Important when unpacking the tar file is the option --no-same-owner. Otherwise you get the files unpacked with the root user id 501, which is probably not your root user id. Further-on lots of file permissions are way to restrictive so that the non-root user is unable to start eagle. I made things probably unnecessary labor-some but it finally worked and I have got no other idea how to solve the issues. I did this procedure under OpenSuse Tumbleweed: First copy the archive file in /opt . Then proceed as follows:&lt;/LI&gt;&lt;/OL&gt;&lt;PRE&gt;gunzip Autodesk_EAGLE_9.2.0_English_Linux_64bit.tar.gz&lt;/PRE&gt;&lt;PRE&gt;tar --no-same-owner -xf Autodesk_EAGLE_9.2.0_English_Linux_64bit.tar &lt;/PRE&gt;&lt;PRE&gt;cd eagle-9.2.0/&lt;/PRE&gt;&lt;P&gt;All files must have the r (readable) flag set so that also non-root users can open and read them:&lt;/P&gt;&lt;PRE&gt;chmod -R a+r * &lt;/PRE&gt;&lt;P&gt;All directories must be readable by all users. so that non-root users can change into them:&lt;/P&gt;&lt;PRE&gt;find . -type d -exec chmod a+x {} \; &lt;/PRE&gt;&lt;P&gt;Change into the lib directory:&lt;/P&gt;&lt;PRE&gt;cd eagle-9.2.0/lib&lt;/PRE&gt;&lt;P&gt;Remove all files starting with libxcb:&lt;/P&gt;&lt;PRE&gt;rm libxcb*&lt;/PRE&gt;&lt;P&gt;The remaining libraries here must be set executable for non-root users. I'm not sure if all files require this setting but this way all of them are addressed:&lt;/P&gt;&lt;PRE&gt;chmod 755 *&lt;/PRE&gt;&lt;P&gt;Change into the next directory and set the permissions as follows:&lt;/P&gt;&lt;PRE&gt;cd ../libexec&lt;/PRE&gt;&lt;PRE&gt;chmod 755 QtWebEngineProcess&lt;/PRE&gt;&lt;P&gt;Now you can launch Eagle as non-root user.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Oct 2018 19:34:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8331383#M59567</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-12T19:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: 9.2.0 Installation on Linux</title>
      <link>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8331955#M59568</link>
      <description>&lt;P&gt;A good summary, thanks.&lt;/P&gt;
&lt;P&gt;For reference, here's the relevant bit of the script I use:&lt;/P&gt;
&lt;PRE&gt;cd /opt/
tar xvf $INSTALLER
find /opt/eagle-${VER}/ -perm -754 -type f -name *.so | xargs chmod o+x
chmod o+x /opt/eagle-${VER}/eagle 
chown -R root:root /opt/eagle-${VER}/
chmod -R o+r /opt/eagle-${VER}/
find /opt/eagle-${VER}/ -type d | xargs chmod o+x
chmod o+x /opt/eagle-${VER}/libexec/QtWebEngineProcess
cd /usr/share/applications/
nedit eagle_v8.desktop &amp;amp;
&lt;/PRE&gt;
&lt;P&gt;The last couple of lines are for (manually) updating the XFCE launcher - probably the same for all freedesktop compliant DEs.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Oct 2018 08:30:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8331955#M59568</guid>
      <dc:creator>one-of-the-robs</dc:creator>
      <dc:date>2018-10-13T08:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: 9.2.0 Installation on Linux</title>
      <link>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8332005#M59569</link>
      <description>&lt;P&gt;Thanks, the launcher and the desktop icon are also not properly implemented in the Autodesk "Install procedure". I wonder why we, the users, who are paying for using Eagle, are required to provide proper installers. The Autodesk-folks should do that.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Oct 2018 09:43:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8332005#M59569</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-13T09:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: 9.2.0 Installation on Linux</title>
      <link>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8335771#M59570</link>
      <description>Hi @Anonymous,&lt;BR /&gt;&lt;BR /&gt;I hope you're doing well. Thank you for your comments, we are working on this.  Let me know if there's anything else I can do for you.&lt;BR /&gt;&lt;BR /&gt;Best Regards,</description>
      <pubDate>Mon, 15 Oct 2018 19:51:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8335771#M59570</guid>
      <dc:creator>jorge_garcia</dc:creator>
      <dc:date>2018-10-15T19:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: 9.2.0 Installation on Linux</title>
      <link>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8498744#M59571</link>
      <description>&lt;P&gt;It seems Autodesk is not really interested in supporting Eagle on Linux. So I put together a howto:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/Blunk-electronic/EAGLE_Linux_Installer" target="_blank"&gt;https://github.com/Blunk-electronic/EAGLE_Linux_Installer&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Looking forward to all kinds of feedback.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 17:29:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8498744#M59571</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-03T17:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: 9.2.0 Installation on Linux</title>
      <link>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8824322#M59572</link>
      <description>&lt;P&gt;Hey guys, thanks for all the tips. I'm trying to run as non-root user and having no luck with any of the above. Environment is Eagle 9.4.1 x86_64, on Debian Ubuntu 16.04.6, Linux 4.15.0-50-generic x86_64 which is current LCD for Debian/Linux. Anyhow, it works fine if you sudo ./eagle run but without sudo it just hangs at the splash banner and spews out the below:&lt;/P&gt;&lt;P&gt;[8282:8293:0530/125547.656693:ERROR:nss_ocsp.cc(614)] No URLRequestContext for NSS HTTP handler. host: ocsp.digicert.com&lt;BR /&gt;[8282:8293:0530/125547.656775:ERROR:nss_ocsp.cc(614)] No URLRequestContext for NSS HTTP handler. host: crl4.digicert.com&lt;BR /&gt;[8282:8293:0530/125547.904792:ERROR:nss_ocsp.cc(614)] No URLRequestContext for NSS HTTP handler. host: ocsp.digicert.com&lt;BR /&gt;[8282:8293:0530/125547.904872:ERROR:nss_ocsp.cc(614)] No URLRequestContext for NSS HTTP handler. host: ocsp.digicert.com&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help greatly appreciated, I guess I will just run as root for now, but shouldn't have to ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 19:57:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/installation-licensing-forum/9-2-0-installation-on-linux/m-p/8824322#M59572</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-30T19:57:29Z</dc:date>
    </item>
  </channel>
</rss>

