我正在使用AWS服务,我可以使用"远程桌面工具"轻松访问Windows实例。但是为了访问Ubuntu实例,我通常使用Terminal。
有没有办法以图形方式访问Ubuntu实例?
答案 0 :(得分:0)
步骤 1:使用 PuTTY 打开 ec2 Ubuntu 终端。有关如何使用 PuTTY https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/putty.html
从 Windows 连接 Linux 实例的更多详细信息,请参阅第 2 步:在 PuTTY Ubuntu 终端上逐步运行以下命令
sudo apt update
安装 xrdp 以允许 RDP 连接:
sudo apt install ubuntu-desktop
sudo apt install xrdp
为 ubuntu 用户设置密码:
sudo passwd ubuntu
第 3 步:
Go to AWS console
Click on instance(running)
Select your running Ubuntu instance
Go to Security
Click on Security Groups
Click on Edit inbound rules
In type drop down select RDP
It by default select port 3389
In Source add 0.0.0.0/0 IP
Click on Save rules
第 4 步:
Open Remote Desktop Connection on windows machine
Enter Computer: Public IP of ubuntu ec2 and add username:your_user_name
click on connect will open up GUI version of Ubuntu (linux), It ask for password please enter the set password.