Book Image

CompTIA Linux+ Certification Guide

By : Philip Inshanally
Book Image

CompTIA Linux+ Certification Guide

By: Philip Inshanally

Overview of this book

The Linux+ certification provides a broad awareness of Linux operating systems, while giving professionals an upper hand in the IT industry. With this certification, you’ll be equipped with the all-important knowledge of installation, operation, administration, and troubleshooting services. This CompTIA Linux+ Certification Guide will give you an overview of the system architecture. You’ll understand how to install and uninstall Linux distributions, followed by working with various package managers. You’ll then move on to manipulating files and processes at the command-line interface (CLI) and creating, monitoring, killing, restarting, and modifying processes. As you progress, you’ll be equipped to work with display managers and learn how you can create, modify, and remove user accounts and groups, as well as understand how to automate tasks. The last set of chapters will help you configure dates and set up local and remote system logging. In addition to this, you’ll explore different internet protocols, and delve into network configuration, security administration, Shell scripting, and SQL management. By the end of this book, you’ll not only have got to grips with all the modules you need to study for the LX0-103 and LX0-104 certification exams, but you’ll also be able to test your understanding with practice questions and mock exams.
Table of Contents (23 chapters)
19
Mock Exam - 1
20
Mock Exam - 2

Creating, copying, moving, renaming, and removing files

This section sounds like a mouthful. Not to worry; it covers the techniques for creating and removing files. It also covers the methods for copying and renaming files.

There are various files that we use on a daily basis. We can do an ls on the /home/philip/Documents/NewTest directory, as follows:

philip@localhost Documents]$ cd NewTest/
[philip@localhost NewTest]$ ll -a
total 8
drwxrwxr-x. 2 philip philip 4096 Aug 6 12:04 .
drwxr-xr-x. 3 philip philip 4096 Aug 6 13:45 ..
[philip@localhost NewTest]$

Currently, there aren't any files inside of this directory. In Linux, we can create a file from the shell; we can use the touch command to accomplish this:

[philip@localhost NewTest]$ touch OurFile
[philip@localhost NewTest]$ ll
total 0
-rw-rw-r--. 1 philip philip 0 Aug 6 13:52 OurFile
[philip@localhost NewTest]$

The file was...