SlideShare uma empresa Scribd logo
1 de 21
Baixar para ler offline
•
•
•
•
•
•
•
•
•   !   quot;
•   #   quot;
•
•       quot;
•   $
•   %
•   $                  &
•         '(
•   !
•   )          '   *
•   )          '
•          +
•   ! (
*                     ,           quot;(       (            ,           (
                                  &
'                                      ,           +&
     quot;                    quot;       &
*                                     *!                                     ,
                                                                &
                  (                                                 -   ,
          (                                                 *            !
%
                                                   &
.quot;    (       ,                                                                  quot;(
     (                        &
                                  &
'(        (           /                        (                    &
(                                          quot;   (
                &
'                                  0                        (&

!                         quot;(           (                     (                &

'               (                      quot;(       (       ,                quot;    ,
        0                                   (       &
!               , quot;       ,                             &            1
                &
                           quot;                                 (           quot;(
    ,                          ,                2       ,                     ,
                           (
            &
'   3

'




        !   quot;
[user@host ~]$ pwd
/home/user



[user@host ~]$ mkdir mydocuments
[user@host ~]$




[user@host ~]$ cd mydocuments
[user@host mydocuments]$
[user@host mydocuments]$ cd ..
[user@host ~]$



[user@host   ~]$ ls -l
total 16
drwxrwxr-x   2 user user 4096 2008-01-23 11:39 mydocuments
drwxr-xr-x   2 user user 4096 2008-01-23 11:00 tst
[user@host   ~]$
[user@host   ~]$ touch trainee1.txt
[user@host   ~]$ touch trainee2.txt
[user@host   ~]$ ls -l
total 24
drwxrwxr-x   2 user   user 4096 2008-01-23 11:39 mydocuments
-rw-rw-r--   1 user   user    0 2008-01-23 12:11 trainee1.txt
-rw-rw-r--   1 user   user    0 2008-01-23 12:11 trainee2.txt
drwxr-xr-x   2 user   user 4096 2008-01-23 11:00 tst
[user@host   ~]$



[user@host ~]$ find ~ -name trainee1.txt
/home/user/trainee1.txt
[user@host ~]$ locate trainee1.txt
/home/user/trainee1.txt
[user@host ~]$
[user@host ~]$ whereis ls
ls: /bin/ls /usr/share/man/man1/ls.1.gz
/usr/share/man/man1p/ls.1p.gz
[user@host ~]$ whereis whereis
whereis: /usr/bin/whereis /usr/share/man/man1/whereis.1.gz
[user@host ~]$



[user@host ~]$ cp trainee*.* tst
[user@host ~]$ ls ~/tst
trainee1.txt trainee2.txt
[user@host ~]$ cd tst
[user@host tst]$ cp trainee1.txt trainee3.txt
[user@host tst]$
[user@host tst]$ rm trainee1.txt
[user@host ~]$ ls
Trainee2.txt trainee3.txt
[user@host rst]$ rm trainee*.*
[user@host tst]$


[user@host   ~]$ rmdir tst
[user@host   ~]$ ls -l
total 16
drwxrwxr-x   2 user user 4096 2008-01-23 11:39 mydocuments
-rw-rw-r--   1 user user    0 2008-01-23 12:11 trainee1.txt
-rw-rw-r--   1 user user    0 2008-01-23 12:11 trainee2.txt
[user@host   ~]$
[user@host ~]$ ln –s staff1 trainee1.txt
[user@host ~]$


[user@host ~]$ ls   -l
total 20
drwxrwxr-x 2 user   user 4096 2008-01-23 11:39 mydocuments
lrwxrwxr-x 1 user   user   12 2008-01-23 12:54 staff1 ->
trainee1.txt
-rw-rw-r-- 1 user   user   0 2008-01-23 12:11 trainee1.txt
-rw-rw-r-- 1 user   user   0 2008-01-23 12:11 trainee2.txt
[user@host ~]$
[user@host ~]$ rename trainee trainee00 trainee?.txt
[user@host ~]$ ls -l
total 20
drwxrwxr-x 2 user user 4096 2008-01-23 11:39 mydocuments
lrwxrwxr-x 1 user user   12 2008-01-23 12:54 staff1 ->
trainee1.txt
-rw-rw-r-- 1 user user    0 2008-01-23 12:11 trainee001.txt
-rw-rw-r-- 1 user user    0 2008-01-23 12:11 trainee002.txt
[user@host ~]$

[user@host ~]$ cat trainee1.txt
[user@host ~]$

[user@host ~]$ cat trainee1.txt trainee2.txt > trainee.txt
[user@host ~]$
[user@host ~]$ ws < trainee.txt > count.txt
[user@host ~]$


[user@host ~]$ cat trainee1.txt trainee2.txt | less


[user@host ~]$ ls /home/user | tee list.txt


[user@host ~]$ head -5 trainee1.txt


[user@host ~]$ tail -5 trainee.txt


[user@host ~]$ less trainee1.txt

[user@host ~]$ more trainee1.txt
[user@host ~]$ cat myfile.txt |grep LAMP


[user@host ~]$ cat myfile.txt |grep ^LAMP


[user@host ~]$ cat myfile.txt | grep LAMP$


[user@host ~]$ su username


[user@host ~]$ passwd
[root@host ~]$ ifconfig


[user@host ~]$ ping 10.192.162.68


[user@host ~]$ telnet 10.192.162.68
[user@host   ~]$ ls -l
total 24
drwxrwxr-x   2 user   user 4096 2008-01-23 11:39 mydocuments
-rw-rw-r--   1 user   user    0 2008-01-23 12:11 trainee1.txt
-rw-rw-r--   1 user   user    0 2008-01-23 12:11 trainee2.txt
drwxr-xr-x   2 user   user 4096 2008-01-23 11:00 tst
[user@host   ~]$


                          /        /    1 /
                                                     $        !
                                                              !
                                                         !
                                                         '(
[user@host   ~]$ ls –l mydocuments
drwxrwxr-x   2 user user 4096 2008-01-23 11:39 mydocuments
[user@host   ~]$ chown user:othergroup mydocuments
[user@host   ~]$ ls –l mydocuments
drwxrwxr-x   2 user othergroup 4096 2008-01-23 11:39 mydocuments
[user@host   ~]$


[user@host   ~]$ chmod g-rwx mydocuments
[user@host   ~]$ ls –l mydocuments
drwx---r-x   2 user user 4096 2008-01-23 11:39 mydocuments
[user@host   ~]$
[user@host   ~]$ chmod a+rwx mydocuments
[user@host   ~]$ ls –l mydocuments
drwxrwxrwx   2 user user 4096 2008-01-23 11:39 mydocuments
[user@host   ~]$



[user@host   ~]$ chmod 700 mydocuments
[user@host   ~]$ ls –l mydocuments
drwx------   2 user user 4096 2008-01-23 11:39 mydocuments
[user@host   ~]$
LAMP_TRAINING_SESSION_1

Mais conteúdo relacionado

Mais procurados

Michelle Morin: Recess for the Soul
Michelle Morin: Recess for the SoulMichelle Morin: Recess for the Soul
Michelle Morin: Recess for the SoulNerd Nite Siem Reap
 
Python Developer's Daily Routine
Python Developer's Daily RoutinePython Developer's Daily Routine
Python Developer's Daily RoutineMaxim Avanov
 
PHPerのためのPerl入門@ Kansai.pm#12
PHPerのためのPerl入門@ Kansai.pm#12PHPerのためのPerl入門@ Kansai.pm#12
PHPerのためのPerl入門@ Kansai.pm#12Kazuki KOMORI
 
01 คำสั่งแสดงผล ในภาษาซี
01 คำสั่งแสดงผล ในภาษาซี01 คำสั่งแสดงผล ในภาษาซี
01 คำสั่งแสดงผล ในภาษาซีPanatchakorn Chaiyanon
 
Blocks by Lachs Cox
Blocks by Lachs CoxBlocks by Lachs Cox
Blocks by Lachs Coxlachie
 
Intro to OAuth
Intro to OAuthIntro to OAuth
Intro to OAuthmfrost503
 
Good Evils In Perl
Good Evils In PerlGood Evils In Perl
Good Evils In PerlKang-min Liu
 
Linux Command Line Introduction for total beginners, Part 2
Linux Command Line Introduction for total beginners, Part 2 Linux Command Line Introduction for total beginners, Part 2
Linux Command Line Introduction for total beginners, Part 2 Corrie Watt
 
The linux command line for total beginners
The linux command line  for total beginnersThe linux command line  for total beginners
The linux command line for total beginnersCorrie Watt
 
dplyr and torrents from cpasbien
dplyr and torrents from cpasbiendplyr and torrents from cpasbien
dplyr and torrents from cpasbienRomain Francois
 
Scratching the surface of hunky-dory Elixir features
Scratching the surface of hunky-dory Elixir featuresScratching the surface of hunky-dory Elixir features
Scratching the surface of hunky-dory Elixir featuresAdam Hodowany
 
VIM for (PHP) Programmers
VIM for (PHP) ProgrammersVIM for (PHP) Programmers
VIM for (PHP) ProgrammersZendCon
 
網頁程式還可以怎麼設計
網頁程式還可以怎麼設計網頁程式還可以怎麼設計
網頁程式還可以怎麼設計Kang-min Liu
 

Mais procurados (20)

Michelle Morin: Recess for the Soul
Michelle Morin: Recess for the SoulMichelle Morin: Recess for the Soul
Michelle Morin: Recess for the Soul
 
Python Developer's Daily Routine
Python Developer's Daily RoutinePython Developer's Daily Routine
Python Developer's Daily Routine
 
Photoshop in marathi
Photoshop in marathiPhotoshop in marathi
Photoshop in marathi
 
PHPerのためのPerl入門@ Kansai.pm#12
PHPerのためのPerl入門@ Kansai.pm#12PHPerのためのPerl入門@ Kansai.pm#12
PHPerのためのPerl入門@ Kansai.pm#12
 
01 คำสั่งแสดงผล ในภาษาซี
01 คำสั่งแสดงผล ในภาษาซี01 คำสั่งแสดงผล ในภาษาซี
01 คำสั่งแสดงผล ในภาษาซี
 
Blocks by Lachs Cox
Blocks by Lachs CoxBlocks by Lachs Cox
Blocks by Lachs Cox
 
Intro to OAuth
Intro to OAuthIntro to OAuth
Intro to OAuth
 
Good Evils In Perl
Good Evils In PerlGood Evils In Perl
Good Evils In Perl
 
Linux Command Line Introduction for total beginners, Part 2
Linux Command Line Introduction for total beginners, Part 2 Linux Command Line Introduction for total beginners, Part 2
Linux Command Line Introduction for total beginners, Part 2
 
The linux command line for total beginners
The linux command line  for total beginnersThe linux command line  for total beginners
The linux command line for total beginners
 
dplyr and torrents from cpasbien
dplyr and torrents from cpasbiendplyr and torrents from cpasbien
dplyr and torrents from cpasbien
 
Scratching the surface of hunky-dory Elixir features
Scratching the surface of hunky-dory Elixir featuresScratching the surface of hunky-dory Elixir features
Scratching the surface of hunky-dory Elixir features
 
VIM for (PHP) Programmers
VIM for (PHP) ProgrammersVIM for (PHP) Programmers
VIM for (PHP) Programmers
 
Testing
TestingTesting
Testing
 
dplyr use case
dplyr use casedplyr use case
dplyr use case
 
Comma versus list
Comma versus listComma versus list
Comma versus list
 
181220_slideshare_git
181220_slideshare_git181220_slideshare_git
181220_slideshare_git
 
Islam House
Islam HouseIslam House
Islam House
 
網頁程式還可以怎麼設計
網頁程式還可以怎麼設計網頁程式還可以怎麼設計
網頁程式還可以怎麼設計
 
Lettering js
Lettering jsLettering js
Lettering js
 

Destaque (20)

Les competències docents i el PLE
Les competències docents i el PLELes competències docents i el PLE
Les competències docents i el PLE
 
LAMP_TRAINING_SESSION_2
LAMP_TRAINING_SESSION_2LAMP_TRAINING_SESSION_2
LAMP_TRAINING_SESSION_2
 
Cultive seus sonhos
Cultive seus sonhosCultive seus sonhos
Cultive seus sonhos
 
Wayn Vs Tripwolf
Wayn Vs TripwolfWayn Vs Tripwolf
Wayn Vs Tripwolf
 
2007 04 27 Japan
2007 04 27 Japan2007 04 27 Japan
2007 04 27 Japan
 
2006 06 Squaw Valley
2006 06 Squaw Valley2006 06 Squaw Valley
2006 06 Squaw Valley
 
LAMP_TRAINING_SESSION_3
LAMP_TRAINING_SESSION_3LAMP_TRAINING_SESSION_3
LAMP_TRAINING_SESSION_3
 
Ui03
Ui03Ui03
Ui03
 
2004_0528CA
2004_0528CA2004_0528CA
2004_0528CA
 
Hodges The Point Ppt
Hodges The Point PptHodges The Point Ppt
Hodges The Point Ppt
 
2005 0809 Ca
2005 0809 Ca2005 0809 Ca
2005 0809 Ca
 
Human Based Computation - Społeczność vs moderator - Netcamp #16
Human Based Computation - Społeczność vs moderator - Netcamp #16Human Based Computation - Społeczność vs moderator - Netcamp #16
Human Based Computation - Społeczność vs moderator - Netcamp #16
 
SLOODLE 33 Slide in english
SLOODLE 33 Slide in englishSLOODLE 33 Slide in english
SLOODLE 33 Slide in english
 
Open Innovation at BBC
Open Innovation at BBCOpen Innovation at BBC
Open Innovation at BBC
 
Capita Selecta Multimedia Presentatie 2
Capita Selecta Multimedia Presentatie 2Capita Selecta Multimedia Presentatie 2
Capita Selecta Multimedia Presentatie 2
 
Nie każ mi myśleć - usability w świecie web - Netcamp
Nie każ mi myśleć - usability w świecie web - NetcampNie każ mi myśleć - usability w świecie web - Netcamp
Nie każ mi myśleć - usability w świecie web - Netcamp
 
Ochrona prawna pomysłów w kontaktach z inwestorem - Netcamp #16
Ochrona prawna pomysłów w kontaktach z inwestorem - Netcamp #16Ochrona prawna pomysłów w kontaktach z inwestorem - Netcamp #16
Ochrona prawna pomysłów w kontaktach z inwestorem - Netcamp #16
 
Pozycjonowanie Long Tail
Pozycjonowanie Long TailPozycjonowanie Long Tail
Pozycjonowanie Long Tail
 
Second Life Project
Second Life ProjectSecond Life Project
Second Life Project
 
About Lux IO
About Lux IOAbout Lux IO
About Lux IO
 

Semelhante a LAMP_TRAINING_SESSION_1

Presentacion Congreso Medellin, 2008
Presentacion Congreso Medellin, 2008Presentacion Congreso Medellin, 2008
Presentacion Congreso Medellin, 2008Maria Gloria Romero
 
slam robotic navigatin genetic localization
slam robotic navigatin genetic localizationslam robotic navigatin genetic localization
slam robotic navigatin genetic localizationlzenki
 
IST 561 Session 3, Feb 9, 2009--XHMTL and CSS basics
IST 561 Session 3, Feb 9, 2009--XHMTL and CSS basicsIST 561 Session 3, Feb 9, 2009--XHMTL and CSS basics
IST 561 Session 3, Feb 9, 2009--XHMTL and CSS basicsD.A. Garofalo
 
sprint nextel Quarterly Presentations 2005 3rd
sprint nextel Quarterly Presentations 2005 3rdsprint nextel Quarterly Presentations 2005 3rd
sprint nextel Quarterly Presentations 2005 3rdfinance6
 
Analyse transactionnelle et publicité
Analyse transactionnelle et publicitéAnalyse transactionnelle et publicité
Analyse transactionnelle et publicitéFrançois Jourde
 
LAMP_TRAINING_SESSION_6
LAMP_TRAINING_SESSION_6LAMP_TRAINING_SESSION_6
LAMP_TRAINING_SESSION_6umapst
 
R57php 1231677414471772-2
R57php 1231677414471772-2R57php 1231677414471772-2
R57php 1231677414471772-2ady36
 
[Erlang LT] Regexp Perl And Port
[Erlang LT] Regexp Perl And Port[Erlang LT] Regexp Perl And Port
[Erlang LT] Regexp Perl And PortKeiichi Daiba
 
Erlang with Regexp Perl And Port
Erlang with Regexp Perl And PortErlang with Regexp Perl And Port
Erlang with Regexp Perl And PortKeiichi Daiba
 
ESS-Bilbao Initiative Workshop. High duty cycle RF Power Couplers
ESS-Bilbao Initiative Workshop. High duty cycle RF Power CouplersESS-Bilbao Initiative Workshop. High duty cycle RF Power Couplers
ESS-Bilbao Initiative Workshop. High duty cycle RF Power CouplersESS BILBAO
 
Ud 29 el complemento indirecto - ana abril y josefina ramal
Ud 29   el complemento indirecto - ana abril y josefina ramalUd 29   el complemento indirecto - ana abril y josefina ramal
Ud 29 el complemento indirecto - ana abril y josefina ramalTeresa López Vicente
 
KepMenKeh 1983, Penetapan Lapas Menjadi Rutan
KepMenKeh 1983, Penetapan Lapas Menjadi RutanKepMenKeh 1983, Penetapan Lapas Menjadi Rutan
KepMenKeh 1983, Penetapan Lapas Menjadi Rutanrutanprabumulih
 
841charity
841charity841charity
841charityspmath
 
Os Fetterupdated
Os FetterupdatedOs Fetterupdated
Os Fetterupdatedoscon2007
 
☣ ppencode ♨
☣ ppencode ♨☣ ppencode ♨
☣ ppencode ♨Audrey Tang
 
Epistemologia Y Etica
Epistemologia Y EticaEpistemologia Y Etica
Epistemologia Y Eticaguest975e56
 

Semelhante a LAMP_TRAINING_SESSION_1 (20)

Presentacion Congreso Medellin, 2008
Presentacion Congreso Medellin, 2008Presentacion Congreso Medellin, 2008
Presentacion Congreso Medellin, 2008
 
Cinquieme Atelier Recherche Du Reseau EDEN
Cinquieme Atelier Recherche Du Reseau EDENCinquieme Atelier Recherche Du Reseau EDEN
Cinquieme Atelier Recherche Du Reseau EDEN
 
Nop2
Nop2Nop2
Nop2
 
slam robotic navigatin genetic localization
slam robotic navigatin genetic localizationslam robotic navigatin genetic localization
slam robotic navigatin genetic localization
 
IST 561 Session 3, Feb 9, 2009--XHMTL and CSS basics
IST 561 Session 3, Feb 9, 2009--XHMTL and CSS basicsIST 561 Session 3, Feb 9, 2009--XHMTL and CSS basics
IST 561 Session 3, Feb 9, 2009--XHMTL and CSS basics
 
sprint nextel Quarterly Presentations 2005 3rd
sprint nextel Quarterly Presentations 2005 3rdsprint nextel Quarterly Presentations 2005 3rd
sprint nextel Quarterly Presentations 2005 3rd
 
Analyse transactionnelle et publicité
Analyse transactionnelle et publicitéAnalyse transactionnelle et publicité
Analyse transactionnelle et publicité
 
LAMP_TRAINING_SESSION_6
LAMP_TRAINING_SESSION_6LAMP_TRAINING_SESSION_6
LAMP_TRAINING_SESSION_6
 
R57php 1231677414471772-2
R57php 1231677414471772-2R57php 1231677414471772-2
R57php 1231677414471772-2
 
[Erlang LT] Regexp Perl And Port
[Erlang LT] Regexp Perl And Port[Erlang LT] Regexp Perl And Port
[Erlang LT] Regexp Perl And Port
 
Erlang with Regexp Perl And Port
Erlang with Regexp Perl And PortErlang with Regexp Perl And Port
Erlang with Regexp Perl And Port
 
ESS-Bilbao Initiative Workshop. High duty cycle RF Power Couplers
ESS-Bilbao Initiative Workshop. High duty cycle RF Power CouplersESS-Bilbao Initiative Workshop. High duty cycle RF Power Couplers
ESS-Bilbao Initiative Workshop. High duty cycle RF Power Couplers
 
Ud 29 el complemento indirecto - ana abril y josefina ramal
Ud 29   el complemento indirecto - ana abril y josefina ramalUd 29   el complemento indirecto - ana abril y josefina ramal
Ud 29 el complemento indirecto - ana abril y josefina ramal
 
KepMenKeh 1983, Penetapan Lapas Menjadi Rutan
KepMenKeh 1983, Penetapan Lapas Menjadi RutanKepMenKeh 1983, Penetapan Lapas Menjadi Rutan
KepMenKeh 1983, Penetapan Lapas Menjadi Rutan
 
841charity
841charity841charity
841charity
 
Os Fetterupdated
Os FetterupdatedOs Fetterupdated
Os Fetterupdated
 
recycle
recyclerecycle
recycle
 
ESWC 2009 Lightning Talks
ESWC 2009 Lightning TalksESWC 2009 Lightning Talks
ESWC 2009 Lightning Talks
 
☣ ppencode ♨
☣ ppencode ♨☣ ppencode ♨
☣ ppencode ♨
 
Epistemologia Y Etica
Epistemologia Y EticaEpistemologia Y Etica
Epistemologia Y Etica
 

Último

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.MateoGardella
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 

Último (20)

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 

LAMP_TRAINING_SESSION_1

  • 1.
  • 3. • • ! quot; • # quot; • • quot; • $ • %
  • 4. $ & • '( • ! • ) ' * • ) ' • + • ! (
  • 5. * , quot;( ( , ( & ' , +& quot; quot; & * *! , & ( - , ( * ! % & .quot; ( , quot;( ( & & '( ( / ( &
  • 6. ( quot; ( & ' 0 (& ! quot;( ( ( & ' ( quot;( ( , quot; , 0 ( & ! , quot; , & 1 & quot; ( quot;( , , 2 , , ( &
  • 7. ' 3 ' ! quot;
  • 8. [user@host ~]$ pwd /home/user [user@host ~]$ mkdir mydocuments [user@host ~]$ [user@host ~]$ cd mydocuments [user@host mydocuments]$
  • 9. [user@host mydocuments]$ cd .. [user@host ~]$ [user@host ~]$ ls -l total 16 drwxrwxr-x 2 user user 4096 2008-01-23 11:39 mydocuments drwxr-xr-x 2 user user 4096 2008-01-23 11:00 tst [user@host ~]$
  • 10. [user@host ~]$ touch trainee1.txt [user@host ~]$ touch trainee2.txt [user@host ~]$ ls -l total 24 drwxrwxr-x 2 user user 4096 2008-01-23 11:39 mydocuments -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee1.txt -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee2.txt drwxr-xr-x 2 user user 4096 2008-01-23 11:00 tst [user@host ~]$ [user@host ~]$ find ~ -name trainee1.txt /home/user/trainee1.txt [user@host ~]$ locate trainee1.txt /home/user/trainee1.txt [user@host ~]$
  • 11. [user@host ~]$ whereis ls ls: /bin/ls /usr/share/man/man1/ls.1.gz /usr/share/man/man1p/ls.1p.gz [user@host ~]$ whereis whereis whereis: /usr/bin/whereis /usr/share/man/man1/whereis.1.gz [user@host ~]$ [user@host ~]$ cp trainee*.* tst [user@host ~]$ ls ~/tst trainee1.txt trainee2.txt [user@host ~]$ cd tst [user@host tst]$ cp trainee1.txt trainee3.txt [user@host tst]$
  • 12. [user@host tst]$ rm trainee1.txt [user@host ~]$ ls Trainee2.txt trainee3.txt [user@host rst]$ rm trainee*.* [user@host tst]$ [user@host ~]$ rmdir tst [user@host ~]$ ls -l total 16 drwxrwxr-x 2 user user 4096 2008-01-23 11:39 mydocuments -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee1.txt -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee2.txt [user@host ~]$
  • 13. [user@host ~]$ ln –s staff1 trainee1.txt [user@host ~]$ [user@host ~]$ ls -l total 20 drwxrwxr-x 2 user user 4096 2008-01-23 11:39 mydocuments lrwxrwxr-x 1 user user 12 2008-01-23 12:54 staff1 -> trainee1.txt -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee1.txt -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee2.txt [user@host ~]$
  • 14. [user@host ~]$ rename trainee trainee00 trainee?.txt [user@host ~]$ ls -l total 20 drwxrwxr-x 2 user user 4096 2008-01-23 11:39 mydocuments lrwxrwxr-x 1 user user 12 2008-01-23 12:54 staff1 -> trainee1.txt -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee001.txt -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee002.txt [user@host ~]$ [user@host ~]$ cat trainee1.txt [user@host ~]$ [user@host ~]$ cat trainee1.txt trainee2.txt > trainee.txt [user@host ~]$
  • 15. [user@host ~]$ ws < trainee.txt > count.txt [user@host ~]$ [user@host ~]$ cat trainee1.txt trainee2.txt | less [user@host ~]$ ls /home/user | tee list.txt [user@host ~]$ head -5 trainee1.txt [user@host ~]$ tail -5 trainee.txt [user@host ~]$ less trainee1.txt [user@host ~]$ more trainee1.txt
  • 16. [user@host ~]$ cat myfile.txt |grep LAMP [user@host ~]$ cat myfile.txt |grep ^LAMP [user@host ~]$ cat myfile.txt | grep LAMP$ [user@host ~]$ su username [user@host ~]$ passwd
  • 17. [root@host ~]$ ifconfig [user@host ~]$ ping 10.192.162.68 [user@host ~]$ telnet 10.192.162.68
  • 18. [user@host ~]$ ls -l total 24 drwxrwxr-x 2 user user 4096 2008-01-23 11:39 mydocuments -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee1.txt -rw-rw-r-- 1 user user 0 2008-01-23 12:11 trainee2.txt drwxr-xr-x 2 user user 4096 2008-01-23 11:00 tst [user@host ~]$ / / 1 / $ ! ! ! '(
  • 19. [user@host ~]$ ls –l mydocuments drwxrwxr-x 2 user user 4096 2008-01-23 11:39 mydocuments [user@host ~]$ chown user:othergroup mydocuments [user@host ~]$ ls –l mydocuments drwxrwxr-x 2 user othergroup 4096 2008-01-23 11:39 mydocuments [user@host ~]$ [user@host ~]$ chmod g-rwx mydocuments [user@host ~]$ ls –l mydocuments drwx---r-x 2 user user 4096 2008-01-23 11:39 mydocuments [user@host ~]$
  • 20. [user@host ~]$ chmod a+rwx mydocuments [user@host ~]$ ls –l mydocuments drwxrwxrwx 2 user user 4096 2008-01-23 11:39 mydocuments [user@host ~]$ [user@host ~]$ chmod 700 mydocuments [user@host ~]$ ls –l mydocuments drwx------ 2 user user 4096 2008-01-23 11:39 mydocuments [user@host ~]$