Giter Club home page Giter Club logo

horizon-linux-vm's Introduction

Horizon Linux VM

Optimized Ubuntu Template for VMware Horizon 7

Ubuntu 14.04.4 LTS Published VMware Fling Tip Me via PayPal Twitter Follow

This project is published as a VMware Fling. Please visit the Flings site to get the latest OVA.

Ubuntu Desktop is the perfect Virtual Desktop Infrastructure (VDI) alternative to Windows for VDI Admins who are looking to move away from a Windows-centric desktop delivery. With an infrastructure utilizing VMware Horizon 7, this pre-packaged OVA aims to ease the setup and configuration of a Ubuntu Template VM, especially for Windows Admins that aren’t familiar with a Linux desktop.

Ubuntu Gnome in the Horizon Client (recommended)

Ubuntu + Plasma Desktop in the Horizon Client

Ubuntu + MATE Desktop in the Horizon Client

Join the conversation

Come say hi on Slack and engage with the community over at VMware {CODE}. You can find us at our new channel #ubuntu-ova-for-horizon

Details

Preconfigured Ubuntu OVA

  • Base image is Ubuntu 18.04.4 LTS x64 built from mini.iso for minimal footprint
  • VMware HW v14 (requires vSphere 6.7+)
  • Configured for 2D Graphics Settings
  • Default username/password is viewadmin/viewadmin
  • The VM includes the optimize.sh script which configures VM to Best Practices per Horizon 7 Documentation & joins the domain
  • The VM includes the linux-agent-install.sh script to install the Horizon Agent and configure USB 3.0 Redirection
  • Additional system tweaks and applications may be necessary for your needs.
  • Due to licensing limitations, the Horizon Agent is NOT included in this OVA. It must be downloaded manually after completing the optimization script.

Instructions

Steps:

  1. Download the pre packaged OVA & deploy to your datacenter
  2. Boot the VM and ensure you get a valid IP and can reach the internet (you can use sudo dhclient to use DHCP)
  3. Open a console to the VM and login as viewadmin/viewadmin
  4. Open Terminal and type
sudo apt-get update && sudo apt-get upgrade
  5. Install all available updates and reboot if prompted
  6. Open Terminal and type
su root -c ./optimize.sh
  7. Enter the root password (viewadmin)
  8. Follow the prompts

Once complete, you'll want to finish customizing your template to your needs before installing the Horizon Agent (e.g., configure SSO, configure 3D/NVIDIA GRID requirements, etc). See the Official VMware Linux Desktop Guide here.

After completing your customizations, you can manually install the Horizon Agent, or you can invoke the included linux-agent-installer.sh script by typing su root -c ./linux-agent-installer.sh then proceed with building your pools. This script will install the Horizon Agent with default values, as well as prompt to enable USB 3.0 compatibility and redirection.

Developer Desktop Package

Choosing to install the Developer Desktop Package when prompted will install the following packages:

  • snapd
  • VSCode
  • Docker
  • Kind
  • Octant
  • zsh + ohmyzsh
    • NOTE: users will need to be added to /etc/passwd in order to set zsh as default shell

NOTE: Enabling Developer Desktop Package requires you to add your subnet to /etc/vmware/viewagent-custom.conf following the Horizon Agent install (e.g., Subnet=10.10.100.1/24)

For additional Developer-specific tweaks and detailed build guidance, see my colleague Robert Guske's excellent Horizon Linux Blog series here

Changelog

Version: 1.2

  • Special thanks to Robert Guske for testing & feedback
  • Support for Horizon 7.11 and 7.12
  • Support for vSphere 6.7+
  • Updated OVA base image to Ubuntu 18.04.4 LTS
  • Updated Virtual Hardware to v14
  • Added option to configure static networking
  • Added support for USB 3.0 and USB Redirection (via linux-agent-installer.sh)
  • Added KDE Desktop Environment Option
  • Added Gnome Desktop Environment Option (recommended)
  • Developer Desktop Package option
  • Added Keyboard Layout Option
  • Added option to enable SSH
  • Removed runlevel 5 setting
  • Fixed MOTD prompt code
  • Disabled auto software updates
  • Removed greeter modifications to support SSO
  • Numerous improvements to script
  • Script renamed to 'optimize.sh'

Version: 1.1.0

  • MATE Only Release
  • Increased vRAM to 128 MB instead of Automatic
  • Removed Audio Device
  • Updated default network device to VMXNET3
  • Updated repository for open-vm-tools to Ubuntu repo
  • Added Horizon 7.1 Agent Dependencies
  • Updated Dependency packages for Ubuntu 16.04 on Horizon 7.1
  • Agent installer script updated with Horizon 7.1 links
  • Updated Media Codec packages for Ubuntu 16.04
  • Updated MATE packages to Xenial
  • More reliable domain join
  • Password update optional
  • Timezone update optional
  • Option to change hostname
  • Desktop addons optional
  • Added retry attempts for failed wgets of smb and krb5 configuration files
  • Renamed ‘horizon-linux-installer.sh’ to ‘linux-agent-installer.sh

Version: 1.0.0

  • Published as Ubuntu OVA for Horizon on VMware Flings
  • Base updated to Ubuntu 16.04 LTS
  • Requires Horizon 7.0.3 or later

Version: RC2

  • Horizon Agent installer script now available
  • Domain Join via Winbind is now optional to allow domain flexibility
  • Winbind default domain flag optional (previously set to false)
  • GNOME Flashback or MATE Desktop Environment option
  • OVA RAM increased to 2GB per best practice
  • OVA CPU increased to 2 vCPU per best practice
  • SVGA properties added to VMX per best practice
  • Disable LTS Upgrade Notification
  • Some script optimizations

Version: RC1

  • Built from Ubuntu’s mini.iso for a minimal footprint
  • Installs the MATE desktop environment
  • Configures your Timezone
  • Updates admin (viewadmin) and root passwords
  • Configures DNS servers
  • Disables automatic Updates
  • Downloads and installs the latest Open VM Tools packages
  • Sets default run level to 5
  • Sets FQDN in /etc/hosts
  • Installs Horizon Agent dependencies
  • Installs Winbind
  • Configures krb5.conf
  • Configures smb.conf
  • Joins the domain
  • New user home directory config
  • Optimizes login screen for VDI
  • Remove guest login
  • Installs Drivers & Media Codecs
  • Currently only supports one domain controller
  • Support for 2D desktops only

Key Considerations

  • Note your Active Directory may have different encryption type requirements. These can be modified in krb5.conf
  • After rebooting, you can run the command wbinfo -g to see your AD groups. This also confirms you are joined to the domain.
  • This script defaults the Winbind Separator to "+" in smb.conf. You can change it depending on your needs. More info here.
  • Using Winbind means each clone must re-join the domain after creation. You can create a local script on each clone to perform this, but it would require domain admin credentials in plaintext. In a production environment, it is recommended to remotely join your clones to the domain using PowerCLI or SSH.
  • Consider deleting the scripts from /home/viewadmin prior to creating your clones

Troubleshooting

Domain Join

Joining the domain can fail for many reasons. You can try the below tests and review against the guide here.

  • If the VM failed to join the domain during the script, attempt manually joining again after the reboot.

    kinit [email protected]

    klist (to verify you received a ticket)

    net ads join -U username%password

    net ads testjoin (should say “Join is OK” if it worked)

  • If you consistently get the error This operation is only allowed for the PDC of the domain try

    realm join -U [email protected] [email protected]

  • Verify your hosts, KRB5 and SMB configuration files reflect the correct addresses and IP addresses.

  • Verify there is no time drift between the Ubuntu VM and the DCs. You may need to reconfigure NTP or disable it.

  • Sometimes adding the DC to /etc/hosts can help nudge the domain join along

Agent Status

  • If your Horizon Agent status is Unreachable or Waiting for Agent, review the official troubleshooting guide here.

  • Some environments may require you to add the Connection Server IP/FQDN to the /etc/hosts file. This is usually an environmental DNS issue.

  • Some environments may require you to add a search domain to /etc/netplan/01-netcfg.yaml (e.g., search: [corp.local])

horizon-linux-vm's People

Contributors

thatvirtualboy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.