Increase root partition size in AWS Instance without Downtime.

1. Login to AWS console. Before modifying a volume that contains valuable data, it is a best practice to create a snapshot of the volume in case you need to roll back your changes. Request the volume modification. For example existing volume size is 8 GB and extend to 16 GB. Monitor the progress of …

How to Create Local Network Gateways in Microsoft azure.

The local network gateway is a specific object that represents your on-premises location (the site) for routing purposes.   Login to azure portal. Click on All Services. Select Local Network Gateways.     Click on Add.   On Basics tab provide the following values:-   Provide the Local network gateway name. Select IP address or …

How to Create IP groups in Microsoft azure.

IP Groups allow you to group and manage IP addresses for Azure Firewall rules. They can have a single IP address, multiple IP addresses, or one or more IP address ranges.   Login to azure portal. Click on All Services. Select IP Groups.     Click on Add option.   On Basics tab provide the …

Install and configure LibreOffice in Linux

1. cd /usr/local 2. wget http://download.documentfoundation.org/libreoffice/stable/7.1.2/rpm/x86_64/LibreOffice_7.1.2_Linux_x86-64_rpm.tar.gz 3. tar -xzf LibreOffice_7.1.2_Linux_x86-64_rpm.tar.gz 4. cd LibreOffice_7.1.2.2_Linux_x86-64_rpm/RPMS 5. yum localinstall *.rpm –skip-broken 6. yum install cairo 7. yum install cups 8. sudo yum install libXinerama.x86_64 cups-libs dbus-glib All set now.

Install composer on Amazon Linux running on EC2

$ cd ~ $ sudo curl -sS https://getcomposer.org/installer | sudo php $ sudo mv composer.phar /usr/local/bin/composer $ sudo ln -s /usr/local/bin/composer /usr/bin/composer then run below command $ sudo composer install