About the solution to the unity hub stuck on the startup page under the Ubuntu system

About the solution to the unity hub stuck on the startup page under the Ubuntu system

Recently, I am trying to install unity hub with ubuntu, but no matter whether I use the download method recommended by the official website or directly download the deb package for installation, there will always be a problem of window stuck, either the startup page keeps turning in circles, or the startup page is black, or directly Just can't open it.
I searched for many solutions on the Internet, including supplementary dependencies, reinstallation, etc., but none of them worked. The solutions given on many domestic websites were one or two years ago and outdated.
Later, I found that the method given by a foreign boss is very useful, so I moved it. Looking forward to helping more ubuntu users.
Original link:

https://dev.to/brenomfviana/installing-unity-hub-on-ubuntu-42l0

1. Download and install OpenSSL1.0

wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl1.0/libssl1.0.0_1.0.2n-1ubuntu5.10_amd64.deb
sudo dpkg -i libssl1.0.0_1.0.2n-1ubuntu5.10_amd64.deb

2. Add unity hub to the warehouse source

sudo sh -c 'echo "deb https://hub.unity3d.com/linux/repos/deb stable main" > /etc/apt/sources.list.d/unityhub.list'

3. Add public key

wget -qO - https://hub.unity3d.com/linux/keys/public | sudo tee /etc/apt/trusted.gpg.d/unityhub.asc

4. Install unity hub

sudo apt update
sudo apt install unityhub`

According to the rules, an uninstall command is attached at the end:
sudo apt remove unityhub

Then the unity hub can be opened. Note that when you open it for the first time, you may click the "Agree" button on the license page and there is no response. At this time, you only need to click the gray font in the lower right corner to skip, and then you can operate normally. , licenses and the like can be added manually.

Guess you like

Origin blog.csdn.net/Coco94joker/article/details/128275361