Search Unity

Unity Hub on an Ubuntu VM

Discussion in 'Getting Started' started by bholland, Dec 1, 2020.

  1. bholland

    bholland

    Joined:
    Mar 24, 2017
    Posts:
    28
    Hey everyone. I'm attempting to install the Unity Hub on an ubuntu VM on openstack. The ubuntu version is 18.04.

    I'm running into some interesting barriers. My work (where the VM is) is behind a proxy. If I pulled in an old UnityHub.AppImage and created an upmconfig.tom file and copied in a generic .pem file; then built a bash file using the following...

    Code (CSharp):
    1. echo '#/bin/bash
    2. export HTTP_PROXY=/home/ubuntu/upmconfig.toml
    3. export HTTPS_PROXY=/home/ubuntu/upmconfig.toml
    4. nohup "/home/ubuntu/UnityHub.AppImage" &>/dev/null &' > /home/ubuntu/installUnityHub.command
    5. chmod +x installUnityHub.command
    6.  
    I was able to open the HUB, but I wasn't allowed to sign in.

    If I used the current UnityHub.AppImage the bash script would run and create the UnityHub.command, but if I ran that command UnityHub will not open and I get self-signed cert in chain errors from cloudflare.

    Any help or pointers would be appreciated.

    Thanks!