Learning Linux isn't a one-day task, but it isn't overly challenging either. Linux can be a reliable operating system for home and enterprise users if it fulfills their required roles. Keep in mind that there is more than one Linux variation; each is fine-tuned for specific reasons. The first step to learning Linux should be establishing and making decisions based on your needs.

Ubuntu, Linux Mint, and elementary OS are suitable for beginners due to having graphical and user-friendly interfaces, package stability, and community support.

Part 1
Part 1 of 5:

Choosing your Linux distribution

Linux comes in different variations called distributions[1] (or "distros").

  1. 1
    Pick the proper distribution for you. Distributions such as Ubuntu and Linux Mint are designed to satisfy new home users. Thus, they are designed with interfaces and tools to assist users with operations that may otherwise require better knowledge. Examples include a graphical installer, software center, desktop environment, etc.
    • Both are derivatives of the Debian distribution.
    • Popular distributions such as Arch Linux focus on power users rather than beginners[2] . Therefore, you should carefully research how well a distribution is suited for your needs.
    • For server-level operations: Ubuntu, CentOS/Fedora, and OpenSUSE are among the most popular[3] , free, and more straightforward choices to use compared to other popular options such as Gentoo.
    • It's essential to understand Ubuntu offers a desktop version[4] and a server version.[5]
      • Get the desktop version if you are a home user planning to use Linux for your desktop.
      • Get the server version if you are an enterprise user planning to use Linux for your server.
  2. Advertisement
Part 2
Part 2 of 5:

Choosing a Desktop Environment

  1. 1
    Learn about the desktop environments you can use with your Linux distribution. In Linux, the user can choose what their desktop (and related bits and pieces) looks like. Distros like Ubuntu or Mageia give you the choice. The most popular desktop environments include kde and gnome. These can be chosen during installation.To switch between desktop environments (assuming they are there!) the command switchdesk is used. (e.g. Open Terminal and type in switchdesk kde to switch to kde.
    • Below is a picture of Gnome 3.
Part 3
Part 3 of 5:

Familiarize Yourself with the Applications

  1. 1
    Browse the applications that came with your OS. In Gnome 3, one has to click on "Applications" to view applications. In Kde, there is a type of 'start menu' in the bottom bar. Thus the installed applications can be viewed. To open an application, click on it once. To surf the web, there may be an application titled 'web' or 'browser', or some distros even come with Firefox bundled. All the fundamental applications usually come bundled with the distro. Installation of extra applications are covered in the later sections of this article.
  2. 2
    Use the internet:
    • Chances are your broadband has been set up during installation.
    • If you are using a wireless dongle in your laptop, then after installation of the OS, connect it and follow the instructions given in your dongle's manual to install it.
    • Open the browser from the list of applications. It may be Firefox, Midori, or just Web/Browser.
    • Access the internet!
  3. Advertisement
Part 4
Part 4 of 5:

Learn How to Use the Terminal

The Terminal is an application that all Linux OSs have built-in. It's incredibly powerful, and allows you to do almost what a computer can do via text commands.

  1. 1
    Download and view files. You can download files and applications via the terminal.
    • File downloads are similar to Windows, but you must keep in mind the type of file you are downloading. If it is an application, make sure it is meant for Linux and not Windows or Mac.
    • If you are trying to open a document (e.g. a text document) and there is no inbuilt application for opening it, try opening it in the browser (e.g. Firefox can open a text document).
      • To do this, right click on it and then select Open With. Then choose your browser and set it as the default. Usually, there are options for this at the top or bottom of the window.
  2. 2
    Install applications that you want or need. The first place you should always look is in the Software Center that came with your OS. This is the application that will help you find new apps you can install; it will also help you install and uninstall them easily. If you can't find the application you want in the Software Center, then you may be able to find it on the internet and install it using the Terminal.
    • Applications may come in a binary package(installation without compiling - this is easier) or in a tar.gz/tar.bz2/tgz package (this is more difficult).
    • The image below shows the downloading of a binary package from a repository.
  3. 3
    Install applications that aren't in the Software Center using the Terminal. Follow these steps to install a tar.gz/tar.bz2/tgz package.
    • The first thing you need to do is extract it to a folder. For this example, let's make it your desktop. You can extract an archive right-clicking on it and choosing the appropriate entry. It should create a new folder with a similar name, e.g. program-1.2.3. Now you need to open your terminal and then go to that directory: cd /home/yourusername/Desktop/program-1.2.3. Make sure you first read a file called INSTALL or INSTALL.txt or README. Check if there are any of these files with the ls command, then display the right one with: (type these in the terminal. Note: please make sure you have root/superuser privileges. Become root first. Do this by typing sudo -s in distros like Ubuntu. In distros like Mageia, the "su" command works.)
    • xdg-open INSTALL
    • The file will contain the right indications to go on with the compiling process. Usually the three "classical" steps are:
    • ./configure
    • make
    • sudo make install
    • You may also need to install some dependencies, generally after a configure error that will tell you what you are missing. You can also use check install instead of make install.[6]
  4. 4
    Install a simple binary package using the Terminal.
    • For Ubuntu/Debian/distros based on either (e.g. ElementaryOS) the binary package comes with a .deb extension. Go to the Terminal and type dpkg -i /home/yourusername/directory/filename.deb
    • OR you can right click on the file, go to properties, copy the directory given and type:
    • dpkg -i
    • Make sure there is a space and a slash (/) before the directory. The directory looks like this:
    • (space)/directory
  5. Advertisement
Part 5
Part 5 of 5:

Familiarize yourself with the file system

Just like Windows and Mac OS, Linux organises all the content on the computer in files and folders (also called directories). If you were a Windows user in the past, you'll know that the default desktop directory was c:/users/[username]/desktop, but in Linux it's different. The substitute of c:/users/[username]/ is usually /home/[username] or /[username]/home.

  1. 1
    Learn where common directories are. You should not have problems finding files and documents and downloads in linux because they are generally listed as follows:
    • Downloads can be found under Downloads (unless the user specifies). The Downloads folder is /home/username/Downloads (generally it is this one) or it may be /username/home/Downloads for your distro. (Then you are not using Ubuntu, Linux Mint, etc.)
    • Documents can be found under Documents.The directory is /home/username/Documents.
    • You can always see the directory of a file by right clicking on it and then selecting "Properties".
  2. 2
    Share files and folders with other users. One can easily set up their Dropbox account or sync their bookmarks and open tabs via the browser.
    • [Update: Ubuntu One has been discontinued] Use Ubuntu One. Ubuntu users get Ubuntu One, which gives them free cloud storage. This can be used for sharing of files across multiple platforms. Below:Ubuntu One
  3. Advertisement

About This Article

wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, 18 people, some anonymous, worked to edit and improve it over time. This article has been viewed 36,868 times.
How helpful is this?
Co-authors: 18
Updated: December 6, 2021
Views: 36,868
Categories: Linux
Advertisement