Tag: apache2

How To: Uninstall a package in Linux Ubuntu

I am learning Linux as quickly as possible. I am using this site as a repository to support the bits and pieces of code that I have found useful. The following example is code to remove apache2, however, is useful to remove any package, just replace apache2. sudo apt-get purge apache2 sudo apt-get clean sudo apt-get update sudo apt-get install…

Read More »

How To: Install LAMP on Ubuntu Linux

LAMP, an open source web development platform based on Linux, is an acronym for Linux, Apache, MySQL, and PHP (Perl or Python). Using terminal, enter the following line to install the LAMP stack. sudo apt-get install apache2 mysql-server libapache2-mod-auth-mysql php5-mysql php5

Read More »