<?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: SNX install script workaround in Ubuntu 24 in SASE and Remote Access</title>
    <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/257347#M1834</link>
    <description>&lt;P&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/102987"&gt;@mahmut4242&lt;/a&gt;&amp;nbsp;The link actually works if you are already logged into your UserCenter account, although it might be a function of software subscription as well.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For more details and a proper download link, see this:&amp;nbsp;&lt;A href="https://support.checkpoint.com/results/sk/sk90240" target="_blank"&gt;https://support.checkpoint.com/results/sk/sk90240&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Sep 2025 08:47:07 GMT</pubDate>
    <dc:creator>_Val_</dc:creator>
    <dc:date>2025-09-16T08:47:07Z</dc:date>
    <item>
      <title>SNX install script workaround in Ubuntu 24</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/251642#M1831</link>
      <description>&lt;DIV class=""&gt;Hello, everyone.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Here's a fix for an SNX client installation issue on Ubuntu 24.04.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;The installer couldn't&lt;/SPAN&gt; find &lt;FONT color="#FF0000"&gt;libstdc++6&lt;/FONT&gt;.&amp;nbsp;It searches &lt;FONT color="#FF0000"&gt;/usr/lib/&lt;/FONT&gt;, but&lt;SPAN&gt; on 64-bit Ubuntu, the library is elsewhere.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;This path mismatch breaks the installation, but the browser window raises no warnings.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;P&gt;I created a symbolic link using:&lt;/P&gt;&lt;/DIV&gt;&lt;LI-CODE lang="c"&gt;sudo ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.33 /usr/lib/libstdc++.so.6&lt;/LI-CODE&gt;&lt;P&gt;This workaround links the expected path to the actual library location.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Details:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;- OS release: &lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT size="3"&gt;Ubuntu Desktop "24.04.2 LTS (Noble Numbat)"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;- Related library:&amp;nbsp;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT size="3"&gt;libstdc++6 (GNU Standard C++ Library v3)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;- Library paths (mostly symbolic; the last one is the actual path):&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;/usr/libx32/libstdc++.so.6.0.33
/usr/lib/i386-linux-gnu/libstdc++.so.6.0.33
/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.33
/usr/lib32/libstdc++.so.6.0.33
/usr/x86_64-linux-gnu/lib/libstdc++.so.6.0.33&lt;/LI-CODE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;- Pattern mismatch:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;/usr/lib/libstdc++*&lt;/LI-CODE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;- Code snippet from the failing &lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT size="3"&gt;&lt;EM&gt;snx_install.sh&lt;/EM&gt;&amp;nbsp;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;script (line 63):&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;# link the stdc++ library
STDCPLUSPLUS=`ls /usr/lib/libstdc++* | grep so | head -n 1` &amp;gt; /dev/null 2&amp;gt;&amp;amp;1
if [ "${STDCPLUSPLUS}" != "" ]
then
        COMMAND_TO_RUN="ln -sf ${STDCPLUSPLUS} /usr/lib/libcpc++-libc6.1-2.so.3; ${COMMAND_TO_RUN}"
fi&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Solution:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. Create the symbolic link:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;sudo ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6 /usr/lib/libstdc++.so.6&lt;/LI-CODE&gt;&lt;P&gt;2. Run the installer:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;sudo bash snx_install.sh&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Notes:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- This script contains a binary blob at the end, so I don't recommend editing it unless you know the ropes.&lt;/P&gt;&lt;P&gt;- Your actual library location may vary, but the path should be similar - double-check before linking.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 00:20:08 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/251642#M1831</guid>
      <dc:creator>edsqjr</dc:creator>
      <dc:date>2025-06-20T00:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: SNX install script workaround in Ubuntu 24</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/252120#M1832</link>
      <description>&lt;P&gt;Nice!&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2025 08:24:57 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/252120#M1832</guid>
      <dc:creator>_Val_</dc:creator>
      <dc:date>2025-06-27T08:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: SNX install script workaround in Ubuntu 24</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/257307#M1833</link>
      <description>&lt;P&gt;How can we download snx_install.sh ? Can you share link ? The old version is not working for me &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; I mean this link :&amp;nbsp;&lt;A href="https://support.checkpoint.com/results/download/22824" target="_blank"&gt;https://support.checkpoint.com/results/download/22824&lt;/A&gt;. It gives "snx: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory". I tried so much way but I couldn't get &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2025 19:32:41 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/257307#M1833</guid>
      <dc:creator>mahmut4242</dc:creator>
      <dc:date>2025-09-15T19:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: SNX install script workaround in Ubuntu 24</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/257347#M1834</link>
      <description>&lt;P&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/102987"&gt;@mahmut4242&lt;/a&gt;&amp;nbsp;The link actually works if you are already logged into your UserCenter account, although it might be a function of software subscription as well.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For more details and a proper download link, see this:&amp;nbsp;&lt;A href="https://support.checkpoint.com/results/sk/sk90240" target="_blank"&gt;https://support.checkpoint.com/results/sk/sk90240&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 08:47:07 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/257347#M1834</guid>
      <dc:creator>_Val_</dc:creator>
      <dc:date>2025-09-16T08:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: SNX install script workaround in Ubuntu 24</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/273358#M14401</link>
      <description>&lt;P&gt;&lt;A href="https://support.checkpoint.com/results/sk/sk90240" target="_blank" rel="noopener noreferrer"&gt;https://support.checkpoint.com/results/sk/sk90240&lt;/A&gt;&amp;nbsp;isn't coming up for me.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was successful with one install and snx_install.sh on a different ubuntu box and with this&amp;nbsp;&lt;A href="https://support.checkpoint.com/results/download/22824" target="_blank" rel="noopener"&gt;https://support.checkpoint.com/results/download/22824&lt;/A&gt;&amp;nbsp; I'm testing it now.&lt;/P&gt;
&lt;P&gt;I ended up geting this working by just using the sslvpn portal.&amp;nbsp; I did have to install Java and other libraries.&amp;nbsp; &amp;nbsp;sk119772 was helpfule.&amp;nbsp; &amp;nbsp;It's nice Check Point provides snx_install.sh and cshell right there on the portal.&amp;nbsp; &amp;nbsp;I was looking all over the webs for those files and sk22824 reference to&amp;nbsp;&lt;SPAN&gt;snx_install_linux30.sh was throwing me off,&amp;nbsp; &amp;nbsp;The snx_install.sh was on the sslvpn portal the whole time!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="tinyMceEditor_101ec2ebf7a718Daniel_Kavan_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2026 16:45:25 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/273358#M14401</guid>
      <dc:creator>Daniel_Kavan</dc:creator>
      <dc:date>2026-03-13T16:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: SNX install script workaround in Ubuntu 24</title>
      <link>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/273402#M14402</link>
      <description>&lt;P&gt;sk90240 is now marked internal.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2026 23:15:36 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/SASE-and-Remote-Access/SNX-install-script-workaround-in-Ubuntu-24/m-p/273402#M14402</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2026-03-13T23:15:36Z</dc:date>
    </item>
  </channel>
</rss>

