Posts

Showing posts from September, 2016

Run Python SimpleHttpServer on Amazon AWS EC2

Image
With Python's SimpleHTTPServer you can quickly setup a webserver without any hassle. In order to use it, you don't need to install or configure anything.. you just need to have python installed on your server. Step 1: Open up your AWS console and in your instance security group make the Inbound & Outbound settings like shown in the sceenshots below Step 2: Login into your remote server via ssh example: aman@vostro:~$ ssh -i yourkeyfile.pem ubuntu@your-server-ip Read more »

Ubuntu Installer does not show existing Partitions but free space [fixed]

Image
If during ubuntu installation you don't see your existing partitions but all free space then there might be two possibility. 1. You have both GPT and MBR partition tables present on your hard disk.. It is generally caused when you install different windows in the past which used a different partition table scheme (MBR or GPT). So you end up with both Schemes. So we must make all partition scheme the same. Check if you have multiple partition schemes with this command sudo gdisk -l /dev/sda In the screenshot below, It shows that MBR and GPT both are present. Read more »