ࡱ>     y 'Sbjbj 7 {{VJ7HH^& 8dRL" 8 8 8 ' ' '2444444$;^X:$ '&@ '' ('X8 8 m+++0'l8 :8 2+ '2++V,8 0pVx',J0LK) KK ' '+ ' ' ' ' 'XX+ ' ' ' ' ' ' 'K ' ' ' ' ' ' ' ' 'H h: L  Cd Changes the Directory Location: Syntax: cd [directory] cd../home/users/computerhope The above example would go back one directory and then go into the home/users/computerhope directory. cd ../../ The above example would go back two directories. Cd Cd alone will move you into the home directory.Cal Display a calendar Location: /usr/bin/cal Syntax: cal [month] [year] cal Gives you the calendar for this month. Cal 12 2000 Gives you the calendar for December of 2000. cal 1 2011 displays the month of January, 2011.Rmdir Remove folder(s) Location:/bin/ Syntax: rmdir [option]directory rmdir /lib will delete the /lib directory rmdir c:\test /s remove the directory and all files in it. Rmdir c:\test q will do a quiete deletion.(no questions asked.)Uptime Displays all the time information. Location: /usr/bin/uptime Syntax: uptime [-V] uptime v will display the version information. uptime Will display details about how long your server has been up and running, and how many users are logged in, and system load averages for the past 1, 5, and 15 minutes. Man uptime Displays the manual for the uptime command.Ls List information about file(s) Location: /bin/ls Syntax: ls [-a] [-A] [-b] [-c] [-C] [-d] [-f] [-F] [-g] [-i] [-l] [-L] [-m] [-o] [-p] [-q] [-r] [-R] [-s] [-t] [-u] [-x] [pathnames] ls/ Lists the documents of your root directory ls */ Lists the contents of all sub directories. ls laxo Lists files with permissions, shows hidden, displays in a column format, and doesnt show the group. Man Help manual Location:/usr/bin/man Syntax: man [-] [-k keywords] topic man k cal will seach for the keyword cal in all manuals. man mkdir lists help information on the mkdir command. man k irc quickly searches for manuals containing irc within them. Mv Move or rename files or directories Location: /bin/mv Syntax: mv [-f] [-i] oldname newname mv oldname newname Will rename that file in that directory. mv f oldname newname Will rename file without asking you. mv I oldname newname Will prompt you before overwriting another file Free Display memory usage Location: /usr/bin/free Syntax: free [-b | -k | -m] [-o] [-s delay ] [-t] [-V] free V Will display version information. free s Will switch activates continuous polling delay. free t Will switch display line containing the totals. free b Will show space in bytes free k Will display it in kilobytes.Pwd Print Working Directory Location:/bin/pwd Syntax: pwd [option] pwd Will display /etc in the prompt. man pwd Will display the manual for the pwd command. pwd P Will print the working directory, without displaying all symlinks. pwd L Use pwd from environment, even if it contains symlinks. Info Location: /usr/bin/info Syntax: info [option] . . . [menu-iteam] [-k] [-d] [-f] [-h] info info show the general manual for info readers info emacs start the emacs node from top-level dir info show-options emacs Start at node with emacs command line options Cp Copy one or more files to another location. Location:/bin/co Syntax: cp [OPTION]... SOURCE DEST cp [OPTION]... SOURCE... DIRECTORY cp [OPTION]... --target-directory=DIRECTORY SOURCE... cp file1.txt newdir Copies the file1.txt in the current directory to the newdir directory. cp *.txt newdir Copies all files ending in .txt into newdir directory. cp r /home/hope.files/* /home/hope/files2 copies all the files, directories, and subdirectories in the files directory into the backup directory.Vmstat Report virtual memory statistics Location: /usr/bin/vmstat Syntax: vmstat [-V] [-n] [delay [count]] vmstat Running vmstat command with no extra options would display information about memoty, swap, io, system, and CPU vmstat V Prints version information onto screen. vmstat d Prints disk statistics to the screen Who Print all usernames currently logged in Location: /usr/bin/who Syntax: who [option] . . . [file | arg1 arg2] who r Will display the run-level of each user. who b Will indicate the time and date of the last reboot who s (Default) lists only the name, line, and time fields.Cat Concatenate and print (display) the content of files Location:/bin/cat Syntax: cat filename [-n] [-b] [-u] [-s] [-v] cat file1.txt file2.txt > file3.txt reads file1.txt and file2.txt and combines those files to make file3.txt. cat food will display the cat file to the screen. cat eats bird > detailsat11 Join the files eat and bird into detailsat11.Tar Tape Archiver Location: /bin/tar Syntax: tar c [ bBeEfFhiklnopPqvwX [ 0-7 ] ] [ block ] [ tarfile ] [ exclude-file ] {-I include-file | -C directory | file | file } tar r [ bBeEfFhiklnqvw [ 0-7 ] ] [ block ] {-I include-file | -C directory | file | file } tar t [ BefFhiklnqvX [ 0-7 ] ] [ tarfile ] [ exclude-file ] {-I include-file | file } ... tar u [ bBeEfFhiklnqvw [ 0-7 ] ] [ block ] [ tarfile ] file ... tar x [ BefFhiklmnopqvwX [ 0-7 ] ] [ tarfile ] [ exclude-file ] [ file ... ] Tar cvwf file.tar myfile.txt Creates a tar named file.tar in the directory you are currently in. -xvwf myfile.tar Uncompress (untar) the myfile.txt file in the current directory. Tar xvwzf myfile.tar.gz Uncompress the myfile.tar.gz file in the current directory.Id Print user and group id's Location: /usr/bin/id Syntax: id [-a] [-G] [-g] [-u] [user] info id Should give you access to the complete manual. id g Print only effective group ID. id G Prints all group IDs Whoami Print the current user id and name Location: /usr/bin/whoami Syntax: whoami [option] whoami will display the name of the current directory. If you are logged on as Root and type whoami it will say you are logged onto the root account. whoami version Will output the version information and exit. whoami help Displays the help and exitHead Output the first part of file(s) Location: /usr/bin/head Syntax: head [-number | -n number] filename. head -15 myfile.txt will display the first ten lines of myfile.txt head myfile.txt Will show the first 10 lines in myfile.txt head -n number Shows the number of lines you chose for it to display.Gzip Compress or decompress named file(s) Location: /usr/bin/gzip Syntax: gzip [ -acdfhlLnNrtvV19 ] [-S suffix] [ name ... ] gunzip [ -acfhlLnNrtvV ] [-S suffix] [ name ... ] zcat [ -fhLV ] [ name ... ] Shutdown Shutdown or restart linux Location: /sbin/shutdown Syntax: shutdown [-a][-t sec][-krhnfFc][time][warning-message] shutdown 8:00 Shutdown computer at 8-oclock shutdown t sec Tells init to wait sec seconds between sending processes the warning and the kill signal, before changing to another run-level. shutdown h Halts after shutdown.su and/or sux Substitute user identity(become super user) Location: /bin/su Syntax: su [ - ] [username [arg] ] su hope Login as the user hope, if she is logged in. su hope This will pass the environment along unchanged as if the user actually logged in as the specified user. su hope arg Logs in as hope and additional arguments that need to be passed through the su command.Tail Output the last part of files Location: /usr/bin/tail Syntax: tail [+ number] [-l] [-b] [-c] [-r] [-f] [-c number | -n number] [file] tail myfile.txt The above example would list the last 10 (default) lines of the file myfile.txt. tail f myfile.txt Displays the last 10 lines and then update the file as new lines are being added. This is a great command to watch log files or logs in real-time. tail f access.log |grep 24.10.160.10 Allows you to watch the access.log foe any IP address of 24.10.160.10bzip/bzip2 Compress or decompress named file(s) Location: /usr/bin/bzip2 Syntax: bzip2 [-cdfkqstvuzVL123456789] [filenames. . .] bzip2 f [filename] Forces overwrite of output files. bzip2 t filname Check integrity of the specified files, but dont decompress them. bzip2 q filename suppress non-essential warning messages. Will still display I/O errors. Halt Reboot, poweroff stop the Location: /sbin/halt Syntax: halt [-l] [-n] [-q] [-y] or halt [-n] [-w] [-d] [-f] [-i] [-p] [-h] reboot [-n] [-w] [-d] [-f] [-i] poweroff [-n] [-w] [-d] [-f] [-i] [-h] halt Set the computer to a mode that enables a user to turn off the computer. halt q Quick halt. No graceful shutdown required. halt l Suppresses sending a message to the system log deamon, syslogd, about who executed halt. poweroff Stops the processor (if you have the right permissions).Whatis Display manual page descriptions. Location: /usr/bin/whatis Syntax: whatis [-dlhV] [-r|-w] [-s section] [-m system[,]] [-M path] [-L locale] [-C file] name whatis d prints debugging information to the screen. whatis M manpath w * | sort > manpath/whatis Produces an old style text whatis database from relative index database. whatis V Will display the version information to the output of the monitor. Less Display output one screen at a time Location: /usr/bin/less Syntax: less -? less --help less -V less --version less [- [+]aBcCdeEfFgGiIJmMnNqQrRsSuUVwWX] [-b space] [-h lines] [-j line] [-k keyfile] [-{oO} logfile] [-p pattern] [-P prompt] [-t tag] [-T tagsfile] [-x tab,...] [-y lines] [-[z] lines] [+[+]cmd] [--] [filename]... less j Displays the status column at the left edge of the screen. less V Displays the version number of less. less table1 Will display the top of file table1Grep Search file(s) for lines that match a given pattern Location: /usr/bin/grep Syntax: grep [options] PATTERN [FILE...] grep [options] [-e PATTERN | -f FILE] [FILE...] grep a Processs a binary file as if it were text; this is equivalent to thebinary-files=text option grep b Prints the byte offset within the input file before each line of the output. grep V Prints the version number of grep to standard error. Kill Stop a process from running Location: /bin/kill Syntax: kill [-s] [-l] %pid kill s Specify the signal to send. kill l Write all values of signal supported ny the implementation. kill pid You can specify a decimal integer which specifies a process or group of processes, or a job control ID that identifies a background process group to be signaled. Whereis Search the user's $path, man pages and source files for a program Location:/usr/bin/whereis Syntax: whereis [ -bmsu ] [ -BMS directory... -f ] filename ... whereis b Searches only for binaries. whereis m Searches only for manual sections. whereis s Searches only for sources.More Display output one screen at a time Location: /bin/more Syntax: more [-c] [-d] [-e] [-f] [-i] [-l] [-n number] [-p command] [-r] [-s] [-t tagstring] [-u] [-w] [ -lines ] [ + linenumber ] [ +/ pattern ] [ file ... ] more c Clear before displaying. Redraws the screen instead of scrolling for faster displays. more e Exit immediately after writing the last line of the last file in the argument list. more i Perform pattern matching in searches without regard to case. Ln Make links between files Location: /bin/ln Syntax: ln [-f] [-n] [-s] existingfile newname ln n Will not overwrite existing files. ln s Makes it so that it does not create a symbolic link existing file the file that you want to create a link to. ln f Will link files without questioning the user, even if the mode of the target forbids writing. This is default in the standard input is not a terminal. Ifconfig Configure a network interface Location: /sbin/ifconfig Syntax: ifconfig [-L] [-m] interface [create] [address_family] [address[/prefixlength] [dest_address]] [parameters] ifconfig interface destroy ifconfig -a [-L] [-d] [-m] [-u] [address_family] ifconfig -l [-d] [-u] [address_family] ifconfig [-L] [-d] [-m] [-u] [-C] ifconfig add Another name for alias parameter. ifconfig interface This parameter is a string of the form name unit for example, en0. ifconfig remove Another name for the alias parameter.Which Search the user's $path for a program file Location: /usr/bin/which Syntax: which [ filename ] ... which pearl Would locate the executable location of the pearl command which -a prints all matching executables in PATH, not just the first one. which() { declare f |which read-functions $@ } Will read shell function definitions from stdin, reporting matching ones on stdout. Vi Text Editor Location: /usr/bin/vi Syntax: vi [ -| -s ] [-l] [-L] [-R] [ -r [ filename ] ] [-S] [-t tag] [-v] [-V] [-x] [-w] [-n ] [-C] [+command | -c command ] filename vi myfile.txt Will edit the file myfile.txt vi- | -s myfile.txt Suppress all interactive user feedback. this is useful when processing editor scripts vi R myfile.txt readonly mode; the readonly flag is set, preventing accidental overwriting of the file. Type Describe a command Location: a shell builtin Syntax: touch [-a] [-c] [-m] [-r ref_file | -t time ] file settime [ -f ref_file ] file touch newfile.txt Creates a file known as :newfile.txt, if the file does not already exists. If the file already exists the accessed / modification time is updated for the file newfile.txt touch a myfile.txt Will change the access time of the file. Do not write any diagnostic messages concerning this condition. settime myfile.txt Sets the file myfile.txt as the current time/date.Alias Create an alias Location: a shell builtin Syntax: alias [name=['command']] alias home cd public_html Sets home to type cd public_html alias this command by itself lists all the aliases we have created. alias ll alias ll=ls l Will show a long colored listing of all the created aliases.Find Search for files that meet a desired criteria Location: /usr/bin/find Syntax: find path expressions find name MyCPrgram.c Finds files using names, displays files and subdirectories. find iname MyCProgram.c Finds files using name and ignoring case. find . type -F exec ls s {} \; | sort n r |head -5 Finds the top 5 biggest files in the current directory and its subdirectories.Touch Change file timestamps Location: /usr/bin/touch Syntax: touch [option] . . . file . . . touch myfile.txt just updates the timestamp of the file to the computers current date and time. touch project.c will simulate an update to project.c touch myfile.txt a changes only the access time. Ping Test a network connection Secure Shell client (remote login program). Sends ICMP ECHO_REQUEST packets to network hosts. Location: /bin/ping Syntax: ping -s [-d] [-l] [-L] [-n] [-r] [-R] [-v] [ -i interface_address ] [-I interval] [-t ttl] host [packetsize] [count] ping I 0.1 IP Decreases ping internal time. (Wait 0.1 seconds before sending the next packet.) ping l 5600 s 100 -i 0.1 192.168.15.200 pretty much ping of death, increases variable time, and increases packet size. ping 127.0.0.1 Pings local host. Ssh Secure Shell client (remote login program) Location: /usr/bin/ssh Syntax: ssh [-1246AaCfgkNnqsTtVvXxY] [-b bind_address] [-c cipher_spec] [-D port] [-e escape_char] [-F configfile] [-i identity_file] [-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option] [-p port] [-R p_rt:host:hostport] [user@]hostname [command] ssh V Identifies SSH client version. ssh l jsmith remotehost.example.com Login to remote host. (ssh-keygen F publickey.pub) to get public key fingerprints. scp  HYPERLINK "mailto:jsmith@remotehost.example.com:/home/jsmith/localhostfile.txt" jsmith@remotehost.example.com:/home/jsmith/localhostfile.txt Copies the file from the remote host to the local host.Date Display or change the date & time Location: /bin/date Syntax: date [-a] [-u] [-s datestr] date List the date and time of the server. for example Thu Feb9 16:47:32 MST 2011 date s 11/20/2003 12:48:00 Set the date and time shown date +DATE:%m/%d/%y%nTIME:%H:%M:%S Would list the time and date in the below format. DATE: 02/08/01 TIME:16:44:55 Mkdir Create new folder(s) Location: /bin/mkdirwhich Syntax: mkdir [-m,-p,-v,-z,or directory name] directory mkdir mydir The above command creates a new directory called mydir. mkdir m a=rwx mydir This example would use the m option to not only create the mydir directory but also set the permissions to all users having read, write, and execute permissions mkdir v bigdir Will display a message for each created directory Uname Print system information Location: /bin/uname Syntax: uname [-a] [-i] [-m] [-n] [-p] [-r] [-s] [-v] [-x] [-S systemname] uname arv Will list the basic system information, OS release, and OS version. uname p Will display the Linux platform. uname a Will print out all information. uname v Will print out the kernel version. Rsync Remote file copy (Synchronize file trees) Location: /usr/bin/rsync Syntax: rsync options source destination rsync zvr /var/opt/installation/inventory/ /root/temp -z is to enable compression -v verbose -r indicates recursive Syncs two directories in a local computer. rsync azv /var/opt/installation/inventory/ /root/temp/ Archives the file too. rsync v /var/lib/rpm/Pubkeys /root/temp/Pubkeys Copies one file. ~ tilde the tilde represents the home directory of the current user. ~foo Refers to the home directory of the user foo.> Redirector Redirects a file to a different output. date > RightNow.txt .> is used to replace the content of any existing file having the name RightNow.txt.? Question mark Expands to the status of the most recently executed foreground pipeline. man -? Displays the man help list . period Run a command script in the current shell (current directory) ./filename refers to a filename in the current directory. >> append to overwrite an existing file use >> to append to any existing file. date >> RightNow.txt Will attach the information about the date to the file RightNow.txt. | pipeline A pipeline is used to make the output of one command serve as the input to another command. echo cherry apple peach |tr \n pipes the output of echo into translation command which spaces with linefeeds, represented by \n.. Parent directory Runs a command script in the current shell. ../filename Means you are referring to a filename in parent directory. < Backwards redirector Redirects output to a different input. Sort < txtfile is the same as cat textfile | sort * Asterisk Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, it expands to a single word with the value of each parameter separated by the first character of theIFSspecial variable. ls * will display all directories and files. References (2011) Computer Hope. Linux Command Help.  HYPERLINK "http://www.computerhope.com/unix/usu.htm" http://www.computerhope.com/unix/usu.htm (2009) The Geek Stuff. Linux Commands.  HYPERLINK "http://www.thegeekstuff.com/2009/11/ping-tutorial-13-effective-ping-command-examples/" http://www.thegeekstuff.com/2009/11/ping-tutorial-13-effective-ping-command-examples/  INCLUDEPICTURE "http://starblogger.net/wp-content/uploads/2011/04/linux.jpg" \* MERGEFORMATINET      Page |  PAGE \* MERGEFORMAT 4 -1 spelling Linux Command List Dunwoody College of Technology 11-1-11 Matthew Kerfoot An A-Z index of the Bash command line for Linux   *3AB^_ӽv^vC8hFh CJaJ4hFh 5B*CJ\aJfHph333q .hFhB*CJaJfHph333q hFhCJaJ4hFh5B*CJ\aJfHph333q hFh $CJaJhFh6:CJaJhFh}CCJaJhFhtgCJaJhFh CJaJhFh$CJaJhFh ]<CJaJ,jhFh ]<CJUaJmHnHtHu  +B_  3 7 J a  & F"$& #$/Ifb$gdZC & F$& #$/Ifb$gdZC$& #$/If^b$gdZC & F$& #$/Ifb$gdZC$& #$/Ifb$gdZCgd " 2 3 4 7 J T ` i { | иvj_j_G;/hFhwU|5CJaJhFhtg5CJaJ.hFhwU|B*CJaJfHph333q hFhfG)CJaJhFhfG)5CJaJhFh $CJaJhFh6:CJaJhFh<CJaJhFh}CCJaJhFh$CJaJhFh CJaJ.hFh B*CJaJfHph333q .hFhfG)B*CJaJfHph333q .hFh B*CJaJfHph333q a |   ( 7 ? Z f  - G [ $& #$/If^b$gdZC & F$& #$/Ifb$gdZC$& #$/Ifb$gdZC     ( 1 6 > ? @ Y Z [ d e f ԾzozRERhFh J 0JCJaJ8hFh0J5B*CJ\aJfHph333q hFh J CJaJhFhCJaJhFh5CJaJhFh<5CJaJhFh $CJaJhFh6:CJaJhFh<CJaJhFh}CCJaJhFh$CJaJhFh CJaJhFhCJaJhFhtgCJaJhFhwU|CJaJ    - 6 F O Z [ \ ׺䢗vk`U`<1hFh<5B*CJaJfHph333q hFh $CJaJhFh6:CJaJhFh<CJaJhFh}CCJaJhFh CJaJhFh$CJaJhFh>CJaJhFhCJaJhFh J 0JCJaJ8hFh0J5B*CJ\aJfHph333q hFh0JCJaJ5hFh0JB*CJ\aJfHph333q \ d e f : E p q r s u θÈ}rrrg\QFhFh6:CJaJhFh<CJaJhFh}CCJaJhFhtqCJaJhFh CJaJhFhfG)CJaJhFhfG)5CJaJhFh>5CJaJhFh J 5CJaJhFh<5CJaJhFh$CJaJhFh J CJaJ.hFh>B*CJaJfHph333q 1hFh>5B*CJaJfHph333q [ f : E q $& #$/If^b$gdZC & F$& #$/Ifb$gdZCq r u + WEEEE$& #$/Ifb$gdZCkd$$Ifl+\ n(R 2  ~ 6 044 lae4ytZC * + / Z ` (DEOPQɽ{p{dYNYdYNYdNYhFhtgCJaJhFh>CJaJhFh>5CJaJhFh $CJaJhFh6:CJaJhFh<CJaJhFh}CCJaJhFh$CJaJhFh CJaJhFh'CJaJhFh'5CJaJ5hFh6:0JB*CJ]aJfHph333q 5hFh $0JB*CJ]aJfHph333q + / Z `  EQ$ & F$& #$/Ifb$gdZC$& #$/Ifb$gdZC$& #$/If^b$gdZC & F$& #$/Ifb$gdZC$-5>Z[\mnp34=KTɮɢuu[2hFh $0JB*CJaJfHph333q hFhtgCJaJhFh'CJaJhFh>CJaJhFh>5CJaJhFhtg5CJaJ5hFh $0JB*CJ]aJfHph333q hFh6:CJaJhFh<CJaJhFh}CCJaJhFh CJaJhFh$CJaJ$6[o4L & F $& #$/Ifb$gdZC & F$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC$& #$/Ifb$gdZC &(@AGJfghilܺܺźܺܺܺѯxmbmhFhDCJaJhFh6:CJaJhFh<CJaJhFh}CCJaJhFh $CJaJhFhBMCJaJhFh CJaJhFh$CJaJhFh #CJaJhFh #5CJaJhFh>CJaJhFh'CJaJhFh>5CJaJhFh'5CJaJ%'@Ig$& #$/If^b$gdZC & F $& #$/Ifb$gdZCghlWEEEE$& #$/Ifb$gdZCkd$$Ifl+\ n(R 2  ~ 6 044 lae4ytZC OV*Rk$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC OV*Rklǻһһǰǥ݅ݏyyyҏǰncnhFhHCJaJhFhBMCJaJhFhac5CJaJjh 0J$UhFh6:CJaJhFh<CJaJhFh}CCJaJhFh$CJaJhFhfG)5CJaJhFh CJaJhFhfG)CJaJhFhacCJaJhFhtgCJaJhFhtg5CJaJ&Ym& & F$& #$/Ifb$gdZC$& #$/If^b$gdZC & F$& #$/Ifb$gdZC$& #$/Ifb$gdZC"$& #$/If^"b$gdZCNOXYZm&괨{peZODhFhlCJaJhFh<CJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFh CJaJhFhdCJaJhFhRCJaJhFhR5CJaJhFhd5CJaJ5hFh6:0JB*CJ]aJfHph333q 5hFh $0JB*CJ]aJfHph333q hFh $CJaJhFh6:CJaJoxy DEFL·ڠڕtti^SSGhFh45CJaJhFh<CJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFh CJaJhFh6:CJaJhFhdCJaJhFhxN5CJaJhFhDCJaJhFha_CJaJhFhp!5CJaJhFha_5CJaJhFhd5CJaJ2hFh6:0JB*CJaJfHph333q oy$& #$/Ifb$gdZC & F$& #$/Ifb$gdZC$& #$/If^b$gdZCEWEEEE$& #$/Ifb$gdZCkdX$$Ifl+\ n(R 2  ~ 6 044 lae4ytZCEMv}'9gnrrYw$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZCLMvw}'08Afgh@źwkwk_wShFhs5CJaJhFhtg5CJaJhFhl5CJaJhFh,y5CJaJhFhlCJaJhFh6:CJaJhFh<CJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFh CJaJhFh45CJaJhFhd5CJaJhFh4CJaJhFh 5CJaJ@mory  XYwxźůsssZB.hFhDB*CJaJfHph333q 1hFh+a5B*CJaJfHph333q %hFhDCJaJfHq %hFhlCJaJfHq hFh<CJaJhFh}CCJaJhFh6:CJaJhFhBMCJaJhFhDCJaJhFh$CJaJhFh CJaJ2hFhs0JB*CJaJfHphq x  01@AOP\]efpqrt蟔~shhFhHCJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFh CJaJ.hFh B*CJaJfHph333q 1hFh+a5B*CJaJfHph333q .hFhDB*CJaJfHph333q .hFh+aB*CJaJfHph333q %w0qt&,AB$& #$/If^b$gdZC & F$& #$/Ifb$gdZC & F $& #$/Ifb$gdZC$& #$/Ifb$gdZC&',ABCDJϲll`TI>3>3hFh$CJaJhFh CJaJhFhvCJaJhFhv5CJaJhFhd5CJaJ5hFhv0JB*CJ]aJfHph333q hFhv0J5CJaJ8hFhv0J5B*CJ]aJfHph333q 8hFhd0J5B*CJ]aJfHph333q 5hFh6:0JB*CJ]aJfHph333q hFhlCJaJhFh6:CJaJBCJnWEEEE$& #$/Ifb$gdZCkd$$Ifl+\ n(R 2  ~ 6 044 lae4ytZCJmnw 78Guv +ɾɲxmɲamhFhl5CJaJhFhlCJaJhFh$CJaJhFhp5CJaJhFh4CJaJhFhtg5CJaJhFh45CJaJhFh5CJaJhFhpCJaJhFh6:CJaJhFhHCJaJhFh}CCJaJhFh CJaJhFhBMCJaJ!7Gu]m & F$& #$/Ifb$gdZC$& #$/Ifb$gdZC & F$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC+G\]^ln   ( )!*!ӻߥynynyߥcyH5hFh6:0JB*CJ]aJfHph333q hFh,yCJaJhFha_CJaJhFh6:CJaJhFhHCJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFhwCJaJhFhw5CJaJhFhl5CJaJhFh5CJaJhFh CJaJhFhlCJaJhFhtgCJaJ *!8!V!f!!!"$& #$/If^b$gdZC & F$& #$/Ifb$gdZC$ $& #$/Ifa$b$gdZC $& #$/Ifb$gdZC$& #$/Ifb$gdZC*!+!7!8!N!U!V!W!f!!!!"""/"B"C"Ƹvj_vj_TI>3>hFh6:CJaJhFhBMCJaJhFh$CJaJhFh CJaJhFhwCJaJhFhw5CJaJhFh5CJaJ5hFhw0JB*CJ]aJfHph333q 5hFh+a0JB*CJ]aJfHph333q hFh+a0J5CJaJ8hFh+a0J5B*CJ]aJfHph333q 8hFh0J5B*CJ]aJfHph333q " ""C"U"y"WEEEE$& #$/Ifb$gdZCkd$$Ifl+\ n(R 2  ~ 6 044 lae4ytZCC"L"T"U"^"y"z"""""##/########$$$$!$"$s$t$$%%>%?%%%%%%%%%ȼ߱ԱߐȄxmxmxmhFhp!CJaJhFhp!5CJaJhFhE5CJaJhFh#`0CJaJhFhBMCJaJhFh$CJaJhFh CJaJhFh6:5CJaJhFhw5CJaJhFhwCJaJhFh6:CJaJhFhHCJaJhFh}CCJaJ(y""""##/#####$"$s$$%?%%%%%&&<&$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC%&&&<&M&&&&&&&'''#','''''Ƚ꧜v[B1hFhHB*CJ]aJfHph333q 4hFha_5B*CJ]aJfHph333q 4hFhQJ5B*CJ]aJfHph333q hFha_CJaJhFh,yCJaJhFh}CCJaJhFhdZ0CJaJhFh$CJaJhFh CJaJhFhBMCJaJhFhv5CJaJhFh6:CJaJhFhvCJaJ<&M&&&&&&&&'$''' ((A(J(((($& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC'''''(( ( (((($(%(A(B(J(K(`(a(w(x((((((((((((((沗|ccccccc|1hFh4FRB*CJ]aJfHph333q 4hFha_5B*CJ]aJfHph333q 4hFh4FR5B*CJ]aJfHph333q 4hFhQJ5B*CJ]aJfHph333q 1hFhHB*CJ]aJfHph333q 1hFha_B*CJ]aJfHph333q "((()1))WEEEE$& #$/Ifb$gdZCkd\$$Ifl+\ n(R 2  ~ 6 044 lae4ytZC(((()) )0)1)8)9))))))))C*D*ɾԳߧ߀eH8hFhD0J5B*CJ]aJfHph333q 4hFh/55B*CJ]aJfHph333q hFhD5CJaJ4hFh6:5B*CJ]aJfHph333q hFh/55CJaJhFhE3bCJaJhFhHCJaJhFh}CCJaJhFh6:CJaJhFh/5CJaJhFh CJaJhFh$CJaJ))))C*M********++0,8,],i,,,,,$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZCD*M****************** +Ƚ{{aF3F3F3F%hFhE3bCJaJfHq 5hFhE3b0JB*CJ]aJfHph333q 2hFhE3b0JB*CJaJfHph333q hFh6:CJaJhFhHCJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFh CJaJhFhE3bCJaJ5hFh/50JB*CJ]aJfHph333q 8hFh/50J5B*CJ]aJfHph333q  ++9+:+g+h++++++++0,1,8,],i,,,,,,ѴѴѴ|cXMBhFhBMCJaJhFh$CJaJhFh CJaJ1hFh B*CJ]aJfHph333q 5hFhD0JB*CJ]aJfHph333q 8hFhE3b0J5B*CJ]aJfHph333q 8hFhD0J5B*CJ]aJfHph333q 5hFhE3b0JB*CJ]aJfHph333q %hFhE3bCJaJfHq ,,,,<-=->-D-E-------ԹqV;V;V/hFhD5CJaJ5hFh870JB*CJ]aJfHph333q 5hFhE3b0JB*CJ]aJfHph333q hFhE3b0J5CJaJ8hFhE3b0J5B*CJ]aJfHph333q 8hFhD0J5B*CJ]aJfHph333q 5hFh6:0JB*CJ]aJfHph333q hFhE3bCJaJhFh6:CJaJhFhHCJaJhFh}CCJaJ,=-E----.5.6.7.<.X.l.......//$& #$/If^b$gdZC & F $& #$/Ifb$gdZC$& #$/Ifb$gdZC----.5.6.8.;.<.X.a.k.t............///////ƻяth\h\Ph\ưưhFh6:5CJaJhFhxA5CJaJhFhQJ5CJaJ5hFh6:0JB*CJ]aJfHph333q hFhxACJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFhHCJaJhFh CJaJhFh6:CJaJhFhD5CJaJhFh87CJaJhFh875CJaJ////0B0C0WEEEEE$& #$/Ifb$gdZCkd$$Ifl+\ n(R 2  ~ 6 044 lae4ytZC/0 0A0C0D0M0N0j0k0u0000000000111111112T2U2\222ǻǰǰymaVmVmVhFhp-]CJaJhFh6:5CJaJhFhp-]5CJaJhFhHCJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFh CJaJhFhQCJaJhFh 5CJaJhFhQ5CJaJhFhQJ5CJaJhFhsCJaJhFh6:CJaJhFhACJaJ!C0N0j0u00000001112T2\22222222$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC22222222222 3!3%3ɾi[@#8hFhWg0J5B*CJ]aJfHph333q 5hFhN ;0JB*CJ]aJfHph333q hFhN ;0J5CJaJ8hFhN ;0J5B*CJ]aJfHph333q 8hFhQJ0J5B*CJ]aJfHph333q 5hFh6:0JB*CJ]aJfHph333q hFhsCJaJhFh6:CJaJhFhHCJaJhFh}CCJaJhFhBMCJaJhFh$CJaJ 2 3&3333444=4[4t455556&6M6$& #$/Ifb$gdZC & F $& #$/Ifb$gdZC$& #$/If^b$gdZC%3&33333243454=4[4d4s4|44444444ֹփxmbWLA6666hFhsCJaJhFh6:CJaJhFh,yCJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFh CJaJhFhWgCJaJhFhWg0J5CJaJ8hFhWg0J5B*CJ]aJfHph333q 8hFhQJ0J5B*CJ]aJfHph333q 5hFhWg0JB*CJ]aJfHph333q hFh6:0J5CJaJ44445 5:5;5b5c55555555566&6K6L6M6N6O6T6666666ǻǰǰynS5hFh6:0JB*CJ]aJfHph333q hFh CJaJhFh}CCJaJhFhBMCJaJhFh CJaJhFh$CJaJhFhp-]CJaJhFh_CJaJhFh 5CJaJhFh_5CJaJhFhQJ5CJaJhFh6:CJaJhFhsCJaJhFhWgCJaJ M6N6T6666WEEEE$& #$/Ifb$gdZCkd$$Ifl+\ n(R 2  ~ 6 044 lae4ytZC6666777G7H7w7x77777777x8y8z8888ѺѢvk``TH=hFh0zCJaJhFh 5CJaJhFh0z5CJaJhFh6:CJaJhFh CJaJhFh}CCJaJhFhBMCJaJhFh$CJaJhFh CJaJhFh6:5CJaJhFh5CJaJhFhGu2CJaJhFh`5CJaJhFhGu25CJaJhFhsCJaJhFh`CJaJhFh/55CJaJ6667G7x777777y88889 9x9y9~99$& #$/Ifb$gdZC & F $& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC88999 9x9y9z9~999999::::ƻq\G2(hFh "5CJaJfHq (hFh`5CJaJfHq (hFhTu5CJaJfHq %hFh<$CJaJfHq hFh CJaJhFh}CCJaJhFhBMCJaJhFh6:CJaJhFh$CJaJhFh CJaJhFh0zCJaJhFhCJaJhFh5CJaJhFhGu2CJaJhFhGu25CJaJ999::::N;a;;;;;;<%<+<i<r<<<$& #$/If^b$gdZC & F $& #$/Ifb$gdZC$& #$/Ifb$gdZC::&:':+:,:0:1:@:A:V:W:s:t:::::::::::::;;(;);=;>;N;O;a;b;{;;;;;ٱٱttt%hFh<$CJaJfHq (hFh<$5CJaJfHq (hFh`5CJaJfHq (hFhTu5CJaJfHq %hFhGu2CJaJfHq %hFh`CJaJfHq %hFh)CJaJfHq (;;;;;;;;;;;;;<<%<+<i<j<r<s<<<<<<<<=ˏxl`lxlxlUJhFh,yCJaJhFhjCJaJhFh 5CJaJhFh4FR5CJaJhFhTu5CJaJhFh4FRCJaJ5hFh4FR0JB*CJ]aJfHph333q hFh CJaJhFh}CCJaJhFhBMCJaJhFh6:CJaJhFh$CJaJhFh CJaJ%hFh CJaJfHq <<<< =*=WEEEE$& #$/Ifb$gdZCkd`$$Ifl+\ n(R 2  ~ 6 044 lae4ytZC= ==)=*=+=C=============>>=>>>N>O>T>k>t>>>>>>>ǼǼǰǰǤxmbVhFhW5CJaJhFh- CJaJhFh}CCJaJhFhjCJaJhFh$CJaJhFh CJaJhFh"CJaJhFh 5CJaJhFh`5CJaJhFh;CJaJhFh;5CJaJhFhTu5CJaJhFh.CJaJhFh6:CJaJhFh CJaJ!*=C=====N>T>k>>>> ??B?W?u?w?|???@@$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC> ??B?W?u?w?x?|?????@@@@@@@AA^A_AmAAAAAAǼymbVmKyVKbǼhFh;CJaJhFh;5CJaJhFhY?5CJaJhFhY?55CJaJhFhTu5CJaJhFh6:CJaJhFh CJaJhFh}CCJaJhFh.CJaJhFhjCJaJhFh$CJaJhFh CJaJhFh- CJaJhFh- 5CJaJhFhW5CJaJhFhWCJaJ@@@A^AmAAAAAAAABBBC$& #$/If^b$gdZC & F $& #$/Ifb$gdZC$& #$/Ifb$gdZC$$& #$/If^a$b$gdZC$ & F $& #$/Ifa$b$gdZCAAAAABBBBBBBBkClCoCpCCCCCD7D8D9D:D>D`DiDsD|DDDԽ{pepeZhFh<CJaJhFh$CJaJhFh CJaJhFh7v0J5CJaJ jhFh7v5CJUaJhFh7vCJaJhFh6:5CJaJhFh7v5CJaJhFhTu5CJaJhFh.CJaJhFh6:CJaJhFh CJaJhFh}CCJaJhFhjCJaJ CkCD8D9D,kd $$Ifl+\ n(R 2  ~ 6 044 lae4ytZC & F $& #$/Ifb$gdZC$& #$/If^b$gdZC9D>D`DtDDDDDE$EIE{EEEEEEEEE FFMF$& #$/If^b$gdZC & F $& #$/Ifb$gdZC$& #$/Ifb$gdZCDDDDDE$E%EIEEEEEEEEEEEEF F FFMFNFbFGGGFGGGHGIGNGgGpG{GGGGGƻƥфxxxѰƥmhFhioCJaJhFh0z5CJaJhFh0zCJaJhFh,yCJaJhFh CJaJhFh}CCJaJhFh$CJaJhFh CJaJhFhjCJaJhFh6:CJaJhFh<CJaJhFh<5CJaJhFhac5CJaJ)MFbFGGFGGGHGNGgG|GGGHH@HIHiHrHHHHHH$& #$/Ifb$gdZC$& #$/If^b$gdZC & F $& #$/Ifb$gdZCGGHHH#H6H@HIHiHrHHHHHHHHHHH I I IBIIIIII+J;J>JѺxlxlaUahFhV5CJaJhFhVCJaJhFh"5CJaJhFh"CJaJhFh,yCJaJhFh}CCJaJhFhjCJaJhFh$CJaJhFh CJaJhFh6:CJaJhFht25CJaJhFht2CJaJhFhac5CJaJhFhioCJaJhFhio5CJaJ HHHH IBI^IiIIIII+JJ?J@JBJHJJWRRRIII $Ifgd "gd "kd$$Ifl+\ n(R 2  ~ 6 044 lae4ytZC>J@JBJGJHJJJJJJJJJJKKKKP?P@PAPBPCPDPEP$a$gd*EPFPGPHPIPJPKPLPMPNPOPPPQPRPSPTPUPVPWPXPcPdPePfPPPPQgdLgd "$a$gd*QQQQQQQQQQQQQQQQQQQQQQQQQQVRXRYR$a$gdYJ&gd "QQQQRRSRTRURVRWRYRZR\R]R_R`RbRdRfRjRmRnRRRRRRRRRRRRRŻwsd`h ]<h ]<h ]<CJTOJQJaJTh jh 0J$Uh/5hZChv"5hfohfo5mHnHujhZCUhZChZC@<B*phh @<B*phhPmc@<B*phh%trjh%trUhFh4HgCJaJj; h*Uh*jh*Uh5sCJaJhLCJaJ!YR[R\R^R_RaRbRRRRRRRRRRRRRRR#S$S%Sgd ]<$a$gdop^pgd ]< %$a$gdyZ 0*&dPgd RRRRRRRRR"S$S%S&S'S˼˞˚hFh4HgCJaJh%trh ]<h ]<B*ph%h ]<h ]<B*CJ(OJQJaJ(phh ]<h ]<CJ(OJQJaJ(h ]<ho5@<CJ\aJ'h ]<h ]<5@<B*CJ\aJph{h ]<h ]<5@<CJ\aJ %S&S'S$a$gdYJ&5 01h:p ]</ =!"#$% $$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#vR #v2 #v #v~ :V l+ 6 05R 52 5 5~ e4ytZC$$If!vh#v #v#v :V l+065 55 4yt6'h$$If!vh#v #v#v :V l+065 55 4yt6'h$$If!vh#v #v#v :V l+065 55 4yt6'h<DdYH  C $A linuxRk;@,'$utHOG; KF?;@,'$utHOJFIFHHExifMM*Logo created by Andreas Dilger , based on Larry Ewing's penguin and Allen Petlock's logo concept. C  !"$"$C" T !1AQ"aq 2B78Rbsu#6Vr$3C4DU&5FSd8!12AQq"a3B#CR ?h^I8X~Fk-j44uqTj-ڎ-;USvb&:>-`z-Ԛ./:d/BPyj{ijnb(ϰؼ[oQ ?yfg J Gv@14!{j/r2 ]mWfL-<T?#4e7=sI͓R}$+ԞoBnv.}ܠx=]ɺM٩fd.*?kz* `>qih)sQ~߫1 Tlp2ﴔFY8NI>+@j8oLpsX],W1і 'XݫUZbimFbkT[M\Ԓ!3 ]qWP3_ ' d=ēBsYkUm.GqVٌrD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDD@DDEG:ֈ UI'ښoioί$c2p2["fGaⲆl^ӾϠ^p~顩__ꥫ &|94|G c] sB5zWV&:G1' 2H4vڍREt s)->iYhRaZAA .{77lxk"(69ӞapU}FG#^ wk:WT1t}i>[t5(P\fp}舀 C>c+jǴ~Ѹ iY. ,r[۝3<{ʝ)9s t9Y jwKN-t^c:1pʈyeѼddU{M5TZQD pCIs~ :4e}yh'<ᓓF}I3ļOi]+ՊRQL< ݒgk5vq2f>#Sk-⪖:8cֵ8ϗEvOk}+vO=/um[vLU9-AK;|\u4U#9,n0Uҝ7įxAq=VKrnCni_Jo4M7)s=+fX^ՓXxLGy5z>d7+>=G*)!')Q7i3_t]6<͡{[nGXdUܩ4Q2r<ڠR[Ehz{ce{GnC:(N4ümjjOkD{%AKϓj:H願{G#OT[SA#M}F04c#aUP*""" """ MB_jfK4>S%Nv<}Ϧ f07'0ݹZKFEE>9t z?w]^IoOj M zVFyE kvHfz ntϷ>bwD 0 D{lRt?DxxX~ZIik[lU`?i9< GdeΙnxl1} cוKKY飈Ϟ|9]{3^ Pڪ*w=2xgە!D@DDD@DDD@DDD@DDD@E5hziT q B0Z97V{6Β,V FRK 3'i4U@O$ ;cϲG=FmuiP8Ts<P[vwXVOe>(\~> >zvsO+.le# W+$A.?bnwOL<}ku?OD^rӴKg߉OxgIn|yMED3QP >L6']9]B})yI+̳Ok6z MYR l&et"C=\Ψg<NV }*LU0Jz0}ޞϬ|5sjpi#O2;WzGJM3}Nv=AD&3V.>Kfm3jUͦnPjclÖ{(}nT+v\KXry9?z """ """ ,ۗt~~gr ֺڇf/.V;1}t҃$"" ^5q"GouDō˸Z2pCNS:} oP*.'#iiSo۪-Xc[zMq9eGZm).+֗ON=\έ>B&a5M79[V}[UӲFBܹw@WGIM4:sO0#Tm?^wn ̎(ekhmϳGEIbiw{ gs vO=;juG;etK6cq$z=VNX+Z݉k[+{# F>!@ܞQC# ܃7'h}޾\W.V,CG *YvZ>ϱWkK٨k[<88?H {ZgGK4>G6OD=^?R*MSԼTΊF6$*\OEm?ڮZK_*)jctSDk#؃\Vdg.Z~VnʆUh)YW00\#w >LmEVk٨dYɖ3]7Y7L^t@̼4MXůO궪KR٤l,|#QwQk _p璒G1bh"-c@yH{쑥n^.qZY>'le>nW[~qA-:i 2ќriYq_ccaqY'|WD9*DDD@D]+ƖnGMIMYƴd|o^[6AVkk)TL~Gğ ޶]a+Vdh==@r "vݺOYa&+|$`8gy;-F >;Z(` _ٳIlU2-?xIͫt:_agjZz:(lT#60/+?:h8MVe\9ԵpcgQ4o0ƙLc0hN :sEF /_Y`ܿ5ً ?G_x]!= zYh0\# rXրsڃ3(I?tVWͺ՛/m48/j)/KE:߾N'ۚft8?xsL}sL8m;,coLnO9fzP$||]G,~#?H7XPNQ$OQ$KCX77 hZP5㉲<l ݹ??nO?ƵoaOʳhOEm?گ(1mse62CR[C0#ֵw=3k,ZwQLcC=^ vBk* t4u%@K6 V#w1痨*M޺uJ$d52: O$yOO T2#lqF1tx`R]RQLacrs7C@]{qkr2B" !戂9UH@0PU|y(9ۓywKn}+Ycw)YkO2i"W]i(Y3pH;q}U[rғW1hA ~P SjzXC)qM˿g'{x~FNPkݗk[cƏK]F|H^- _>EQձ;TUgҬϯO}GwK]G+fh݇19{Gz K#Sb ?%GODDD@DDp2VpҖZY=EL 7<HC wY4%o]}O;ࡥWcM}X:emr~=mM8gE#(Ա?FYQ̧ZjmsAbƭL*:v՚zot^@=܁ǎe:ShGS]SgG'GޞQj|E>H#%vd>Q~mdu-e9sD.s@=saۧcƻJٮz⊵k,VPFͱ{#]=$k۔q-5sCAbhFǬc7ou=~⧒#Fp$4e(vTY~L2`}::ǻ7\k;-q-uHR7peQgGN:m,dvp{r>?uomlIZZ1g>R˥Vʦg -Anod;{^8i-947,l܍@ǽϵO3#z.Zg>K#!.>dp-"Y۩foI!21NeR+ zkR2ao~95@|T-!4>`ԷxyjL~Z2|utqtNrՎjz߃Qoli:FB[\0\UeZw;nr}=#l7Mʓ|_X jշ lqfY j\mvBWQ<|<5=NT8[ݚ{G[U55ƭљ.`G𜜻eQgG[},shK=csNALi:Z*8OL(۱ݞ@Mڿ[F]QE4.N:WNۋMS)fX"Wlskpy \ag?hѶH旹ХJGz̟rFhFєf MKkrh*2˹_K֌[A} GX)=OY[XPA׻&ۄpmTMgp6(kۧ데*Rc)\x}6|@ yGrcᢜ7cjSOKP'ΠH#Nqī㨬[s+f`s7, 0PܧKUPY.ngA2cͮ9U"r{ƽkA a덚^~cSxOY!!Sy/K~=uۡ{]N cskD|V;h\s9?[Zz08j&?ɼyC"M8~RH4j`=%Tttj7:0m#ZE~کOÙed:,S>We᥏M'+e?)eӦw lG2< q53\ژ# >5e?cۭ魧v]:C[o;V>sH\5B惂=FM&hVyJGVgqKr]3{u?31NyeJQ::h.ֶ\A&{˂,V>V=U/Gz2Q#sۭ%pxS;xt9uq.oit:l _į;L",HBS\B͘Xi`>ԺS[m5r*zX4qkZ2IՕpZ>6# o :|cZ'pZ93 _zMį [ˇ>Svt5X>>%mmt&ж}5Dֶ: VDю7w`` 5܂V_s<\P\Q """ /"s\ƐC: UCaptljrZRʘc1ٟj],sg n4I:Z aت@> 4n \ipS VF7.;W-ό4Xֶz GVc8OGCW3m[PdCy|JWt[ݕ_q;ڞR?HóiꉕW~KUwu}pn\/ꡳo?9I~U2y+̒\-C+_(pzrzTq?rUWYpr<1#VԺbWRAgK4?]mF,QWۍK9qSWJmH?nr˹kNY|ϷՋ}o>]b2mj04gW:}QzBqt~oTD|g_f~`"y}AIzm `,䫭-MHyRx+?Do8+3񘏺,CmTSI6u0ثpz}R1 cZ=C x),]=y&~݅u(YT'SS3$?fUcno ީ#Y U%󉟌Ge]E~h6>WP|Cpнje3jxHtx8Eg,OEbEkő~*@>cUk6DDW- T*H][G6+"2o<ַ`^;fܯ _Ǘ*;kWx֚R_*;8G`kG݉4-35#FsO+e #ءɳjge/;ڦHVŨ3XUVHy PCR5JՁ>X<(zDBK?T5(/Vi+8QG8!5iZh HwJ1AQȭ:}$I)s,8fT7$BjZ ɯoQWg$V=z.S-opĚLnX|ͲOV_q;rwlq;ps煀rWz )l?^CTAÃHu9-9q; ,oP :0>+Pi=|^nG[NiG;7P"m1%XqME4 W=z )z;'Xkֆ +mty.ӈ[kB etF\pP1x/@el;vxcQy=^o^I}zj*ZfOcZ _HkJ8p*aU\S>HUUEQE;ezyG 1fx-O?O<4>DmgȈ5JrU]Vg*IcOCZws`mηtF8! Cȭ^a_SGNVxdmޡ~9sR(vQKETnXnMc< T-6bbxQUAZ)E9F+Q@DDD@EGt]*wsU:<+/xV+3)F>o< jn5Q&hTw~kE6'>Jw㓃@⣌WɭpYd}#[˽'kz9ǜ9-p m_X"˰CzrUhe2W]jde[˯ơ:E)t6XaÚF>SۆQMCp>DӶ!i%L}ڧa3>%i`xDDDA[XOGbs0ZH+,j 75Uw($>w,5ϺaϹbǛM_LG~Җڵti爗gC{"K ?y;E=1MJc=J~k쏏9-3\=[{}@cHdW|4T] x1V+&d2Zz.e Z,UOz_ك;^EwE\0pE38zy{YZ.V]I,Oi6>¶❾b{i[A}9$xk\VJڍX*/0Oni-#ka}5Z3sګ\ByApdx6zls޳.*YWmUP948av2 5aT;1@zYZ>r5>m+SpdKDDD@\U|eQya{ +['l<${}*_P؍D 7V1s1űs [yz?OR1< 4ڲ+Ĭ$pkOtJۤ- l`~l6XpPv0.xm2OLpqnۓw8Ꙟ+CyVaiejOxTɎ2Vio)f$(R#DCQT@U\BFɢ_w7v`ܟFO;<-L0&B+> ަ&n)sn_[.^)k=JmDV>SHmuys411e{EgmUX\tRN=HZmZU)DEDDD@DDD@DDD@DDD@DDD@DDD@DD׭R91 &6}Yxy(=Gj*[Jk=2TX*˸^><Ƿ{It>=ܶ-e2MWݰk0Ee;\:5x{wR}kqAPu24EwFp rWؤ;#붥nC|c/$gn^v՞BWWW69w,+ZYwg_m=I4OkV [?m|R,Ԃ!a ߖ9'p9]ػɖ4uyfR>{ZG?]jۖ~gOþ`fT E,JmUKZVbvj't9S_IyS6N#nW¢ GUUX򑐶FnE=ԗs\lٴGa! a+Ec5 yJrHj5{rNU}dn cs̓5Of"#zQP9صS&0`|>Er&JZWḁx!YztFZtE }qw{Xt1vϺi}kRZ0.~եN?_k_ϩ˨rO*"x\2XY$m{O"܂01N)|%w5VZvHB;}e`Y4Qг 6ۥ=O+J0p-Nw67u/ ϹxkENO߭5ӜOkI;[WIOWઆ)x|r09Dy"|;hĠg G5|VY̵Կ,<X'Sm&i귲oTFGqZާ'xIv-\әә>+s%Eomy8pB^|7 }+)(B)$/mO޼)rWşh tl6Ekt5}\at$r,KRGF1yoU yr[dlnVi*ph8O8 apple-style-span*W`* s`Strong5\y@ .Table Columns 1 :V0    j j jjjj#jj4l5\B*`Jph B*`Jph5\5\5\5\5\5\jj . Table Grid7:V0P`P ! ]< No Spacing CJOJQJ_HaJmH sH tH VoV ]<No Spacing Char CJOJQJ_HaJmH sH tH 6o!6 ZC0 Header CharCJaJFV`1F I FollowedHyperlink >*B*phB'`AB  Comment ReferenceCJaJ<@R< &  Comment Text%CJaJ:a: % Comment Text Char@j@QR@ ( Comment Subject'5\FoF ' Comment Subject Char5\PK![Content_Types].xmlN0EH-J@%ǎǢ|ș$زULTB l,3;rØJB+$G]7O٭V$ !)O^rC$y@/yH*񄴽)޵߻UDb`}"qۋJחX^)I`nEp)liV[]1M<OP6r=zgbIguSebORD۫qu gZo~ٺlAplxpT0+[}`jzAV2Fi@qv֬5\|ʜ̭NleXdsjcs7f W+Ն7`g ȘJj|h(KD- dXiJ؇(x$( :;˹! I_TS 1?E??ZBΪmU/?~xY'y5g&΋/ɋ>GMGeD3Vq%'#q$8K)fw9:ĵ x}rxwr:\TZaG*y8IjbRc|XŻǿI u3KGnD1NIBs RuK>V.EL+M2#'fi ~V vl{u8zH *:(W☕ ~JTe\O*tHGHY}KNP*ݾ˦TѼ9/#A7qZ$*c?qUnwN%Oi4 =3N)cbJ uV4(Tn 7_?m-ٛ{UBwznʜ"Z xJZp; {/<P;,)''KQk5qpN8KGbe Sd̛\17 pa>SR! 3K4'+rzQ TTIIvt]Kc⫲K#v5+|D~O@%\w_nN[L9KqgVhn R!y+Un;*&/HrT >>\ t=.Tġ S; Z~!P9giCڧ!# B,;X=ۻ,I2UWV9$lk=Aj;{AP79|s*Y;̠[MCۿhf]o{oY=1kyVV5E8Vk+֜\80X4D)!!?*|fv u"xA@T_q64)kڬuV7 t '%;i9s9x,ڎ-45xd8?ǘd/Y|t &LILJ`& -Gt/PK! ѐ'theme/theme/_rels/themeManager.xml.relsM 0wooӺ&݈Э5 6?$Q ,.aic21h:qm@RN;d`o7gK(M&$R(.1r'JЊT8V"AȻHu}|$b{P8g/]QAsم(#L[PK-![Content_Types].xmlPK-!֧6 0_rels/.relsPK-!kytheme/theme/themeManager.xmlPK-!0C)theme/theme/theme1.xmlPK-! ѐ' theme/theme/_rels/themeManager.xml.relsPK] H'KHCurtis Gabrielson 'KCMGAU+& 'K  446669 \ L@xJ+*!C"%'(D* +,-/2%3468:;=>ADG>J`LNQR'S*,./0357;=>BCDFHJLNPRTVWXZ\^`aceghjlnqsvy}a [ q + $gEwB"y"<&(),/C02M669<*=@C9DMFH ()  "B?X  0|"0() z '$.' # Z3"xW#4#'y(lr  0GO$?`yd]+$.'lr   0GO$?`yd)$M,'lr   0GO$?`yd'$*'B S  ?'K/*!`$,=` AU XJ XJ UJVJXJYJ[J\J^J_JaJbJfJmJJJJJJJJJJJ%K(KBD@EfjQU& , gja!h!!!""--/ / 1(112=2+4/45566W7^799.;8;HBKBCC/D5DjDlDGGHH IIVJXJYJ[J\J^J_JaJbJJJJJJ%K(K333333333333333333333333333333333333333 =B=BbHcHHHIIIIVJXJYJ[J\J^J_JaJbJmJJJJJJJJJJJJJJJJJJJ"K(K =B=BbHcHHHIIIIUJVJVJXJYJYJ[J\J^J_JaJbJmJJ(K"\2eo'T-b . # kUx l| sV̷M-p֕1TCB!F04(l|' I-|+҅jd-zJ}3/nfx 4X*9朾:QEʥytKpBs6OಂU_ZVf"6|Yk%OZh~+^bdQd( Mb$eU.etJj7gi7,Aq lI2sl|wZ)OPzFEVE)Pr}y"j.h^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHhb ^b `OJQJo(hHh2^2`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohr^r`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHhh^h`OJQJo(hHh^`OJQJo(hHh8^8`OJQJo(hH^`OJQJo(hH^`OJQJo(hHp^p`OJQJo(hH ^ `OJQJo(hH@ ^@ `OJQJo(hH ^ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHhp^p`OJQJ^Jo(hHoh@ ^@ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHhP^P`OJQJ^Jo(hHoh ^ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHhh^h`OJQJo(hHh^`OJQJo(hHh8^8`OJQJo(hH^`OJQJo(hH^`OJQJo(hHp^p`OJQJo(hH ^ `OJQJo(hH@ ^@ `OJQJo(hH ^ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHhp^p`OJQJ^Jo(hHoh@ ^@ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHhP^P`OJQJ^Jo(hHoh ^ `OJQJo(hHh^`OJQJo(hHhp^p`OJQJ^Jo(hHoh@ ^@ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHhP^P`OJQJ^Jo(hHoh ^ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^h`OJQJo(hHvh^`OJQJo(hH8^8`OJQJo(hH^`OJQJo(hH^`OJQJo(hHp^p`OJQJo(hH ^ `OJQJo(hH@ ^@ `OJQJo(hH ^ `OJQJo(hHhh^h`OJQJo(hHh^`OJQJo(hHh8^8`OJQJo(hH^`OJQJo(hH^`OJQJo(hHp^p`OJQJo(hH ^ `OJQJo(hH@ ^@ `OJQJo(hH ^ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohp^p`OJQJo(hHh@ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohP^P`OJQJo(hHh^`OJQJo(hHhp^p`OJQJ^Jo(hHoh@ ^@ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHhP^P`OJQJ^Jo(hHoh ^ `OJQJo(hH",AqI2skUx 4(_ZVOPz' I-Mb$e'T-b %OZ1x 4}3/B!)Pr}:QE# ytKTC sVs6Owej7g*9M-yU.e+^bdjd-Qd6|Y""                                                                                                                                                                                                                                                                                CxNBnDtJj\t hh" 'L4v| # 7(H 3]V  Y {d t;  |PFpkijTE]aGb!#7(@ f* an+G/R_4 6 s&7+a;i<S?CmDeF{GuHJyYLwMLOhe,Pa=-S~zW^X,Xj7Y,YsG[MN[+J7].._<}atMb  hhMc>@wATDFDF?GUaHuXIuJ_J._KCLM5MMNfcN4FR7SUO]V Y6\p-]q]```\aE3bac*cPmc,=dJeof4HgWgtg6'hFWhK=jMjyDlJDm*cnfo+ptq%tr stTuou~vLix#ywU|1o}/3~SY0K@a_lH>^)R1N 9+V/5OQJLxADGl 31{Pv"=k';tq77v.(yZ\nolt2<'.`<O#]z[7C0&Alz_MxhjL e]jcg'?u5doE  )Pfd,y45s^d "DxN}RR4ARW+ak)l0zBM $iobw_s}CnVJXJ@'K@Unknown G*Ax Times New Roman5Symbol3. *Cx Arial7@Cambria5. .[`)TahomamNimbus Roman No9 LTimes New Roman?= *Cx Courier New7.@ Calibri;WingdingsA$BCambria Math"1h2FU R  >?% >?%!x241J1J 3qHX ?=0! xx ]C:\Documents and Settings\benrob\My Documents\classes\object name - CLASS - Specific name.dotLinux Command List CNTS ProgramMatthew KerfootKerfoot, Matthew"                           ! Oh+'0 8D d p | Linux Command ListCNTS ProgramMatthew Kerfoot$object name - CLASS - Specific nameKerfoot, Matthew7Microsoft Office Word@^в@\w@$0@.#Cx >?՜.+,D՜.+,\ hp   Dunwoody College of Technology%1J Linux Command List Titlep 8@ _PID_HLINKSA(@HVhttp://www.thegeekstuff.com/2009/11/ping-tutorial-13-effective-ping-command-examples/WP)http://www.computerhope.com/unix/usu.htm< Dmailto:jsmith@remotehost.example.com:/home/jsmith/localhostfile.txt  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ Root Entry FPVxData BE1TableߛWordDocument7 SummaryInformation(DocumentSummaryInformation8CompObjr  F Microsoft Word 97-2003 Document MSWordDocWord.Document.89q