Chapter-1-NSA
Chapter-1-NSA
College of Informatics
Dep’t of Computer Science
Course Title: Network and System Administration
March-2025
Outlines:
• Introduction
• Objectives/Goals, Challenges and Common Practices
• Overview of the OSs
• Unix-like Systems Vs Windows Systems
• Linux Distributions and UIs
• Linux Operations Review
• Essential Shell Commands
• Advanced Shell Features
Introduction to NSA, What is a System?
What is a System?
• The dictionary definition of a system is “a set of things working
together as parts of a mechanism or an interconnecting network.”
• System is an organized collection of computers interacting with a
group of users.
• A system is comprised of five primary elements: architecture, modules,
components, interfaces, and data.
Slide #48
Network and System Administration (BHU/CS)
...cont’d
The ancestor of all directories on the system; all other directories
are subdirectories of this directory, either directly or through other
subdirectories.
Essential tools and other programs (or binaries).
Files representing the system's various hardware devices. For
example, you use the file `/dev/cdrom' to access the CD−ROM drive.
Miscellaneous system configuration files, startup files, etc.
The home directories for all of the system's users.
Essential system library files used by tools in `/bin'.
Slide #55
Network and System Administration (BHU/CS)
...cont’d
1. Symbolic mode
We use symbol for giving permission to the users and its format is chmod
command is followed by string and then the name of file.
Format: chmod + string + file name.
The string has three parts
a) User: (u – user, g – group, o – others)
b) To access or to deny: (+ to access and – to deny)
c) Permission: (r – read, w – write, x - execute)
Example: chmod u + rwx A.txt
: chmod uo – rw A.txt
Slide #56
Network and System Administration (BHU/CS)
...cont’d
2. Absolute mode
We use number
Format: chmod + number + file name
The number has three parts
a) 4 – read
b) 2 – write
c) 1 – execute
d) 0 – none
Example: chmod 764 A.txt
:chmod 777 A.txt Slide #57
Network and System Administration (BHU/CS)
NETWORK & SYSTEMS ADMINISTRATORS DO THE FOLLOWING:
• Determine an organization’s network and computer system needs
before setting up
• Install all network hardware and software and make needed
upgrades and repairs
• Maintain network and computer system security and ensure that all
systems are operating correctly
• Collect data in order to evaluate and optimize network or system
performance