Search Unity

  1. Unity 6 Preview is now available. To find out what's new, have a look at our Unity 6 Preview blog post.
    Dismiss Notice
  2. Unity is excited to announce that we will be collaborating with TheXPlace for a summer game jam from June 13 - June 19. Learn more.
    Dismiss Notice
  3. Dismiss Notice

Unity2020.3.* doesn't works on Linux

Discussion in 'Linux' started by cupen, Sep 21, 2022.

  1. cupen

    cupen

    Joined:
    Jun 24, 2022
    Posts:
    1
    I tried Unity-2020.3.36, 2020.3.38, 2020.3.39 on ArchLinux.
    All of them doesn't work for me.

    Reproduce:
    1. Open UnithHub then install Unity-2020.3.xx ( it's 2020.3.39f1 now).
    2. Click [New Project]-[Learning]-[2D Platformer Microgame]-[Create project]
    3. Then it open the project and show me two empty errors in Console UI.
    upload_2022-9-21_15-47-19.png
     
    Murilovsky likes this.
  2. Murilovsky

    Murilovsky

    Joined:
    Jun 17, 2019
    Posts:
    2
    I'm having the same issue. Tried on fedora 37 and 38 and on Ubuntu 23.04, none of them worked
     
  3. tylerinthezoo

    tylerinthezoo

    Unity Technologies

    Joined:
    Jun 15, 2022
    Posts:
    97
    2020.3 editor is no longer supported for a while. Please do upgrade to the latest LTS version
     
  4. RichAllen2023

    RichAllen2023

    Joined:
    Jul 19, 2016
    Posts:
    1,026
    I managed to get the most recent 2021 version to work a few months back.

    Although to be honest, I've pretty much given up on Unity in general and have migrated to Godot Game Engine.
     
    Murilovsky likes this.
  5. ChiwTheNeko

    ChiwTheNeko

    Joined:
    Mar 24, 2022
    Posts:
    150
    I use unity 2020.3 on Linux all the time and it works just fine. 2021.3 works fine too.
     
  6. sfjohansson

    sfjohansson

    Joined:
    Mar 12, 2013
    Posts:
    370
    Unity works great on Linux, been using it for work for many years on a daily basis!
     
  7. LinkLiu

    LinkLiu

    Joined:
    Jun 16, 2015
    Posts:
    5
    I got the same error too. but you can check the Editor.log:
    Code (CSharp):
    1.  
    2. -----CompilerOutput:-stderr----------
    3. No usable version of the libssl was found
    4. /home/eyap/Unity/Hub/Editor/2020.3.33f1/Editor/Data/Tools/RoslynScripts/unity_csc.sh: line 3: 25959 Aborted (core dumped) "/home/eyap/Unity/Hub/Editor/2020.3.33f1/Editor/Data/Tools/RoslynScripts/../../Tools/Roslyn/csc" /shared /noconfig @temp/UnityTempFi
    5. -----EndCompilerOutput---------------
    6.  
    "No usable version of the libssl was found" means you didn't have libssl to use.you can use the follow bash code to install a libssl
    Code (CSharp):
    1.  
    2. echo "deb http://security.ubuntu.com/ubuntu focal-security main" | sudo tee /etc/apt/sources.list.d/focal-security.list
    3. sudo apt-get update
    4. sudo apt-get install libssl1.1
    5.  
    it's works for me! you can try it
     
    BlaqueC likes this.
  8. LinkLiu

    LinkLiu

    Joined:
    Jun 16, 2015
    Posts:
    5
    the relative post is here:https://forum.unity.com/threads/empty-log-errors-in-2019-1-0f2.669961/
     
  9. BlaqueC

    BlaqueC

    Joined:
    Apr 1, 2019
    Posts:
    1
    Thanks so much. After two days of searching, your's was the most direct and simplest solution
     
  10. Ca2didi

    Ca2didi

    Joined:
    Sep 8, 2019
    Posts:
    18
    I can't run those version on Ubuntu 23.10 or Fedora 39 which forced me to use Ubuntu 22.04:confused: