Category:

Fixing Composer killed in terminal while updating application

When I try to update my application packages using composer in terminal it shows me Killed error and terminate the process. It is mainly due to server Memory Issue. You can fix using bellow command. I test this command on my live server and it works well for me. /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024 /sbin/mkswap /var/swap.1 sudo […]

Continue Reading
Posted On :
Category:

Unistall software in linux using Command line

In this tips i will explain you how to remove software in linux using CMD (Command line). Follow simple steps. Step 1. Open terminal from menu or press ctrl+alt+t. Step 2. Enter command to get list of installed software. dpkg –list Step 3. Now run command to remove software sudo apt-get –purge remove your_application_name when you […]

Continue Reading
Posted On :
Category:

Setup vsftpd on your Ubuntu server

Last updated on October 10th, 2016 at 11:49 amIn this tip i will explain you how to setup FTP server on your.  Follow simple steps to configure FTP on server. Step 1. First install vsftpd on your server sudo apt-get install vsftpd Step 2. Now open and edit vsftpd.conf and change some setting in it anonymous_enable=NO […]

Continue Reading
Posted On :
Category:

Simple unrar in Ubuntu

This is very simple and easy way to UnZip  rar file in Ubuntu. Please follow these steps to unrar your rar file Step 1. Install unrar in Ubuntu type sudo apt-get install unrar Step 2. If you want to unzip file in same directory type this command unrar e -r /your_path/myfile.rar or in other directory or […]

Continue Reading
Posted On :
Category:

Install xampp server in ubuntu

If you are window user and currently switch to Ubuntu and want to install XAMPP server on your system then this post can help you to install and run Xampp. Follow below steps to learn how to setup XAMPP. Step 1. Download latest release of Xampp server from there official website or click here and download Xampp […]

Continue Reading
Posted On :