Skip to content
0
  • Recent
  • Tags
  • Popular
  • SAMSON Connect
  • Get SAMSON
  • Recent
  • Tags
  • Popular
  • SAMSON Connect
  • Get SAMSON
Collapse
SAMSON Forum
  1. Home
  2. SAMSON
  3. Getting started
  4. Installing or running SAMSON on Ubuntu 17.04 and later versions

Installing or running SAMSON on Ubuntu 17.04 and later versions

Scheduled Pinned Locked Moved Getting started
15 Posts 2 Posters 12.8k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S
    S
    Subhajig
    wrote on last edited by
    #2

    Hi,
    I'm trying to install SAMSON on UBUNTU.After giving command "../SAMSON-Setup.run" i'm getting the following error
    ./InstallSAMSON: error while loading shared libraries: libOpenGL.so.0: cannot open shared object file: No such file or directory
    restoring context.
    Please advise how to avoid this error.

    Thank in advance.

    1 Reply Last reply
    1
    • DmitriyMarinD
      DmitriyMarinD
      DmitriyMarin
      wrote on last edited by
      #3

      Hi @Subhajig ,
      What Ubuntu version do you have?
      Do you have an Nvidia GPU? You can check it with the following command in the terminal:

      lspci | grep VGA
      

      Dmitriy,
      The SAMSON Team, https://s-c.io

      1 Reply Last reply
      1
      • S
        S
        Subhajig
        wrote on last edited by
        #4

        Thanks for quick reply,
        My UBUNTU version is 16.04.4 LTS.
        After giving "1spci | grep VGA" i'm getting following
        "00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)"
        Thanks in advance.

        1 Reply Last reply
        0
        • DmitriyMarinD
          DmitriyMarinD
          DmitriyMarin
          wrote on last edited by
          #5

          It seems that your system does not have a dedicated GPU. You should be able to run SAMSON with Intel (with built-in graphics), but you may lack some SAMSON features, which relies on GPU.

          Could you, please, check the result of the following command in your terminal:

          glxinfo | grep OpenGL
          

          If you see "The program 'glxinfo' is currently not installed", you will need to install the mesa:

          sudo apt-get install build-essential mesa-utils libgl1-mesa-dev
          

          After the installation, try the glxinfo | grep OpenGL command again in the terminal.

          Dmitriy,
          The SAMSON Team, https://s-c.io

          1 Reply Last reply
          1
          • S
            S
            Subhajig
            wrote on last edited by
            #6

            Hi,
            Sorry for delay.After installing mesa also I'm getting same error.Please give some suggestions to avoid this issues.
            Thank in advance
            Subhajit

            1 Reply Last reply
            0
            • DmitriyMarinD
              DmitriyMarinD
              DmitriyMarin
              wrote on last edited by
              #7

              Please, post the output of the following command:

              glxinfo | grep OpenGL
              

              Dmitriy,
              The SAMSON Team, https://s-c.io

              1 Reply Last reply
              1
              • S
                S
                Subhajig
                wrote on last edited by
                #8

                I'm getting following
                OpenGL vendor string: Intel Open Source Technology Center
                OpenGL renderer string: Mesa DRI Intel(R) Haswell Desktop
                OpenGL core profile version string: 3.3 (Core Profile) Mesa 17.2.8
                OpenGL core profile shading language version string: 3.30
                OpenGL core profile context flags: (none)
                OpenGL core profile profile mask: core profile
                OpenGL core profile extensions:
                OpenGL version string: 3.0 Mesa 17.2.8
                OpenGL shading language version string: 1.30
                OpenGL context flags: (none)
                OpenGL extensions:
                OpenGL ES profile version string: OpenGL ES 3.0 Mesa 17.2.8
                OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00
                OpenGL ES profile extensions:

                1 Reply Last reply
                0
                • DmitriyMarinD
                  DmitriyMarinD
                  DmitriyMarin
                  wrote on last edited by
                  #9

                  Could you please run the following command in the terminal and post it here:

                  locate libOpenGL.so
                  

                  If you see in the result, for example, /usr/lib/x86_64-linux-gnu/libOpenGL.so but no libOpenGL.so.0, you will need to create a symlink.

                  Dmitriy,
                  The SAMSON Team, https://s-c.io

                  1 Reply Last reply
                  1
                  • S
                    S
                    Subhajig
                    wrote on last edited by
                    #10

                    Hi,
                    Thank you for your reply.Could you please tell me how will I create a symlink.

                    1 Reply Last reply
                    0
                    • DmitriyMarinD
                      DmitriyMarinD
                      DmitriyMarin
                      wrote on last edited by
                      #11

                      Does the command locate libOpenGL.so show you libOpenGL.so or not?
                      The symlink can be created in the terminal as follows:

                      ln -s target linkname
                      

                      Dmitriy,
                      The SAMSON Team, https://s-c.io

                      1 Reply Last reply
                      1
                      • S
                        S
                        Subhajig
                        wrote on last edited by
                        #12

                        After giving command 'locate libOpenGL.so' i'm not getting any output.

                        1 Reply Last reply
                        0
                        • DmitriyMarinD
                          DmitriyMarinD
                          DmitriyMarin
                          wrote on last edited by
                          #13

                          @Subhajig

                          Could you, please, double-check whether libgl1-mesa-dev is installed:

                          sudo apt-get install build-essential mesa-utils libgl1-mesa-dev
                          

                          Please, check the troubleshooting section of the SAMSON Installation guide.
                          You can do a symlink to the libQt5OpenGL.so shipped together with SAMSON:

                          ln -s $HOME/NANO-D/SAMSON/0.7.0/Binaries/SAMSONQtLibs/libQt5OpenGL.so $HOME/NANO-D/SAMSON/0.7.0/Binaries/SAMSONQtLibs/libOpenGL.so.0
                          

                          or you can install compiz and create symlink to its OpenGL:

                          sudo apt-get install compiz-dev
                          sudo ln -s /usr/lib/x86_64-linux-gnu/compiz/libopengl.so $HOME/NANO-D/SAMSON/0.7.0/Binaries/SAMSONQtLibs/libOpenGL.so.0
                          

                          Dmitriy,
                          The SAMSON Team, https://s-c.io

                          1 Reply Last reply
                          1
                          • S
                            S
                            Subhajig
                            wrote on last edited by
                            #14

                            Hi
                            Thank you for your help.It worked fine.But Now I have another problem.In SAMSON installer tab I 'm not able to write samson key after giving my email address,
                            So installation is not being started.

                            1 Reply Last reply
                            0
                            • S
                              S
                              Subhajig
                              wrote on last edited by
                              #15

                              Installation is done.

                              1 Reply Last reply
                              0

                              Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                              Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                              With your input, this post could be even better 💗

                              Register Login
                              Reply
                              • Reply as topic
                              Log in to reply
                              • Oldest to Newest
                              • Newest to Oldest
                              • Most Votes


                              • Login

                              • Login or register to search.
                              • First post
                                Last post