SlideShare uma empresa Scribd logo
1 de 21
A
PROJECT REPORT
On
BASIC COMMANDS IN LINUX
LINUX (LIH-NUCKS)LINUX (LIH-NUCKS)
Official OS Free OSOfficial OS Free OS
(Red Hat Enterprises Linux) ( Red Hat 9, Fedora)(Red Hat Enterprises Linux) ( Red Hat 9, Fedora)
INTRODUCTION TO LINUXINTRODUCTION TO LINUX
• Linux is quite possibly the most important freeLinux is quite possibly the most important free
software achievement.software achievement.
• It has been developed into an operating systemIt has been developed into an operating system
for business, education and personalfor business, education and personal
productivity.productivity.
• Linux (pronounced with a short I, as in LIH-Linux (pronounced with a short I, as in LIH-
nucks) is a UNIX operating system clone.nucks) is a UNIX operating system clone.
History of LinuxHistory of Linux
• UNIX is one of the most popular operating systemsUNIX is one of the most popular operating systems
worldwide because of its large support base andworldwide because of its large support base and
distribution.distribution.
• It was originally developed at AT&T as a multitaskingIt was originally developed at AT&T as a multitasking
operating system for minicomputers and mainframes inoperating system for minicomputers and mainframes in
the 1970’s, but has since grown to become one of thethe 1970’s, but has since grown to become one of the
most widely used operating systems.most widely used operating systems.
• Linux is a free version of UNIX developed by LINUSLinux is a free version of UNIX developed by LINUS
TORVALDS at the university of Helsinki in Finland.TORVALDS at the university of Helsinki in Finland.
About LinuxAbout Linux
• Linus Torvalds originally developed Linux as aLinus Torvalds originally developed Linux as a
hobby project.hobby project.
• Minix, a small UNIX system developed byMinix, a small UNIX system developed by
Andy Tanenbaum, inspired itAndy Tanenbaum, inspired it
• The Linux kernel uses no code from AT&T orThe Linux kernel uses no code from AT&T or
any other proprietary source.any other proprietary source.
• On October 5, 1991, Linus announced the firstOn October 5, 1991, Linus announced the first
“official” version of Linux ,which was version“official” version of Linux ,which was version
0.02.0.02.
Famous Linux DistributionsFamous Linux Distributions
• Red Hat LinuxRed Hat Linux
• SuSe LinuxSuSe Linux
• Caldera LinuxCaldera Linux
• Mandrake LinuxMandrake Linux
• Open LinuxOpen Linux
• Aryabhat LinuxAryabhat Linux
Why Linux?Why Linux?
• Linux is a UNIX like operating systemsLinux is a UNIX like operating systems
• Multi-user, Multi-tasking and Multi ProcessorMulti-user, Multi-tasking and Multi Processor
SupportSupport
• There are no royalty or license feesThere are no royalty or license fees
““ A Linux Distribution has thousands ofA Linux Distribution has thousands of
dollars worth of software for no cost or a coupledollars worth of software for no cost or a couple
of dollars if purchased on CD/DVD “of dollars if purchased on CD/DVD “
• Software Development SupportsSoftware Development Supports
• Linux runs on nearly any CPULinux runs on nearly any CPU
• Linux works very well as a personal computerLinux works very well as a personal computer
UNIX for the desktopUNIX for the desktop
• Linux works well for server operationsLinux works well for server operations
• X-Window system (An excellent window systemX-Window system (An excellent window system
called X)called X)
Hardware RequirementHardware Requirement
CPU:CPU:
Minimum : Pentium-classMinimum : Pentium-class
Recommended : 200 Mhz Pentium-class or betterRecommended : 200 Mhz Pentium-class or better
Hard Disk Space:Hard Disk Space:
Minimum : 650 MBMinimum : 650 MB
Recommended : 2.5 GBRecommended : 2.5 GB
Full Installation : 4.5 GBFull Installation : 4.5 GB
* Additional Space will be required for file storage.* Additional Space will be required for file storage.
Memory:Memory:
Minimum for text-mode : 64MBMinimum for text-mode : 64MB
Minimum for graphical : 128MBMinimum for graphical : 128MB
Recommended for graphical: 192MBRecommended for graphical: 192MB
Getting StartedGetting Started
• The structure of a Linux SystemThe structure of a Linux System
• Kernel & ShellKernel & Shell
• Login and LogoutLogin and Logout
• Basic Linux CommandsBasic Linux Commands
The Structure of Linux systemThe Structure of Linux system
UserUser
Shell (Application Programs )Shell (Application Programs )
KernelKernel
hardware deviceshardware devices
Fig - IFig - I
• Hardware Devices :Hardware Devices :
The lower most layer is the hardware componentsThe lower most layer is the hardware components
(i.e. physical components like your motherboard, hard disk drive,(i.e. physical components like your motherboard, hard disk drive,
floppy drive, memory, etc…)floppy drive, memory, etc…)
• Kernel :Kernel :
When your system is booted, the Linux kernel willWhen your system is booted, the Linux kernel will
be loaded into the memory of your system and after that thebe loaded into the memory of your system and after that the
kernel will control the entire operating system.kernel will control the entire operating system.
• Shell :Shell :
Shell is an interpreter through which a user canShell is an interpreter through which a user can
interact with kernel.interact with kernel.
Shell is program or command.Shell is program or command.
An application program may be a image editor,An application program may be a image editor,
word processor, music player, Games, and etc…..word processor, music player, Games, and etc…..
Basic CommandsBasic Commands
• lsls Listing the file and directoryListing the file and directory
syn: # ls <options> <Destination directory>syn: # ls <options> <Destination directory>
example: # ls –lexample: # ls –l
• manman HelpHelp
example: # man lsexample: # man ls
• pwdpwd Present working directoryPresent working directory
# pwd# pwd
• mkdirmkdir Creating DirectoryCreating Directory
# mkdir murali# mkdir murali
• cdcd Changing the directoryChanging the directory
# cd murali# cd murali
To Create a fileTo Create a file
• There are four type file creationThere are four type file creation
1.1. CatCat
2.2. TouchTouch
3.3. Vi editorVi editor
4.4. GeditGedit
Cat CommandCat Command
it’s used to one of the file creation and right now give some content.it’s used to one of the file creation and right now give some content.
• To Create a fileTo Create a file
# cat >murali# cat >murali
welcome towelcome to
accel it academyaccel it academy
^D^D
• To add a ContentTo add a Content
# cat >>murali# cat >>murali
VadapalaniVadapalani
^D^D
• To view the content in a fileTo view the content in a file
# cat murali# cat murali
welcome towelcome to
Accel it academyAccel it academy
VadapalaniVadapalani
##
Gedit CommandGedit Command
• It’s file create and modify in X WindowsIt’s file create and modify in X Windows
TerminalTerminal
#gedit#gedit
oror
# gedit <filename># gedit <filename>
# gedit murali# gedit murali
• Esc a – Curser move the next position switch to insert mode.Esc a – Curser move the next position switch to insert mode.
• Esc i – Curser move to the beginning of the line and switch to insert mode.Esc i – Curser move to the beginning of the line and switch to insert mode.
• Esc A – Curser move to the end of the line and switch to insert mode.Esc A – Curser move to the end of the line and switch to insert mode.
• Esc o – Insert the new line below the curser position and switch to insert mode.Esc o – Insert the new line below the curser position and switch to insert mode.
• Esc O – Insert the new line above the curser position and switch to insert mode.Esc O – Insert the new line above the curser position and switch to insert mode.
• Esc r – Replace the single character.Esc r – Replace the single character.
• Esc R – Replace the enter line after the curser positionEsc R – Replace the enter line after the curser position
• Esc s – Deleted current character and switch to insert mode.Esc s – Deleted current character and switch to insert mode.
• Esc S – Deleted the enter lineEsc S – Deleted the enter line
• Esc x – To delete a character.Esc x – To delete a character.
Esc kEsc k
Esc h Esc lEsc h Esc l
Esc gEsc g
• Esc gg – Move the curser to beginning of the first line.Esc gg – Move the curser to beginning of the first line.
• Esc GG – Move the curser to the beginning of the lost line.Esc GG – Move the curser to the beginning of the lost line.
• Esc wEsc w – Move the curser to beginning of the next word.– Move the curser to beginning of the next word.
• Esc d – Move the curser to the beginning of previous word.Esc d – Move the curser to the beginning of previous word.
• Esc dd – Delete the current line’s.Esc dd – Delete the current line’s.
• Esc dw –delete the current word’s.Esc dw –delete the current word’s.
• Esc yy – Copy the current line.Esc yy – Copy the current line.
• Esc yw – Copy the current word.Esc yw – Copy the current word.
• Esc p – Paste the line and words.Esc p – Paste the line and words.
• Esc u –Undo.Esc u –Undo.
• Esc + Ctr + r – Redo.Esc + Ctr + r – Redo.
• Esc : set nu – To display enter line with numbering.Esc : set nu – To display enter line with numbering.
• Esc : q – Quite without save file.Esc : q – Quite without save file.
• Esc : q! – Force quite without save file.Esc : q! – Force quite without save file.
• Esc : wq – To save and Quit.Esc : wq – To save and Quit.
• Esc : wq! – To force save and quit.Esc : wq! – To force save and quit.
• rmdir - To remove the directoryrmdir - To remove the directory
• rm –r - To remove the directoryrm –r - To remove the directory
• rm - To remove the file.rm - To remove the file.
• type cat - To find out the location of the commandtype cat - To find out the location of the command
• file murali - To view the type of filefile murali - To view the type of file
• wc - To view the no, of lines (l) , no, of word (w), no, of characters (c) inwc - To view the no, of lines (l) , no, of word (w), no, of characters (c) in
filefile
• mv - To move the filemv - To move the file
• cp - To copy the file and directorycp - To copy the file and directory
• head - 10 murali – To view the top 10 lines in a filehead - 10 murali – To view the top 10 lines in a file
• tail – 10 murali - To view the bottom 10 lines in a filetail – 10 murali - To view the bottom 10 lines in a file
• sort murali - To saw the order wise in a file ( numerical(-n) and reverse (-r)sort murali - To saw the order wise in a file ( numerical(-n) and reverse (-r)
• grep -To search for the stringgrep -To search for the string
• aspell –c murali – To check the correct content in a fileaspell –c murali – To check the correct content in a file
• hostname murali – To change the hostname in muralihostname murali – To change the hostname in murali
• exit -To logout M/Cexit -To logout M/C
• logout - To logout M/Clogout - To logout M/C
• clear - To clear the screenclear - To clear the screen
• whowho - who logged in to our system currently- who logged in to our system currently
• whoamiwhoami - To show the current user- To show the current user
• ttytty - To show the current terminals- To show the current terminals
• echoecho - To display the typed message- To display the typed message
• wallwall - To send the broadcast message- To send the broadcast message
• WriteWrite - To send the message in particular user- To send the message in particular user
• datedate - To show the date and time- To show the date and time
• calcal - To show the calendar- To show the calendar
• bcbc - Calculator- Calculator
Linex

Mais conteúdo relacionado

Mais procurados

Linux presentation
Linux presentationLinux presentation
Linux presentationNikhil Jain
 
Course 102: Lecture 24: Archiving and Compression of Files
Course 102: Lecture 24: Archiving and Compression of Files Course 102: Lecture 24: Archiving and Compression of Files
Course 102: Lecture 24: Archiving and Compression of Files Ahmed El-Arabawy
 
Course 102: Lecture 26: FileSystems in Linux (Part 1)
Course 102: Lecture 26: FileSystems in Linux (Part 1) Course 102: Lecture 26: FileSystems in Linux (Part 1)
Course 102: Lecture 26: FileSystems in Linux (Part 1) Ahmed El-Arabawy
 
Nomadesk getting_started_guide_final
 Nomadesk getting_started_guide_final Nomadesk getting_started_guide_final
Nomadesk getting_started_guide_finalScripto
 
Introduction to-linux
Introduction to-linuxIntroduction to-linux
Introduction to-linuxrowiebornia
 
Course 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and PermissionsCourse 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and PermissionsAhmed El-Arabawy
 
Compression Commands in Linux
Compression Commands in LinuxCompression Commands in Linux
Compression Commands in LinuxPegah Taheri
 

Mais procurados (13)

Linux Fundamental
Linux FundamentalLinux Fundamental
Linux Fundamental
 
Linux presentation
Linux presentationLinux presentation
Linux presentation
 
Course 102: Lecture 24: Archiving and Compression of Files
Course 102: Lecture 24: Archiving and Compression of Files Course 102: Lecture 24: Archiving and Compression of Files
Course 102: Lecture 24: Archiving and Compression of Files
 
Course 102: Lecture 26: FileSystems in Linux (Part 1)
Course 102: Lecture 26: FileSystems in Linux (Part 1) Course 102: Lecture 26: FileSystems in Linux (Part 1)
Course 102: Lecture 26: FileSystems in Linux (Part 1)
 
Nomadesk getting_started_guide_final
 Nomadesk getting_started_guide_final Nomadesk getting_started_guide_final
Nomadesk getting_started_guide_final
 
Directories description
Directories descriptionDirectories description
Directories description
 
Introduction to-linux
Introduction to-linuxIntroduction to-linux
Introduction to-linux
 
Course 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and PermissionsCourse 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and Permissions
 
6. centos networking
6. centos networking6. centos networking
6. centos networking
 
Compression Commands in Linux
Compression Commands in LinuxCompression Commands in Linux
Compression Commands in Linux
 
Linux ppt
Linux pptLinux ppt
Linux ppt
 
5. centos security
5. centos security5. centos security
5. centos security
 
When ACLs Attack
When ACLs AttackWhen ACLs Attack
When ACLs Attack
 

Destaque

Basic commands of linux By Adam
Basic commands of linux By Adam Basic commands of linux By Adam
Basic commands of linux By Adam Mohammed Adam
 
Basic linux commands
Basic linux commands Basic linux commands
Basic linux commands Raghav Arora
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commandsNguyen Vinh
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commandsJauhar Amir
 
Basic commands (linux)
Basic commands (linux)Basic commands (linux)
Basic commands (linux)Faysal Khan
 
Hhs en02 windows_and_linux
Hhs en02 windows_and_linuxHhs en02 windows_and_linux
Hhs en02 windows_and_linuxShoaib Sheikh
 
basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)Sukhraj Singh
 
ntroduction to GNU/Linux Linux Installation and Basic Commands
ntroduction to GNU/Linux Linux Installation and Basic Commands ntroduction to GNU/Linux Linux Installation and Basic Commands
ntroduction to GNU/Linux Linux Installation and Basic Commands Jaganadh Gopinadhan
 
Basic command for linux
Basic command for linuxBasic command for linux
Basic command for linuxgt0ne
 
Linux Commands - 3
Linux Commands - 3Linux Commands - 3
Linux Commands - 3Kanchilug
 
Quick Guide with Linux Command Line
Quick Guide with Linux Command LineQuick Guide with Linux Command Line
Quick Guide with Linux Command LineAnuchit Chalothorn
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commandsAniket Thakur
 
Linux System Monitoring basic commands
Linux System Monitoring basic commandsLinux System Monitoring basic commands
Linux System Monitoring basic commandsMohammad Rafiee
 
Basic Commands 1 By Thanigai
Basic Commands  1 By ThanigaiBasic Commands  1 By Thanigai
Basic Commands 1 By ThanigaiKanchilug
 

Destaque (20)

Basic commands of linux By Adam
Basic commands of linux By Adam Basic commands of linux By Adam
Basic commands of linux By Adam
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commands
 
Basic linux commands
Basic linux commands Basic linux commands
Basic linux commands
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commands
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commands
 
Basic commands (linux)
Basic commands (linux)Basic commands (linux)
Basic commands (linux)
 
Hhs en02 windows_and_linux
Hhs en02 windows_and_linuxHhs en02 windows_and_linux
Hhs en02 windows_and_linux
 
40 basic linux command
40 basic linux command40 basic linux command
40 basic linux command
 
basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)
 
Linux basic commands tutorial
Linux basic commands tutorialLinux basic commands tutorial
Linux basic commands tutorial
 
ntroduction to GNU/Linux Linux Installation and Basic Commands
ntroduction to GNU/Linux Linux Installation and Basic Commands ntroduction to GNU/Linux Linux Installation and Basic Commands
ntroduction to GNU/Linux Linux Installation and Basic Commands
 
Linux basic commands
Linux basic commandsLinux basic commands
Linux basic commands
 
Basic command for linux
Basic command for linuxBasic command for linux
Basic command for linux
 
Sahul
SahulSahul
Sahul
 
Linux Commands - 3
Linux Commands - 3Linux Commands - 3
Linux Commands - 3
 
Quick Guide with Linux Command Line
Quick Guide with Linux Command LineQuick Guide with Linux Command Line
Quick Guide with Linux Command Line
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commands
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commands
 
Linux System Monitoring basic commands
Linux System Monitoring basic commandsLinux System Monitoring basic commands
Linux System Monitoring basic commands
 
Basic Commands 1 By Thanigai
Basic Commands  1 By ThanigaiBasic Commands  1 By Thanigai
Basic Commands 1 By Thanigai
 

Semelhante a Linex (20)

redhat_by_Cbitss.ppt
redhat_by_Cbitss.pptredhat_by_Cbitss.ppt
redhat_by_Cbitss.ppt
 
LinuxCommands (1).pdf
LinuxCommands (1).pdfLinuxCommands (1).pdf
LinuxCommands (1).pdf
 
Linuxtraining 130710022121-phpapp01
Linuxtraining 130710022121-phpapp01Linuxtraining 130710022121-phpapp01
Linuxtraining 130710022121-phpapp01
 
ITCP PRACTICAL-1.pptx
ITCP PRACTICAL-1.pptxITCP PRACTICAL-1.pptx
ITCP PRACTICAL-1.pptx
 
LINUX_admin_commands.pptx
LINUX_admin_commands.pptxLINUX_admin_commands.pptx
LINUX_admin_commands.pptx
 
Linux
LinuxLinux
Linux
 
Linux
LinuxLinux
Linux
 
Unix Shell Script - 2 Days Session.pptx
Unix Shell Script - 2 Days Session.pptxUnix Shell Script - 2 Days Session.pptx
Unix Shell Script - 2 Days Session.pptx
 
Linux Basics.pptx
Linux Basics.pptxLinux Basics.pptx
Linux Basics.pptx
 
Linuxppt
LinuxpptLinuxppt
Linuxppt
 
PowerPoint_merge.ppt on unix programming
PowerPoint_merge.ppt on unix programmingPowerPoint_merge.ppt on unix programming
PowerPoint_merge.ppt on unix programming
 
Linuxppt
LinuxpptLinuxppt
Linuxppt
 
Linux basic
Linux basicLinux basic
Linux basic
 
Linux operating system by Quontra Solutions
Linux operating system by Quontra SolutionsLinux operating system by Quontra Solutions
Linux operating system by Quontra Solutions
 
Linuxppt
LinuxpptLinuxppt
Linuxppt
 
Linux CLI
Linux CLILinux CLI
Linux CLI
 
Unix Shell Scripting
Unix Shell ScriptingUnix Shell Scripting
Unix Shell Scripting
 
Linux And perl
Linux And perlLinux And perl
Linux And perl
 
Presentation for RHCE in linux
Presentation  for  RHCE in linux Presentation  for  RHCE in linux
Presentation for RHCE in linux
 
Unix ppt
Unix pptUnix ppt
Unix ppt
 

Último

Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 

Último (20)

Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 

Linex

  • 2. LINUX (LIH-NUCKS)LINUX (LIH-NUCKS) Official OS Free OSOfficial OS Free OS (Red Hat Enterprises Linux) ( Red Hat 9, Fedora)(Red Hat Enterprises Linux) ( Red Hat 9, Fedora)
  • 3. INTRODUCTION TO LINUXINTRODUCTION TO LINUX • Linux is quite possibly the most important freeLinux is quite possibly the most important free software achievement.software achievement. • It has been developed into an operating systemIt has been developed into an operating system for business, education and personalfor business, education and personal productivity.productivity. • Linux (pronounced with a short I, as in LIH-Linux (pronounced with a short I, as in LIH- nucks) is a UNIX operating system clone.nucks) is a UNIX operating system clone.
  • 4. History of LinuxHistory of Linux • UNIX is one of the most popular operating systemsUNIX is one of the most popular operating systems worldwide because of its large support base andworldwide because of its large support base and distribution.distribution. • It was originally developed at AT&T as a multitaskingIt was originally developed at AT&T as a multitasking operating system for minicomputers and mainframes inoperating system for minicomputers and mainframes in the 1970’s, but has since grown to become one of thethe 1970’s, but has since grown to become one of the most widely used operating systems.most widely used operating systems. • Linux is a free version of UNIX developed by LINUSLinux is a free version of UNIX developed by LINUS TORVALDS at the university of Helsinki in Finland.TORVALDS at the university of Helsinki in Finland.
  • 5. About LinuxAbout Linux • Linus Torvalds originally developed Linux as aLinus Torvalds originally developed Linux as a hobby project.hobby project. • Minix, a small UNIX system developed byMinix, a small UNIX system developed by Andy Tanenbaum, inspired itAndy Tanenbaum, inspired it • The Linux kernel uses no code from AT&T orThe Linux kernel uses no code from AT&T or any other proprietary source.any other proprietary source. • On October 5, 1991, Linus announced the firstOn October 5, 1991, Linus announced the first “official” version of Linux ,which was version“official” version of Linux ,which was version 0.02.0.02.
  • 6. Famous Linux DistributionsFamous Linux Distributions • Red Hat LinuxRed Hat Linux • SuSe LinuxSuSe Linux • Caldera LinuxCaldera Linux • Mandrake LinuxMandrake Linux • Open LinuxOpen Linux • Aryabhat LinuxAryabhat Linux
  • 7. Why Linux?Why Linux? • Linux is a UNIX like operating systemsLinux is a UNIX like operating systems • Multi-user, Multi-tasking and Multi ProcessorMulti-user, Multi-tasking and Multi Processor SupportSupport • There are no royalty or license feesThere are no royalty or license fees ““ A Linux Distribution has thousands ofA Linux Distribution has thousands of dollars worth of software for no cost or a coupledollars worth of software for no cost or a couple of dollars if purchased on CD/DVD “of dollars if purchased on CD/DVD “
  • 8. • Software Development SupportsSoftware Development Supports • Linux runs on nearly any CPULinux runs on nearly any CPU • Linux works very well as a personal computerLinux works very well as a personal computer UNIX for the desktopUNIX for the desktop • Linux works well for server operationsLinux works well for server operations • X-Window system (An excellent window systemX-Window system (An excellent window system called X)called X)
  • 9. Hardware RequirementHardware Requirement CPU:CPU: Minimum : Pentium-classMinimum : Pentium-class Recommended : 200 Mhz Pentium-class or betterRecommended : 200 Mhz Pentium-class or better Hard Disk Space:Hard Disk Space: Minimum : 650 MBMinimum : 650 MB Recommended : 2.5 GBRecommended : 2.5 GB Full Installation : 4.5 GBFull Installation : 4.5 GB * Additional Space will be required for file storage.* Additional Space will be required for file storage. Memory:Memory: Minimum for text-mode : 64MBMinimum for text-mode : 64MB Minimum for graphical : 128MBMinimum for graphical : 128MB Recommended for graphical: 192MBRecommended for graphical: 192MB
  • 10. Getting StartedGetting Started • The structure of a Linux SystemThe structure of a Linux System • Kernel & ShellKernel & Shell • Login and LogoutLogin and Logout • Basic Linux CommandsBasic Linux Commands
  • 11. The Structure of Linux systemThe Structure of Linux system UserUser Shell (Application Programs )Shell (Application Programs ) KernelKernel hardware deviceshardware devices Fig - IFig - I
  • 12. • Hardware Devices :Hardware Devices : The lower most layer is the hardware componentsThe lower most layer is the hardware components (i.e. physical components like your motherboard, hard disk drive,(i.e. physical components like your motherboard, hard disk drive, floppy drive, memory, etc…)floppy drive, memory, etc…) • Kernel :Kernel : When your system is booted, the Linux kernel willWhen your system is booted, the Linux kernel will be loaded into the memory of your system and after that thebe loaded into the memory of your system and after that the kernel will control the entire operating system.kernel will control the entire operating system. • Shell :Shell : Shell is an interpreter through which a user canShell is an interpreter through which a user can interact with kernel.interact with kernel. Shell is program or command.Shell is program or command. An application program may be a image editor,An application program may be a image editor, word processor, music player, Games, and etc…..word processor, music player, Games, and etc…..
  • 13. Basic CommandsBasic Commands • lsls Listing the file and directoryListing the file and directory syn: # ls <options> <Destination directory>syn: # ls <options> <Destination directory> example: # ls –lexample: # ls –l • manman HelpHelp example: # man lsexample: # man ls • pwdpwd Present working directoryPresent working directory # pwd# pwd • mkdirmkdir Creating DirectoryCreating Directory # mkdir murali# mkdir murali • cdcd Changing the directoryChanging the directory # cd murali# cd murali
  • 14. To Create a fileTo Create a file • There are four type file creationThere are four type file creation 1.1. CatCat 2.2. TouchTouch 3.3. Vi editorVi editor 4.4. GeditGedit
  • 15. Cat CommandCat Command it’s used to one of the file creation and right now give some content.it’s used to one of the file creation and right now give some content. • To Create a fileTo Create a file # cat >murali# cat >murali welcome towelcome to accel it academyaccel it academy ^D^D • To add a ContentTo add a Content # cat >>murali# cat >>murali VadapalaniVadapalani ^D^D • To view the content in a fileTo view the content in a file # cat murali# cat murali welcome towelcome to Accel it academyAccel it academy VadapalaniVadapalani ##
  • 16. Gedit CommandGedit Command • It’s file create and modify in X WindowsIt’s file create and modify in X Windows TerminalTerminal #gedit#gedit oror # gedit <filename># gedit <filename> # gedit murali# gedit murali
  • 17. • Esc a – Curser move the next position switch to insert mode.Esc a – Curser move the next position switch to insert mode. • Esc i – Curser move to the beginning of the line and switch to insert mode.Esc i – Curser move to the beginning of the line and switch to insert mode. • Esc A – Curser move to the end of the line and switch to insert mode.Esc A – Curser move to the end of the line and switch to insert mode. • Esc o – Insert the new line below the curser position and switch to insert mode.Esc o – Insert the new line below the curser position and switch to insert mode. • Esc O – Insert the new line above the curser position and switch to insert mode.Esc O – Insert the new line above the curser position and switch to insert mode. • Esc r – Replace the single character.Esc r – Replace the single character. • Esc R – Replace the enter line after the curser positionEsc R – Replace the enter line after the curser position • Esc s – Deleted current character and switch to insert mode.Esc s – Deleted current character and switch to insert mode. • Esc S – Deleted the enter lineEsc S – Deleted the enter line • Esc x – To delete a character.Esc x – To delete a character. Esc kEsc k Esc h Esc lEsc h Esc l Esc gEsc g • Esc gg – Move the curser to beginning of the first line.Esc gg – Move the curser to beginning of the first line. • Esc GG – Move the curser to the beginning of the lost line.Esc GG – Move the curser to the beginning of the lost line.
  • 18. • Esc wEsc w – Move the curser to beginning of the next word.– Move the curser to beginning of the next word. • Esc d – Move the curser to the beginning of previous word.Esc d – Move the curser to the beginning of previous word. • Esc dd – Delete the current line’s.Esc dd – Delete the current line’s. • Esc dw –delete the current word’s.Esc dw –delete the current word’s. • Esc yy – Copy the current line.Esc yy – Copy the current line. • Esc yw – Copy the current word.Esc yw – Copy the current word. • Esc p – Paste the line and words.Esc p – Paste the line and words. • Esc u –Undo.Esc u –Undo. • Esc + Ctr + r – Redo.Esc + Ctr + r – Redo. • Esc : set nu – To display enter line with numbering.Esc : set nu – To display enter line with numbering. • Esc : q – Quite without save file.Esc : q – Quite without save file. • Esc : q! – Force quite without save file.Esc : q! – Force quite without save file. • Esc : wq – To save and Quit.Esc : wq – To save and Quit. • Esc : wq! – To force save and quit.Esc : wq! – To force save and quit.
  • 19. • rmdir - To remove the directoryrmdir - To remove the directory • rm –r - To remove the directoryrm –r - To remove the directory • rm - To remove the file.rm - To remove the file. • type cat - To find out the location of the commandtype cat - To find out the location of the command • file murali - To view the type of filefile murali - To view the type of file • wc - To view the no, of lines (l) , no, of word (w), no, of characters (c) inwc - To view the no, of lines (l) , no, of word (w), no, of characters (c) in filefile • mv - To move the filemv - To move the file • cp - To copy the file and directorycp - To copy the file and directory • head - 10 murali – To view the top 10 lines in a filehead - 10 murali – To view the top 10 lines in a file • tail – 10 murali - To view the bottom 10 lines in a filetail – 10 murali - To view the bottom 10 lines in a file • sort murali - To saw the order wise in a file ( numerical(-n) and reverse (-r)sort murali - To saw the order wise in a file ( numerical(-n) and reverse (-r) • grep -To search for the stringgrep -To search for the string • aspell –c murali – To check the correct content in a fileaspell –c murali – To check the correct content in a file • hostname murali – To change the hostname in muralihostname murali – To change the hostname in murali • exit -To logout M/Cexit -To logout M/C • logout - To logout M/Clogout - To logout M/C • clear - To clear the screenclear - To clear the screen
  • 20. • whowho - who logged in to our system currently- who logged in to our system currently • whoamiwhoami - To show the current user- To show the current user • ttytty - To show the current terminals- To show the current terminals • echoecho - To display the typed message- To display the typed message • wallwall - To send the broadcast message- To send the broadcast message • WriteWrite - To send the message in particular user- To send the message in particular user • datedate - To show the date and time- To show the date and time • calcal - To show the calendar- To show the calendar • bcbc - Calculator- Calculator