Search Unity

[Tutorial] Installing Unity on Solus OS

Discussion in 'Linux' started by Javyer, Aug 27, 2017.

  1. Javyer

    Javyer

    Joined:
    May 31, 2015
    Posts:
    6
    I have fought so much with this that, now that I could make it run, I want to share it for anyone who also had a problem.

    This guide is intented using Unity 5.6.3f1 It should work with other versions, but I only tested it with that exact version.

    This was done in a clean boot of Solus.

    First step, download Unity for Linux.

    Be sure to download the SH file, not the deb

    Install the following libraries:
    Code (bash):
    1. sudo eopkg it libglu libglu-32bit libpqxx gconf gconf-32bit gtk2-engine-murrine gtk2-engine-murrine-32bit gnome-sharp gtk-sharp libgcc-32bit libgnomeui libice libice-32bit libsm-32bit libstdc++ libstdc++-32bit libxcb libxcb-32bit nodejs libpqxx-devel libpng12 libpng12-32bit

    Once the file is downloaded and you have the libraries installed, follow this steps:

    Code (bash):
    1. cd folder-where-unity-was-downloaded
    2. ./unity-editor-installer-5.6.3xf1Linux.sh
    3. # if /opt/ folder does not exist we create it
    4. sudo mkdir /opt
    5. # we copy unity to the opt folder
    6. sudo mv unity-editor-5.6.3xf1Linux/ /opt/Unity
    7. # we travel to the applications folder and create the desktop entry
    8. cd /usr/share/applications/
    9. sudo ln -s /opt/Unity/unity-editor.desktop unity-editor.desktop
    Done, now it should appear on your search bar when you write "Unity".
     
  2. Dan-MacDonald

    Dan-MacDonald

    Joined:
    Oct 25, 2013
    Posts:
    17
    Thanks so much for this!
     
    javierbullrich likes this.
  3. jakubkolakowski6

    jakubkolakowski6

    Joined:
    Apr 23, 2020
    Posts:
    1
    Or just install it from flatpak
     
  4. javierbullrich

    javierbullrich

    Joined:
    Jan 31, 2020
    Posts:
    6
    I guess you can use that now. I wrote this some years ago, flatpak wasn't even planned back then.