SlideShare une entreprise Scribd logo
1  sur  29
Télécharger pour lire hors ligne
*nix for developers
part 1
@mitemitreski
http://www.mitemitreski.com/
8.April.2014
tricode talks
Agenda
Short history
Overview of var commands
Demo of simple use cases
Short history
● Ken Thomson
● Dennis Ritchie
● unix like systems 1969
● official release 1979 "...the number of UNIX installations has grown to
10, with more expected..."
- Dennis Ritchie and Ken Thompson, June
1972
Linux
RMS and GNU/Linux
All the flavours
● Multiprocess
● Multi-user
● Timesharing
● Different command between flavours
Start-up
init tab
systemv
crond
http://en.wikipedia.org/wiki/Init
Runlevel
>runlevel
Operating System Default runlevel
AIX 2
CentOS 3 (console/server) or 5 (graphical/desktop)[5]
Debian 2[6]
Gentoo Linux 3[7]
Mac OS X 3
Mandriva Linux 3 (console/server) or 5 (graphical/desktop)
Red Hat Enterprise Linux / Fedora 3 (console/server) or 5 (graphical/desktop)[8]
Solaris 3[9]
Ubuntu (Server and Desktop) 2[6]
Cron and crontab
00 20 * * * /home/oracle/scripts/export_dump.sh
Cron expressions ( * / , -)
# * * * * * command to execute
# ┬ ┬ ┬ ┬ ┬
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ └───── day of week (0 - 7) (0 to 6 are Sunday to Saturday,
or use names; 7 is Sunday, the same as 0)
# │ │ │ └────────── month (1 - 12)
# │ │ └─────────────── day of month (1 - 31)
# │ └──────────────────── hour (0 - 23)
# └───────────────────────── min (0 - 59)
Entry Description Equivalent to
@yearly (or @annually) Run once a year at midnight in the morning of January 1 0 0 1 1 *
@monthly Run once a month at midnight in the morning of the first day of the
month
0 0 1 * *
@weekly Run once a week at midnight in the morning of Sunday 0 0 * * 0
@daily Run once a day at midnight 0 0 * * *
@hourly Run once an hour at the beginning of the hour 0 * * * *
@reboot Run at startup @reboot
Crontab
Terminals
tty
telnetd
sshd
http://en.wikipedia.org/wiki/Computer_terminal
All the different shells
SH
sh, csh, ksh, zsh, bash
oh my zsh
Bean shell
python
java
#!/bin/bash
Bash
bash
bashrc
bash_profile
/etc bash related
.bash_history
List
ls -alf
ls -r
pwd/who/whoami
mite tty7 :0 09:55 6:42m 5:55 4.16s i3
mite pts/0 :0 16:34 7.00s 0.06s 0.00s w
mite pts/2 :0 14:52 2:23 0.23s 0.11s ssh mkooijman@amsjoslpe11
mite pts/3 :0 16:35 55.00s 0.32s 7:19 gnome-terminal
cat and tac + basic streams
>>
>
1>
2>
2>1
2>&1
|
0 Standard input STDIN_FILENO stdin
1 Standard output STDOUT_FILENO stdout
2 Standard error STDERR_FILENO stderr
ln and mv and rm
-f
-r
Important folders
/usr
/bin
/usr/bin/
/dev/null
/opt
/var
/tmp
/home
/proc
http://www.cs.duke.edu/csl/docs/sysadmin_course/sysadm-72.html
Processes
> ps -e
> ps -f
> ps -ef
> ps axvf
(interactive)
>top
>htop
Kill and Killall
>kill PID
>killall NAME
>kill -9 PID
>killall -9 NAME
Job control
& Run the command in the background > long_cmd &
CTRL-Z Stop the foreground process [Ctrl-z] Stopped
jobs List background processes > jobs
%n Refers to the background number n > fg %1
bg Restart a stopped background process > bg [2] big_job &
fg Bring a background process to the foreground > fg %1
kill Kill a process > kill %2
CTRL-D logout
CTRL-S, CTRL-Q (scroll lock)
>find
http://en.wikipedia.org/wiki/Find
find . -name 'my*'
find . -iname 'my*'
find . -name '*.mp3' -exec chmod 644 {} ;
>wget or GNU wget
>wget http://www.example.com/
>wget --no-check-certificate https://www.
example.com/
>curl
>curl http://www.google.com
>curl -L http://www.google.com
>curl -o mygettext.html http://www.gnu.
org/software/gettext/manual/gettext.html
Xargs
find . -iname ‘*.php’ -print0 | xargs -0 svn add
Navigation and customization
Shift + page up/down
Ctrl + R
var customizations
Credits
Wikimedia foundation for the images used

Contenu connexe

Tendances

Ubuntu Cheat Sheet
Ubuntu Cheat SheetUbuntu Cheat Sheet
Ubuntu Cheat Sheet
Serverless
 
Configuring the boot menu in ubuntu
Configuring the boot menu in ubuntuConfiguring the boot menu in ubuntu
Configuring the boot menu in ubuntu
COMSATS
 
Macoto clonezilla eces_2011-11-26
Macoto clonezilla eces_2011-11-26Macoto clonezilla eces_2011-11-26
Macoto clonezilla eces_2011-11-26
hs1250
 

Tendances (20)

Zsh & fish: better *bash* for hackers
Zsh & fish: better *bash* for hackersZsh & fish: better *bash* for hackers
Zsh & fish: better *bash* for hackers
 
Zookeper
ZookeperZookeper
Zookeper
 
نظم تشغل 1
نظم تشغل 1 نظم تشغل 1
نظم تشغل 1
 
OpenBTS AirPutih
OpenBTS AirPutihOpenBTS AirPutih
OpenBTS AirPutih
 
My First BCC
My First BCCMy First BCC
My First BCC
 
Why Zsh is Cooler than Your Shell
Why Zsh is Cooler than Your ShellWhy Zsh is Cooler than Your Shell
Why Zsh is Cooler than Your Shell
 
Creación de máquinas virtuales basada en kernel usando qemu y virsh
Creación de máquinas virtuales basada en kernel usando qemu y virshCreación de máquinas virtuales basada en kernel usando qemu y virsh
Creación de máquinas virtuales basada en kernel usando qemu y virsh
 
Ubuntu Cheat Sheet
Ubuntu Cheat SheetUbuntu Cheat Sheet
Ubuntu Cheat Sheet
 
Curses
CursesCurses
Curses
 
Linux booting process
Linux booting processLinux booting process
Linux booting process
 
QEMU in Cross building
QEMU in Cross buildingQEMU in Cross building
QEMU in Cross building
 
Ssh2 install
Ssh2 installSsh2 install
Ssh2 install
 
Why zsh is Cooler than Your Shell
Why zsh is Cooler than Your ShellWhy zsh is Cooler than Your Shell
Why zsh is Cooler than Your Shell
 
How_Fast_Are_Computer
How_Fast_Are_ComputerHow_Fast_Are_Computer
How_Fast_Are_Computer
 
Configuring the boot menu in ubuntu
Configuring the boot menu in ubuntuConfiguring the boot menu in ubuntu
Configuring the boot menu in ubuntu
 
How to ride a 100GbE LAN -MEMO-
How to ride a 100GbE LAN -MEMO-How to ride a 100GbE LAN -MEMO-
How to ride a 100GbE LAN -MEMO-
 
懷舊半殘的Win98體驗
懷舊半殘的Win98體驗懷舊半殘的Win98體驗
懷舊半殘的Win98體驗
 
5 Time Saving Bash Tricks
5 Time Saving Bash Tricks5 Time Saving Bash Tricks
5 Time Saving Bash Tricks
 
Macoto clonezilla eces_2011-11-26
Macoto clonezilla eces_2011-11-26Macoto clonezilla eces_2011-11-26
Macoto clonezilla eces_2011-11-26
 
Zsh shell-for-humans
Zsh shell-for-humansZsh shell-for-humans
Zsh shell-for-humans
 

En vedette

Seafield Corporate Presentation - February 2012
Seafield Corporate Presentation - February 2012Seafield Corporate Presentation - February 2012
Seafield Corporate Presentation - February 2012
sffresources
 
Soil experiment
Soil experimentSoil experiment
Soil experiment
newham5-6
 
Using social media professionally sudeep uprety-june 29
Using social media professionally sudeep uprety-june 29Using social media professionally sudeep uprety-june 29
Using social media professionally sudeep uprety-june 29
Sudeep Uprety
 
Soil experiment
Soil experimentSoil experiment
Soil experiment
newham5-6
 
National health
National healthNational health
National health
Alisha_Rum
 
When Should You Retain a Forensic Accountant?
When Should You Retain a Forensic Accountant?When Should You Retain a Forensic Accountant?
When Should You Retain a Forensic Accountant?
Jeff Moore
 
Hipoperfusao oculta
Hipoperfusao oculta Hipoperfusao oculta
Hipoperfusao oculta
wruivo
 

En vedette (20)

Studid
StudidStudid
Studid
 
Tgs komputer
Tgs komputerTgs komputer
Tgs komputer
 
Promotional Bag Ideas by Sinoway
Promotional Bag Ideas by SinowayPromotional Bag Ideas by Sinoway
Promotional Bag Ideas by Sinoway
 
Seafield Corporate Presentation - February 2012
Seafield Corporate Presentation - February 2012Seafield Corporate Presentation - February 2012
Seafield Corporate Presentation - February 2012
 
Didakticheskie materialy
Didakticheskie materialyDidakticheskie materialy
Didakticheskie materialy
 
mpifg_p10_13
mpifg_p10_13mpifg_p10_13
mpifg_p10_13
 
Winnaar #hetbestejebest-prijs
Winnaar #hetbestejebest-prijsWinnaar #hetbestejebest-prijs
Winnaar #hetbestejebest-prijs
 
Sinong Gustong Maging Milyonaryo
Sinong Gustong Maging MilyonaryoSinong Gustong Maging Milyonaryo
Sinong Gustong Maging Milyonaryo
 
Soil experiment
Soil experimentSoil experiment
Soil experiment
 
14463
1446314463
14463
 
Assistive Technology Presentation
Assistive Technology PresentationAssistive Technology Presentation
Assistive Technology Presentation
 
Coda: The sting in the tail - Meetup session 23
Coda: The sting in the tail - Meetup session 23Coda: The sting in the tail - Meetup session 23
Coda: The sting in the tail - Meetup session 23
 
Ceará
CearáCeará
Ceará
 
Using social media professionally sudeep uprety-june 29
Using social media professionally sudeep uprety-june 29Using social media professionally sudeep uprety-june 29
Using social media professionally sudeep uprety-june 29
 
Soil experiment
Soil experimentSoil experiment
Soil experiment
 
National health
National healthNational health
National health
 
When Should You Retain a Forensic Accountant?
When Should You Retain a Forensic Accountant?When Should You Retain a Forensic Accountant?
When Should You Retain a Forensic Accountant?
 
Tom uk soti_final_without video.4.21.15
Tom uk soti_final_without video.4.21.15Tom uk soti_final_without video.4.21.15
Tom uk soti_final_without video.4.21.15
 
The Retail Connection
The Retail ConnectionThe Retail Connection
The Retail Connection
 
Hipoperfusao oculta
Hipoperfusao oculta Hipoperfusao oculta
Hipoperfusao oculta
 

Similaire à Unix for developers

Linux or unix interview questions
Linux or unix interview questionsLinux or unix interview questions
Linux or unix interview questions
Teja Bheemanapally
 
Introduction khgjkhygkjiyhgikjyhgikygkii
Introduction khgjkhygkjiyhgikjyhgikygkiiIntroduction khgjkhygkjiyhgikjyhgikygkii
Introduction khgjkhygkjiyhgikjyhgikygkii
cmdept1
 

Similaire à Unix for developers (20)

Basic linux commands for bioinformatics
Basic linux commands for bioinformaticsBasic linux commands for bioinformatics
Basic linux commands for bioinformatics
 
Slides null puliya linux basics
Slides null puliya linux basicsSlides null puliya linux basics
Slides null puliya linux basics
 
От sysV к systemd
От sysV к systemdОт sysV к systemd
От sysV к systemd
 
Linux or unix interview questions
Linux or unix interview questionsLinux or unix interview questions
Linux or unix interview questions
 
Unix fundamentals
Unix fundamentalsUnix fundamentals
Unix fundamentals
 
BSidesKnoxville 2019 - Unix: The Other White Meat
BSidesKnoxville 2019 - Unix: The Other White MeatBSidesKnoxville 2019 - Unix: The Other White Meat
BSidesKnoxville 2019 - Unix: The Other White Meat
 
Andresen 8 21 02
Andresen 8 21 02Andresen 8 21 02
Andresen 8 21 02
 
A journey through the years of UNIX and Linux service management
A journey through the years of UNIX and Linux service managementA journey through the years of UNIX and Linux service management
A journey through the years of UNIX and Linux service management
 
Unix 3 en
Unix 3 enUnix 3 en
Unix 3 en
 
Introduction-to-Linux.pptx
Introduction-to-Linux.pptxIntroduction-to-Linux.pptx
Introduction-to-Linux.pptx
 
Introduction to-linux
Introduction to-linuxIntroduction to-linux
Introduction to-linux
 
Introduction-to-Linux.pptx
Introduction-to-Linux.pptxIntroduction-to-Linux.pptx
Introduction-to-Linux.pptx
 
Introduction khgjkhygkjiyhgikjyhgikygkii
Introduction khgjkhygkjiyhgikjyhgikygkiiIntroduction khgjkhygkjiyhgikjyhgikygkii
Introduction khgjkhygkjiyhgikjyhgikygkii
 
club course two - unix
club course two - unixclub course two - unix
club course two - unix
 
Rhce ppt
Rhce pptRhce ppt
Rhce ppt
 
Containers with systemd-nspawn
Containers with systemd-nspawnContainers with systemd-nspawn
Containers with systemd-nspawn
 
Linux Knowledge Transfer
Linux Knowledge TransferLinux Knowledge Transfer
Linux Knowledge Transfer
 
UNIX Basics and Cluster Computing
UNIX Basics and Cluster ComputingUNIX Basics and Cluster Computing
UNIX Basics and Cluster Computing
 
Linux Tracing Superpowers by Eugene Pirogov
Linux Tracing Superpowers by Eugene PirogovLinux Tracing Superpowers by Eugene Pirogov
Linux Tracing Superpowers by Eugene Pirogov
 
Adhocr T-dose 2012
Adhocr T-dose 2012Adhocr T-dose 2012
Adhocr T-dose 2012
 

Plus de Mite Mitreski

The core libraries you always wanted - Google Guava
The core libraries you always wanted - Google GuavaThe core libraries you always wanted - Google Guava
The core libraries you always wanted - Google Guava
Mite Mitreski
 
Java2day 2013 : Modern workflows for javascript integration
Java2day 2013 : Modern workflows for javascript integrationJava2day 2013 : Modern workflows for javascript integration
Java2day 2013 : Modern workflows for javascript integration
Mite Mitreski
 
Eclipse 10 years Party
Eclipse 10 years PartyEclipse 10 years Party
Eclipse 10 years Party
Mite Mitreski
 

Plus de Mite Mitreski (9)

Getting all the 99.99(9) you always wanted
Getting all the 99.99(9) you always wanted Getting all the 99.99(9) you always wanted
Getting all the 99.99(9) you always wanted
 
The core libraries you always wanted - Google Guava
The core libraries you always wanted - Google GuavaThe core libraries you always wanted - Google Guava
The core libraries you always wanted - Google Guava
 
Micro service pitfalls voxxed days istanbul 2015
Micro service pitfalls voxxed days istanbul 2015Micro service pitfalls voxxed days istanbul 2015
Micro service pitfalls voxxed days istanbul 2015
 
Devoxx 2014 : Sparky guide to bug free JavaScirpt
Devoxx 2014 : Sparky guide to bug free JavaScirptDevoxx 2014 : Sparky guide to bug free JavaScirpt
Devoxx 2014 : Sparky guide to bug free JavaScirpt
 
Microservice pitfalls
Microservice pitfalls Microservice pitfalls
Microservice pitfalls
 
State of the lambda
State of the lambdaState of the lambda
State of the lambda
 
Java2day 2013 : Modern workflows for javascript integration
Java2day 2013 : Modern workflows for javascript integrationJava2day 2013 : Modern workflows for javascript integration
Java2day 2013 : Modern workflows for javascript integration
 
Google Guava for cleaner code
Google Guava for cleaner codeGoogle Guava for cleaner code
Google Guava for cleaner code
 
Eclipse 10 years Party
Eclipse 10 years PartyEclipse 10 years Party
Eclipse 10 years Party
 

Dernier

Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 

Dernier (20)

BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 

Unix for developers