More often then not I need Ubuntu which I don't have on my mac and I end up creating a VM on Azure, RDP into it from my local mac machine.
In order to do this, one can create a VM on Azure (I chose Ubuntu 18.04 LTS image on Azure). Once created SSH into machine and follow the below instructions to ensure that you are able to RDP into this machine.
Use the following script to achieve it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install ubuntu-desktop | |
sudo apt-get install xrdp | |
sudo systemctl enable xrdp | |
sudo apt-get install xfce4 | |
echo xfce4-session >~/.xsession | |
sudo service xrdp restart |
You can now go ahead and RDP into the machine.
No comments:
Post a Comment