SlideShare a Scribd company logo
1 of 50
Chapter 1:
Introducing Linux
The Complete Guide To Linux System
Administration
The Complete Guide to Linux System Administration 2
Objectives
• Describe how Linux was created and how it
compares to other operating systems
• List versions of Linux currently available
• Outline the skills required and challenges facing
a system administrator
• Log in and begin using a Linux system
The Complete Guide to Linux System Administration 3
Objectives (continued)
• Explore a Linux file system from the command
line
• Locate additional information about commands
you want to use or learn about
The Complete Guide to Linux System Administration 4
A Brief History
• Popular graphical computers
– Apple Macintosh
– Microsoft Windows
• Linux
– Alternative for people whose computing needs
require something different
The Complete Guide to Linux System Administration 5
Understanding Operating Systems
• Software
– Collection of instructions that control the tasks a
computer performs
– Can be changed without disassembling the
computer and rewiring
• Operating system
– Software that helps other programs control
computer hardware and interact with users
The Complete Guide to Linux System Administration 6
Understanding Operating
Systems (continued)
• Application
– Software program that provides service for
computer user
– Cannot act without “permission” from
operating system
The Complete Guide to Linux System Administration 7
Operating System Functions
• Initialize computer hardware
• Allocate system resources to programs
• Keep track of multiple programs running at same
time
• Provide organized method for all programs to
use system devices
The Complete Guide to Linux System Administration 8
Operating System Functions
(continued)
• Major operating system components:
– Kernel
– Device drivers
– Shell
– Utility programs
– Graphical user interface (GUI)
The Complete Guide to Linux System Administration 9
The UNIX Operating System
• UNIX
– Operating system
– Originally created at AT&T Bell Labs in
early 1970s
– Designed to control networked computers that
were shared by many users
– Features and low cost of Linux effectively driving
UNIX out of market
The Complete Guide to Linux System Administration 10
The Free Software Foundation
and the GNU Project
• Free software foundation (FSF)
– Software itself should not be restricted in
distribution by standard commercial license
agreement
• GNU project
– Completely free version of UNIX
– Written from scratch
The Complete Guide to Linux System Administration 11
The Free Software Foundation and
the GNU Project (continued)
• Software license
– Legal definition of who can use software and how
it can be used
• GNU general public license (GPL)
– Very different from standard commercial software
license
– Author agrees to give away source code
– Anyone is licensed to redistribute it in any form
The Complete Guide to Linux System Administration 12
The Free Software Foundation and
the GNU Project (continued)
• GNU GPL
– Any modifications to the source code must be
licensed under the GPL
– Sometimes called copyleft
– OpenSource
• Refers to software licensed under GPL
• Public domain
– No one has copyright to software
– Not same as GPL
The Complete Guide to Linux System Administration 13
Linux Arrives
• Linus Torvalds
– Decided to create UNIX-like operating system
kernel for IBM-compatible PC
– Solicited help via Internet
– Released Linux kernel under GPL
• Linux development method
– Person identifies need and begins writing program
– Developer announces project on Internet
The Complete Guide to Linux System Administration 14
Linux Arrives (continued)
• Linux development method (continued)
– Others respond and work on different parts of
project
– Person leading project releases software
– People download source code and try program;
send back information about problems
– Developers fix bugs
• Forking
– Creating new project based on existing source
code
The Complete Guide to Linux System Administration 15
Motivating Free Software
Developers
• Why would so many people devote so much
effort to something without expecting any
reward?
– Fills developer’s specific technical need
– Respect of like-minded professionals
– Sense of contribution and community
– Valuable boost to developer’s resume
The Complete Guide to Linux System Administration 16
The Strengths Of Linux
• Stability
• Security
• Speed
• Cost
• Multiprocessing and other high-end features
• Applications
The Complete Guide to Linux System Administration 17
Linux In The Market
• Linux is packaged and sold
• Red hat software
– Current market leader
The Complete Guide to Linux System Administration 18
Linux Distributions
• Linux distribution
– Productized version of Linux
• Includes operating system kernel along with other
components
• System utilities
– Related to managing Linux system
• Price
– Generally between $2 and $100
The Complete Guide to Linux System Administration 19
Linux Distributions (continued)
The Complete Guide to Linux System Administration 20
Red Hat Software
• Fedora distribution
– Free product
• Red Hat Enterprise Linux configurations
– WS (workstation)
– ES (enterprise server)
– AS (application server)
• Red Hat Enterprise Linux
– Sold as subscription service
The Complete Guide to Linux System Administration 21
Red Hat Software (continued)
• Red Hat Enterprise Linux
– Updates from Red Hat Network (RHN)
• Red Hat
– Excels in service and support offered to large
companies using Linux
The Complete Guide to Linux System Administration 22
Hardware Requirements
• Can run on very minimal hardware
• Recommend that computer have minimum of:
– 1 GB of free disk space
– 64 MB of RAM
• For Red Hat Enterprise Linux installations:
– 256 MB of RAM
– 300 MHZ CPU
– 800 MB of free disk space
The Complete Guide to Linux System Administration 23
Version Numbering
• Version numbers assigned to:
– Each release of Linux kernel
– Each component of Linux distribution
– Linux distributions
• Most users select latest available version
The Complete Guide to Linux System Administration 24
Version Numbering (continued)
• Kernel version number components
– Major version number
– Minor version number
• Even indicates production release
• Odd indicates development release
– Patch-level number
The Complete Guide to Linux System Administration 25
Linux Certification
• Industry certification programs
– Red Hat Certified Technician
– Red Hat Certified Engineer
– LPI Certification
– Linux Certified Administrator (LCA) Certification
– Linux+ Certification
– Novell Certified Linux Engineer
The Complete Guide to Linux System Administration 26
Linux Certification (continued)
• Red Hat’s certification program
– Very highly regarded
– Training program consists of three courses
The Complete Guide to Linux System Administration 27
The Work of a System
Administrator
• Linux is increasingly part of information
technology infrastructure of large organizations
• Knowledge of Linux can set you on path to a
fulfilling and profitable career
The Complete Guide to Linux System Administration 28
Careers in Linux
• System administrator
• Network administrator
• Software engineer
• Trainer
• Technical writer
• Product marketing
• Business consultant
The Complete Guide to Linux System Administration 29
The Duties of a System
Administrator
• Role
– Make technology work and continue to work for
those who do “real work” of organization
– Enable others to use technology benefits
• Responsibilities
– Create new user accounts
– Maintain system hardware
– Train end users
The Complete Guide to Linux System Administration 30
The Duties of a System
Administrator (continued)
• Responsibilities
– Keep system running smoothly
– Document system
– Define procedures and policies
– Recover from emergencies
– Plan systems
The Complete Guide to Linux System Administration 31
Ethics, Privacy, and the Law
• Working as system administrator involves many
ethical issues
• Fellow employees count on your work to do
theirs
• Best route to success comes through making
employer successful
• System administrators guild (SAGE)
– www.sage.org
The Complete Guide to Linux System Administration 32
Starting To Use Linux
• Should have access to computer with Linux
installed
The Complete Guide to Linux System Administration 33
Logging In
• Log in
– Identify yourself to operating system so that it
knows:
• You are authorized to use system
• Which parts of system to permit you to access
• User account
– Set of permissions to use system
– Has associated user name and password
The Complete Guide to Linux System Administration 34
Logging In (continued)
• Modes
– Graphical
– Text
The Complete Guide to Linux System Administration 35
Graphical Environments
• Popular desktops
– KDE desktop
– GNOME desktop
• Features
– Taskbar
– Main menu
– Desktop icons
– Multiple overlapping windows
The Complete Guide to Linux System Administration 36
Opening a Terminal Window
• Terminal window
– Resembles console
– Enter commands from keyboard
The Complete Guide to Linux System Administration 37
Exploring the File System
The Complete Guide to Linux System Administration 38
File System Concepts
• Files are organized into directories
• Names are case sensitive
• Names can be long
• Names may contain many different types of
characters
• Can include file extensions
– Not required
The Complete Guide to Linux System Administration 39
File System Concepts (continued)
• Directory relationships
– Parent directory
– Subdirectory
• Path
– List of directories
– Absolute path
– Relative path
• Linux does not have separate drives
The Complete Guide to Linux System Administration 40
File System Concepts (continued)
• Root directory
– Parent of all directories
– /
• /Usr subdirectory
– Contains the greatest number of files and
subdirectories on newly installed systems
The Complete Guide to Linux System Administration 41
Managing Files With
Graphical Utilities
• File manager
– Displays contents of a directory as collection of
icons or file names
– Manage files and directories
– Choose Browse Filesystem on main menu
• Home directory
– Subdirectory where all personal files are stored
The Complete Guide to Linux System Administration 42
Working at a Command Line
• Linux system administrators should be very
comfortable working at command line
– Much faster way to perform most tasks
– Some tasks cannot be use graphical interface
• Commands
– pwd − mv − slocate
– cd − ls − file
– mkdir − cat − cp
– rmdir − touch
The Complete Guide to Linux System Administration 43
Working at a Command Line
(continued)
• Command-line prompt consists of:
– User name
– Name of computer at which you are working
– Last directory name in current working directory
– $ character
The Complete Guide to Linux System Administration 44
Working at a Command Line
(continued)
• Parameters
– Define what command will operate on
• Options
– Alter how command operates
• Timestamp
– Information about date and time when event
occurred
The Complete Guide to Linux System Administration 45
Finding Command Help
• Learn more details
• Explore additional Linux topics
The Complete Guide to Linux System Administration 46
Reading Linux Documentation
• Linux documentation project (LDP)
– HOWTOS
• Linux on the internet
– www.google.com
• Documentation included with software packages
– Software packages provide some documentation
– /Usr/doc
– /Usr/share/doc
The Complete Guide to Linux System Administration 47
Linux Command Information
• Man pages
– Online manual pages
– Man command
• Info page
– Definitive source of information
– Info command
The Complete Guide to Linux System Administration 48
Summary
• Operating system
– Provides interface between computer hardware
and applications run by user
• Linux offers important features, such as:
– Stability
– Speed
– Security
– Flexibility
– Low cost
The Complete Guide to Linux System Administration 49
Summary (continued)
• Several Linux certification programs are available
• Several versions of Red Hat Enterprise Linux
• Most users rely on GUI to log in and use Linux
– Text-only mode also available
• Information in Linux is stored in directories
– Begins with root directory /
The Complete Guide to Linux System Administration 50
Summary (continued)
• Linux files can include file extensions
– Few Linux programs rely on file extensions to
define what file contains
• Information about Linux is available online
– Part of LDP

More Related Content

What's hot

11. operating-systems-part-2
11. operating-systems-part-211. operating-systems-part-2
11. operating-systems-part-2Muhammad Ahad
 
Ch 2: TCP/IP Concepts Review
Ch 2: TCP/IP Concepts ReviewCh 2: TCP/IP Concepts Review
Ch 2: TCP/IP Concepts ReviewSam Bowne
 
Bn 1027 demo linux adminstration
Bn 1027 demo  linux adminstrationBn 1027 demo  linux adminstration
Bn 1027 demo linux adminstrationconline training
 
Ch2 operating-system structures
Ch2   operating-system structuresCh2   operating-system structures
Ch2 operating-system structuresWelly Dian Astika
 
Chapter 21 - The Linux System
Chapter 21 - The Linux SystemChapter 21 - The Linux System
Chapter 21 - The Linux SystemWayne Jones Jnr
 
Bse 3105 lecture 6-configuration management
Bse 3105  lecture 6-configuration managementBse 3105  lecture 6-configuration management
Bse 3105 lecture 6-configuration managementAlonzee Tash
 
Trends and technologies in system softwares
Trends and technologies in system softwaresTrends and technologies in system softwares
Trends and technologies in system softwaresTech_MX
 

What's hot (8)

Linux
LinuxLinux
Linux
 
11. operating-systems-part-2
11. operating-systems-part-211. operating-systems-part-2
11. operating-systems-part-2
 
Ch 2: TCP/IP Concepts Review
Ch 2: TCP/IP Concepts ReviewCh 2: TCP/IP Concepts Review
Ch 2: TCP/IP Concepts Review
 
Bn 1027 demo linux adminstration
Bn 1027 demo  linux adminstrationBn 1027 demo  linux adminstration
Bn 1027 demo linux adminstration
 
Ch2 operating-system structures
Ch2   operating-system structuresCh2   operating-system structures
Ch2 operating-system structures
 
Chapter 21 - The Linux System
Chapter 21 - The Linux SystemChapter 21 - The Linux System
Chapter 21 - The Linux System
 
Bse 3105 lecture 6-configuration management
Bse 3105  lecture 6-configuration managementBse 3105  lecture 6-configuration management
Bse 3105 lecture 6-configuration management
 
Trends and technologies in system softwares
Trends and technologies in system softwaresTrends and technologies in system softwares
Trends and technologies in system softwares
 

Similar to pembelajaran tentang linux dan macam macam menu linux

From Zero to Hero - Contribute to Linux Kernel in 15 Minutes
From Zero to Hero - Contribute to Linux Kernel in 15 MinutesFrom Zero to Hero - Contribute to Linux Kernel in 15 Minutes
From Zero to Hero - Contribute to Linux Kernel in 15 MinutesGlobalLogic Ukraine
 
Embedded Webinar #13: "From Zero to Hero: contribute to Linux Kernel in 15 mi...
Embedded Webinar #13: "From Zero to Hero: contribute to Linux Kernel in 15 mi...Embedded Webinar #13: "From Zero to Hero: contribute to Linux Kernel in 15 mi...
Embedded Webinar #13: "From Zero to Hero: contribute to Linux Kernel in 15 mi...GlobalLogic Ukraine
 
IS740 Chapter 04
IS740 Chapter 04IS740 Chapter 04
IS740 Chapter 04iDocs
 
ITCP PRACTICAL-1.pptx
ITCP PRACTICAL-1.pptxITCP PRACTICAL-1.pptx
ITCP PRACTICAL-1.pptxHemantJadhao3
 
Module 13 - Troubleshooting
Module 13 - TroubleshootingModule 13 - Troubleshooting
Module 13 - TroubleshootingT. J. Saotome
 
Linux: Everyting-as-a-service
Linux: Everyting-as-a-serviceLinux: Everyting-as-a-service
Linux: Everyting-as-a-serviceRohit Sansiya
 
software system and application software
software system and application softwaresoftware system and application software
software system and application softwareCyriac Jose
 
Chapter 1 - Introduction to Operating System.pptx
Chapter 1 - Introduction to Operating System.pptxChapter 1 - Introduction to Operating System.pptx
Chapter 1 - Introduction to Operating System.pptxgowthamiv26
 
Chapter 05 os dan utility program csc & tts
Chapter 05 os dan utility program csc & ttsChapter 05 os dan utility program csc & tts
Chapter 05 os dan utility program csc & ttsHisyam Rosly
 
history_of_linux lec 7.pptx
history_of_linux lec 7.pptxhistory_of_linux lec 7.pptx
history_of_linux lec 7.pptxtouseeqzulfiqar1
 
01 linux history overview
01 linux history overview01 linux history overview
01 linux history overviewShay Cohen
 
Software Engineering Lec 8-design-
Software Engineering Lec 8-design-Software Engineering Lec 8-design-
Software Engineering Lec 8-design-Taymoor Nazmy
 
Course 101: Lecture 5: Linux & GNU
Course 101: Lecture 5: Linux & GNU Course 101: Lecture 5: Linux & GNU
Course 101: Lecture 5: Linux & GNU Ahmed El-Arabawy
 

Similar to pembelajaran tentang linux dan macam macam menu linux (20)

From Zero to Hero - Contribute to Linux Kernel in 15 Minutes
From Zero to Hero - Contribute to Linux Kernel in 15 MinutesFrom Zero to Hero - Contribute to Linux Kernel in 15 Minutes
From Zero to Hero - Contribute to Linux Kernel in 15 Minutes
 
Embedded Webinar #13: "From Zero to Hero: contribute to Linux Kernel in 15 mi...
Embedded Webinar #13: "From Zero to Hero: contribute to Linux Kernel in 15 mi...Embedded Webinar #13: "From Zero to Hero: contribute to Linux Kernel in 15 mi...
Embedded Webinar #13: "From Zero to Hero: contribute to Linux Kernel in 15 mi...
 
IS740 Chapter 04
IS740 Chapter 04IS740 Chapter 04
IS740 Chapter 04
 
Ch01
Ch01Ch01
Ch01
 
Software: Systems and Application Software
Software:  Systems and Application SoftwareSoftware:  Systems and Application Software
Software: Systems and Application Software
 
ITCP PRACTICAL-1.pptx
ITCP PRACTICAL-1.pptxITCP PRACTICAL-1.pptx
ITCP PRACTICAL-1.pptx
 
Module 13 - Troubleshooting
Module 13 - TroubleshootingModule 13 - Troubleshooting
Module 13 - Troubleshooting
 
Linux: Everyting-as-a-service
Linux: Everyting-as-a-serviceLinux: Everyting-as-a-service
Linux: Everyting-as-a-service
 
software system and application software
software system and application softwaresoftware system and application software
software system and application software
 
Computing 8
Computing 8Computing 8
Computing 8
 
Chapter 1 - Introduction to Operating System.pptx
Chapter 1 - Introduction to Operating System.pptxChapter 1 - Introduction to Operating System.pptx
Chapter 1 - Introduction to Operating System.pptx
 
Chapter 05 os dan utility program csc & tts
Chapter 05 os dan utility program csc & ttsChapter 05 os dan utility program csc & tts
Chapter 05 os dan utility program csc & tts
 
Is ch04
Is ch04Is ch04
Is ch04
 
Linux introduction
Linux introductionLinux introduction
Linux introduction
 
history_of_linux lec 7.pptx
history_of_linux lec 7.pptxhistory_of_linux lec 7.pptx
history_of_linux lec 7.pptx
 
01 linux history overview
01 linux history overview01 linux history overview
01 linux history overview
 
Software Engineering Lec 8-design-
Software Engineering Lec 8-design-Software Engineering Lec 8-design-
Software Engineering Lec 8-design-
 
Linux Day2
Linux Day2Linux Day2
Linux Day2
 
Course 101: Lecture 5: Linux & GNU
Course 101: Lecture 5: Linux & GNU Course 101: Lecture 5: Linux & GNU
Course 101: Lecture 5: Linux & GNU
 
Linux-2.ppt
Linux-2.pptLinux-2.ppt
Linux-2.ppt
 

More from seolangit7

Tutorial microtik router_os
Tutorial microtik router_osTutorial microtik router_os
Tutorial microtik router_osseolangit7
 
Pertemuan 6 pengenalan windows sistem os
Pertemuan 6   pengenalan windows sistem osPertemuan 6   pengenalan windows sistem os
Pertemuan 6 pengenalan windows sistem osseolangit7
 
Perintah dasar linux dan fungsi fungsinya
Perintah dasar linux dan fungsi fungsinyaPerintah dasar linux dan fungsi fungsinya
Perintah dasar linux dan fungsi fungsinyaseolangit7
 
Pengenalan jarkom dan ilmu computer
Pengenalan jarkom dan ilmu computerPengenalan jarkom dan ilmu computer
Pengenalan jarkom dan ilmu computerseolangit7
 
perangkat jaringan komputer dan fungsi nya
perangkat jaringan komputer dan fungsi nyaperangkat jaringan komputer dan fungsi nya
perangkat jaringan komputer dan fungsi nyaseolangit7
 
Mikrotik routeros uptade seting router
Mikrotik routeros uptade seting routerMikrotik routeros uptade seting router
Mikrotik routeros uptade seting routerseolangit7
 
Lan local area netwok
Lan local area netwokLan local area netwok
Lan local area netwokseolangit7
 
pembelajaran jaringan wan (WIDE AREA NETWORK)
pembelajaran jaringan wan (WIDE AREA NETWORK)pembelajaran jaringan wan (WIDE AREA NETWORK)
pembelajaran jaringan wan (WIDE AREA NETWORK)seolangit7
 
Bitcoin apa apa saja tentang bitcoin
Bitcoin apa apa saja tentang bitcoinBitcoin apa apa saja tentang bitcoin
Bitcoin apa apa saja tentang bitcoinseolangit7
 
topologi-jaringan bentuk bentuk jaringan
 topologi-jaringan bentuk bentuk jaringan topologi-jaringan bentuk bentuk jaringan
topologi-jaringan bentuk bentuk jaringanseolangit7
 
Troubleshooting jaringan memecah kan masalah pada jaringan
Troubleshooting jaringan memecah kan masalah pada jaringanTroubleshooting jaringan memecah kan masalah pada jaringan
Troubleshooting jaringan memecah kan masalah pada jaringanseolangit7
 
praktek mikrotik router dan tata cara
praktek mikrotik router dan tata carapraktek mikrotik router dan tata cara
praktek mikrotik router dan tata caraseolangit7
 
Modul cisco-packet-tracer
Modul cisco-packet-tracerModul cisco-packet-tracer
Modul cisco-packet-tracerseolangit7
 
Melakukan perawatan pc degan benar
Melakukan perawatan pc degan benarMelakukan perawatan pc degan benar
Melakukan perawatan pc degan benarseolangit7
 
Makalah troubleshooting masalha pada komputer
Makalah troubleshooting masalha pada komputerMakalah troubleshooting masalha pada komputer
Makalah troubleshooting masalha pada komputerseolangit7
 
pengantaran pengkabelan dan jaringan
pengantaran pengkabelan dan jaringanpengantaran pengkabelan dan jaringan
pengantaran pengkabelan dan jaringanseolangit7
 
Jenis kabel jaringan dan fungsinya
Jenis kabel jaringan dan fungsinyaJenis kabel jaringan dan fungsinya
Jenis kabel jaringan dan fungsinyaseolangit7
 
Apa itu linux tentang linux
Apa itu linux tentang linuxApa itu linux tentang linux
Apa itu linux tentang linuxseolangit7
 
Adoc.site modul jaringan-nirkabel-tkj-kelas-xii- jaringan dasar
Adoc.site modul jaringan-nirkabel-tkj-kelas-xii- jaringan dasarAdoc.site modul jaringan-nirkabel-tkj-kelas-xii- jaringan dasar
Adoc.site modul jaringan-nirkabel-tkj-kelas-xii- jaringan dasarseolangit7
 
modul cisco packet tracer unutuk simulasi jaringan komputer
modul cisco packet tracer unutuk simulasi jaringan komputermodul cisco packet tracer unutuk simulasi jaringan komputer
modul cisco packet tracer unutuk simulasi jaringan komputerseolangit7
 

More from seolangit7 (20)

Tutorial microtik router_os
Tutorial microtik router_osTutorial microtik router_os
Tutorial microtik router_os
 
Pertemuan 6 pengenalan windows sistem os
Pertemuan 6   pengenalan windows sistem osPertemuan 6   pengenalan windows sistem os
Pertemuan 6 pengenalan windows sistem os
 
Perintah dasar linux dan fungsi fungsinya
Perintah dasar linux dan fungsi fungsinyaPerintah dasar linux dan fungsi fungsinya
Perintah dasar linux dan fungsi fungsinya
 
Pengenalan jarkom dan ilmu computer
Pengenalan jarkom dan ilmu computerPengenalan jarkom dan ilmu computer
Pengenalan jarkom dan ilmu computer
 
perangkat jaringan komputer dan fungsi nya
perangkat jaringan komputer dan fungsi nyaperangkat jaringan komputer dan fungsi nya
perangkat jaringan komputer dan fungsi nya
 
Mikrotik routeros uptade seting router
Mikrotik routeros uptade seting routerMikrotik routeros uptade seting router
Mikrotik routeros uptade seting router
 
Lan local area netwok
Lan local area netwokLan local area netwok
Lan local area netwok
 
pembelajaran jaringan wan (WIDE AREA NETWORK)
pembelajaran jaringan wan (WIDE AREA NETWORK)pembelajaran jaringan wan (WIDE AREA NETWORK)
pembelajaran jaringan wan (WIDE AREA NETWORK)
 
Bitcoin apa apa saja tentang bitcoin
Bitcoin apa apa saja tentang bitcoinBitcoin apa apa saja tentang bitcoin
Bitcoin apa apa saja tentang bitcoin
 
topologi-jaringan bentuk bentuk jaringan
 topologi-jaringan bentuk bentuk jaringan topologi-jaringan bentuk bentuk jaringan
topologi-jaringan bentuk bentuk jaringan
 
Troubleshooting jaringan memecah kan masalah pada jaringan
Troubleshooting jaringan memecah kan masalah pada jaringanTroubleshooting jaringan memecah kan masalah pada jaringan
Troubleshooting jaringan memecah kan masalah pada jaringan
 
praktek mikrotik router dan tata cara
praktek mikrotik router dan tata carapraktek mikrotik router dan tata cara
praktek mikrotik router dan tata cara
 
Modul cisco-packet-tracer
Modul cisco-packet-tracerModul cisco-packet-tracer
Modul cisco-packet-tracer
 
Melakukan perawatan pc degan benar
Melakukan perawatan pc degan benarMelakukan perawatan pc degan benar
Melakukan perawatan pc degan benar
 
Makalah troubleshooting masalha pada komputer
Makalah troubleshooting masalha pada komputerMakalah troubleshooting masalha pada komputer
Makalah troubleshooting masalha pada komputer
 
pengantaran pengkabelan dan jaringan
pengantaran pengkabelan dan jaringanpengantaran pengkabelan dan jaringan
pengantaran pengkabelan dan jaringan
 
Jenis kabel jaringan dan fungsinya
Jenis kabel jaringan dan fungsinyaJenis kabel jaringan dan fungsinya
Jenis kabel jaringan dan fungsinya
 
Apa itu linux tentang linux
Apa itu linux tentang linuxApa itu linux tentang linux
Apa itu linux tentang linux
 
Adoc.site modul jaringan-nirkabel-tkj-kelas-xii- jaringan dasar
Adoc.site modul jaringan-nirkabel-tkj-kelas-xii- jaringan dasarAdoc.site modul jaringan-nirkabel-tkj-kelas-xii- jaringan dasar
Adoc.site modul jaringan-nirkabel-tkj-kelas-xii- jaringan dasar
 
modul cisco packet tracer unutuk simulasi jaringan komputer
modul cisco packet tracer unutuk simulasi jaringan komputermodul cisco packet tracer unutuk simulasi jaringan komputer
modul cisco packet tracer unutuk simulasi jaringan komputer
 

Recently uploaded

call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Clustering techniques data mining book ....
Clustering techniques data mining book ....Clustering techniques data mining book ....
Clustering techniques data mining book ....ShaimaaMohamedGalal
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendArshad QA
 

Recently uploaded (20)

call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Clustering techniques data mining book ....
Clustering techniques data mining book ....Clustering techniques data mining book ....
Clustering techniques data mining book ....
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and Backend
 

pembelajaran tentang linux dan macam macam menu linux

  • 1. Chapter 1: Introducing Linux The Complete Guide To Linux System Administration
  • 2. The Complete Guide to Linux System Administration 2 Objectives • Describe how Linux was created and how it compares to other operating systems • List versions of Linux currently available • Outline the skills required and challenges facing a system administrator • Log in and begin using a Linux system
  • 3. The Complete Guide to Linux System Administration 3 Objectives (continued) • Explore a Linux file system from the command line • Locate additional information about commands you want to use or learn about
  • 4. The Complete Guide to Linux System Administration 4 A Brief History • Popular graphical computers – Apple Macintosh – Microsoft Windows • Linux – Alternative for people whose computing needs require something different
  • 5. The Complete Guide to Linux System Administration 5 Understanding Operating Systems • Software – Collection of instructions that control the tasks a computer performs – Can be changed without disassembling the computer and rewiring • Operating system – Software that helps other programs control computer hardware and interact with users
  • 6. The Complete Guide to Linux System Administration 6 Understanding Operating Systems (continued) • Application – Software program that provides service for computer user – Cannot act without “permission” from operating system
  • 7. The Complete Guide to Linux System Administration 7 Operating System Functions • Initialize computer hardware • Allocate system resources to programs • Keep track of multiple programs running at same time • Provide organized method for all programs to use system devices
  • 8. The Complete Guide to Linux System Administration 8 Operating System Functions (continued) • Major operating system components: – Kernel – Device drivers – Shell – Utility programs – Graphical user interface (GUI)
  • 9. The Complete Guide to Linux System Administration 9 The UNIX Operating System • UNIX – Operating system – Originally created at AT&T Bell Labs in early 1970s – Designed to control networked computers that were shared by many users – Features and low cost of Linux effectively driving UNIX out of market
  • 10. The Complete Guide to Linux System Administration 10 The Free Software Foundation and the GNU Project • Free software foundation (FSF) – Software itself should not be restricted in distribution by standard commercial license agreement • GNU project – Completely free version of UNIX – Written from scratch
  • 11. The Complete Guide to Linux System Administration 11 The Free Software Foundation and the GNU Project (continued) • Software license – Legal definition of who can use software and how it can be used • GNU general public license (GPL) – Very different from standard commercial software license – Author agrees to give away source code – Anyone is licensed to redistribute it in any form
  • 12. The Complete Guide to Linux System Administration 12 The Free Software Foundation and the GNU Project (continued) • GNU GPL – Any modifications to the source code must be licensed under the GPL – Sometimes called copyleft – OpenSource • Refers to software licensed under GPL • Public domain – No one has copyright to software – Not same as GPL
  • 13. The Complete Guide to Linux System Administration 13 Linux Arrives • Linus Torvalds – Decided to create UNIX-like operating system kernel for IBM-compatible PC – Solicited help via Internet – Released Linux kernel under GPL • Linux development method – Person identifies need and begins writing program – Developer announces project on Internet
  • 14. The Complete Guide to Linux System Administration 14 Linux Arrives (continued) • Linux development method (continued) – Others respond and work on different parts of project – Person leading project releases software – People download source code and try program; send back information about problems – Developers fix bugs • Forking – Creating new project based on existing source code
  • 15. The Complete Guide to Linux System Administration 15 Motivating Free Software Developers • Why would so many people devote so much effort to something without expecting any reward? – Fills developer’s specific technical need – Respect of like-minded professionals – Sense of contribution and community – Valuable boost to developer’s resume
  • 16. The Complete Guide to Linux System Administration 16 The Strengths Of Linux • Stability • Security • Speed • Cost • Multiprocessing and other high-end features • Applications
  • 17. The Complete Guide to Linux System Administration 17 Linux In The Market • Linux is packaged and sold • Red hat software – Current market leader
  • 18. The Complete Guide to Linux System Administration 18 Linux Distributions • Linux distribution – Productized version of Linux • Includes operating system kernel along with other components • System utilities – Related to managing Linux system • Price – Generally between $2 and $100
  • 19. The Complete Guide to Linux System Administration 19 Linux Distributions (continued)
  • 20. The Complete Guide to Linux System Administration 20 Red Hat Software • Fedora distribution – Free product • Red Hat Enterprise Linux configurations – WS (workstation) – ES (enterprise server) – AS (application server) • Red Hat Enterprise Linux – Sold as subscription service
  • 21. The Complete Guide to Linux System Administration 21 Red Hat Software (continued) • Red Hat Enterprise Linux – Updates from Red Hat Network (RHN) • Red Hat – Excels in service and support offered to large companies using Linux
  • 22. The Complete Guide to Linux System Administration 22 Hardware Requirements • Can run on very minimal hardware • Recommend that computer have minimum of: – 1 GB of free disk space – 64 MB of RAM • For Red Hat Enterprise Linux installations: – 256 MB of RAM – 300 MHZ CPU – 800 MB of free disk space
  • 23. The Complete Guide to Linux System Administration 23 Version Numbering • Version numbers assigned to: – Each release of Linux kernel – Each component of Linux distribution – Linux distributions • Most users select latest available version
  • 24. The Complete Guide to Linux System Administration 24 Version Numbering (continued) • Kernel version number components – Major version number – Minor version number • Even indicates production release • Odd indicates development release – Patch-level number
  • 25. The Complete Guide to Linux System Administration 25 Linux Certification • Industry certification programs – Red Hat Certified Technician – Red Hat Certified Engineer – LPI Certification – Linux Certified Administrator (LCA) Certification – Linux+ Certification – Novell Certified Linux Engineer
  • 26. The Complete Guide to Linux System Administration 26 Linux Certification (continued) • Red Hat’s certification program – Very highly regarded – Training program consists of three courses
  • 27. The Complete Guide to Linux System Administration 27 The Work of a System Administrator • Linux is increasingly part of information technology infrastructure of large organizations • Knowledge of Linux can set you on path to a fulfilling and profitable career
  • 28. The Complete Guide to Linux System Administration 28 Careers in Linux • System administrator • Network administrator • Software engineer • Trainer • Technical writer • Product marketing • Business consultant
  • 29. The Complete Guide to Linux System Administration 29 The Duties of a System Administrator • Role – Make technology work and continue to work for those who do “real work” of organization – Enable others to use technology benefits • Responsibilities – Create new user accounts – Maintain system hardware – Train end users
  • 30. The Complete Guide to Linux System Administration 30 The Duties of a System Administrator (continued) • Responsibilities – Keep system running smoothly – Document system – Define procedures and policies – Recover from emergencies – Plan systems
  • 31. The Complete Guide to Linux System Administration 31 Ethics, Privacy, and the Law • Working as system administrator involves many ethical issues • Fellow employees count on your work to do theirs • Best route to success comes through making employer successful • System administrators guild (SAGE) – www.sage.org
  • 32. The Complete Guide to Linux System Administration 32 Starting To Use Linux • Should have access to computer with Linux installed
  • 33. The Complete Guide to Linux System Administration 33 Logging In • Log in – Identify yourself to operating system so that it knows: • You are authorized to use system • Which parts of system to permit you to access • User account – Set of permissions to use system – Has associated user name and password
  • 34. The Complete Guide to Linux System Administration 34 Logging In (continued) • Modes – Graphical – Text
  • 35. The Complete Guide to Linux System Administration 35 Graphical Environments • Popular desktops – KDE desktop – GNOME desktop • Features – Taskbar – Main menu – Desktop icons – Multiple overlapping windows
  • 36. The Complete Guide to Linux System Administration 36 Opening a Terminal Window • Terminal window – Resembles console – Enter commands from keyboard
  • 37. The Complete Guide to Linux System Administration 37 Exploring the File System
  • 38. The Complete Guide to Linux System Administration 38 File System Concepts • Files are organized into directories • Names are case sensitive • Names can be long • Names may contain many different types of characters • Can include file extensions – Not required
  • 39. The Complete Guide to Linux System Administration 39 File System Concepts (continued) • Directory relationships – Parent directory – Subdirectory • Path – List of directories – Absolute path – Relative path • Linux does not have separate drives
  • 40. The Complete Guide to Linux System Administration 40 File System Concepts (continued) • Root directory – Parent of all directories – / • /Usr subdirectory – Contains the greatest number of files and subdirectories on newly installed systems
  • 41. The Complete Guide to Linux System Administration 41 Managing Files With Graphical Utilities • File manager – Displays contents of a directory as collection of icons or file names – Manage files and directories – Choose Browse Filesystem on main menu • Home directory – Subdirectory where all personal files are stored
  • 42. The Complete Guide to Linux System Administration 42 Working at a Command Line • Linux system administrators should be very comfortable working at command line – Much faster way to perform most tasks – Some tasks cannot be use graphical interface • Commands – pwd − mv − slocate – cd − ls − file – mkdir − cat − cp – rmdir − touch
  • 43. The Complete Guide to Linux System Administration 43 Working at a Command Line (continued) • Command-line prompt consists of: – User name – Name of computer at which you are working – Last directory name in current working directory – $ character
  • 44. The Complete Guide to Linux System Administration 44 Working at a Command Line (continued) • Parameters – Define what command will operate on • Options – Alter how command operates • Timestamp – Information about date and time when event occurred
  • 45. The Complete Guide to Linux System Administration 45 Finding Command Help • Learn more details • Explore additional Linux topics
  • 46. The Complete Guide to Linux System Administration 46 Reading Linux Documentation • Linux documentation project (LDP) – HOWTOS • Linux on the internet – www.google.com • Documentation included with software packages – Software packages provide some documentation – /Usr/doc – /Usr/share/doc
  • 47. The Complete Guide to Linux System Administration 47 Linux Command Information • Man pages – Online manual pages – Man command • Info page – Definitive source of information – Info command
  • 48. The Complete Guide to Linux System Administration 48 Summary • Operating system – Provides interface between computer hardware and applications run by user • Linux offers important features, such as: – Stability – Speed – Security – Flexibility – Low cost
  • 49. The Complete Guide to Linux System Administration 49 Summary (continued) • Several Linux certification programs are available • Several versions of Red Hat Enterprise Linux • Most users rely on GUI to log in and use Linux – Text-only mode also available • Information in Linux is stored in directories – Begins with root directory /
  • 50. The Complete Guide to Linux System Administration 50 Summary (continued) • Linux files can include file extensions – Few Linux programs rely on file extensions to define what file contains • Information about Linux is available online – Part of LDP