I am aware of this page: https://unity3d.com/get-unity/download/archive but the downloads are only for windows and mac and despite having it installed, the "unity hub" button does nothing. I have found places to download even older versions like 2018 but I need version "2019.2.5f1". Can I download and use the mac version? Is there somewhere I can download this compiled for Linux without using unity hub? Thanks for any help.
The UnityHub link will have a version hash in it which is unique across platforms. With that hash, you can build the Linux version download URL yourself.
In your case, you need 2019.2.5f1, which gives you the UnityHub link unityhub://2019.2.5f1/9dace1eed4cc
You can download the tarball at the following URL:
https://download.unity3d.com/download_unity/9dace1eed4cc/LinuxEditorInstaller/Unity.tar.xz
The unity-editor
package is a good one to modify the PKGBUILD file for if you'd like to install an arbitrary version as a proper package.
- Clone the project
- Tweak the PKGBUILD version and hash to the one you want
- Run
makepkg -g
to generate the checksum for the new tarball - Insert the new checksum into the PKGBUILD
- Run
makepkg -p PKGBUILD
to compile the package - Run
sudo pacman -U ./unity-editor-${pkgversion}.pkg.tar
to install your newly built package.
If anyone is having this issue and want to download older versions from unityhub, there is solution that worked for me :
- Go to unity download archive
- Copy redirection link from the green button (you can right click it and select "Open Link in new tab", and then copy it from here)
- Once you have the link, open up your terminal and go to location in which you have UnityHub.AppImage
- Simply use this command :
./UnityHub.AppImage link
where link is what you copied (for example./UnityHub.AppImage unityhub://2019.3.13f1/d4ddf0d95db9
to download 2019.3.13 version of uinity)
The UnityHub link will have a version hash in it which is unique across platforms. With that hash, you can build the Linux version download URL yourself.
In your case, you need 2019.2.5f1, which gives you the UnityHub link unityhub://2019.2.5f1/9dace1eed4cc
You can download the tarball at the following URL:
https://download.unity3d.com/download_unity/9dace1eed4cc/LinuxEditorInstaller/Unity.tar.xz
The unity-editor
package is a good one to modify the PKGBUILD file for if you'd like to install an arbitrary version as a proper package.
- Clone the project
- Tweak the PKGBUILD version and hash to the one you want
- Run
makepkg -g
to generate the checksum for the new tarball - Insert the new checksum into the PKGBUILD
- Run
makepkg -p PKGBUILD
to compile the package - Run
sudo pacman -U ./unity-editor-${pkgversion}.pkg.tar
to install your newly built package.
I have two of the hashes:
89d6087839c2 Unity 2019.3.1f1
b9898e2d04a4 unity 2019.2.16f1
© 2022 - 2024 — McMap. All rights reserved.