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

Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
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
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesShubhangi Sonawane
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxNikitaBankoti2
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Último (20)

Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
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
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).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
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.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 ~]$