10 Basic Linux Commands For Beginners
...from my experience

Hello Readers,
Good to have you here my new friends. Before we begin, I'm excited to let you know that I recently got onboarded into the SCA Cloud School program with SheCodeAfrica in partnership with DeimosCloud, can you spot me here?.
The purpose of this post blog is to document this new journey and my learning path with you and I hope you stay with me.
Today I am going to be highlighting some of the basic commands that I have used as a beginner and in no particular order.
Lets' begin...
CONTENTS
cdis used to navigate through your files and folders, also you can switch to specific folders by naming their path. For instance,cd Documentsopens Document directory, andcd wantedopens a folder in the directory. See example below
cd -(cd with a hyphen) takes you to your last working directory
cdtakes you to home folder
2.
pwd allows you to see your current working directory

3.
ls allows you to view the files and folders in a directory, using this command with no option will only list out files and directories where you won't be able to view the contents

Let us see what we get when we add options -
ls lshows directory, size, modified date and time, file and folder names, owner of the file and its permission
ls wantedlists out contents in the folder 'wanted'
4.
mkdir is used to create a new directory. Let's create a new directory 'Hello'

5.
rmdir is used to delete a directory. In the example below, we created a directory 'Example' for the purpose of this demo
6.
history if you use Linux every day you will most likely run hundreds of commands for a certain period, the history command will show you all the commands you have recently used.

7.
chmod is used to change permissions and access mode of files and directories. In doing this, you use indicators to specify
who you are setting these permissions for, that is the users
what are you making? Either granting + or removing - the permissions
Which of the permissions are you granting read write or execute
lookout for a detailed explanation of thechmod command in my next article
8.
clear you can use this command to clear your terminal if it gets cluttered

9.
passwd if you want to change your user password

10.
sudo apt-get install <package name> Linux has an Advances Package Tool apt that makes it easy to install any software package directly from your terminal. For instance, you can install a VLC player...

I have had a good experience with Linux so far and these basic commands have made the execution of tasks quite easy. You do not need to memorize the commands but I believe you get more familiar with them. I am also learning still about it and will be sharing it to help newbies like me.
That would be all for today!

#SCACloudSchool #SCA*Deimos


