Isecur1ty training center Presented by : Eng. Mohammad Khreesha.

Slides:



Advertisements
Similar presentations
POS/420 Philip Robbins – March 19, 2013 (Week 2) University of Phoenix Mililani Campus Introduction to Unix.
Advertisements

CS 497C – Introduction to UNIX Lecture 5: Understanding the UNIX Command Chin-Chih Chang
RH030 Linux Computing Essentials
Chapter One The Essence of UNIX.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
Chapter 4 Getting Help. Using CDE Help Help Manager – primary help tool SunSolve Online – Web-based online help from Sun Solaris Support – Web-based Sun.
GNU/Linux Filesystem 1 st AUT GNU/Linux Festival Computer Engineering & IT Department Bahador Bakhshi.
Lesson 22 – Introduction to Linux Systems Administration.
Linux+ Guide to Linux Certification, Second Edition
Guide To UNIX Using Linux Third Edition
Guide to Linux Installation and Administration, 2e1 Chapter 12 Printing in Linux.
CSCI 243: C & UNIX Kirk Anne South 124A
1 SEEM3460 Tutorial Unix Introduction. 2 Introduction What is Unix? An operation system (OS), similar to Windows, MacOS X Why learn Unix? Greatest Software.
7/17/2009 rwjBROOKDALE COMMUNITY COLLEGE1 Unix Comp-145 C HAPTER 2.
Linux Shell. 2 Linux Command-Line Interface ■ Linux shells: A shell is a command interpreter that allows you to type commands from the keyboard to interact.
Linux Commands LINUX COMMANDS.
1. This presentation covers :  User Interface Administration  Files System and Services Management 2.
Linux Operations and Administration
Introduction to Linux Operating System Tutorial 1
Linux Last Update Copyright Kenneth M. Chipps Ph.D. 1.
CIT 470: Advanced Network and System AdministrationSlide #1 CIT 470: Advanced Network and System Administration Documentation.
Managing User Accounts. Module 2 – Creating and Managing Users ♦ Overview ► One should log into a Linux system with a valid user name and password granted.
CENT 305 Information Systems Security Linux Introduction.
2/19/2003 Lecture 3 Computer System Administration Lecture 3 Setup (continued)
Adding New Users User as an entity - username(UID), GID. UID - typically a number for system to identify the user. GID – a number that recognizes a set.
Introduction to Linux ( I ) Sidney Fong 4 th Feb 2006.
Introduction to Unix – CS 21 Lecture 2. Lecture Overview Starting out in Unix Getting help when needed Looking around a little Environment and Environment.
UNIX and Shell Programming (06CS36) Unit 1 Continued… Shrinivas R. Mangalwede Department of Computer Science and Engineering K.L.S. Gogte Institute of.
Guide to Linux Installation and Administration, 2e1 Chapter 10 Managing System Resources.
INTRODUCTION TO LINUX Jacob Chan. GNU/Linux Consists of Linux kernel, GNU utilities, and open source and commercial applications Works like Unix –Multi-user.
Guide to Linux Installation and Administration, 2e1 Chapter 7 The Role of the System Administrator.
UNIX Commands. Why UNIX Commands Are Noninteractive Command may take input from the output of another command (filters). May be scheduled to run at specific.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
Agenda Link of the week Use of Virtual Machine Review week one lab assignment This week’s expected outcomes Review next lab assignments Break Out Problems.
Guide to Linux Installation and Administration1 Chapter 4 Running a Linux System.
BIF713 Basic Unix/Linux Commands Getting Help with Commands.
Linux Kernel Management. Module 9 – Kernel Administration ♦ Overview The innermost layer of Linux operating system is the kernel, which is a thin layer.
Agenda Basic Unix Commands (Chapters 2 & 3) Miscellaneous Commands: whereis, which, whoami, finger, passwd, cal, date Working with Files: cat, more, less.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
1 Network Information System (NIS). 2 Module – Network Information System (NIS) ♦ Overview This module focuses on configuring and managing Network Information.
UNIX Shell Dr. Tran, Van Hoai
Manage Directories and Files in Linux Part 2. 2 Identify File Types in the Linux System The file types in Linux referred to as normal files and directories.
Week Two Agenda Announcements Link of the week Use of Virtual Machine Review week one lab assignment This week’s expected outcomes Next lab assignments.
CS 245 – Part 1 Using Operating Systems and Networks for Programmers Jiang Guo Dept. of Computer Science California State University Los Angeles.
More Unix Naomi Altman. Directories Directory = folder mkdir - makes a new directory rmdir - removes an empty directory cd mydirectory - moves you into.
Module 1 - Introduction to Linux. Users must log-in Linux is case sensitive File and Directories naming conventions (No spaces!) Files and Directories.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
Linux+ Guide to Linux Certification, Second Edition Chapter 4 Exploring Linux Filesystems.
Lecture 02 File and File system. Topics Describe the layout of a Linux file system Display and set paths Describe the most important files, including.
Linux A practical introduction. 1)Background and Getting Started Linux is an operating system with multiple providers Red Hat/CentOS (our version) Ubuntu.
A Brief Overview of Unix Brandon Bohrer. Topics What is Unix? – Quick introduction Documentation – Where to get it, how to use it Text Editors – Know.
Announcements Assignment 1 due Wednesday at 11:59PM Quiz 1 on Thursday 1.
EMT 2390L Lecture 3 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
June 1, 1999UNIX - Basic Environment1 Introduction to UNIX A. Basic Environment.
Gorman, Stubbs, & CEP Inc. 1 Introduction to Operating Systems Lesson 8 Linux.
Chapter 1: Introducing Linux The Complete Guide To Linux System Administration.
August 31, 2010Joris Geurts1 2IN05 Operating Systems Introduction to Linux More information for this course:
Architecture Review 10/11/2004
Agenda Basic Unix Commands (Chapters 2 & 3) Miscellaneous Commands:
IT244 - Introduction to Linux / Unix Instructor: Bo Sheng
Unix Operating System (Week Two)
Shells, Help, and Paths.
SUSE Linux Enterprise Desktop Administration
Module 5 Getting Help.
UNIX and Shell Programming (06CS36)
UNIX and Shell Programming (06CS36)
Linux Commands LINUX COMMANDS.
The Linux Command Line Chapter 5
Module 06 Getting Help.
Presentation transcript:

isecur1ty training center Presented by : Eng. Mohammad Khreesha

 Introduction  Getting help in Linux  man pages  apropos (man –k)  whatis  whereis  man sections  -h option  info

 The command line is the tool that all GUI applications use to do their work.  In other words: graphical tools are merely front-ends to command line tools.

 The basic Linux command works like this:  command [OPTIONS] [ARGUMENTS ] ▪ command: This is the base of the command. ▪ OPTIONS: Options are those pieces of the command that alter the behavior of the command. ▪ ARGUMENTS: Arguments are typically file names or other data that is needed by the command. ▪ Example:  mkdir -m 654 TEST (create the directory TEST with the mode 654 )

 This module will guide you to the correct way for getting help in Linux without searching on internet ….  We will discuss multiple ways to get help in linux…

 The man pages are a user manual that is by default built into most Linux distributions (i.e., versions) and most other Unix-like operating systems during installation. They provide extensive documentation about commands and other aspects of the system, including configuration files, system calls, library routines and the kernel …..  Examples:  man whois  man syslog.conf  man syslogd

 The apropos command displays a list of all topics in the man pages that are related to the subject of a query.  Examples:  man -k syslog or apropos syslog

 The whatis command provides very brief descriptions of command line programs and other topics related to Linux and other Unix- like operating systems.  Examples:  whatis cat or man –f cat

 whereis used to locate the binary, source, and manual page files for a command…  Examples:  whereis tar

 The manual is generally split into eight numbered sections, organized as follows :  Executable programs or shell commands  System calls (functions provided by the kernel)  Library calls (functions within program libraries)  Special files (usually found in /dev)  File formats and conventions eg /etc/passwd  Games  Miscellaneous (including macro packages and conventions), e.g. man(7)  System administration commands

 Examples :  man passwd : opens the first manual found  man 5 passwd : opens a page from section 5

 If you want to know more and more about man pages you can get help about man (manual) pages like this :  man man  Note : man pages don’t have answers for everything like : man hello

 Sometimes you may know the functionality of a command very well, but cannot recollect all the available options for a specific command. Use -h option of the command to review all available options of the command.  Examples : ▪ cat –help ▪ netstat -h

 Display a file’s help information in an alternate format.  Some programs don’t have man pages – or have very incomplete man pages – and store their documentation as info documents.  Examples:  info cat

The end