Install Zenmap on Ubuntu 20.04

mkdir -p ~/Downloads/zenmap
cd ~/Downloads/zenmap

wget http://old-releases.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-gtk2_2.24.0-6_amd64.deb
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/n/nmap/zenmap_7.80+dfsg1-1build1_all.deb

sudo apt install ./*.deb

Linux version 1.4.00.4855 of teams no longer opens a URL

Change:

Teams no longer want to start calendar events or open teams for audio or video

vi /usr/bin/teams


nohup “$TEAMS_PATH” –disable-namespace-sandbox –disable-setuid-sandbox “$@” > “$TEAMS_LOGS/teams-startup.log” 2>&1 &
To:
nohup “$TEAMS_PATH” “$@” –disable-namespace-sandbox –disable-setuid-sandbox > “$TEAMS_LOGS/teams-startup.log” 2>&1 &
in /usr/bin/teams

Expand local Citrix Hypervisor Storage 7.x / 8.x

Expand local Citrix Hypervisor Storage

Hier onder wordt beschreven hoe een Citrix Hypervisor de local Storage van een RAID1, 5 of 10 wordt uitgebreid binnen een Citrix Hypervisor van +-30GB naar +-60GB. Op een HP Server als voorbeeld zul je eerst de RAID set moeten vergroten als dit gebeurd is kan het volume binnen een Citrix Hypervisor vergroot worden. Dit kan allen als de VM down zijn, de server heeft een Reboot nodig.

Lees verder

VMware Horizon Version 2012

What’s New in This Release

VMware Horizon version 2012 provides the following new features and enhancements. This information is grouped by installable component.

Beginning with this release, version numbering is based on the planned year and the month of the release. The actual release date can vary based on business needs and engineering schedule changes to address critical customer requirements.

Horizon Connection Server

Lees verder

VMware MOB Extension Details and Remove Extension

vCenter MOB Chart

Extension NameService Description
com.vmware.vim.eamvSphere ESX Agent Manager
com.vmware.vim.inventoryservicevCenter Inventory Service
com.vmware.vim.lsLicensing Services
com.vmware.vim.smsVMware vCenter Storage Monitoring Service
com.vmware.vim.spsVMware vSphere Profile-drive Storage Service
com.vmware.vim.stats.reportPerformance charts built-in extension
com.vmware.vim.stats.vsmService Manager
cim-uivCenter Hardware Status
health-uivCenter Service Status
hostdiagInternal extension to declare diagnostic events from VMware Host systems
VirtualCenterVirtualCenter dynamic events and tasks
com.vmware.orchestratorVMware vRealize Orchestrator plugin (formerly known as VMware vCenter Orchestrator plug-in)
com.vmware.rbdAuto Deploy
com.vmware.syslogVMware Syslog Collector Configuration
com.vmware.vcDrVMware vCenter Site Recovery Manager Extension
com.vmware.vcHmsvSphere Replication Management (VRM)
com.vmware.vcIntegrityVMware vSphere Update Manager Extension
com.vmware.vShieldManagervShield Manager
vCloud Director-1vCloud Director
com.vmware.vcopsvRealize Operations Manager (formerly known as vCenter Operations Manager)
com.vmware.vadmVMware vRealize Infrastructure Navigator (formerly known as vCenterInfrastructure Navigator)
com.vmware.vdpvSphere Data Protection 5.1
com.vmware.vdp2
com.vmware.vdp2.config
vSphere Data Protection 5.5/5.8
com.vmware.vsan.healthvSAN Health Check Plug-in
com.vmware.heartbeattasksvCenter Server Heartbeat
com.vmware.hbwcvCenter Server Heartbeat
com.vmware.heartbeatvCenter Server Heartbeat
com.neverfail.heartbeatvCenter Server Heartbeat

Remove unwanted plug-ins from the available plug-in list.

To remove unwanted plug-ins from the available plug-in list:

  1. In a web browser, navigate to https://vCenter_Server_name_or_IP/mob.

    Where vCenter_Server_name_or_IP/mob is the name of your vCenter Server or its IP address. Log in with your vCenter SSO admin credentials.
     
  2. Click Content.
  3. Click ExtensionManager.
  4. Select and copy the name of the plug-in you want to remove from the list of values under Properties. For a list of default plug-ins, see the Additional Information section of this article.
  5. Click UnregisterExtension. A new window appears.
  6. Paste the key of the plug-in and click Invoke Method. This removes the plug-in and results in void.
  7. Close the window.
  8. Refresh the Managed Object Type:ManagedObjectReference:ExtensionManager window to verify that the plug-in is removed successfully.

Note: If the plug-in still appears, you may have to restart the vSphere Client.   To disable the plugin through the Client Plug-In manager within the vSphere Web Client 5.1 and later:

  1. Log in to the vSphere Web Client with an vCenter Server Administrative user.
  2. When the error appears, click No.
  3. Navigate to Administration > Client Plug-Ins.
  4. Locate the client plug-in you want to disable.
  5. Right-click this entry and select Disable.
  6. Click Yes on the pop-up box for disabling the plugin.

Home Assistant Reversed Proxy Apache Ubuntu Server 20.04.1

Accessing Home Assistant through Apache, error “Unable to Connect to Home Assistant, Retry” reversed proxy (Opgelost door onderstaand config te plaatsen

  
  ServerAdmin admin@my.domain
  ServerName ha.my.domain
  
  SSLProxyEngine On
  SSLCertificateFile /var/lib/apache2/conf/cert/fullchain.pem
  SSLCertificateKeyFile /var/lib/apache2/conf/cert/privkey.pem
  SSLCertificateChainFile  /var/lib/apache2/conf/cert/chain.pem

  ProxyPreserveHost On
  ProxyRequests Off
  ProxyPass / http://ha_server_ip:8123
  ProxyPassReverse / http://ha_server_ip:8123
  ProxyPass /api/websocket ws://ha_server_ip:8123/api/websocket
  ProxyPassReverse /api/websocket ws://ha_server_ip:8123/api/websocket

  RewriteEngine on
  RewriteCond %{HTTP:Upgrade} =websocket [NC]
  RewriteRule /(.*)  ws://ha_server_ip:8123/$1 [P,l]
  RewriteCond %{HTTP:Upgrade} !=websocket [NC]
  RewriteRule /(.*)  http://ha_server_ip:8123/$1 [P,l]