Amazon EC2 micro instance image with GNU/KDE ready for use [closed]
Want to impr开发者_Go百科ove this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this questionAnyone could indicates to me if know a image on Amazon EC2 with graphical interface under Linux, configured and ready for use? I would like to test the micro instance.
I do not have such an AMI pre configured but we did create many images where KDE was installed along with other packages. You may create your own AMI with KDE really quick:
- Launch a standard RHEL 6.0 (32 bit) instance. AMI is publicly available
- yum install vnc-server
- edit /etc/sysconfig/vncservers for the username
- Login to the Linux server using this username and issue command "vncpasswd"
- yum groupinstall “X Window System”
- yum groupinstall “KDE Desktop”
- service vncserver start
- replace twm with "startkde" in ~/.vnc/xstartup file
- service vncserver restart
It takes about 10 minutes to complete all these tasks. You can then connect to the instance through VNC client.
精彩评论