diff --git a/source/explore/get-started/install.rst b/source/explore/get-started/install.rst index 0b67d977..e03d2c38 100755 --- a/source/explore/get-started/install.rst +++ b/source/explore/get-started/install.rst @@ -54,7 +54,7 @@ In addition, your network must have enough internet bandwidth to run Overte: Download Overte ----------------------------------- -The current release is available to `download on our website `_. +The current release is available to `download on our website `_. If you intend to use Overte in VR mode with an HMD, ensure that SteamVR or Oculus Runtime is also installed on your system before launching Overte. VR mode is not supported on macOS. The Oculus Runtime is not supported on Linux. diff --git a/source/host/server-setup/linux-server.md b/source/host/server-setup/linux-server.md old mode 100755 new mode 100644 index 8f909ada..8452f2ca --- a/source/host/server-setup/linux-server.md +++ b/source/host/server-setup/linux-server.md @@ -8,79 +8,89 @@ You can run these same commands on an existing Overte domain to upgrade it if th ## Server: +### Debian 12 + +```bash +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server_2023.11.1-debian-12-1_amd64.deb +sudo apt-get update && sudo apt-get install ./overte-server_2023.11.1-debian-12-1_amd64.deb +``` + ### Debian 11 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server_2022.12.1-debian-11-1_amd64.deb -sudo apt-get update && sudo apt-get install ./overte-server_2022.12.1-debian-11-1_amd64.deb +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server_2023.11.1-debian-11-1_amd64.deb +sudo apt-get update && sudo apt-get install ./overte-server_2023.11.1-debian-11-1_amd64.deb ``` -### Ubuntu Server 22.04 LTS +### Ubuntu 22.04 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server_2022.12.1-ubuntu-22.04-1_amd64.deb -sudo apt-get update && sudo apt-get install ./overte-server_2022.12.1-ubuntu-22.04-1_amd64.deb +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server_2023.11.1-ubuntu-22.04-1_amd64.deb +sudo apt-get update && sudo apt-get install ./overte-server_2023.11.1-ubuntu-22.04-1_amd64.deb ``` ### Ubuntu 20.04 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server_2022.12.1-ubuntu-20.04-1_amd64.deb -sudo apt-get update && sudo apt-get install ./overte-server_2022.12.1-ubuntu-20.04-1_amd64.deb +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server_2023.11.1-ubuntu-20.04-1_amd64.deb +sudo apt-get update && sudo apt-get install ./overte-server_2023.11.1-ubuntu-20.04-1_amd64.deb ``` -### Ubuntu 18.04 +### Fedora 38 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server_2022.12.1-ubuntu-18.04-1_amd64.deb -sudo apt-get update && sudo apt-get install ./overte-server_2022.12.1-ubuntu-18.04-1_amd64.deb +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server-2023.11.1-1.fc38.x86_64.rpm +sudo yum update && sudo rpm -i ./overte-server-2023.11.1-1.fc38.x86_64.rpm ``` -### Fedora 36 -```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server-2022.12.1-1.fc36.x86_64.rpm -sudo yum update && sudo rpm -i ./overte-server-2022.12.1-1.fc36.x86_64.rpm -``` ### Fedora 37 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server-2022.12.1-1.fc37.x86_64.rpm -sudo yum update && sudo rpm -i ./overte-server-2022.12.1-1.fc37.x86_64.rpm +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server-2023.11.1-1.fc37.x86_64.rpm +sudo yum update && sudo rpm -i ./overte-server-2023.11.1-1.fc37.x86_64.rpm ``` + ### Rocky Linux 9 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server-2022.12.1-1.el9.x86_64.rpm -sudo yum update && sudo rpm -i ./overte-server-2022.12.1-1.el9.x86_64.rpm +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server-2023.11.1-1.el9.x86_64.rpm +sudo yum update && sudo rpm -i ./overte-server-2023.11.1-1.el9.x86_64.rpm ``` ## aarch64 server: -### Debian 11 +### Debian 12 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server_2022.12.1-debian-11-1_arm64.deb -sudo apt-get update && sudo apt-get install ./overte-server_2022.12.1-debian-11-1_arm64.deb +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server_2023.11.1-debian-12-1_arm64.deb +sudo apt-get update && sudo apt-get install ./overte-server_2023.11.1-debian-12-1_arm64.deb ``` -### Ubuntu 22.04 +### Debian 11 + +```bash +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server_2023.11.1-debian-11-1_arm64.deb +sudo apt-get update && sudo apt-get install ./overte-server_2023.11.1-debian-11-1_arm64.deb +``` + +### Ubuntu 22.04 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server_2022.12.1-ubuntu-22.04-1_arm64.deb -sudo apt-get update && sudo apt-get install ./overte-server_2022.12.1-ubuntu-22.04-1_arm64.deb +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server_2023.11.1-ubuntu-22.04-1_arm64.deb +sudo apt-get update && sudo apt-get install ./overte-server_2023.11.1-ubuntu-22.04-1_arm64.deb ``` -### Fedora 36 +### Fedora 38 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server-2022.12.1-1.fc36.aarch64.rpm -sudo yum update && sudo rpm -i ./overte-server-2022.12.1-1.fc36.aarch64.rpm +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server-2023.11.1-1.fc38.aarch64.rpm +sudo yum update && sudo rpm -i ./overte-server-2023.11.1-1.fc38.aarch64.rpm ``` -### Fedora 37 +### Fedora 37 ```bash -wget https://public.overte.org/build/overte/release/2022.12.1/overte-server-2022.12.1-1.fc37.aarch64.rpm -sudo yum update && sudo rpm -i ./overte-server-2022.12.1-1.fc37.aarch64.rpm +wget https://public.overte.org/build/overte/release/2023.11.1/overte-server-2023.11.1-1.fc37.aarch64.rpm +sudo yum update && sudo rpm -i ./overte-server-2023.11.1-1.fc37.aarch64.rpm ``` ### Unlisted Distribution @@ -140,10 +150,10 @@ Assuming you created a new server with the name **my-server-two**, this would se Uninstall the package. ```sh -# Ubuntu +# Ubuntu/Debian # Note: 'apt-get purge' will remove configuration files as well. Use 'apt-get remove' to keep them. sudo apt-get purge overte-server -# Amazon Linux 2 +# Fedora/Rock Linux sudo yum remove overte-server ``` diff --git a/source/host/server-setup/windows-server.rst b/source/host/server-setup/windows-server.rst index abe89026..312e74f1 100755 --- a/source/host/server-setup/windows-server.rst +++ b/source/host/server-setup/windows-server.rst @@ -20,7 +20,7 @@ Before you set up a local server, you should have a basic understanding of compu At a minimum, the computer that you use for your server should meet our `minimum system requirements <../../explore/get-started/install.html#minimum-system-requirements>`_. However, keep in mind that as you add more visitors to your domain, the demand on your resources will increase. Therefore if you wish to invite a large group (over 15 visitors) or create a complex content set, we encourage you to increase your memory and network bandwidth. -To host a domain on Windows, you must be running Overte's open source `Client + Server `_ software. +To host a domain on Windows, you must be running Overte's open source `Client + Server `_ software. --------------- Create a Domain