Search Unity

Unity Hub shows a black screen

Discussion in 'Linux' started by Deleted User, May 26, 2022.

  1. Deleted User

    Deleted User

    Guest

    This is my first time using unity on this Computer, I installed unity hub and launched it and it only loaded black besides the top bar of unity.

    Running:
    Ubuntu 22.04
    Unity Hub 3.1.2
    Linux 5.15.0-35-generic x86_64

    Installation Date: 2022-05-23

    View attachment 1060460
     
    Last edited by a moderator: May 27, 2022
  2. KevinWelton

    KevinWelton

    Joined:
    Jul 26, 2018
    Posts:
    239
    Hi @CryoHelifax. We currently don't support Ubuntu 22.04 (support is upcoming though!)

    You are likely running into missing libssl1.1, which is a known limitation right now. We are investigating mitigations.
     
  3. tothal

    tothal

    Joined:
    Jun 2, 2022
    Posts:
    1
    If that is the case you can install libssl1.1 like this in ubuntu 22.04

    echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list

    sudo apt-get update
    sudo apt-get install libssl1.1

    This will add the package from ubuntu 21.04, and you can remove it after installing libssl1.1
    It made unity hub work for me
     
  4. Pnvanol

    Pnvanol

    Joined:
    Jan 11, 2016
    Posts:
    116
    still getting a black screen
     
  5. Konrad-kol

    Konrad-kol

    Joined:
    May 9, 2019
    Posts:
    1
    I can confirm that after doing what @tothal described above and restarting the system I was able to get past the black screen.

    Thank you
    @tothal
     
  6. Foorack

    Foorack

    Joined:
    Apr 3, 2020
    Posts:
    1
    I would not recommend adding the repository of an older release to your system. For those stuck with a black screen on Ubuntu 22.04 or above, you can add the missing libssl1.1 with direct deb file:

    wget http://mirrors.kernel.org/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.6_amd64.deb
    sudo apt install ./libssl1.1_1.1.1l-1ubuntu1.6_amd64.deb[


    Afterwards you need to kill any running instance with "killall unityhub-bin" (run it a few times until it says "no process found", and then start UnityHub normally via GNOME.
     
    gabs987 and massimomusante like this.
  7. badjano

    badjano

    Joined:
    Aug 2, 2012
    Posts:
    24
    massimomusante likes this.
  8. MorgaineBrigid

    MorgaineBrigid

    Joined:
    Jul 19, 2022
    Posts:
    2
    For those stuck with a black screen on Ubuntu 22.04 or above, you can add the missing libssl1.1 with direct deb file:

    wget http://mirrors.kernel.org/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.6_amd64.deb
    sudo apt install ./libssl1.1_1.1.1l-1ubuntu1.6_amd64.deb[


    This gave me a 301 Error: Moved Permanently. But apparently I already had the files installed successfully because when I did this, IT WORKED!


    Here's the result: upload_2022-8-25_18-40-30.png
     
  9. unity_EA8A8929DCB2DC8E31EB

    unity_EA8A8929DCB2DC8E31EB

    Joined:
    Sep 5, 2022
    Posts:
    1
    @MorgaineBrigid 's solution worked for me too. Although, the url was slightly different. Added HTTPS and the version is a little different:

    Code (Boo):
    1. wget https://mirrors.kernel.org/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
    2. sudo apt install libssl1.1_1.1.1f-1ubuntu2_amd64.deb
    Restart computer. This fix did not work without a restart.

    Thanks @MorgaineBrigid and @tothal !

    Here's my ubuntu version for anyone matching:

    Code (Boo):
    1. $ cat /etc/issue.net
    2. Ubuntu 22.04.1 LTS
    3. $ uname -a
    4. Linux station-1 5.15.0-47-generic #51-Ubuntu SMP Thu Aug 11 07:51:15 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
     
  10. fire_a2

    fire_a2

    Joined:
    Mar 1, 2022
    Posts:
    2
    libssl1.1 is already installed on my machine but I still get a black screen. Capture d’écran de 2022-12-12 21-36-12.png