62
LAMP Stands For LAMP Stands For L - Linux A - Appache M - MySQL P - Php

Linux

Embed Size (px)

DESCRIPTION

Linux

Citation preview

Page 1: Linux

LAMP Stands ForLAMP Stands For

L - Linux

A - Appache

M - MySQL

P - Php

Page 2: Linux

LINUXLINUX

Definition:Definition:

Linux is a free open source Operating System, based on Unix. It is available from many vendors with optional paid for support and provides an increasingly viable alternative to the Win 32, platform.

Page 3: Linux

Syntax: mkdir Example: mkdir [option] directory

Make DirectoryMake Directory

Page 4: Linux

Syntax: cd Example: cd ..

CHANGE DIRECTORYCHANGE DIRECTORY

Page 5: Linux

Syntax: mv Example: mv testdir newnamedir

CHANGE THE NAME OF CHANGE THE NAME OF DIRECTORYDIRECTORY

Page 6: Linux

REMOVE AN EXISTING REMOVE AN EXISTING DIRECTORYDIRECTORY

Syntax: rmdir Example: rm -r

Page 7: Linux

LISTING OF DIRECTORYLISTING OF DIRECTORY

Syntax: ls Example: ls

Page 8: Linux

COPY FILECOPY FILE

To copy file use Syntax: cp Example: cp myfile yourfile

Page 9: Linux

Creates a symbolic link to a Creates a symbolic link to a filefile

Make links between files, by default, it makes

hard links; with the `-s' option, it makes symbolic (or "soft") links.

Syntax: ln [Options]... target [Linkname]

ln [Options]... target... Directory

Page 10: Linux

SENDS FILE CONTENT TO SENDS FILE CONTENT TO STANDARD OUTPUTSTANDARD OUTPUT

To send a file content to standard output use Syntax: cat

Page 11: Linux

PRINT WORKING DIRECTORYPRINT WORKING DIRECTORY

Syntax: pwd

Explanation:

It will show the current working directory

Page 12: Linux

CLEAR THE TERMAINAL SCREENCLEAR THE TERMAINAL SCREEN

Syntax: Clear

It clears the terminal screen.

Page 13: Linux

EXIT FROM A LOOPEXIT FROM A LOOP Exit from a for, while, until, or select loop

Syntax: break [n]

If n is supplied, the nth enclosing loop is exited. n must be greater than or equal to 1.

The return status is zero unless n is not greater than or equal to 1.

Page 14: Linux

COMPARE TWO FILECOMPARE TWO FILE Compare two files, and if they differ,

tells the first byte and line number where they differ.

You can use the `cmp' command to show the offsets and line numbers where two files differ. `cmp' can also show all the characters that differ between the two files, side by side.

Syntax: cmp options... FromFile [ToFile]

Page 15: Linux

COMPARE DIFFERENT FILESCOMPARE DIFFERENT FILES Display the differences between two files,

or each corresponding file in two directories.

Each set of differences is called a "diff" or "patch". For files that are identical, diff normally produces no output; for binary (non-text) files, diff normally reports only that they are different.

Syntax: diff [options] from-file to-file

Page 16: Linux

DIVIDE A FILE INTO SEVERAL PARTSDIVIDE A FILE INTO SEVERAL PARTS Divide a file into several parts (columns)Writes to standard output selected parts of

each line of each input file, or standard input if no files are given or for a file name of `-'.

Syntax: cut [OPTION]... [FILE]...

Page 17: Linux

DISPLAY OR CHANGE THE DATE DISPLAY OR CHANGE THE DATE AND TIMEAND TIME

Display or change the date.

Syntax: date [option]... [+Format] date [option] [MMDDhhmm[[CC]YY][.ss]]

`date' with no arguments prints the current time and date, in the format of the %c directive.

Page 18: Linux

DISK CALCULATORDISK CALCULATOR

Syntax: dc <options>

Option: -e EXPR --expression=EXPR Evaluate EXPR as DC commands.

-f FILE --file=FILE Read and evaluate DC commands from

FILE.

Page 19: Linux

DISPLAY FREE DISK SPACEDISPLAY FREE DISK SPACE

Disk Free - display free disk space. With no arguments, `df' reports the space

used and available on all currently mounted filesystems (of all types). Otherwise, `df' reports on the filesystem containing each argument file.

Syntax: df [option]... [file]...

Page 20: Linux

PRINT OR SET SYSTEM NAMEPRINT OR SET SYSTEM NAME Print or set system name

Syntax: hostname [name]

With no arguments, `hostname' prints the name of the current host system. With one argument, it sets the current host name to the specified string. You must have appropriate privileges to set the host name.

Page 21: Linux

Syntax:Syntax:bash bash

GNU Bourne-Again SHell

Page 22: Linux

CURRENT USERCURRENT USER

Syntax: whoami

Print the current user id and name (`id -un')

Page 23: Linux

CURRENTLY LOGGEDCURRENTLY LOGGED

Syntax: who Print all usernames currently

logged in

Page 24: Linux

Syntax: while Execute commands

Page 25: Linux

Syntax: which Search the user's $path for a program file

Page 26: Linux

TEXT EDITORTEXT EDITOR

Syntax: Vi Used to edit text

Page 27: Linux

CURRENT LOGIN NAMECURRENT LOGIN NAMEPrint current login name

Syntax: logname

Prints the calling user's name, as found in the file`/var/run/utmp', and exits with a status of 0.

If there is no `/var/run/utmp' entry for the calling process, `logname' prints an error message and exits with a status of 1.

Page 28: Linux

COMMAND HISTORYCOMMAND HISTORY

Command Line history

Syntax: history history [n] history -c history -d offset history [-anrw] [filename] history -ps arg

Page 29: Linux

DISK USAGEDISK USAGE

Disk Usage - report the amount of disk space used by the specified files and for each subdirectory.

Syntax:

du [options]... [file]...

With no arguments, `du' reports the disk space for the current directory. Normally the disk space is printed in units of 1024 bytes, but this can be overridden.

Page 30: Linux

DISPLAY THE SYSTEM MEMORYDISPLAY THE SYSTEM MEMORY

Syntax:

Free 

Displays the amount of used and free system memory.

Page 31: Linux

CREATE AN ALIASCREATE AN ALIASSyntax:

alias [-p] [name[=value] …]

unalias [-a] [name ... ]Key:

-p Print the current values

-a Remove All aliases

Page 32: Linux

SPELL CHECKERSPELL CHECKER

Syntax: aspell check [options] filename

Examples:

Check the file foo.txt: $ aspell check foo.txt$ aspell check foo.txt

Page 33: Linux

SEND TO BACKROUNDSEND TO BACKROUND

Syntax:bg [PID...]

Example:

Put the job with job id 0 in the background:

bg %0 bg %0

Page 34: Linux

KILLING PROCESSKILLING PROCESS

Syntax : kill process_ids

kill - signal process_ids

kill -l

Kills the specified processes, sends the specified processes the specified signal (given as a number or name), or prints a list

of available signals.

Page 35: Linux

KILL ALL THE PROGRAMSKILL ALL THE PROGRAMS

Syntax : killall program

killall - signal program

Kills all processes that are instances of the specified program or sends the specified signal to all processes that are instances of the specified program.

Page 36: Linux

REBOOT THE SYSTEMREBOOT THE SYSTEM

Syntax :

reboot

Reboots the system

Page 37: Linux

SHUTDOWN THE SYSTEMSHUTDOWN THE SYSTEM

Syntax :

shutdown -r minutes

Shuts down the system after the specified number of minutes elapses .

Page 38: Linux

SLEEP TIMESLEEP TIME

Syntax :

sleep time

Causes the command interpreter to pause for the specified number of seconds.

Page 39: Linux

An arbitrary precision calculator An arbitrary precision calculator language language

Syntax: bc options file... Explanation: bc is a language that supports

arbitrary precision numbers with interactive execution of statements. bc starts by processing code from all the files listed on the command line in the order listed. After all files have been processed, bc reads from the standard input. All code is executed as it is read.

Page 40: Linux

Run a shell builtinRun a shell builtin

Run a shell builtin, passing it args, and return its exit status.

SYNTAX: builtin [shell-builtin [args]]

This is useful when defining a shell function with the same name as a shell builtin, retaining the functionality of the builtin within the function.

Page 41: Linux

Conditionally perform a Conditionally perform a commandcommand Conditionally perform a command, case will

selectively execute the command-list corresponding to the first pattern that matches word.

Syntax: case word in [ [(] pattern [| pattern]...) command-case word in [ [(] pattern [| pattern]...) command-

list ;;]... esaclist ;;]... esac

The `|' is used to separate multiple patterns, and the `)' operator terminates a pattern list. A list of patterns and an associated command-list is known as a clause. Each clause must be terminated with `;;'.

Page 42: Linux

Convert a full pathname to just Convert a full pathname to just a path a path

Convert a full pathname to just a path

Syntax dirname pathname

Prints all but the final slash-delimited component of a string (presumably a filename).

If PATHNAME is a single component, `dirname' prints `.'

Page 43: Linux

Estimate file space usageEstimate file space usage

Disk Usage - report the amount of disk space used by the specified files and for each subdirectory.

Syntax du [options]... [file]...

With no arguments, `du' reports the disk space for the current directory. Normally the disk space is printed in units of 1024 bytes, but this can be overridden

Page 44: Linux

Display message on screenDisplay message on screen

Display message on screen, writes each given STRING to standard output, with a space between each and a newline after the last one.

Syntax echo [options]... [string]...

Page 45: Linux

Eject removable mediaEject removable media

Syntax eject -h eject [-vnrsfmqp] [<name>] eject [-vn] -d eject [-vn] -a on|off|1|0 [<name>] eject [-vn] -c slot [<name>] eject [-vn] -t [<name>] eject [-vn] -T [<name>] eject [-vn] -x <speed> [<name>] eject [-vn] -X [<name>] eject -V

Page 46: Linux

Enable and disable builtin shell Enable and disable builtin shell commands.commands.Syntax:

enable [-n] [-p] [-f filename] [-ads] [name …]

Options: -a list each builtin with an indication of

whether or not it is enabled. -d Delete a builtin loaded with `-f'. -f load the new builtin command name

from shared object filename, on systems that support dynamic loading.

-n Disable the names listed, otherwise names are enabled.

Page 47: Linux

Environment variablesEnvironment variables

Display, set, or remove environment variables, Run a command in a modified environment.

Syntax: env [OPTION]... [NAME=VALUE]... [COMMAND

[ARGS]...]

Page 48: Linux

Exit the shellExit the shell

Exit from a program, shell or log out of a Unix network.

Syntax: exit

If supported will exit you from the program, shell or log you out of network.

Page 49: Linux

Convert tabs to spacesConvert tabs to spaces

Convert tabs to spaces, write the contents of each given file, to standard output, with tab characters converted to the appropriate number of spaces. If no file is given, or for a file of `-', write to standard input

Syntax: expand [options]... [file]...

Page 50: Linux

Evaluate expressionsEvaluate expressions

Evaluate expressions, evaluates an expression and writes the result on standard output.

Syntax: expr expression...

Page 51: Linux

Do nothing, unsuccessfullyDo nothing, unsuccessfullyDo nothing, returning a non-zero (false) exit

status

Syntax: false

`false' does nothing except return an exit status of 1, meaning "failure". It can be used as a place holder in shell scripts where an

unsuccessful command is needed.

Page 52: Linux

Send job to foreground Send job to foreground

Send job to foreground

Syntax fg [PID...]

Options: If PID is specified, the job with the specified

group id is put in the foreground.

Page 53: Linux

Format disks or tapesFormat disks or tapes

Syntax: Format

Page 54: Linux

Comment / RemarkComment / RemarkSyntax: ###A comment or remark is indicated by starting

the line with the # character # This is a description # Another remark command # Another remark

Related commands: : (a colon) : [arguments]

Page 55: Linux

Run a command script in the Run a command script in the current shellcurrent shell

Run a command script in the current shell context.

Syntax . filename [arguments]

source filename [arguments]

A dot/period '.' is a synonym for 'source'

Page 56: Linux

Print a string until interruptedPrint a string until interruptedSyntax: YesYes

`yes' prints the command line arguments, separated by spaces and followed by a newline, forever until it is killed.

If no arguments are given, it prints `y' followed by

a newline forever until killed. The only options are a lone `--help' or `--

version'.

Page 57: Linux

Send a message to another user Send a message to another user

write

Send a message to another user

Syntax:

write user [ttyname]

Page 58: Linux

Print byte, word, and line countsPrint byte, word, and line counts

Print byte, word, and line counts, count the number of bytes, whitespace-separated words, and newlines in each given FILE, or standard input if none are given or for a FILE of `-'.

Syntax: wc [options]... [file]...Options: -c --bytes --chars Print only the byte counts.

Page 59: Linux

CREATE AN ALIASCREATE AN ALIAS

Syntax: alias [-p] [name[=value] …]

unalias [-a] [name ... ]Key:

-p Print the current values

-a Remove All aliases

Page 60: Linux

EXCUTE A COMMANDEXCUTE A COMMANDSyntax: exec [-cl] [-a name] [command

[arguments]]

Options: -l Place a dash at the beginning of the

zeroth arg passed to command. -c Causes command to be executed with

an empty environment. -a The shell passes name as the zeroth

argument to command.

Page 61: Linux

CONVERT AND COPY A FILECONVERT AND COPY A FILE

Convert and copy a file, write disk headers, boot records, create a boot floppy. dd can make an exact clone of an (unmounted) disk, this will include all blank space so the output destination must be at least as large as the input.

Syntax dd [Options]

Page 62: Linux

PRINT KERNAL MESSAGEPRINT KERNAL MESSAGE

Print kernel (and driver) messages, control the kernel ring buffer.

Syntax: dmesg [ -c ] [ -n level ] [ -s bufsize ]