SlideShare a Scribd company logo
1 of 70
LINUX
What is Linux? •  An alternative to Microsoft Windows •  Open source •  Freely available •  Reliable •  More use seen in labs/scientific situations, but is seeing more popularity. •  Command line based interface
[object Object]
Server Os must be:Stable,Robust,Secure,High Performance.Linux offers all of the above characteristics. So Linux can be used as:
-> On stand alone workstation/PC for word processing, graphics, software development, internet, e-mail, chatting, small personal database management system etc.
->In network environment as: *  File and Print or Application Server Share the data, Connect the expensive device like printer and share it, e-mail within the LAN/intranet etc are some of the application. Linux Server with different Client Os
(B)  Linux sever can be connected to Internet, So that PC's on intranet can share the internet/e-mail etc. You can put your web sever that run your web site or transmit the information on the internet. Linux Server can act as Proxy/Mail/WWW/Router Server etc.
Linux can also used in, ,[object Object]
Web Server
Software Development Workstation
Workgroup Server
In Data Center for various server activities such as FTP, Telnet, SSH, Web, Mail, Proxy, Proxy Cache Appliance etc.
Text Editor(s) ,[object Object]
Other options: emacs, vi (much harder to use)
Non GUI: pico
[object Object]
LINUX COMMANDS
Vi  :   Text Editor
users  :  List users currently loggen
banner:   prints the specified string in large letters. Each argument may be upto 10 characters long.
Cal: Produces a calender of the current month as standard output. The month (1-12) and year (1-9999) must be specified in full numeric format .
df: used to find the number of free blocks available for all the mounted file systems.
echo:   The echo command echoes arguments on the command line.
env:   Displays the permanent environment variables associated with a user’s login id
expr command: Expr (command) command is used for numeric computation .
find:   The find command searches through directories for files that match the specified criteria. It can take full pathnames and relative pathnames on the command line. To display the output on screen the –print option must be specified
LOGNAME: displays user’s login name.
ls: Lists the files in the current directory  Some of the available options are: -l gives a long listing -a displays all file{including hidden files
Ps:   Gives information about all the active processes.
pwd: (print working directory) displays the current directory.
time:   Used to display the execution time of a program or a command. Time is reported in seconds.Time filename values
tty:   Displays the terminal pathname
umask:   Used to specify default permissions while creating files.
wc:   The wc command can be used to count the number of lines, words and characters in a fine.   wc [filename(s)] The available options are:   wc –[options] [filename]   -1   -w   -c
who:   D isplays information about all the users currently logged onto the system. The user name, terminal number and the date and time that each user logged onto the system.   The syntax of the who command is   who [options]
date :    Display or change the date & time
free :     Display memory usage
hash  :    Remember the full pathname of a name argument
history:    Display Command History
hostname:    Print or set system name
id :    Print user and group id's
rev  :    Reverse lines of a file
times :    User and system times
Top  :   List processes running on the system
Uname  :   Print system information
Whoami :   Print the current user id and name (`id -un')
Finger: Use finger to see who's on the system
exit command: Used to stop the execution of a shell script.
DIRECTORY
DIRECTORY STRUCTURE
LINUX DIRECTORIES: < / > The root directory. The starting point of your directory structure. This is where the Linux system begins.  Every other file and directory on your system is under  the root directory. Usually the root directory contains only subdirectories.  < /boot > The place where Linux keeps information that it needs when booting up.  < /bin > The /bin directory contains the most important programs that the system needs to operate, such as the shells, ls, grep, and other essential things.
< /usr/bin > /usr/bin in turn contains applications for the system's users. < /dev > The devices that are available to a Linux system.In Linux, devices are treated like files and you can read and write devices like they were files. < /etc > The configuration files for the Linux system.  Most of these files are text files and can be edited by hand. < /home > This is where users keep their personal files are allowed to write files.
< /lib > The shared libraries for programs that are dynamically linked. The shared libraries are similar to DLL's on Winblows. < /mnt > This directory is used for mount points. The different physical storage devices (like the hard disk drives, floppies, CD-ROM's) must be attached to some directory in the file system tree before they can be accessed.  This attaching is called mounting, and the directory where the device is attached is called the mount point.
< /sbin, /usr/sbin > Most system administration programs are stored in these directories. In many cases you must run these programs as the root user. < /var > This directory contains variable data that changes constantly when the system is running. Some interesting subdirectories: </var/log > A directory that contains system log files. They're updated when the system runs, and checking them out can give you valuable info about the health of your system.
</var/mail> Incoming and outgoing mail is stored in this directory. </var/spool> This directory holds files that are queued for some process, like printing. < /tmp > Programs can write their temporary files here.
< /usr > This directory contains user applications and a variety of other things for them, like their source codes, and pictures, docs, or config files they use. /usr is the largest directory on a Linux system.  </usr/share> Config files and graphics for many user apps. < /usr/local > This is where you install apps and other files for use on the local machine.
EDITORS
ed Editor   ed is a line-oriented text editor.  It is used to create, display, modify and otherwise Manipulate text files.  red is a restricted ed: it can only edit files in the current directory and cannot execute shell  commands.   Syntax: ed [-C] [-p string] [-s] [-] [-x] filename red [-C] [-p string] [-s | - ] [-x] filename
Emacs  Editor Emacs is more than &quot;just an editor&quot; -- it provides a fully integrated user environment offering the sort of facilities.* Issue shell comands. * Open a window for a shell * Read and send mail * Read news * Access the internet * Write and test programs * Maintain a calendar * Play a game!  There are two types of modes in Emacs.They are ,[object Object]
Minor
ex Editor ex Editor is a line-editor mode of the vi text editor. Syntax: ex [ -| -s ] [ -l ] [ -L ] [ -R ] [ -r [file ] ] [ -t tag ] [ -v ] [ -V ] [ -x ] [ -wn ] [ -C] [+command | -c command ] file
sed COMMAND ,[object Object]
It takes a file as input and prints the result on  screen or redirects the output to a specified file. SYNTAX: sed [options] '{command}' [filename] OPTIONS: n do not output the trailing newline e  enable interpretation of the backslash-escaped  characters listed below v disable interpretation of those sequences in  STRINGs
The Vi Editor This is the classic screen-based editor for UNIX.  Apart from vim, there are a number of enhanced versions of vi, including elvis, nvi, and vile.  The vi editor works in two modes,  ,[object Object]
insert.  Command mode :  letters or sequence of letters interactively command vi. Commands are case sensitive. The ESC key can end a command. Insert mode :  Text is inserted. The ESC key ends insert mode and returns you to command mode. One can enter insert mode with the  &quot;i&quot;  (insert),  &quot;a&quot;  (insert after),  &quot;A&quot;  (insert at end of line),  &quot;o&quot;  (open new line after current line) or  &quot;O&quot;  (Open line above current line) commands.
vim editor Moving cursor around: Exiting from vim : let us now see how to exit from vim editor without saving changes. Vim editor has two modes: * command mode  * editing mode
Command mode  i s the one where we can instruct vim editor to exit to the command line ( shell ).  To do that we need press ESC and type : q!. Character Deletion: delete character with  x  key  Inserting Text : Press  i   or  a  in command mode and type  Saving edited file : In command mode : wq  or  SHIFT+zz
Vim Operators and Motions Deleting Words delete word with  dw  command  Delete to the end of the line delete to the end of the line with  d  operator and  $  motion Motions and count number beginning of the line 0, end of the line $, end of the 2nd word 2e beginning of the 4th word 4w Deleting multiple words to delete 3 words you would use  d3w   Deleting lines to delete single line  dd , delete n lines  ndd  Vim undo command undo changes with  u
* date    *pwd  *mkdir  *rmdir  *cat  *cp  *split  *awk  *expr  *find   *cd    *ls  * csplit  *ln    *mv    * rm  *  split  * awk  *cut     *diff  * grep  * head    *line   *sed  SCRIPTING   FILES
Cron Tab and Cron Job ,[object Object]

More Related Content

What's hot

Unix OS & Commands
Unix OS & CommandsUnix OS & Commands
Unix OS & CommandsMohit Belwal
 
Unix Linux Commands Presentation 2013
Unix Linux Commands Presentation 2013Unix Linux Commands Presentation 2013
Unix Linux Commands Presentation 2013Wave Digitech
 
Unix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell ScriptUnix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell Scriptsbmguys
 
Linux Administration
Linux AdministrationLinux Administration
Linux AdministrationHarish1983
 
Linux Command Line Basics
Linux Command Line BasicsLinux Command Line Basics
Linux Command Line BasicsWe Ihaveapc
 
Lesson 3 Working with Files in Linux
Lesson 3 Working with Files in LinuxLesson 3 Working with Files in Linux
Lesson 3 Working with Files in LinuxSadia Bashir
 
Unix Command Line Productivity Tips
Unix Command Line Productivity TipsUnix Command Line Productivity Tips
Unix Command Line Productivity TipsKeith Bennett
 
Linux Introduction (Commands)
Linux Introduction (Commands)Linux Introduction (Commands)
Linux Introduction (Commands)anandvaidya
 
intro unix/linux 03
intro unix/linux 03intro unix/linux 03
intro unix/linux 03duquoi
 
Useful Linux and Unix commands handbook
Useful Linux and Unix commands handbookUseful Linux and Unix commands handbook
Useful Linux and Unix commands handbookWave Digitech
 

What's hot (20)

Linuxppt
LinuxpptLinuxppt
Linuxppt
 
lec1.docx
lec1.docxlec1.docx
lec1.docx
 
Unix OS & Commands
Unix OS & CommandsUnix OS & Commands
Unix OS & Commands
 
Unix Linux Commands Presentation 2013
Unix Linux Commands Presentation 2013Unix Linux Commands Presentation 2013
Unix Linux Commands Presentation 2013
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commands
 
Unix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell ScriptUnix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell Script
 
Linux Administration
Linux AdministrationLinux Administration
Linux Administration
 
Unix
UnixUnix
Unix
 
Linux
LinuxLinux
Linux
 
Linux Command Line Basics
Linux Command Line BasicsLinux Command Line Basics
Linux Command Line Basics
 
Lesson 3 Working with Files in Linux
Lesson 3 Working with Files in LinuxLesson 3 Working with Files in Linux
Lesson 3 Working with Files in Linux
 
Operating system lab manual
Operating system lab manualOperating system lab manual
Operating system lab manual
 
Unix Command Line Productivity Tips
Unix Command Line Productivity TipsUnix Command Line Productivity Tips
Unix Command Line Productivity Tips
 
Linux Introduction (Commands)
Linux Introduction (Commands)Linux Introduction (Commands)
Linux Introduction (Commands)
 
intro unix/linux 03
intro unix/linux 03intro unix/linux 03
intro unix/linux 03
 
Useful Linux and Unix commands handbook
Useful Linux and Unix commands handbookUseful Linux and Unix commands handbook
Useful Linux and Unix commands handbook
 
Know the UNIX Commands
Know the UNIX CommandsKnow the UNIX Commands
Know the UNIX Commands
 
Unix practical file
Unix practical fileUnix practical file
Unix practical file
 
Linux commands
Linux commandsLinux commands
Linux commands
 
Linux
LinuxLinux
Linux
 

Viewers also liked

Viewers also liked (7)

Egipto
EgiptoEgipto
Egipto
 
Presentación Power Point .
Presentación Power Point .Presentación Power Point .
Presentación Power Point .
 
Amatciems
AmatciemsAmatciems
Amatciems
 
Php1
Php1Php1
Php1
 
Compare
CompareCompare
Compare
 
3gnin getirileri
3gnin getirileri3gnin getirileri
3gnin getirileri
 
Apache
ApacheApache
Apache
 

Similar to Linuxs1

Similar to Linuxs1 (20)

60761 linux
60761 linux60761 linux
60761 linux
 
Linux for beginners
Linux for beginnersLinux for beginners
Linux for beginners
 
Unix_Introduction_BCA.pptx the very basi
Unix_Introduction_BCA.pptx the very basiUnix_Introduction_BCA.pptx the very basi
Unix_Introduction_BCA.pptx the very basi
 
Linux Cheat Sheet.pdf
Linux Cheat Sheet.pdfLinux Cheat Sheet.pdf
Linux Cheat Sheet.pdf
 
Lamp ppt
Lamp pptLamp ppt
Lamp ppt
 
Linux
LinuxLinux
Linux
 
Linux programming - Getting self started
Linux programming - Getting self started Linux programming - Getting self started
Linux programming - Getting self started
 
Sandy Report
Sandy ReportSandy Report
Sandy Report
 
Sandy Report
Sandy ReportSandy Report
Sandy Report
 
Lamp ppt
Lamp pptLamp ppt
Lamp ppt
 
84640411 study-of-unix-os
84640411 study-of-unix-os84640411 study-of-unix-os
84640411 study-of-unix-os
 
3. intro
3. intro3. intro
3. intro
 
02 linux desktop usage
02 linux desktop usage02 linux desktop usage
02 linux desktop usage
 
Linux basic
Linux basicLinux basic
Linux basic
 
Operating System Laboratory presentation .ppt
Operating System Laboratory presentation .pptOperating System Laboratory presentation .ppt
Operating System Laboratory presentation .ppt
 
cisco
ciscocisco
cisco
 
Unix lab manual
Unix lab manualUnix lab manual
Unix lab manual
 
Chapter 2 Introduction to Unix Concepts
Chapter 2 Introduction to Unix ConceptsChapter 2 Introduction to Unix Concepts
Chapter 2 Introduction to Unix Concepts
 
Linux Basics.pptx
Linux Basics.pptxLinux Basics.pptx
Linux Basics.pptx
 
Deepa ppt about lamp technology
Deepa ppt about lamp technologyDeepa ppt about lamp technology
Deepa ppt about lamp technology
 

Linuxs1

  • 2. What is Linux? • An alternative to Microsoft Windows • Open source • Freely available • Reliable • More use seen in labs/scientific situations, but is seeing more popularity. • Command line based interface
  • 3.
  • 4. Server Os must be:Stable,Robust,Secure,High Performance.Linux offers all of the above characteristics. So Linux can be used as:
  • 5. -> On stand alone workstation/PC for word processing, graphics, software development, internet, e-mail, chatting, small personal database management system etc.
  • 6. ->In network environment as: * File and Print or Application Server Share the data, Connect the expensive device like printer and share it, e-mail within the LAN/intranet etc are some of the application. Linux Server with different Client Os
  • 7. (B) Linux sever can be connected to Internet, So that PC's on intranet can share the internet/e-mail etc. You can put your web sever that run your web site or transmit the information on the internet. Linux Server can act as Proxy/Mail/WWW/Router Server etc.
  • 8.
  • 12. In Data Center for various server activities such as FTP, Telnet, SSH, Web, Mail, Proxy, Proxy Cache Appliance etc.
  • 13.
  • 14. Other options: emacs, vi (much harder to use)
  • 16.
  • 18. Vi : Text Editor
  • 19. users : List users currently loggen
  • 20. banner: prints the specified string in large letters. Each argument may be upto 10 characters long.
  • 21. Cal: Produces a calender of the current month as standard output. The month (1-12) and year (1-9999) must be specified in full numeric format .
  • 22. df: used to find the number of free blocks available for all the mounted file systems.
  • 23. echo: The echo command echoes arguments on the command line.
  • 24. env: Displays the permanent environment variables associated with a user’s login id
  • 25. expr command: Expr (command) command is used for numeric computation .
  • 26. find: The find command searches through directories for files that match the specified criteria. It can take full pathnames and relative pathnames on the command line. To display the output on screen the –print option must be specified
  • 28. ls: Lists the files in the current directory Some of the available options are: -l gives a long listing -a displays all file{including hidden files
  • 29. Ps: Gives information about all the active processes.
  • 30. pwd: (print working directory) displays the current directory.
  • 31. time: Used to display the execution time of a program or a command. Time is reported in seconds.Time filename values
  • 32. tty: Displays the terminal pathname
  • 33. umask: Used to specify default permissions while creating files.
  • 34. wc: The wc command can be used to count the number of lines, words and characters in a fine. wc [filename(s)] The available options are: wc –[options] [filename] -1 -w -c
  • 35. who: D isplays information about all the users currently logged onto the system. The user name, terminal number and the date and time that each user logged onto the system. The syntax of the who command is who [options]
  • 36. date : Display or change the date & time
  • 37. free : Display memory usage
  • 38. hash : Remember the full pathname of a name argument
  • 39. history: Display Command History
  • 40. hostname: Print or set system name
  • 41. id : Print user and group id's
  • 42. rev : Reverse lines of a file
  • 43. times : User and system times
  • 44. Top : List processes running on the system
  • 45. Uname : Print system information
  • 46. Whoami : Print the current user id and name (`id -un')
  • 47. Finger: Use finger to see who's on the system
  • 48. exit command: Used to stop the execution of a shell script.
  • 51. LINUX DIRECTORIES: < / > The root directory. The starting point of your directory structure. This is where the Linux system begins. Every other file and directory on your system is under the root directory. Usually the root directory contains only subdirectories. < /boot > The place where Linux keeps information that it needs when booting up. < /bin > The /bin directory contains the most important programs that the system needs to operate, such as the shells, ls, grep, and other essential things.
  • 52. < /usr/bin > /usr/bin in turn contains applications for the system's users. < /dev > The devices that are available to a Linux system.In Linux, devices are treated like files and you can read and write devices like they were files. < /etc > The configuration files for the Linux system. Most of these files are text files and can be edited by hand. < /home > This is where users keep their personal files are allowed to write files.
  • 53. < /lib > The shared libraries for programs that are dynamically linked. The shared libraries are similar to DLL's on Winblows. < /mnt > This directory is used for mount points. The different physical storage devices (like the hard disk drives, floppies, CD-ROM's) must be attached to some directory in the file system tree before they can be accessed. This attaching is called mounting, and the directory where the device is attached is called the mount point.
  • 54. < /sbin, /usr/sbin > Most system administration programs are stored in these directories. In many cases you must run these programs as the root user. < /var > This directory contains variable data that changes constantly when the system is running. Some interesting subdirectories: </var/log > A directory that contains system log files. They're updated when the system runs, and checking them out can give you valuable info about the health of your system.
  • 55. </var/mail> Incoming and outgoing mail is stored in this directory. </var/spool> This directory holds files that are queued for some process, like printing. < /tmp > Programs can write their temporary files here.
  • 56. < /usr > This directory contains user applications and a variety of other things for them, like their source codes, and pictures, docs, or config files they use. /usr is the largest directory on a Linux system. </usr/share> Config files and graphics for many user apps. < /usr/local > This is where you install apps and other files for use on the local machine.
  • 58. ed Editor ed is a line-oriented text editor. It is used to create, display, modify and otherwise Manipulate text files. red is a restricted ed: it can only edit files in the current directory and cannot execute shell commands. Syntax: ed [-C] [-p string] [-s] [-] [-x] filename red [-C] [-p string] [-s | - ] [-x] filename
  • 59.
  • 60. Minor
  • 61. ex Editor ex Editor is a line-editor mode of the vi text editor. Syntax: ex [ -| -s ] [ -l ] [ -L ] [ -R ] [ -r [file ] ] [ -t tag ] [ -v ] [ -V ] [ -x ] [ -wn ] [ -C] [+command | -c command ] file
  • 62.
  • 63. It takes a file as input and prints the result on screen or redirects the output to a specified file. SYNTAX: sed [options] '{command}' [filename] OPTIONS: n do not output the trailing newline e enable interpretation of the backslash-escaped characters listed below v disable interpretation of those sequences in STRINGs
  • 64.
  • 65. insert. Command mode : letters or sequence of letters interactively command vi. Commands are case sensitive. The ESC key can end a command. Insert mode : Text is inserted. The ESC key ends insert mode and returns you to command mode. One can enter insert mode with the &quot;i&quot; (insert), &quot;a&quot; (insert after), &quot;A&quot; (insert at end of line), &quot;o&quot; (open new line after current line) or &quot;O&quot; (Open line above current line) commands.
  • 66. vim editor Moving cursor around: Exiting from vim : let us now see how to exit from vim editor without saving changes. Vim editor has two modes: * command mode * editing mode
  • 67. Command mode i s the one where we can instruct vim editor to exit to the command line ( shell ). To do that we need press ESC and type : q!. Character Deletion: delete character with x key Inserting Text : Press i or a in command mode and type Saving edited file : In command mode : wq or SHIFT+zz
  • 68. Vim Operators and Motions Deleting Words delete word with dw command Delete to the end of the line delete to the end of the line with d operator and $ motion Motions and count number beginning of the line 0, end of the line $, end of the 2nd word 2e beginning of the 4th word 4w Deleting multiple words to delete 3 words you would use d3w Deleting lines to delete single line dd , delete n lines ndd Vim undo command undo changes with u
  • 69. * date *pwd *mkdir *rmdir *cat *cp *split *awk *expr *find *cd *ls * csplit *ln *mv * rm * split * awk *cut *diff * grep * head *line *sed SCRIPTING FILES
  • 70.
  • 71. The term cron is derived from the word chronograph.
  • 72. Cron is a system deamon that keeps sleeping most of the time.
  • 73.
  • 74. All users have a crontab file of his or her own.
  • 75. The name of this crontab file will be the user's login name.
  • 76.
  • 77. Cron tab files will be present in the
  • 78. /var/ spool/ cron/ crontabs directory .
  • 79. A crontab may contain one or more files,each corresponding to a command that is to be executed periodically at a specific day, date and time.
  • 80. minute Command to be executed day of week month day of month hour Syntax of a crontab line
  • 81.
  • 82. Second field specifies the hour(24-h format)
  • 83. Third field specifies the day of the month(1-31)
  • 84. Fourth field specifies the month(1-12)
  • 85. Fifth field specifies the day of the week(0-6),
  • 87. Sixth field contains the command to be executed.
  • 88.
  • 89. For example, if a * character appears in the fifth field, then the command mentioned in the line will be executed on all days of the week at the specified time.
  • 90.
  • 91. If neccessary group of numbers can be specified within a single field seperated by commas.
  • 92. Below are two typical crontab lines. 1. 0 0 * * * backup.sh When executed, the above line runs the backup.sh script at midnight everyday . 2. 00,30 09-17 * * 1-5 mail.sh When execute, the above lines runs the mail.sh script on all weekdays-Monday to Friday every half hour between 9 and 17 hours
  • 93.
  • 94. every cmd has to be written in a seperate line having the above format in a seperate file.
  • 95. Then it is submitted to crontab command, as shown below, where cmdfile is the name of the file executed periodically. $crontab cmdfile
  • 96.
  • 97. However, in certain cases,certain users are permitted to use.
  • 98. The username of those users will be in a file named cron.allow.
  • 99.
  • 100. Obviously system administrator maintains all these files.

Editor's Notes

  1. EDITORS