Learn BigData With Me - Linux Basics - Part One

I am writing a series of articles on Big Data. The industry uses Linux or Unix mostly, for deploying their Big Data solutions. So, here I am covering some basics of Linux.

In Linux, most of the work is done with command prompt, and for this, we use the terminal. Other work is done with editors that are same as notepad in Windows.

Please find some useful commands and their usage.

Sno.Command PromptCommand Use
1user@machine:~$pwdPrint working directory
2user@machine:~$lsList
3user@machine:~$ls -aAll listing
4user@machine:~$ls -alAll listing having permission to user
5user@machine:~$ls -alhHuman readable a long listing like 4 KB size
6user@machine:~$cd <directory>Change directory
7user@machine:~$mkdir <dirname>Make directory
8user@machine:~$mkdir -p <coolfolder/child/nested>To create complete path
9user@machine:~$ls Desktop/Coolfolder<tab>To get data
10user@machine:~$rm -r coolfolderRemove recursive
11user@machine:~$rm -I coolfile.txtTo notify for remove
12user@machine:~$man <command>Help or knowledge
13user@machine:~$touch <filename>To create a file
14user@machine:~$mv tet.txt somefolder/To move file
15user@machine:~$cp somefolder/text.txt /testcopy.txtTo copy
16user@machine:~$mv test.txt newName.txtTo rename
17user@machine:~$cd ..Move up a dir
18user@machine:~$cd ../..Move two up
19user@machine:~$cd <home/username>
20user@machine:~$cd ~To home dir
21user@machine:~$cat <filename>To read file
22user@machine:~$cat <filename1> <filename2>To concat two files output

Editors

  1. nano <filename>

    1. use ^X (ctrl+X) to exit, it will prompt to save the file.
    2. ^W to search some data.

  2. vi <filename>

    1. for creating files.
    2. for modifying & appending some text on already existing file.
  • For displaying the content of file

    • use :wq to save and exit.
    • :q! to exit without save.
  • Note

    vi editor works on three modes, 

    a. Esc mode (Press Esc)
    b. Insert mode (Press i)
    c. Colon mode (press shift + ;)

  1. emacs <filename>

    1. Fast & mostly used by programmers

  2. vim <filename>

    1. Secure & mostly used by sysadmins



Cat command

This is one of the most important commands. It is mostly used for displaying the file contents but it has so many other uses too.

  • cat> for creating files
  • cat>> creating files if it is not exit or appending extra text if it is already exist

user@machine:~$ cat > file.txt

Write your content here.

  • Press ctrl+d to save and exit
  • Press ctrl+c exiting file without saving
  • But you can’t change the content in previous line

Most of us are familiar with Windows OS. Linux is also a good platform. If you start working on it, you will realize it.

Note

Most of the issues in Big Data come from the Linux security section. I will try to cover this too. Today, we will learn new topics under Linux basics. Be careful, Linux is case sensitive.

echo command

This is used to print some statements.

Eg. user@machine:~$echo “This is sample statement by vimal”

We have few concepts for defining and saving standard input, output, and errors.

  • 0 – for standard input
  • 1 – for standard output
  • 2 – for standard error

Please look at the below image to understand it.


Mail command

To send mail, we will use mail command.

user@machine:~$ mail –s”This is subject” user<messagebody.txt

grep command

grep is a search, finding, and filtering tool. It can do things like pattern matching & mapping.

  1. user@machine:~$ grep sometext file.txt
  2. user@machine:~$ grep sometext ./*
  3. user@machine:~$ grep sometext ./* | unique | cut –d: -f1



Pipes & Directional operators

  • user@machine:~$Program1 | Program2

    • This means output of program1 works as input for program2
    • user@machine:~$ ps aux (to check processes)
    • user@machine:~$ ps aux | less | uniq | sort

  • user@machine:~$Program1 && Program2

    • This means when program1 true then program2 execute
    • user@machine:~$ ls filenotexist.txt && echo “Unsuccessful”

Package management with apt-get

apt-get mainly used for installation of softwares, packages,

  • user@machine:~$ apt-get update
    • It may prompt permission denied. To avoid this we will use-
  • user@machine:~$ sudo apt-get update
  • user@machine:~$ sudo apt-get upgrade
  • user@machine:~$ sudo apt-get install <applicationname>
    • To install any software or application
  • user@machine:~$ apt-cache search editor
    • To find editor
  • user@machine:~$ sudo apt-get remove <applicationname>
    • To remove software or application


Up Next
    Ebook Download
    View all
    Learn
    View all