About Linux OSY Microproject
About Linux OSY Microproject
lOMoARcPSD|24815077
MICRO PROJECT
On
G.S. Mandal’s
Department of Computer
Engineering Marathwada Institute of
Technology, Polytechnic, Aurangabad.
MAHARASHTRA STATE
BOARD OF TECHNICAL EDUCATION
CERTIFICATE
This is to certify that : -
Roll Exam
Name of Student Enrollment No.
No. Seat No.
95 Pavan Kaduba Buchude 2000660018 200797
Principal
Marathwada Institute of Technology,
Polytechnic, Aurangabad
lOMoARcPSD|24815077
INDEX
Annexure-IV Micro Project Teacher Evaluation Sheet
3.0 Proposed Methodology (procedure in brief that will be followed to do the micro-project
in about 100-200 words.)
4.0 Action Plan (Sequence and time required for major activity.)
5.0 Resources required (major resources such as row material, some machining facility,
software etc.)
1.0 Rationale (Importance of the project, in about 30 to 50 words. This is a modified version
of the earlier one written after the work)
3.0 Course Outcomes Achieved (Add to the earlier list is more Cos are addressed)
5.0 Actual Methodology Followed (Write step wise work done, data collected and its
analysis (if any). The contribution of individual member may also be noted.)
7.0 Outputs of the micro projects (Drawings of the prototype, drawing of survey, presentation
of collected data, findings etc.)
Annexure-IV
Micro Project
(Teacher Evaluation Sheet)
Signature of Teacher :
Annexure-I
Micro-Project Proposal
(Format for Micro-Project Proposal About 1-2 pages)
3.0 Proposed Methodology (Procedure in brief that will be followed to do the micro-
project in about 100-200 words.)
4.0 Action Plan (Sequence and time required for major activity.)
Pavan Buchude,
19-12-21 20-12-21 Nikhil
3 Collection of Data Burkhunde
Jagdish
20-12-21 21-12-21 Phad,Ravi Wagh
4 Formulation of content
Nikhil
21-12-21 21-12-21 Burkhunde,Pavan
5 Compilation & report Buchude,
Jagdhish Phad,
presentation Ravi Wagh
lOMoARcPSD|24815077
5.0 Resources required (major resources such as row material, some machining
facility, software etc.)
Ubuntu 1
2 Operating System
Linux Utilities 1
3 Wikipedia
Annexure-II
Micro-Project Report
(Format for Micro-Project Report minimum 4 pages)
The command line is your direct access to a computer. It's where you ask software to
perform hardware actions that point-and-click graphical user interfaces (GUIs) simply can't
ask. Command lines are available on many operating systems—proprietary or open source. But
it’s usually associated with Linux, because both command lines and open-source software,
together, give users unrestricted access to their computer.
3.0 Course Outcomes Achieved (Add to the earlier list is more Cos are addressed)
5.0 Actual Methodology Followed (Write step wise work done, data collected and its
analysis (if any). The contribution of individual member may also be noted.)
First, we all are discuss about our project topic that’s Linux Utilities then we collect all
information about our topic through the books and Wikipediae and then we start to peppering our
project report we study all 50 Linux commands and we executed it in Linux terminal and we got
output of every commands then we take screenshot of out put then we attach it on report.
1. pwd Command
The pwd command is used to display the location of the current working directory.
Syntax:
1. pwd
2. mkdir Command
The mkdir command is used to create a new directory under any directory.
Syntax:
Output:
lOMoARcPSD|24815077
3. rmdir Command
Syntax:
Output:
4. ls Command
Syntax:
ls
Output:
lOMoARcPSD|24815077
5. cd Command
Syntax:
cd <directory name>
Output:
6. touch Command
The touch command is used to create empty files. We can create multiple empty files by
executing it once.
Syntax:
Output:
lOMoARcPSD|24815077
7. cat Command
The cat command is a multi-purpose utility in the Linux system. It can be used to create a file,
display content of the file, copy the content of one file to another file, and more.
Syntax:
Press "CTRL+ D" keys to save the file. To display the content of the file, execute it as follows:
Output:
8. rm Command
Syntax:
rm <file name>
lOMoARcPSD|24815077
Output:
9. cp Command
Syntax:
Output:
10. mv Command
The mv command is used to move a file or a directory form one location to another location.
Syntax:
path> Output:
lOMoARcPSD|24815077
The rename command is used to rename files. It is useful for renaming a large group of files.
Syntax:
For example, to convert all the text files into pdf files, execute the below command:
Output:
The head command is used to display the content of a file. It displays the first 10 lines of a file.
Syntax:
Output:
The tail command is similar to the head command. The difference between both commands is
that it displays the last ten lines of the file content. It is useful for reading the error message.
Syntax:
1. tail <file
name> Output:
lOMoARcPSD|24815077
The tac command is the reverse of cat command, as its name specified. It displays the file
content in reverse order (from the last line).
Syntax:
1. tac <file
name> Output:
The more command is quite similar to the cat command, as it is used to display the file content in
the same way that the cat command does. The only difference between both commands is that, in
case of larger files, the more command displays screenful output at a time.
In more command, the following keys are used to scroll the page:
Syntax:
Output:
The less command is similar to the more command. It also includes some extra features such as
'adjustment in width and height of the terminal.' Comparatively, the more command cuts the
output in the width of the terminal.
Syntax:
Output:
17. su Command
The su command provides administrative access to another user. In other words, it allows access
of the Linux shell to another user.
Syntax:
1. su <user name>
Output:
18. id Command
The id command is used to display the user ID (UID) and group ID (GID).
Syntax:
1. id
lOMoARcPSD|24815077
Output:
Syntax:
1. useradd username
Output:
The passwd command is used to create and change the password for a user.
Syntax:
1. passwd <username>
Output:
lOMoARcPSD|24815077
Syntax:
1. groupadd <group
name> Output:
The cat command is also used as a filter. To filter a file, it is used inside pipes.
Syntax:
Output:
lOMoARcPSD|24815077
The cut command is used to select a specific column of a file. The '-d' option is used as a
delimiter, and it can be a space (' '), a slash (/), a hyphen (-), or anything else. And, the '-f' option
is used to specify a column number.
Syntax:
Output:
The grep is the most powerful and used filter in a Linux system. The 'grep' stands for "global
regular expression print." It is useful for searching the content from a file. Generally, it is used
with the pipe.
Syntax:
Output:
The 'comm' command is used to compare two files or streams. By default, it displays three
columns, first displays non-matching items of the first file, second indicates the non-matching
item of the second file, and the third column displays the matching items of both files.
Syntax:
Output:
The sed command is also known as stream editor. It is used to edit files using a regular
expression. It does not permanently edit files; instead, the edited content remains only on
display. It does not affect the actual file.
lOMoARcPSD|24815077
Syntax:
Output:
The tee command is quite similar to the cat command. The only difference between both filters is
that it puts standard input on standard output and also write them into a file.
Syntax:
Output:
28. tr Command
The tr command is used to translate the file content like from lower case to upper case.
lOMoARcPSD|24815077
Syntax:
Output:
The uniq command is used to form a sorted list in which every word will occur only once.
Syntax:
Output:
30. wc Command
The wc command is used to count the lines, words, and characters in a file.
Syntax:
1. wc <file name>
lOMoARcPSD|24815077
Output:
31. od Command
The od command is used to display the content of a file in different s, such as hexadecimal, octal,
and ASCII characters.
Syntax:
Output:
Syntax:
1. sort <file
name> Output:
The gzip command is used to truncate the file size. It is a compressing tool. It replaces the
original file by the compressed file having '.gz' extension.
Syntax:
Output:
lOMoARcPSD|24815077
The gunzip command is used to decompress a file. It is a reverse operation of gzip command.
Syntax:
Output:
The find command is used to find a particular file within a directory. It also supports various
options to find a file such as byname, by type, by date, and more.
Syntax:
Output:
The locate command is used to search a file by file name. It is quite similar to find command; the
difference is that it is a background process. It searches the file in the database, whereas the find
command searches in the file system. It is faster than the find command. To find the file with the
locates command, keep your database updated.
Syntax:
Output:
lOMoARcPSD|24815077
The date command is used to display date, time, time zone, and more.
Syntax:
1. date
Output:
The cal command is used to display the current month's calendar with the current date
highlighted.
Syntax:
1. cal<
lOMoARcPSD|24815077
Output:
The sleep command is used to hold the terminal by the specified amount of time. By default, it
takes time in seconds.
Syntax:
1. sleep <time>
Output:
Syntax:
1. time
Output:
lOMoARcPSD|24815077
Syntax:
Output:
42. df Command
The df command is used to display the disk space used in the file system. It displays the output
as in the number of used blocks, available blocks, and the mounted directory.
Syntax:
1. df
lOMoARcPSD|24815077
Output:
The mount command is used to connect an external device file system to the system's file
system.
Syntax:
<directory> Output:
Linux exit command is used to exit from the current shell. It takes a parameter as a number and
exits the shell with a return of status number.
lOMoARcPSD|24815077
Syntax:
1. exit
Output:
Syntax:
1. clear
Output:
After pressing the ENTER key, it will clear the terminal screen
lOMoARcPSD|24815077
46. ip Command
Syntax:
1. ip a or ip addr
Output:
Linux ssh command is used to create a remote connection through the ssh protocol.
Syntax:
1. ssh user_name@host(IP/Domain_name)</p>
The mail command is used to send emails from the command line.
Syntax:
lOMoARcPSD|24815077
The ping command is used to check the connectivity between two nodes, that is whether the
server is connected. It is a short form of "Packet Internet Groper."
Syntax:
1. ping <destination>
Output:
The host command is used to display the IP address for a given domain name and vice versa. It
performs the DNS lookups for the DNS Query.
Syntax:
Output:
lOMoARcPSD|24815077
lOMoARcPSD|24815077
2. ping