16 Commits

Author SHA1 Message Date
Dustin B
4dc9b830ba Update xo_install.sh
removing libfuse2t64 in favor of fuse2fs. 

Needs validation if process still works on Debian 12.12
2025-09-08 17:28:43 -04:00
Dustin B
15ddc7cea5 Debian 13 Package Dependency
Adds "libfuse2t64" for Debian 13 distro
2025-08-19 15:15:20 -04:00
Dustin B
5a5f8035f2 Update README.md
Header change
2025-07-30 10:09:41 -04:00
Dustin B
3c3e7710c7 Update README.md 2025-07-25 11:41:00 -04:00
Dustin B
58fcac8659 Update README.md 2025-07-25 11:10:01 -04:00
Dustin B
ac22baf7a9 Update README.md 2025-07-25 11:02:06 -04:00
Dustin B
8c8f2e0d1d Update README.md
Adding v6 to XOCE
2025-07-25 11:01:18 -04:00
Dustin B
ada0c8dc91 Merge pull request #129 from Jarli01/update_depends
Add openssl dependency
2025-02-22 09:36:35 -05:00
Dan Pollak
e54fc57cdc Add openssl dependency
Signed-off-by: Dan Pollak <danpollak2@gmail.com>
2025-02-22 08:32:04 -06:00
Dustin B
47bd62ec0a Update README.md
URL update to current documentation
2025-01-06 16:40:53 -05:00
Dan Pollak
c092780246 Node 18 is no longer a requirement (#126) 2024-06-21 17:00:09 -05:00
Dustin B
5a04a2aed6 Update README.md
Removal of the prepackaged installation, with XOlite around the corner a minimized installation won't be required when released.
2024-02-09 15:45:44 -05:00
Dustin B
bfc606a207 Merge pull request #122 from Jarli01/dp_sudo
Remove remaining `sudo` instances
2024-01-05 11:47:17 -05:00
Dan Pollak
95c80ae455 Remove sudo 2024-01-05 07:18:27 -06:00
Dan Pollak
d12423d78c Node LTS >> Node 18 2023-11-03 19:53:27 -05:00
Dan Pollak
910e9c2cae Update steps to install 2022-11-07 09:09:57 -06:00
2 changed files with 12 additions and 7 deletions

View File

@@ -23,8 +23,8 @@ Xen-Orchestra (Community Edition) allows you to administer Citrix Hypervisor (ak
Run the following steps from a root shell on your **Ubuntu or Debian** host.
curl https://raw.githubusercontent.com/Jarli01/xenorchestra_installer/master/xo_install.sh | sudo bash
<password>
sudo bash
bash -c "$(curl https://raw.githubusercontent.com/Jarli01/xenorchestra_installer/master/xo_install.sh)"
The default username and password are applied, admin@admin.net and admin for the password
@@ -39,9 +39,7 @@ To maintain your installation from Source or from this repo. (either prepackaged
# Declarations
This script automates the manual process which can be [found here](https://xen-orchestra.com/docs/from_the_sources.html) as well as removes a few feature restrictions that otherwise would need to be changed manually if following the manual installation process. This script is not officially supported by the Vates team, but is supported by this community.
## Prepackaged Installation temporarily disabled while I sort out the credentials issue.
This script automates the manual process which can be [found here](https://docs.xen-orchestra.com/installation) as well as removes a few feature restrictions that otherwise would need to be changed manually if following the manual installation process. This script is not officially supported by the Vates team, but is supported by this community.
# Self-signed SSL
@@ -85,4 +83,11 @@ While the goal initially was to have a solution as close to XOA as possible, wit
To keep XOCE up to date I recommend that anyone who's used this installation script or the sources installation to use this: https://github.com/Jarli01/xenorchestra_updater
## Adding XOCE v6 to your installation (this is a Work In Progress by Vates)
cd /opt/xen-orchestra
yarn run turbo run build --filter @xen-orchestra/web
Once the installation is completed, you can then go to [https://your-host-ip/v6](https://your-host-ip/v6)

View File

@@ -27,7 +27,7 @@ xo_service="xo-server.service"
#Install yarn
cd /opt
/usr/bin/curl -sSL $yarn_gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
/usr/bin/curl -sSL $yarn_gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg >/dev/null
echo "$yarn_repo" | tee /etc/apt/sources.list.d/yarn.list
/usr/bin/apt-get update
/usr/bin/apt-get install --yes yarn
@@ -43,7 +43,7 @@ n lts
ln -s /usr/bin/node /usr/local/bin/node
# Install XO dependencies
/usr/bin/apt-get install --yes build-essential redis-server libpng-dev git python3-minimal libvhdi-utils nfs-common lvm2 cifs-utils
/usr/bin/apt-get install --yes build-essential redis-server libpng-dev git python3-minimal libvhdi-utils nfs-common lvm2 cifs-utils openssl fuse2fs
/usr/bin/git clone -b $xo_branch $xo_server