SlideShare a Scribd company logo
1 of 39
Download to read offline
https://github.com/syaifulahdan/os­practice|Operating System Practice |1 to 39 
OPERATING SYSTEMS PRACTICE
Basic Commands Linux Operating System
Practice : 1

Instruction Format on Linux Operating System

Basic Commands on Linux Operating System
https://github.com/syaifulahdan/os­practice|
https://github.com/syaifulahdan/os­practice|Operating System Practice |2 to 39 
A. Objectives
1. Use basic commands for user information
2. Getting to know the format of the instructions on the Linux OS
3. Using basic instructions on Linux OS
4. Learn basic utilities on Linux OS
https://github.com/syaifulahdan/os­practice|Operating System Practice |3 to 39 
B. Basic Theory
https://github.com/syaifulahdan/os­practice|Operating System Practice |4 to 39 

Every LINUX user must have a login name (user
account) that must be registered to the system
administrator.

The login name is limited to a maximum of 8
characters and is generally in lower case

Prompt of bash shell on Linux using the sign "$".

A Linux session consists of:

Login

Working with Shell / running applications

Logout
https://github.com/syaifulahdan/os­practice|Operating System Practice |5 to 39 
Linux Instruction Format
• $ Instruction Name [option] [argument]
• option begins with the sign – (minus).
• Arguments can be empty, one or more
arguments (parameters).
• Example:
$ ls : No arguments
https://github.com/syaifulahdan/os­practice|Operating System Practice |6 to 39 
•
•
•
•
•
•

•
•
•
$ ls : No arguments
$ ls ­a  : The option is –a = all, no arguments
$ ls /bin : no option , argument is /bin
$ ls /bin/etc/usr : no option , argument is /bin/etc/user
$ ls ­l /usr1 : 1 option and 1 argument
L = long list
$ ls ­l ­a 
/bin/etc
: 2 option and 2 argument
L = long list, a (all user)
https://github.com/syaifulahdan/os­practice|
https://github.com/syaifulahdan/os­practice|Operating System Practice |7 to 39 
Manual

Linux provides manual on-line.

Some keyboard keys are important in the use
of the manual is
7
Q : To exit the man program
<Enter> : Down, line by line
<Spasi> : Down, per page
b : Back to the top, 1 page
/ : search text (string)
n : Continuing the previous string search
https://github.com/syaifulahdan/os­practice|Operating System Practice |8 to 39 
Manual is divided into several Section
1 : User commands
2 : System calls
3 : Library calls
4 : Devices
5 : File formats
6 : Games
7 : Miscellaneous
8 : System commands
19 : Kernel internals
N : Tcl/Tk command
https://github.com/syaifulahdan/os­practice|Operating System Practice |9 to 39 
C. Step by Step
https://github.com/syaifulahdan/os­practice|Operating System Practice |10 to 39 
1. Turn on the computer
2. Sign in to the Linux operating system.
3. Wait until there is a login command to fill in the
user name and password.
username : username
password : ***********
https://github.com/syaifulahdan/os­practice|Operating System Practice |11 to 39 
4. To exit the system use the command logout
or exit
5. Use the command for user information:
6. Use basic commands :
March 3, 2010
date, cal, man, clear, apropos, whatis
id, hostname, uname, w, who, whoami,
chfn, finger
https://github.com/syaifulahdan/os­practice|Operating System Practice |12 to 39 

Use basic commands for file manipulation:
Praktikum Sistem OperasiMarch 3, 2010 12
 ls
 File
 Cat
 More
 Pg
 Cp
 Mv
 Rm
 grep
https://github.com/syaifulahdan/os­practice|Operating System Practice |13 to 39 
D. Experiment
https://github.com/syaifulahdan/os­practice|Operating System Practice |14 to 39 

Experiment 1 : See identification (id
and group id number)

Replace the prompt with "$"
[syaiful@tekno]$ id
[syaiful@tekno]$ PS1=”$”
https://github.com/syaifulahdan/os­practice|Operating System Practice |15 to 39 

Experiment 2: View the date and
calendar system

View the current date

View the calendar
$ date
$ cal 10 2018
$ cal -y
https://github.com/syaifulahdan/os­practice|Operating System Practice |16 to 39 

Experiment 3 : See the machine
identity

Experiment 4 : See who's active

Knowing who is active
Praktikum Sistem OperasiMarch 3, 2010 16
$ hostname1
$ uname
$ uname -a
$ w
$ who
$ whoami
https://github.com/syaifulahdan/os­practice|Operating System Practice |17 to 39 

Changing finger information
$ chfn orange-server
Full Name :
Room Number :
Work Number :
Work phone :
Finger information changed.
https://github.com/syaifulahdan/os­practice|Operating System Practice |18 to 39 

View finger information

Experiment 5 : Using manual
$ finger
$ finger [username]
$ man ls
$ man man
$ man -k file
$ man 5 passwd
https://github.com/syaifulahdan/os­practice|Operating System Practice |19 to 39 

Experiment 6 : Clears the screen

Experiment 7 : Search for commands
whose descriptions contain the keywords
searched for.
19
$ clear
$ apropos date
$ apropos mail
$ apropos telnet
https://github.com/syaifulahdan/os­practice|Operating System Practice |20 to 39 

Experiment 8 : Finding the exact
command is the same as the key you are
looking for.

Experiment 9 : File and directory
manipulation

Displays current working directory
20
$ whatis date
$ ls
https://github.com/syaifulahdan/os­practice|Operating System Practice |21 to 39 

View all files and attributes

displays all files per column

Displays all files or directories without any
sorting process
$ ls -l
$ ls -a
$ ls -f
https://github.com/syaifulahdan/os­practice|Operating System Practice |22 to 39 

Displays the contents of a directory

Display the contents of the root directory

Displays all files or directories by marking
$ ls /usr
$ ls /
https://github.com/syaifulahdan/os­practice|Operating System Practice |23 to 39 

Displays all files or directories by marking
/ : for directories
* : for files that are executable,
@ : for the symbolic link file
= : for the socket
% : Without
| : for FIFO
$ ls -F /etc
https://github.com/syaifulahdan/os­practice|Operating System Practice |24 to 39 

Displays a complete file or directory that
consists of the file name, size, modified
date, owner, group and mode or its
attributes.

Displays all files and directory contents.
This argument will cause the process to
run longer, if the process will be stopped
can use ^ c
$ ls -R /usr
$ ls -l /etc
https://github.com/syaifulahdan/os­practice|Operating System Practice |25 to 39 

Experiment 10 : View the file type

Experiment 11 : Copying files

Copying a file. Give the -i option for
interactive questions when the file already
exists.
25
$ file
$ file *
$ file /bin/ls
$ cp -i [sourcefile] [filecopy]
https://github.com/syaifulahdan/os­practice|Operating System Practice |26 to 39 26
$ cp /etc/group f1
$ ls -l
$ cp -i f1 f2
$ cp -i f1 f2
https://github.com/syaifulahdan/os­practice|Operating System Practice |27 to 39 

Copy to directory.
27
$ mkdir backup
$ cp f1 f2
$ cp f1 f2 f3 backup
$ ls backup
$ cd backup
$ ls
https://github.com/syaifulahdan/os­practice|Operating System Practice |28 to 39 

Experiment 12 : View the contents of
the file

Using paint instructions

Displays files per one full screen
28
$ cat f1
$ more f1
$ pg f1
https://github.com/syaifulahdan/os­practice|Operating System Practice |29 to 39 

Experiment 13 : Rename the file

Using mv instruction

Displays Moving files to another directory.
per one full screen. If the last argument is
the name of the directory, the files will be
moved to that directory.
29
$ mv f1 prog.txt
$ ls
https://github.com/syaifulahdan/os­practice|Operating System Practice |30 to 39 

Displays Moving files to another directory. per
one full screen. If the last argument is the
name of the directory, the files will be moved
to that directory.
30
$ mkdir mydir
$ mv f1 f2 f3 mydir
https://github.com/syaifulahdan/os­practice|Operating System Practice |31 to 39 

Experiment 14 : Deleting files
31
$ rm f1
$ cp mydir /f1 f1
$ cp mydir /f2 f2
$ rm f1
$ rm -i f2
https://github.com/syaifulahdan/os­practice|Operating System Practice |32 to 39 

Experiment 15 : Search for words or
phrases in a file.
$ grep root /etc/passwd
$ grep “:0:” /etc/passwd
$ grep student /etc/passwd
https://github.com/syaifulahdan/os­practice|Operating System Practice |33 to 39 
E. Exercise
https://github.com/syaifulahdan/os­practice|Operating System Practice |34 to 39 

Exercise : Practice 1
1 Change the finger information on your computer.
2 Look at the active users on your computer.
3 What commands are used to view a full year's calendar.
4 How can you see the manual of the cal command.
5 How to view ls manual commands with sort keywords.
6 What is the display for the ls ­a ­l and ls ­al commands.
7 Show all files including hidden files in the /etc directory.
https://github.com/syaifulahdan/os­practice|Operating System Practice |35 to 39 
8 Show all complete files in the /etc directory.
9
Make directory exercise1 in active directory, then copy /etc/group
file to tes1, tes2 and tes3 file in this directory.
10 Display the contents of the test1 file per one full screen.
11 Move the test1 and tes2 files to the home directory.
12 Delete tes1 and tes2 files with confirmation.
https://github.com/syaifulahdan/os­practice|Operating System Practice |36 to 39 

Practice Report : Practice 1
1.Summarize Experiments 1 through experiment 15 in
table form as below:
Command Description Format
id
date
cal
hostname
uname
w
whoami
chfn
https://github.com/syaifulahdan/os­practice|Operating System Practice |37 to 39 
appropos
ls ­l
ls ­a
ls ­f
ls ­F /etc
cp ­i
mv
mkdir
rm
grep
https://github.com/syaifulahdan/os­practice|Operating System Practice |38 to 39 
2. Analyze the exercises that have been done.
2. Give a conclusion from this lab.
https://github.com/syaifulahdan/os­practice|Operating System Practice |39 to 39 

More Related Content

What's hot

101 3.4 use streams, pipes and redirects
101 3.4 use streams, pipes and redirects101 3.4 use streams, pipes and redirects
101 3.4 use streams, pipes and redirects
Acácio Oliveira
 
Quize on scripting shell
Quize on scripting shellQuize on scripting shell
Quize on scripting shell
lebse123
 
Using Unix
Using UnixUsing Unix
Using Unix
Dr.Ravi
 
Unix And C
Unix And CUnix And C
Unix And C
Dr.Ravi
 
Unix Basics
Unix BasicsUnix Basics
Unix Basics
Dr.Ravi
 
Talk Unix Shell Script 1
Talk Unix Shell Script 1Talk Unix Shell Script 1
Talk Unix Shell Script 1
Dr.Ravi
 

What's hot (19)

101 3.4 use streams, pipes and redirects
101 3.4 use streams, pipes and redirects101 3.4 use streams, pipes and redirects
101 3.4 use streams, pipes and redirects
 
Linux midterm quiz
Linux midterm quizLinux midterm quiz
Linux midterm quiz
 
Linux intro 2 basic terminal
Linux intro 2   basic terminalLinux intro 2   basic terminal
Linux intro 2 basic terminal
 
Unix
UnixUnix
Unix
 
Quize on scripting shell
Quize on scripting shellQuize on scripting shell
Quize on scripting shell
 
SGN Introduction to UNIX Command-line 2015 part 2
SGN Introduction to UNIX Command-line 2015 part 2SGN Introduction to UNIX Command-line 2015 part 2
SGN Introduction to UNIX Command-line 2015 part 2
 
Using Unix
Using UnixUsing Unix
Using Unix
 
POS 433 Entire Course NEW
POS 433 Entire Course NEWPOS 433 Entire Course NEW
POS 433 Entire Course NEW
 
Unix And C
Unix And CUnix And C
Unix And C
 
UNIX Command Cheat Sheets
UNIX Command Cheat SheetsUNIX Command Cheat Sheets
UNIX Command Cheat Sheets
 
Linux powerpoint
Linux powerpointLinux powerpoint
Linux powerpoint
 
Unix Basics
Unix BasicsUnix Basics
Unix Basics
 
Installing tensorflow object detection on raspberry pi
Installing tensorflow object detection on raspberry piInstalling tensorflow object detection on raspberry pi
Installing tensorflow object detection on raspberry pi
 
python-message-0.1.0
python-message-0.1.0python-message-0.1.0
python-message-0.1.0
 
Talk Unix Shell Script 1
Talk Unix Shell Script 1Talk Unix Shell Script 1
Talk Unix Shell Script 1
 
Operating System Assignment Help
Operating System Assignment HelpOperating System Assignment Help
Operating System Assignment Help
 
intro unix/linux 10
intro unix/linux 10intro unix/linux 10
intro unix/linux 10
 
Logging with Monolog
Logging with MonologLogging with Monolog
Logging with Monolog
 
Computer Science Homework Help
Computer Science Homework HelpComputer Science Homework Help
Computer Science Homework Help
 

Similar to Operating System Practice : Meeting 2-basic commands linux operating system-slide

Linux admin interview questions
Linux admin interview questionsLinux admin interview questions
Linux admin interview questions
Kavya Sri
 
Setup of EDA tools and workstation environment variables in NCTU 307 Lab. wor...
Setup of EDA tools and workstation environment variables in NCTU 307 Lab. wor...Setup of EDA tools and workstation environment variables in NCTU 307 Lab. wor...
Setup of EDA tools and workstation environment variables in NCTU 307 Lab. wor...
Michael Lee
 
Power point on linux commands,appache,php,mysql,html,css,web 2.0
Power point on linux commands,appache,php,mysql,html,css,web 2.0Power point on linux commands,appache,php,mysql,html,css,web 2.0
Power point on linux commands,appache,php,mysql,html,css,web 2.0
venkatakrishnan k
 

Similar to Operating System Practice : Meeting 2-basic commands linux operating system-slide (20)

Operating System Practice : Meeting 8- bekerja dengan bash shell-b-slide
Operating System Practice :  Meeting 8- bekerja dengan bash shell-b-slideOperating System Practice :  Meeting 8- bekerja dengan bash shell-b-slide
Operating System Practice : Meeting 8- bekerja dengan bash shell-b-slide
 
50 Most Frequently Used UNIX Linux Commands -hmftj
50 Most Frequently Used UNIX  Linux Commands -hmftj50 Most Frequently Used UNIX  Linux Commands -hmftj
50 Most Frequently Used UNIX Linux Commands -hmftj
 
Operating System Practice : Meeting 3 - operasi input output-slide
Operating System Practice : Meeting 3 - operasi input output-slideOperating System Practice : Meeting 3 - operasi input output-slide
Operating System Practice : Meeting 3 - operasi input output-slide
 
50 most frequently used unix linux commands (with examples)
50 most frequently used unix   linux commands (with examples)50 most frequently used unix   linux commands (with examples)
50 most frequently used unix linux commands (with examples)
 
Introducing Ansible
Introducing AnsibleIntroducing Ansible
Introducing Ansible
 
50 most frequently used unix
50 most frequently used unix50 most frequently used unix
50 most frequently used unix
 
50 most frequently used unix
50 most frequently used unix50 most frequently used unix
50 most frequently used unix
 
Operating System Practice : Meeting 5- process and manajemen proces-a-slide
Operating System Practice : Meeting 5- process and manajemen proces-a-slideOperating System Practice : Meeting 5- process and manajemen proces-a-slide
Operating System Practice : Meeting 5- process and manajemen proces-a-slide
 
Linux admin interview questions
Linux admin interview questionsLinux admin interview questions
Linux admin interview questions
 
Sandy Report
Sandy ReportSandy Report
Sandy Report
 
Sandy Report
Sandy ReportSandy Report
Sandy Report
 
Linux advanced privilege escalation
Linux advanced privilege escalationLinux advanced privilege escalation
Linux advanced privilege escalation
 
Linux
LinuxLinux
Linux
 
linux cmds.pptx
linux cmds.pptxlinux cmds.pptx
linux cmds.pptx
 
Operating System Practice : Meeting 6- process and manajemen proces-b-slide
Operating System Practice : Meeting 6- process and manajemen proces-b-slideOperating System Practice : Meeting 6- process and manajemen proces-b-slide
Operating System Practice : Meeting 6- process and manajemen proces-b-slide
 
Setup of EDA tools and workstation environment variables in NCTU 307 Lab. wor...
Setup of EDA tools and workstation environment variables in NCTU 307 Lab. wor...Setup of EDA tools and workstation environment variables in NCTU 307 Lab. wor...
Setup of EDA tools and workstation environment variables in NCTU 307 Lab. wor...
 
Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...
Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...
Operating System Practice : Meeting 4 - operasi file dan struktur direktori-s...
 
Introduction to linux day-3
Introduction to linux day-3Introduction to linux day-3
Introduction to linux day-3
 
Power point on linux commands,appache,php,mysql,html,css,web 2.0
Power point on linux commands,appache,php,mysql,html,css,web 2.0Power point on linux commands,appache,php,mysql,html,css,web 2.0
Power point on linux commands,appache,php,mysql,html,css,web 2.0
 
Linux presentation
Linux presentationLinux presentation
Linux presentation
 

More from Syaiful Ahdan

More from Syaiful Ahdan (20)

Sertifikat EC00202128391
 Sertifikat EC00202128391 Sertifikat EC00202128391
Sertifikat EC00202128391
 
SP2JPB - Aplikasi Sistem Pelayanan Pemesanan Jasa Perbaikan Pada Bengkel Alam...
SP2JPB - Aplikasi Sistem Pelayanan Pemesanan Jasa Perbaikan Pada Bengkel Alam...SP2JPB - Aplikasi Sistem Pelayanan Pemesanan Jasa Perbaikan Pada Bengkel Alam...
SP2JPB - Aplikasi Sistem Pelayanan Pemesanan Jasa Perbaikan Pada Bengkel Alam...
 
Sertifikat ec00202059774
Sertifikat ec00202059774Sertifikat ec00202059774
Sertifikat ec00202059774
 
Sertifikat ec00202059775
Sertifikat ec00202059775Sertifikat ec00202059775
Sertifikat ec00202059775
 
Sertifikat EC00202045078
Sertifikat EC00202045078Sertifikat EC00202045078
Sertifikat EC00202045078
 
Sertifikat EC00202044723
 Sertifikat EC00202044723 Sertifikat EC00202044723
Sertifikat EC00202044723
 
Sertifikat EC00202023523
Sertifikat EC00202023523Sertifikat EC00202023523
Sertifikat EC00202023523
 
Sertifikat EC00201826309
Sertifikat EC00201826309Sertifikat EC00201826309
Sertifikat EC00201826309
 
Sertifikat EC00202023149
Sertifikat EC00202023149Sertifikat EC00202023149
Sertifikat EC00202023149
 
Sertifikat EC00202022868
Sertifikat EC00202022868Sertifikat EC00202022868
Sertifikat EC00202022868
 
Sertifikat EC00202021343
Sertifikat EC00202021343Sertifikat EC00202021343
Sertifikat EC00202021343
 
Sertifikat EC00202022755
Sertifikat EC00202022755Sertifikat EC00202022755
Sertifikat EC00202022755
 
Sertifikat EC00201987196
Sertifikat EC00201987196Sertifikat EC00201987196
Sertifikat EC00201987196
 
Sertifikat EC00201856484
Sertifikat EC00201856484Sertifikat EC00201856484
Sertifikat EC00201856484
 
Sertifikat EC00201856352
Sertifikat EC00201856352Sertifikat EC00201856352
Sertifikat EC00201856352
 
Sertifikat EC00201856994
Sertifikat EC00201856994Sertifikat EC00201856994
Sertifikat EC00201856994
 
Sertifikat EC00201856895
Sertifikat EC00201856895Sertifikat EC00201856895
Sertifikat EC00201856895
 
Meeting 2 introdcution network administrator
Meeting 2   introdcution network administratorMeeting 2   introdcution network administrator
Meeting 2 introdcution network administrator
 
Pertemuan 5
Pertemuan 5Pertemuan 5
Pertemuan 5
 
Pertemuan 4
Pertemuan 4Pertemuan 4
Pertemuan 4
 

Recently uploaded

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Recently uploaded (20)

Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
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
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
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
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
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
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
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...
 
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
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 

Operating System Practice : Meeting 2-basic commands linux operating system-slide