Ubuntu

Topics related to Ubuntu:

Getting started with Ubuntu

Basic Terminal commands

How to exract tar.gz/bz2/tbz files :

If Your File Extension is .tar.gz (or .tgz) use this command

 tar xvzf file.tar.gz
  • x: This tells tar to extract the files.

  • v: This option will list all of the files one by one in the archive. The “v” stands for “verbose.”

  • z: The z option is very important and tells the tar command to uncompress the file (gzip).

  • f: This options tells tar that you are going to give it a file name to work with.

** If Your File Extension is .tar.bz2 (or .tbz)**

The major difference between these two is that the z option has been replaced by the j option.

  • j: This will decompress a bzip2 file.

Support lifespan

New versions of Ubuntu are released by Canonical every 6 months. Every two years, the release is a Long Term Support version.

Support lifespan

  • Normal release - supported for 9 months
  • Long Term Support (LTS) release
        LTS releases for Ubuntu Desktop, Ubuntu Server, Ubuntu Core, and Ubuntu Kylin are supported for 5 years.
        LTS releases for Kubuntu, Xubuntu, Ubuntu MATE and Lubuntu are supported for 3 years.

What support means

  • Updates for potential security problems and bugs (not new versions of software)
  • Availability of commercial support contracts from Canonical
  • Support by Landscape, Canonical's enterprise oriented server management tool set.

Networking

Apache Server

Software Installation

Set up SSL


a2ensite - a script that enables the specified site (which contains a block) within the apache2 configuration by creating symlinks within /etc/apache2/sites-enabled


apache2 - popular web server. Alternative web servers are tomcat, nginx, etc.


openssl - SSL works by using a private key to encrypt data transferred over an SSL-enabled connection, thus thwarting eavesdropping of information. Use openssl to generate keys and certificates.


vim - a popular text editor