How to Setup an Ubuntu Linux VM in Azure with Remote Desktop (RDP) Access (Ubuntu Desktop GUI)

sudo apt-get update
sudo apt-get install ubuntu-desktop
wget http://c-nergy.be/downloads/xrdp-installer-1.2.1.zip
unzip xrdp-installer-1.2.1.zip
chmod +x xrdp-installer-1.2.1.sh
./xrdp-installer-1.2.1.sh

To implement the sound redirection fix within the xrdp session, use this syntax:

./xrdp-installer-1.2.1.sh -s yes

To implement the lock screen fix for GDM within the xrdp session, use this syntax

./xrdp-installer-1.2.1.sh -g yes

xRDP – How to Fix the Infamous system crash popups in Ubuntu 18.04 (and previous versions)

sudo rm /var/crash/*

Enable RDP in firewall

# ufw enable
# ufw allow 3389/tcp
# ufw status

Credits go to: http://c-nergy.be/blog/?p=12761

Mac OS X KVM with GPU Passthrough | Gentoo Linux

This video talks about running macOS inside Linux VM.

I was not able to install the recommended Manjaro Linux on Hyper-V in Windows 10 Pro. While booting from the ISO image there was an error about the graphics card.

Instead Gentoo I used Ubuntu 20.04.1

I also had to use PowerShell to expose the virtualization extensions on the Ubuntu VM:

Set-VMProcessor -VMName "Ubuntu 20.04.1" -ExposeVirtualizationExtensions $true

To enable nested virtualization in Oracle VirtualBox:

cd C:\Program Files\Oracle\VirtualBox
VBoxManage modifyvm ubuntu2004 --nested-hw-virt on
bcdedit /set hypervisorlaunchtype off   - this disables the auto launch of the hypervisor.

To enable it again:

bcdedit /set hypervisorlaunchtype auto

Виенски кифлички от едно време

https://recepti.gotvach.bg/r-151878-%D0%92%D0%B8%D0%B5%D0%BD%D1%81%D0%BA%D0%B8_%D0%BA%D0%B8%D1%84%D0%BB%D0%B8%D1%87%D0%BA%D0%B8_%D0%BE%D1%82_%D0%B5%D0%B4%D0%BD%D0%BE_%D0%B2%D1%80%D0%B5%D0%BC%D0%B5

Free Online courses

Online courses can provide you the time to dig deeper and truly master a new skill tr topic. Open Yale Courses and MIT Open CourseWare are two of the best places to learn about new topics, ideas, concepts, and better ways to solve problems in life and business.

Running Desktop Apps in Docker

https://medium.com/better-programming/running-desktop-apps-in-docker-43a70a5265c4