Changes between Version 2 and Version 3 of Csle2022/Agenda/linuxhandson


Ignore:
Timestamp:
Nov 27, 2022, 8:21:34 AM (2 years ago)
Author:
tuwan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Csle2022/Agenda/linuxhandson

    v2 v3  
    2222
    2323== Exercise ==
    24 
     24{{{
    25251.      Login to your VM. and Display your current directory
    26262.      Change to /etc directory and display current directory
     
    363612.     Type ‘pwd’ in different directories
    373713.     Go to ‘cd  /etc’  type ‘pdw’  type ‘ls’  type ‘ls -l’
    38 
     38}}}
    3939
    4040== File Editing ==
    4141
    4242The vi editor is installed on almost every Unix. Linux will very often install vim (vi improved) which is similar. Every system administrator should know vi(m), because it is an easy tool to solve problems.
     43
    4344vi Commands and Tips
    44 Command Result
     45
     46{{{
    4547Open:   
    4648vi filename     (fn=filename)
     
    102104locate [name]   finds files in Linux using the file name
    103105
    104 
     106}}}
    105107== Practicing with vi ==
    106108
     
    115117Type something like,
    116118
     119{{{
    117120"VI is great! I think I'll be using vi from now on instead of Word”
     121}}}
    118122
    119123Press <ENTER> to add lines.
     
    126130Copy a large file to your home directory so that you can play around with some more vi commands. We'll copy over your /etc/sysctl.conf file for this exercise. To do this do:
    127131
     132{{{
    128133$ cd
    129134$ cp /etc/sysctl.conf sysctl.conf.bak
     135}}}
    130136
    131137Edit the file, but let's start at the bottom of the file:
    132138
     139{{{
    133140$ vi + sysctl.conf.bak
     141}}}
    134142
    135143Go to the first line of the file. Notice the colon (“:”) before the “1”.
    136 
     144{{{
    137145:1 <ENTER>
     146}}}
    138147
    139148Go to line 10, add a new line, and add in some text:
    140149
     150{{{
    141151:10 <ENTER>
    142152Press the “i” key
     
    145155## A sample comment
    146156##
     157}}}
    147158
    148159Delete the three lines you just created:
     
    152163Save the file, but don’t exit.
    153164
     165{{{
    154166:w
    155167press <ENTER>
     168}}}
    156169
    157170Practice copying and pasting text.
     
    159172Go to line 12, copy 3 lines of text, go to the bottom of the file, place the text there:
    160173
     174{{{
    161175ESC                     (go to command mode)
    162176:12 <ENTER>             (go to line 12 of the file)
     
    164178G                       (go to the end of the file)
    165179P                       (place the contents of the copy buffer here)
     180}}}
    166181
    167182If want to undo this you would type (in command mode):
    168183
     184{{{
    169185u
     186}}}
    170187
    171188Now let’s exit from the file and not save the few changes we’ve made.
    172189
     190{{{
    173191:q! <Enter>
    174 
    175 
    176 Nano Editor
     192}}}
     193
     194=== Nano Editor ===
    177195
    178196GNU nano is a text editor for Unix-like computing systems or operating environments using a command line interface. It emulates the Pico text editor, part of the Pine email client, and also provides additional functionality. Easy to use and all the commands are given in the editor.
    179197
    180198To create a new file type nano test.txt 
     199
    181200Find and Replace
    182 
     201{{{
    183202Create a file test1.txt
    184203
     
    189208Foo
    190209
     210
    191211Replace Foo with Bar
    192212Command - ESC: %s/Foo/Bar/g
     
    206226Enter then save and quit
    207227
    208 
     228}}}
    209229
    210230==  Working with Files ==
     
    213233Files on Linux (or any Unix) are case sensitive. This means that FILE1 is different from file1, and /etc/hosts is different from /etc/Hosts (the latter one does not exist on a typical Linux computer). In Linux everything is considered as a file even a directory is a special kind of file. A small overview of some basic and important file handling commands
    214234
    215 •       file: The file utility determines the file type. Linux does not use extensions to determine the file type. The command line does not care whether a file ends in .txt or .pdf. As a system administrator, you should use the file command to determine the file type.
    216 •       cp: To copy a file, use cp with a source and a target argument.
    217 o       cp -r: To copy complete directories, use cp -r (the -r option forces recursive copying of all files in all subdirectories).
    218 o       cp -i: To prevent cp from overwriting existing files, use the -i (for interactive) option.
    219 •       mv: Use to rename a file or to move the file to another directory.
    220 •       rm: Use to remove files *rm -i:To prevent yourself from accidentally removing a file. *rm -rf:rm -r will not remove non-empty directories. However, rm accepts several options that will allow you to remove any directory. The rm -rf will erase anything
    221 
     235{{{
     236* file: The file utility determines the file type. Linux does not use extensions to determine the file type. The command line does not care whether a file ends in .txt or .pdf. As a system administrator, you should use the file command to determine the file type.
     237* cp: To copy a file, use cp with a source and a target argument.
     238* cp -r: To copy complete directories, use cp -r (the -r option forces recursive copying of all files in all subdirectories).
     239* cp -i: To prevent cp from overwriting existing files, use the -i (for interactive) option.
     240* mv: Use to rename a file or to move the file to another directory.
     241* rm: Use to remove files *rm -i:To prevent yourself from accidentally removing a file. *rm -rf:rm -r will not remove non-empty directories. However, rm accepts several options that will allow you to remove any directory. The rm -rf will erase anything
     242}}}
     243{{{
    222244Dangerous Command
    223245
     
    227249•       head/tail:You can use head to display the first ten lines of a file. and tail to display the last ten lines of a file. you can use both commands with -n and specify the number of lines
    228250•       cat:The cat command is one of the most universal tools, yet all it does is copy standard input to standard output.
    229 
     251}}}
    230252
    231 '''Exercise'''
     253== Exercise ==
    232254
    233255Create numbers.txt (Containing ten lines of numbers one to ten) file with cat command.
     
    359381
    360382
    361 •       Commands preceded with "$" imply that you should execute the command as a general user - not as root.
    362 •       Commands preceded with "#" imply that you should be working as root with "sudo"
    363 •       Commands with more specific command lines (e.g. "RTR-GW>" or "mysql>") imply that you are executing commands on remote equipment, or within another program.
     383* Commands preceded with "$" imply that you should execute the command as a general user - not as root.
     384* Commands preceded with "#" imply that you should be working as root with "sudo"
     385* Commands with more specific command lines (e.g. "RTR-GW>" or "mysql>") imply that you are executing commands on remote equipment, or within another program.
    364386
    365387chmod: Change file read write permission chown: Change the owner of the file chgrp: Change the group of the file
     
    418440
    419441Change file permission as follows
    420 
     442{{{
    421443$ chmod 044 numbers.txt
    422 
     444}}}
    423445Now you have remove read privilege try view the file using cat
    424 
     446{{{
    425447$ chmod 444 numbers.txt
     448}}}
    426449
    427450Now you have set privilege as read only. Open the file via vi editor and try to edit the file
    428451Switch to root user
    429 
     452{{{
    430453$ sudo su
    431454
     
    433456•       Change the ownership and group of the numbers3.txt to root and remove all the privileges from all the other users.
    434457•       Switch back to your user and try to view numbers3.txt and try to edit numbers2.txt
    435 
     458}}}
    436459 
    437460
    438 More Linux Commands
    439 
     461=== More Linux Commands ===
     462
     463{{{
    440464who: who command will give you information about who is logged on the system.
    441465
     
    448472df -dh: report file system disk space usage
    449473
     474man: Will give you man pages (also called manual pages) on your Unix or Linux computer
     475
     476date: Will give you the date and time of the system
     477
     478$ date
     479
     480To set time zone – type $ timedatectl set-timezone Asia/Colombo
     481
     482ln: Use to create links between files. Frequently use with -s to create symbolic links
     483
    450484 
    451485
    452 man: Will give you man pages (also called manual pages) on your Unix or Linux computer
    453 
    454  
    455 
    456 date: Will give you the date and time of the system
    457 
    458 $ date
    459 
    460 To set time zone – type $ timedatectl set-timezone Asia/Colombo
    461 
    462 ln: Use to create links between files. Frequently use with -s to create symbolic links
    463 
    464  
    465 
    466486ps: report a snapshot of the current processes. frequently use with -aux.
    467487
    468  
     488}}}
    469489
    470490
     
    473493
    474494
    475 
    476495Get network related information
    477 
     496{{{
    478497netstat -a | more : To show both listening and non-listening sockets.
    479498netstat -at : To list all tcp ports.
     
    482501netstat -lt : To list only the listening tcp ports.
    483502netstat -lu : To list only the listening udp ports.
    484 
     503}}}
    485504Checking the network connectivity
    486505
     
    489508Ping 8.8.8.8
    490509Ping google.com
     510
     511ping6 2001:4860:4860::8888
     512ping6 google.com
     513
    491514}}}
    492515
     
    494517The tracepath command in Linux allows to trace the path to the destination path determining MTU along this path using UDP port or any other ports that will not require any superuser permissions.
    495518
     519{{{
    496520tracepath [destination]
     521}}}
    497522
    498523nslookup is the name of a program that lets an Internet server administrator or any computer user enter a host name (for example, "whatis.com") and find out the corresponding IP address or domain name system (DNS) record.
    499524
    500         '''nslookup ac.lk'''
    501 
    502  
    503 
     525{{{
     526nslookup ac.lk
     527}}}
    504528
    505529The dig (domain information groper) command is a flexible tool for interrogating DNS name servers. It performs DNS lookups and displays the answers that are returned from the queried name server(s).
    506530
    507 '''dig ac.lk'''
     531{{{
     532dig ac.lk
     533}}}
     534
     535traceroute command in Linux prints the route that a packet takes to reach the host. This command is useful when you want to know about the route and about all the hops that a packet takes.
     536{{{
     537traceroute [destination]
     538traceroute ac.lk
     539
     540traceroute6 [destination]
     541traceroute6 google.com
     542
     543}}}
     544On a Windows machine, this command is called tracert; on Linux and Mac, it's called traceroute.
    508545
    509546 
    510547
    511 traceroute command in Linux prints the route that a packet takes to reach the host. This command is useful when you want to know about the route and about all the hops that a packet takes.
    512 
    513         '''traceroute ac.lk'''
    514 
    515 On a Windows machine, this command is called tracert; on Linux and Mac, it's called traceroute.
    516 
    517  
    518 
    519548'''ipconfig''' stands for Internet Protocol Configuration, while ifconfig stands for Interface Configuration.
    520 
    521 '''ifconfig'''
    522 
    523 '''ipconfig'''
    524 
     549{{{
     550
     551ifconfig, ipconfig
     552
     553}}}