LINUX

33
WHAT IS LINUX??? Linux is an operating system. It is the software on a computer that enables applications and the computer operator to access the devices on the computer to perform desired functions. The operating system (OS) relays instructions from an application to, for instance, the computer's processor. The processor performs the instructed task, then sends the results back to the application via the operating system.

Transcript of LINUX

Page 1: LINUX

WHAT IS LINUX???

Linux is an operating system. It is the software on a computer that

enables applications and the computer operator to access the devices on the computer to perform desired functions. The operating system

(OS) relays instructions from an application to, for instance, the computer's processor. The processor performs the instructed task,

then sends the results back to the application via the operating system.

Page 2: LINUX

PROPERTIES

Linux is free.

Linux is portable to any hardware platform.

Linux is secure and versatile.

Linux is scalable.

The Linux OS and most Linux applications have very short debug-times.

Page 3: LINUX

FILE SYSTEM

"On a UNIX system, everything is a file; if something is not a file, it is a process."This statement is true because there are special files that are more than just files (named pipes and

sockets, forinstance), but to keep things simple, saying that everything is a file is an acceptable generalization. A Linux

system, just like UNIX, makes no difference between a file and a directory, since a directory is just a filecontaining names of other files. Programs, services, texts, images, and so forth, are all files. Input and

outputdevices, and generally all devices, are considered to be files, according to the system.

Page 4: LINUX

FILE SYSTEM LAYOUT

Page 5: LINUX

THE KERNEL

The kernel is the heart of the system. It manages the communication between the underlying hardware and theperipherals. The kernel also makes sure that

processes and daemons (server processes) are started and stoppedat the exact right times. The kernel has a lot of other important tasks, so many that there is a specialkernel-development mailing list on this subject only, where huge amounts of information are shared. It wouldlead us too far to discuss the kernel in detail. For now it suffices to know that the kernel is the most

important file on the system.

Page 6: LINUX

WHAT IS SHELL?

A shell manages the interaction between the system and its users.

The shell, on the other hand, is an advanced way of communicating with the system, because it allows for two-way conversation and taking initiative

Page 7: LINUX

TYPES OF SHELL

sh or Bourne Shell: The original shell still used on UNIX systems and in UNIX related environments.This is the basic shell, a small program with few features. When in POSIX-compatible mode, bash will emulate

this shell.bash or Bourne Again SHell: the standard GNU shell, intuitive and flexible. Probably most advisablefor beginning users while being at the same time a powerful tool for the advanced and professional

user. On Linux, bash is the standard shell for common users. csh or C Shell: the syntax of this shell resembles that of the C programming language. Sometimes

asked for by programmers. tcsh or Turbo C Shell: a superset of the common C Shell, enhancing user-friendliness and speed.ksh or the Korn shell: sometimes appreciated by people with a UNIX background. A superset of the

Bourne shell; with standard configuration a nightmare for beginning users.

Page 8: LINUX

SECURITY

Access rights: Linux's first line of defense

The Tools

i. The chmod command

ii.The file mask

Page 9: LINUX

Access rights:First line defense

The Linux security model is based on the one used on UNIX systems, and is as rigid as the UNIX security model (and sometimes even more), which is

already quite robust. On a Linux system, every file is owned by a user and a group user. There is also a third category of users, those that are not the user

owner and don'tbelong to the group owning the file. For each category of users, read, write and execute permissions can be granted or denied.

Page 10: LINUX

The file mask

When a new file is saved somewhere, it is first subjected to the standard security procedure. Files without permissions don't exist on Linux. The standard file permission is determined by the mask for new file creation.Instead of adding the symbolic values to each other, as with chmod, for calculating the permission on a new file they need to

be subtracted from the total possible access rights.

Page 11: LINUX

The chmod command

A normal consequence of applying strict file permissions, and sometimes a nuisance, is that access rights will need to be changed for all kinds of reasons.

When you type id on the command line, you get a list of all the groups that you can possibly belong to,preceded by your user name and ID and the group name and ID that you are currently connected

with.However, on many Linux systems you can only be actively logged in to one group at the time. By default, this active or primary group is the one that you get assigned from the /etc/passwd file. The

fourth field of this file holds users' primary group ID, which is looked up in the /etc/group file.

In order to allow more flexibility, most Linux systems follow the so-called user private groupscheme, that assigns each user primarily to his or her own group. This group is a group that only

contains this particular user, hence the name "private group".

Page 12: LINUX

Ls command

DESCRIPTION:It is used to list all the files and directories of a directory.

SYNTAX: ls

EXAMPLE: ls dir_name

Page 13: LINUX

MKDIR COMMAND

DESCRIPTION: It is used to create a directory

SYNTAX: mkdir dir_name

EXAMPLE:mkdir kk

Page 14: LINUX

RMDIR COMMAND

DESCRIPITON:

It is used to delete a directory.

SYNTAX: rmdir dir_name

EXAMPLE:

rmdir kk

Page 15: LINUX

CD COMMAND

DESCRIPTION:

List files in the current working directory except those starting with . and only show the file name.

SYNTAX:

cd dir_name

EXAMPLE:

cd kk

Page 16: LINUX

MV COMMAND

DESCRIPTION:

It is used to move or rename files

SYNTAX:

mv sourcefile destin_file

EXAMPLE:

mv ar1 ar2

Page 17: LINUX

PWD COMMAND

DESCRIPTION:

Shows the name of the current working directory.

SYNTAX:

pwd

EXAMPLE:

pwd

Page 18: LINUX

CAT COMMAND

DESCRIPTION:The cat command is used to join multiple files together and print the result on screen.

SYNTAX: CAT

Page 19: LINUX

CLEAR COMMAND

DESCRIPITION:

It is used to clear up the command prompt window.

SYNTAX:

clear

Page 20: LINUX

DATE COMMAND

DESCRIPITION:

It is used to set the date and time for the system.This command is helpful but must be used when superuser or logged in as root.

SYNTAX:

date MMDDhhmm

EXAMPLE:

date 10080900

Page 21: LINUX

DF COMMAND

DESCRIPITION:

It provides a very quick check of your file system disk space.

SYNTAX:

df

Page 22: LINUX

FINGER COMMAND

DESCRIPITION:

It allows you to see who else is on the system or get detailed information about a person who has access to the system.

SYNTAX:

finger user_name

EXAMPLE:

finger kk

Page 23: LINUX

FINGER COMMAND

DESCRIPITION:

It is not only used to log out from one's machine but also to logout a particular user session from the system.

SYNTAX:

logout

Page 24: LINUX

PS COMMAND

DESCRIPTION:

It will show all the tasks you are currently running on the system, it's the equivalent of Windows Task Manager .

SYNTAX:

ps

Page 25: LINUX

KILL COMMAND

DESCRIPITON:

The 'kill' command is complementary to the 'ps' command as it will allow you to

terminate a process revealed with the previous command. In cases where a process is not responding, you would use the following syntax to effectively kill it: 'kill -9 pid' where 'pid' is the Process ID (PID) that 'ps' displays for each task.

SYNTAX:

kill -l [ signal ]

Page 26: LINUX

GREP COMMAND

DESCRIPITON:

Grep searches the named input FILEs (or standard input if no files are named, or the file name - is given) for lines containing a match to the given PATTERN.

SYNTAX:

grep [options] PATTERN [FILE...]

EXAMPLE:

-a, --text

Process a binary file as if it were text; this is equivalent to the --binary-files=text option.

-B NUM, --before-context=NUM

Print NUM lines of leading context before matching lines. Places a line containing -- between contiguous groups of matches.

-C NUM, --context=NUM

Print NUM lines of output context. Places a line containing -- between contiguous groups of matches.

Page 27: LINUX

WC COMMAND

DESCRIPITON:

It prints the number of lines, words, and bytes in the file.

SYNTAX:

wc file_name

EXAMPLE:

wc myfil

Page 28: LINUX

TOUCH COMMAND

DESCRIPITON:

It changes the date/time stamp of the file filename to the current time.

SYNTAX:

touch file_name

EXAMPLE:

touch kk

Page 29: LINUX

SHRED COMMAND

DESCRITION: Repeatedly overwrite the contents of the file filename with garbage, so that nobody will ever be able to read its original contents again.

SYNTAX:

shred filename

Page 30: LINUX

OD COMMAND

DESCRIPITON:

Display contents as octal numbers. This can be useful when the output contains non-printable characters.

SYNTAX:

od my_file |more

Page 31: LINUX

PSTREE COMMAND

DESCRIPITON:

It lists the processes in a tree format. This can be VERY useful when working with WebSphere or other heavy duty applications.

SYNTAX: pstree

Page 32: LINUX

MAN COMMAND

DESCRIPTION:

It formats and displays the on-line manual pages.

EXAMPLE:

-C config_file

Specify the configuration file to use; the default is /etc/man.config. (See man.conf(5).)

-M path

Specify the list of directories to search for man pages. Separate the directories with colons. An empty list is the same as not specifying -M at all. See SEARCH PATH FOR MANUAL PAGES.

Page 33: LINUX

BC COMMAND

DESCRIPTION:

It is an arbitrary precision calculator language.

EXAMPLE:bc