Top Banner
LINUX ADMINISTRATION Pandian Ganesan
61

L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Jan 18, 2016

Download

Documents

Lester Holt
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

LINUX ADMINISTRATION

Pandian Ganesan

Page 2: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

AGENDA

• Linux Introduction• User Administration• Linux Networking• Filesystem Management• Basic Shell Scripting• Q&A

Page 3: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

LINUX Introduction

Page 4: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

What is Linux ?

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

Page 5: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

A Linux Distribution has thousands of dollars worth of software for no cost.

Linux is a complete operating system:• stable - the crash of an application is much less likely to

bring down the OS under Linux.• Reliable - Linux servers are often up for hundreds of

days compared with the regular reboots required with a Windows system.

• extremely powerful Linux provides a complete development environment.

Why Linux ?

Page 6: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Excellent networking facilities Ideal environment to run servers such as a web server, or

an ftp server. A wide variety of commercial software is available if not

satisfied by the free software Easily upgradeable. Supports multiple processors. True multi-tasking, multi-user OS. An excellent window system called X, the equivalent of

Windows but much more flexible. Full source code is provided and free.

Why Linux (continued)

Page 7: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Red Hat Enterprise Linux SUSE Linux Fedora Linux Mandrake Linux Debian Linux CentOS Gentoo Linux

Linux Distributions

Page 8: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Linux Operating System Architecture

Page 9: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Boot Process in Linux

Page 10: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Linux Run Levels

Page 11: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Linux Init Scripts

Page 12: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

User Administration

Page 13: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

User Administration

• User configuration stored in /etc/passwd• File got it’s name because it originally contained passwords

as well• Security problem too many processes need to read passwd

a shadow file used now instead • Each line in passwd file contains info for one user

Page 14: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Passwd & Shadow Files

Page 15: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Adding Users

• If you really wanted to, edit /etc/passwd by hand• Some distributions have graphical or simplified ways to add

users• Most widely available however is command line utility useradd

• Syntax: useradd [options] [-g group] [-d home] [-s shell] username

• -g to define user’s initial group• -d to define user’s home directory• -s to define user’s default shell• Other options for expiration, using defaults, etc

Page 16: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Deleting Users

• Again, could just hack /etc/passwd

• More elegant way to delete user account is to use usedel

• Syntax: userdel [-r] username

• -r to delete home directory and it’s contents

Page 17: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Modifying Users

• Usermod will used to modify the user settings– Syntax: usermod [options] username

• Options are pretty much identical to those of useradd

– -g to modify user’s initial group– -d to modify user’s home directory– -s to modify user’s default shell– Also, -l to change the user’s login name– And –G to list additional groups to add user to

Page 18: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Group Management

• Group info housed in /etc/group• Similar to user management• groupadd• groupdel• groupmod

Page 19: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Daemons as Users

• For the most part, Linux daemons (services) each run as a unique user account

• Provides additional security by segregating processes and files

• Running daemons as root usually a bad idea• Accounts usually created automatically and assigned

passwords• Usually disabled from logging into system

Page 20: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Centralized Login

• Network Information Service (NIS)• Lightweight Directory Access Protocol (LDAP)• Active Directory (AD)• Samba

Page 21: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Filesystem Management

Page 22: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Linux Filesystem• "On a Linux system, everything is a file; if something is not a

file, it is a process.“

Page 23: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Linux Files• Directories: files that are lists of other files.

• Special files: the mechanism used for input and output. Most special files are in /dev, we will discuss them later.

• Links: a system to make a file or directory visible in multiple parts of the system's file tree. We will talk about links in detail.

• (Domain) sockets: a special file type, similar to TCP/IP sockets, providing inter-process networking protected by the file system's access control.

• Named pipes: act more or less like sockets and form a way for processes to communicate with each other, without using network socket semantics.

Page 24: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Linux File Types

Page 25: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Filesystem Types

Page 26: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Partitioning

• Logically divide the available space into sections that can be accessed independently of one another.

• There are two kinds of major partitions on a Linux system:

– data partition: normal Linux system data, including the root partition containing all the data to start up and run the system; and

– swap partition: expansion of the computer's physical memory, extra memory on hard disk.

• Partition tools: fdisk, disks, KDE Partition Manager, GParted

Page 27: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Mount points• All partitions are attached to the system via a mount point. The mount

point defines the place of a particular data set in the file system. Usually, all partitions are connected through the root partition

• Mounting a filesystem Syntax :mount –t type device directory

Page 28: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

FSTAB

• For filesystems that should be mounted on boot every time, put them in /etc/fstab

• Basically a tab delimited file that contains the command line parameters you’d give to mount– Device– Mount point (directory)– FS type– Options (Readonly, attributes, etc)

Page 29: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Monitoring Disk Usage

• du – disk usage on files and directories• df – reports filesystem utilization• lsof – list open file handles• quota – configure and display user quotas

Page 30: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Linux Networking

Page 31: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Linux Networking

• Linux is a powerful networking operating system

• Ability to work as a client, server, or network device– Proxies, firewalls, routers, bridges, etc

• Invoked in run levels 3 and 5 usually

• Network device/interface configurations in either /etc/sysconfig/networking or in /etc/sysconfig/network-scripts

• Can either edit manually, or use utilities to manage

Page 32: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

IFCONFIG• Displays or alters network device configs• Syntax:

ifconfig interface [options]• With no options, shows interface’s config• If interface omitted as well, show all configs• Options include flags, IP address, subnet mask, etc

Page 33: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Interfaces

• By default, wired ethernet interfaces are found as ethX, with X starting at 0

• These are aliases to the actual physical adapter and driver

• To enable an interface:– ifup interface

• To disable an interface:– ifdown interface

• Wireless interfaces a bit different– Use iwconfig to manage these and display info– Has the additional options for frequency, encryption, channel,

passphrases, etc

Page 34: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

IPTABLES

Page 35: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Network Config files

File Description

/etc/resolve.conf List DNS servers for internet domain name resolution.Manual page for: /etc/resolv.conf

/etc/hosts Lists hosts to be resolved locally (not by DNS).Manual page for: /etc/hosts

/etc/nsswitch.conf List order of host name search. Typically look at local files, then NIS server, then DNS server.Manual page for: /etc/nsswitch.conf

Red Hat/Fedora/CentOS: /etc/sysconfig/networkSpecify network configuration. eg. Static IP, DHCP, NIS, etc.

Red Hat/Fedora/CentOS: /etc/sysconfig/network-scripts/ifcfg-device Specify TCP network information.

Ubuntu/Debian: /etc/network/interfacesSpecify network configuration and devices. eg. Static IP and info, DHCP, etc.

Page 36: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Network Shares

• Samba SMB/CIFS

• CUPS

• NFS

Page 37: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Shell Scripting

Page 38: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Shell Scripts

• Text files that contain sequences of UNIX commands , created by a text editor

• No compiler required to run a shell script, because the UNIX shell acts as an interpreter when reading script files

• After you create a shell script, you simply tell the OS that the file is a program that can be executed, by using the chmod command to change the files’ mode to be executable

• Shell programs run less quickly than compiled programs, because the shell must interpret each UNIX command inside the executable script file before it is executed

Page 39: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Commenting• Lines starting with # are comments except the very first line where

#! indicates the location of the shell that will be run to execute the script.

• On any line characters following an unquoted # are considered to be comments and ignored.

• Comments are used to; – Identify who wrote it and when– Identify input variables– Make code easy to read– Explain complex code sections– Version control tracking– Record modifications

Page 40: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Quote CharactersThere are three different quote characters with different behaviour.

These are:

“ : double quote, weak quote. If a string is enclosed in “ ” the references to variables (i.e $variable ) are replaced by their values. Also back-quote and escape \ characters are treated specially.

‘ : single quote, strong quote. Everything inside single quotes are taken literally, nothing is treated as special.

` : back quote. A string enclosed as such is treated as a command and the shell attempts to execute it. If the execution is successful the primary output from the command replaces the string.Example: echo “Today is:” `date`

Page 41: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

ECHO

Echo command is well appreciated when trying to debug scripts.

Syntax : echo {options} stringOptions: -e : expand \ (back-slash ) special characters

-n : do not output a new-line at the end.String can be a “weakly quoted” or a ‘strongly quoted’ string. In the

weakly quoted strings the references to variables are replaced by the value of those variables before the output.

As well as the variables some special backslash_escaped symbols are expanded during the output. If such expansions are required the –e option must be used.

Page 42: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

User Input During Shell Script Execution

• As shown on the example script input from the standard input location is done via the read command.

• Exampleecho "Please enter three filenames:”read filea fileb filec echo “These files are used:$filea $fileb $filec”

• Each read statement reads an entire line. In the above example if there are less than 3 items in the response the trailing variables will be set to blank ‘ ‘.

• Three items are separated by one space.

Page 43: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Debugging your shell scripts

• Generous use of the echo command will help.

• Run script with the –x parameter. E.g. sh –x ./myscriptor set –o xtrace before running the script.

• These options can be added to the first line of the script where the shell is defined.e.g. #!/bin/sh -xv

Page 44: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Shell Programming

• Programming features of the UNIX/LINUX shell: Shell variables: Your scripts often need to keep values in

memory for later use. Shell variables are symbolic names that can access values stored in memory

Operators: Shell scripts support many operators, including those for performing mathematical operations

Logic structures: Shell scripts support sequential logic (for performing a series of commands), decision logic (for branching from one point in a script to another), looping logic (for repeating a command several times), and case logic (for choosing an action from several possible alternatives)

Page 45: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Variables • Variables are symbolic names that represent values stored in

memory

• Three different types of variables

– Global Variables: Environment and configuration variables, capitalized, such as HOME, PATH, SHELL, USERNAME, and PWD.

When you login, there will be a large number of global System variables that are already defined. These can be freely referenced and used in your shell scripts.

– Local Variables

Within a shell script, you can create as many new variables as needed. Any variable created in this manner remains in existence only within that shell.

– Special Variables

Reversed for OS, shell programming, etc. such as positional parameters $0, $1 …

Page 46: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Defining and Referencing Variables

• VariableName=value• Examples :

a=1234 # a is NOT an integer, a string insteadb=$a+1 # will not perform arithmetic but be the string ‘1234+1’b=`expr $a + 1 ` will perform arithmetic so b is 1235 now.

Note : +,-,/,*,**, % operators are available. b=abcde # b is stringb=‘abcde’ # same as above but much safer.b=abc def # will not work unless ‘quoted’b=‘abc def’ # i.e. this will work.

Variable contents are accessed using ‘$’:e.g. echo $HOME

echo $SHELL

echo $b

Page 47: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Defining and Referencing Variables

• VariableName=value• Examples :

a=1234 # a is NOT an integer, a string insteadb=$a+1 # will not perform arithmetic but be the string ‘1234+1’b=`expr $a + 1 ` will perform arithmetic so b is 1235 now.

Note : +,-,/,*,**, % operators are available. b=abcde # b is stringb=‘abcde’ # same as above but much safer.b=abc def # will not work unless ‘quoted’b=‘abc def’ # i.e. this will work.

Variable contents are accessed using ‘$’:e.g. echo $HOME

echo $SHELL

echo $b

Page 48: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Shell Operators

• The Bash/Bourne/ksh shell operators are divided into three groups: defining and evaluating operators, arithmetic operators, and redirecting and piping operators

Page 49: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Defining and Evaluating

• A shell variable take on the generalized form variable=value (except in the C shell).

$ set x=37; echo $x37$ unset x; echo $xx: Undefined variable.

• You can set a pathname or a command to a variable or substitute to set the variable.

$ set mydir=`pwd`; echo $mydir

Page 50: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Pipes & Redirecting

Piping: An important early development in Unix , a way to pass the output of one tool to the input of another.

$ who | wc −l

By combining these two tools, giving the wc command the output of who, you can build a new command to list the number of users currently on the system

Redirecting via angle brackets: Redirecting input and output follows a similar principle to that of piping except that redirects work with files, not commands.

tr '[a-z]' '[A-Z]' < $in_file > $out_file

The command must come first, the in_file is directed in by the less_than sign (<) and the out_file is pointed at by the greater_than sign (>).

Page 51: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Arithmetic Operators

• expr supports the following operators:

– arithmetic operators: +,-,*,/,%– comparison operators: <, <=, ==, !=, >=, >– boolean/logical operators: &, |– parentheses: (, )– precedence is the same as C, Java

Example : • vi math.sh

#!/bin/shcount=5

count=`expr $count + 1 ` echo $count

• chmod u+x math.sh• math.sh

6

Page 52: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Shell Logic Structures

The four basic logic structures needed for program development are:

Sequential logic: to execute commands in the order in which they appear in the program

Decision logic: to execute commands only if a certain condition is satisfied

Looping logic: to repeat a series of commands for a given number of times

Case logic: to replace “if then/else if/else” statements when making numerous comparisons

Page 53: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Conditional Statements(if constructs )

• The most general form of the if construct is;if command executes successfully thenexecute command elif this command executes successfully then execute this command and execute this command else execute default command fi

SIMPLE EXAMPLE:if date | grep “Fri”thenecho “It’s Friday!” fi

Page 54: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

File enquiry operations

-d file Test if file is a directory-f file Test if file is not a directory-s file Test if the file has non zero length-r file Test if the file is readable-w file Test if the file is writable-x file Test if the file is executable-o file Test if the file is owned by the

user-e file Test if the file exists-z file Test if the file has zero length

All these conditions return true if satisfied and false otherwise.

Page 55: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

LOOPS

Loop is a block of code that is repeated a number of times.

The repeating is performed either a pre-determined number of times determined by a list of items in the loop count ( for loops ) or until a particular condition is satisfied ( while and until loops)

To provide flexibility to the loop constructs there are also two statements namely break and continue are provided.

Page 56: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Loop Syntax

For Loop

for arg in list do

command(s) ...

done

While Loop

while this_command_execute_successfullydo

this commandand this command

done

Untiluntil test

do commands ….done

Page 57: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

CASE

The case structure compares a string ‘usually contained in a variable’ to one or more patterns and executes a block of code associated with the matching pattern. Matching-tests start with the first pattern and the subsequent patterns are tested only if no match is not found so far.

case argument in

pattern 1) execute this command and this and this;;pattern 2) execute this command and this and this;;esac

Page 58: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Useful Commands in Scripting

• grep– Pattern searching– Example: grep ‘boo’ filename

• sed– Text editing– Example: sed 's/XYZ/xyz/g' filename

• awk– Pattern scanning and processing– Example: awk ‘{print $4, $7}’ filename

Page 59: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

PROS & CONS

• Pros– File processing– Glue together compelling, customized testing utilities – Create powerful, tailor-made manufacturing tools – Cross-platform support – Custom testing and debugging

• Cons– Performance slowdown– Accurate scientific computing

Page 60: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Reference

Website : http://www.linuxhomenetworking.com/

Skype : pandian.abc

Page 61: L INUX A DMINISTRATION Pandian Ganesan. AGENDA Linux Introduction User Administration Linux Networking Filesystem Management Basic Shell Scripting Q&A.

Thank You !!!