SlideShare a Scribd company logo
Unix System
Administration
Unit V
Device Files
The definition of a file has been broadened by unix by declaring all the physical devices as a file. It
includes tapes, printer, floppy drive, hard disks and terminals.
Any output directed to it will be reflected onto the respective physical associative with the filename.
Whenever you are issuing a command to print a file, actually you are directing the file’s output to the
file associated with the printer. The kernel takes care of this mapping, these special files to respective
devices.
$ls –l /dev
This listing will reveal two vital points:
1. Device files can be grouped into mainly two categories block and character devices depending on
the first character of the permission field (b or c).
2. The fifth field–normally representing the size for other files–consist of a pair of numbers (major
and minor numbers). A device file contains no data.
Block and Character devices
Floppy drive, cdrom, hard disk comes into this section because to whenever a user
performs a write operation firstly it is written into chunks or blocks. And when it
performs the read operation, the buffer cache accessed the recently used data. So
these devices are using buffer and writing there data into blocks for such devices
prefix ‘b’ is used.
The terminal, tape drive and printer are character special devices because the
read/write operation ignores the buffer cache and access the device directly.
Major and Minor No
The set of routines is requires to operate specific devices is known as device drivers.
When a device is called the kernel passes some parameters for it to act properly. So
the kernel must know not only the type of device but also certain details of it (like
density, partition no of it).
The fifth column shows the two no. which are major and minor numbers, major no.
shows actually the type of device all hard disk or same kind of hardware will have the
same major numbers but the minor will be different.
Minor no. tells the kernel about the parameters to operate the particular device.
The UNIX File System
etc : Contains all system configuration files and the files which maintain information about the user and
group.
Bin : Contains all binary executables
usr : default directory provided by UNIX OS to create users home directories and contains manual pages
tmp: System or users temporary files which will be removed when the system reboots.
dev: Contains all device files i.e logical names to physical devices.
devices : Contains all the device files. i.e. physical names to physical devices.
home : default directory allocated for the home directories of normal users when the administrator don’t
specify any other directory.
var : contains all the system log files and message files.
sbin : Contains all the system administrator executables files.
Partitions
Partition divides hard disk into many logically independent disk and accessed by its own
device files. And to use a partition, it is requires to create a file system on it. File system
defines a directory structure. Some rules and the advantages of the partitions are:
1. Data is growing day by day but a partition should restrict it spill it over to other partition.
2. If one area is corrupted then other should be shielded for that harmful things which
corrupt that area.
3. If the system have adequate number of partitions, each partition can be backed up
separately into a single volume of tape. The administrator can have different backup
schedules for the different partitions.
File System
In unix is configured with multiple file system where each has its own directory headed by
root . but usually we see one root that’s because all have the same file system and becomes
single one at a time of use.
Each file system is organized in a sequence of blocks of 1024 bytes and generally has three
four components.
1. The boot block – contains a small boot program.
2. The super block – it contains global information about the file system and it also maintains
a free list of inodes and data blocks that can be immediately allocated be the kernel when
creating a file.
3. The inode block – contains a table for every file system. All attributes of a file or directory
stored in this area except the name of the file.
4. The data block – contains the files or programs of the user.
File System Components
Inode Blocks – every file has an inode – a 128 byte table that contains virtually everything you could possibly need to know about a file. All
inodes are stored into a contiguous inode blocks. Each 128 byte inode contains –
1.File type (regular, directory, device etc…)
Number of links
Numeric user id of the user
Numeric group user id of the user.
File mode
Number of bytes in a file
Date and time of the last modification of the file data.
Date and time of last access of the file data.
Date and time of last change of the inode.
The array of 15 pointers to the file.
Whenever a file is opened its inode is copied to the memory inode table and then kept synchronizing periodically with the disk copy.
And 15 arrays are required to get the different-2 information about a file using ls command.
Mounting and Un-mounting File System
Before mounting the file system to the we need to check the logical name of it by
issuing command
$ sudo fdisk –l
How to mount/unmount Windows partitions (FAT) manually, and allow all users to
read/write -
e.g. Assumed that /dev/hda1 is the location of Windows partition (FAT)
Local mount folder: /media/windows
* To mount Windows partition
$ sudo mkdir /media/windows
$ sudo mount /dev/hda1 /media/windows/ -t vfat -o iocharset=utf8,umask=000
* To unmount Windows partition
$ sudo umount /media/windows/
How to mount/unmount Windows partitions (FAT) manually, and allow all users to
read/write -
e.g. Assumed that /dev/hda1 is the location of Windows partition (FAT)
Local mount folder: /media/windows
* To mount Windows partition
$ sudo mkdir /media/windows
$ sudo mount /dev/hda1 /media/windows/ -t vfat -o iocharset=utf8,umask=000
* To unmount Windows partition
$ sudo umount /media/windows/
How to mount/unmount network folders manually, and allow all users to read/write -
e.g. Assumed that network connections have been configured properly
Network computer's IP: 192.168.0.1
Network computer's Username: myusername
Network computer's Password: mypassword
Shared folder's name: linux
Local mount folder: /media/sharename
* To mount network folder
$ sudo mkdir /media/sharename
$sudo mount //192.168.0.1/linux /media/sharename/ -o
username=myusername,password=mypassword,dmask=777,fmask=777.
* To unmount network folder
$ sudo umount /media/sharename/
To find out the free disk space (df) and
disk usage (du)
Disk-free-
Unix file system as one single tree structure with a single root directory. But there can be multiple disks
and each will have its own root and file system.
So to find out the free space in all the disk ‘df’ is the command.
$ df
$ df partition_name
Disk-Usage-
It will show you all the usages of disk and also can find out the disk usage of specific folder and all the
files of the folder.
$ du – will show the details for all files and directories.
$ du /home/oracle/ - will show all the details for all the files and directories in home/oracle.
$ du –s /home/oracle – will show summary.
Compression of Files using - Compress,
gzip and zip
To save the space compression is used.
Compress and gzip work with multiple files and remove the original files after it but the zip compress
the files and retains the original file. But can also group multiple files into a single file.
$ compress filename
$ uncompress filename
$ gzip filename
$ gunzip filename
$ zip filename
$ unzip filename
Printing a file ls and cancel
$ lp filename
$ lp –dlaser filename – providing the printer name also.
$ lp –t “First” filename – will show First in the first page title.
$ cancel laser- cancel current job on printer laser.
$lpq - to know the number of jobs.
$ lprm id– if you want to remove any job of the printer.
$ lprm - - removes all the jobs owned by the user.
File System Checking fsck
Delaying updating superblock and inode block from the memory copy of both, leaves lot of
scope for the file system inconsistency. If the power goes off or system shutdown due to
some failure in that case superblock are not updated may cause serious error or corruption.
The common are –
1. Two or more inodes claiming the same disk block.
2. A block marked as free but not listed in superblock.
3. An inode neither marked free nor in use or having a bad block number that is out of
range.
4. Mismatch between the file size specified in inode and the number of data blocks specified
in the address array.
Fsck commands are used to check and repair a damaged file system. On many systems, file
systems are marked as “dirty” and “clean”. Fsck then checks only the dirty file systems during
the next startup.
$ fsck
$ fsck /dev/sda5/
It does following things –
1. Phase 1- Check Blocks and Sizes
2. Phase 2 – Check path names
3. Phase 3 – Check connectivity
4. Phase 4 – Check Reference counts
5. Phase 5 - Check free list.
Useradd, usermod and userdel
User-add:
#useradd –u 210 –g dba –d /home/oracle –s /bin/ksh –m oracle
Username –oracle
User ID – 210
Group – dba
Home Path - /home/oracle
Shell - /bin/ksh (optional)
-m option- ensures that the home directory is created added.
…
Useradd command creates the user entry in /etc/passwd
#passwd oracle
Will set the new password for the user oracle.
/etc/passwd: all the information of user stored in here except the encryption
technique of password. The encryption information is stored in /etc/shadow.
oracle : x : 210 : 241: /home/oracle : /bin/ksh
user-mod:
# usermod –s /bin/bash oracle
used to modify some parameters of user. Like sometimes need to change the login
shell.
user-del:
# userdel oracle
this commands removes the user from the system. This removes all entries but the
users home directory does not get deleted.
Role of init in startup and shutdown
The startup and shutdown process are controlled by automated shell scripts which are
changed quite infrequently.
The kernel (/stand/unix, kernel/genunix or vmliuz) is loaded into the memory and it starts
spawning further process. The most important of these is /sbin/init with PID 1, which is
responsible for the birth of all subsequent processes. Role of init –
1. It controls the run levels (the system states) and decides which process to run (and kill) for
each run level.
2. It spawns a getty process at every terminal or modem port so that users can log in.
3. It also ensures that all the system daemons are running.
init Run levels
0 – system shutdown
1 – System administration mode (local file system mounted). Single User Mode
2 – Local Multiuser Mode with Networking but without network service (like NFS)
3 – Full Multiuser Mode with Networking
4 – Not Used
5 – Full Multiuser with Networking and X Windows GUI
6 – Shutdown and reboot mode
S or s – single user more (file system mounted)
# init 0
To check the current run level you are using ‘who –r’.
/etc/inittab –
The behavior of init controls by /etc/inittab. Init reads all the process from inittab. Its fields determine the process that
should be spawned for each of the init run levels.
Backing Up Files (tar, dump, cpio, dd)
dd: it was a very powerful copying command and mainly for administrator. Previously it was used to copy file system but
now its use is restricted to only the floppy diskettes.
Insert first floppy drive and copied data temporarily.
#dd if=/dev/sda4/ of=$$ bs=147456
Insert second floppy drive and temporary data is copied
#dd if=$$ of=/dev/sda4/ bs=147456
if =input filename
of = output filename
bs =block size
THANKS
Ad

More Related Content

What's hot (20)

basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)
Sukhraj Singh
 
Internet address
Internet addressInternet address
Internet address
Shubham Dwivedi
 
Unix OS & Commands
Unix OS & CommandsUnix OS & Commands
Unix OS & Commands
Mohit Belwal
 
Networking devices
Networking devicesNetworking devices
Networking devices
Mubassir Ambekar
 
Raspberry Pi - Lecture 2 Linux OS
Raspberry Pi - Lecture 2 Linux OSRaspberry Pi - Lecture 2 Linux OS
Raspberry Pi - Lecture 2 Linux OS
Mohamed Abdallah
 
Linux operating system - Overview
Linux operating system - OverviewLinux operating system - Overview
Linux operating system - Overview
Ashita Agrawal
 
Networking in linux
Networking in linuxNetworking in linux
Networking in linux
Varnnit Jain
 
Grocery Station- Database Management System Project
Grocery Station- Database Management System ProjectGrocery Station- Database Management System Project
Grocery Station- Database Management System Project
Tapan Desai
 
Linux seminar
Linux seminarLinux seminar
Linux seminar
Buntha Chhay
 
Web Application
Web ApplicationWeb Application
Web Application
Sameer Poudel
 
Basic networking
Basic networkingBasic networking
Basic networking
Siddique Ibrahim
 
Web browser and web servers (WT)
Web browser and web servers (WT)Web browser and web servers (WT)
Web browser and web servers (WT)
kunjan shah
 
Linux 4.x Tracing: Performance Analysis with bcc/BPF
Linux 4.x Tracing: Performance Analysis with bcc/BPFLinux 4.x Tracing: Performance Analysis with bcc/BPF
Linux 4.x Tracing: Performance Analysis with bcc/BPF
Brendan Gregg
 
Virtual machine subhash gupta
Virtual machine subhash guptaVirtual machine subhash gupta
Virtual machine subhash gupta
Subhash Chandra Gupta
 
Linux basics
Linux basicsLinux basics
Linux basics
Shagun Rathore
 
Power point presenation 1
Power point presenation 1Power point presenation 1
Power point presenation 1
dwenze
 
A Day In The Life Of A Linux Administrator
A Day In The Life Of A Linux AdministratorA Day In The Life Of A Linux Administrator
A Day In The Life Of A Linux Administrator
Edureka!
 
UNIX Operating System ppt
UNIX Operating System pptUNIX Operating System ppt
UNIX Operating System ppt
OECLIB Odisha Electronics Control Library
 
Working Remotely (via SSH) Rocks!
Working Remotely (via SSH) Rocks!Working Remotely (via SSH) Rocks!
Working Remotely (via SSH) Rocks!
Kent Chen
 
A History of Linux
A History of LinuxA History of Linux
A History of Linux
Damian T. Gordon
 
basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)
Sukhraj Singh
 
Unix OS & Commands
Unix OS & CommandsUnix OS & Commands
Unix OS & Commands
Mohit Belwal
 
Raspberry Pi - Lecture 2 Linux OS
Raspberry Pi - Lecture 2 Linux OSRaspberry Pi - Lecture 2 Linux OS
Raspberry Pi - Lecture 2 Linux OS
Mohamed Abdallah
 
Linux operating system - Overview
Linux operating system - OverviewLinux operating system - Overview
Linux operating system - Overview
Ashita Agrawal
 
Networking in linux
Networking in linuxNetworking in linux
Networking in linux
Varnnit Jain
 
Grocery Station- Database Management System Project
Grocery Station- Database Management System ProjectGrocery Station- Database Management System Project
Grocery Station- Database Management System Project
Tapan Desai
 
Web browser and web servers (WT)
Web browser and web servers (WT)Web browser and web servers (WT)
Web browser and web servers (WT)
kunjan shah
 
Linux 4.x Tracing: Performance Analysis with bcc/BPF
Linux 4.x Tracing: Performance Analysis with bcc/BPFLinux 4.x Tracing: Performance Analysis with bcc/BPF
Linux 4.x Tracing: Performance Analysis with bcc/BPF
Brendan Gregg
 
Power point presenation 1
Power point presenation 1Power point presenation 1
Power point presenation 1
dwenze
 
A Day In The Life Of A Linux Administrator
A Day In The Life Of A Linux AdministratorA Day In The Life Of A Linux Administrator
A Day In The Life Of A Linux Administrator
Edureka!
 
Working Remotely (via SSH) Rocks!
Working Remotely (via SSH) Rocks!Working Remotely (via SSH) Rocks!
Working Remotely (via SSH) Rocks!
Kent Chen
 

Similar to Unix Administration (20)

Unix Administration 4
Unix Administration 4Unix Administration 4
Unix Administration 4
Information Technology
 
File system discovery
File system discovery File system discovery
File system discovery
MOHAMED Elshawaf
 
beginner.en.print
beginner.en.printbeginner.en.print
beginner.en.print
Aniruddh Tyagi
 
beginner.en.print
beginner.en.printbeginner.en.print
beginner.en.print
aniruddh Tyagi
 
beginner.en.print
beginner.en.printbeginner.en.print
beginner.en.print
aniruddh Tyagi
 
Linux Notes-1.pdf
Linux Notes-1.pdfLinux Notes-1.pdf
Linux Notes-1.pdf
asif64436
 
Rishav Mishra final presentation on UNIX Final.pptx
Rishav Mishra final presentation on UNIX Final.pptxRishav Mishra final presentation on UNIX Final.pptx
Rishav Mishra final presentation on UNIX Final.pptx
rishavmishra041
 
Linux filesystemhierarchy
Linux filesystemhierarchyLinux filesystemhierarchy
Linux filesystemhierarchy
Dr. C.V. Suresh Babu
 
Root file system for embedded systems
Root file system for embedded systemsRoot file system for embedded systems
Root file system for embedded systems
alok pal
 
File system hiearchy
File system hiearchyFile system hiearchy
File system hiearchy
sritolia
 
Root file system
Root file systemRoot file system
Root file system
Bindu U
 
Shells commands, file structure, directory structure.pptx
Shells commands, file structure, directory structure.pptxShells commands, file structure, directory structure.pptx
Shells commands, file structure, directory structure.pptx
SherinRappai
 
UNIX(Essential needs of administration)
UNIX(Essential needs of administration)UNIX(Essential needs of administration)
UNIX(Essential needs of administration)
Papu Kumar
 
Edubooktraining
EdubooktrainingEdubooktraining
Edubooktraining
norhloudspeaker
 
Module 3 Using Linux Softwares.
Module 3 Using Linux Softwares.Module 3 Using Linux Softwares.
Module 3 Using Linux Softwares.
Tushar B Kute
 
84640411 study-of-unix-os
84640411 study-of-unix-os84640411 study-of-unix-os
84640411 study-of-unix-os
homeworkping3
 
Linux
Linux Linux
Linux
Hema Prasanth
 
Divya
DivyaDivya
Divya
diva23
 
Divya
DivyaDivya
Divya
diva23
 
Ch12 system administration
Ch12 system administration Ch12 system administration
Ch12 system administration
Raja Waseem Akhtar
 
Linux Notes-1.pdf
Linux Notes-1.pdfLinux Notes-1.pdf
Linux Notes-1.pdf
asif64436
 
Rishav Mishra final presentation on UNIX Final.pptx
Rishav Mishra final presentation on UNIX Final.pptxRishav Mishra final presentation on UNIX Final.pptx
Rishav Mishra final presentation on UNIX Final.pptx
rishavmishra041
 
Root file system for embedded systems
Root file system for embedded systemsRoot file system for embedded systems
Root file system for embedded systems
alok pal
 
File system hiearchy
File system hiearchyFile system hiearchy
File system hiearchy
sritolia
 
Root file system
Root file systemRoot file system
Root file system
Bindu U
 
Shells commands, file structure, directory structure.pptx
Shells commands, file structure, directory structure.pptxShells commands, file structure, directory structure.pptx
Shells commands, file structure, directory structure.pptx
SherinRappai
 
UNIX(Essential needs of administration)
UNIX(Essential needs of administration)UNIX(Essential needs of administration)
UNIX(Essential needs of administration)
Papu Kumar
 
Module 3 Using Linux Softwares.
Module 3 Using Linux Softwares.Module 3 Using Linux Softwares.
Module 3 Using Linux Softwares.
Tushar B Kute
 
84640411 study-of-unix-os
84640411 study-of-unix-os84640411 study-of-unix-os
84640411 study-of-unix-os
homeworkping3
 
Ad

More from Nishant Munjal (20)

Database Management System
Database Management SystemDatabase Management System
Database Management System
Nishant Munjal
 
Functions & Recursion
Functions & RecursionFunctions & Recursion
Functions & Recursion
Nishant Munjal
 
Array, string and pointer
Array, string and pointerArray, string and pointer
Array, string and pointer
Nishant Munjal
 
Programming in C
Programming in CProgramming in C
Programming in C
Nishant Munjal
 
Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computers
Nishant Munjal
 
Shell Programming Concept
Shell Programming ConceptShell Programming Concept
Shell Programming Concept
Nishant Munjal
 
VI Editor
VI EditorVI Editor
VI Editor
Nishant Munjal
 
Introduction to Unix
Introduction to UnixIntroduction to Unix
Introduction to Unix
Nishant Munjal
 
Routing Techniques
Routing TechniquesRouting Techniques
Routing Techniques
Nishant Munjal
 
Asynchronous Transfer Mode
Asynchronous Transfer ModeAsynchronous Transfer Mode
Asynchronous Transfer Mode
Nishant Munjal
 
Overview of Cloud Computing
Overview of Cloud ComputingOverview of Cloud Computing
Overview of Cloud Computing
Nishant Munjal
 
SQL Queries Information
SQL Queries InformationSQL Queries Information
SQL Queries Information
Nishant Munjal
 
Database Design and Normalization Techniques
Database Design and Normalization TechniquesDatabase Design and Normalization Techniques
Database Design and Normalization Techniques
Nishant Munjal
 
Concurrency Control
Concurrency ControlConcurrency Control
Concurrency Control
Nishant Munjal
 
Transaction Processing Concept
Transaction Processing ConceptTransaction Processing Concept
Transaction Processing Concept
Nishant Munjal
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
Nishant Munjal
 
Relational Data Model Introduction
Relational Data Model IntroductionRelational Data Model Introduction
Relational Data Model Introduction
Nishant Munjal
 
Virtualization, A Concept Implementation of Cloud
Virtualization, A Concept Implementation of CloudVirtualization, A Concept Implementation of Cloud
Virtualization, A Concept Implementation of Cloud
Nishant Munjal
 
Technical education benchmarks
Technical education benchmarksTechnical education benchmarks
Technical education benchmarks
Nishant Munjal
 
Bluemix Introduction
Bluemix IntroductionBluemix Introduction
Bluemix Introduction
Nishant Munjal
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
Nishant Munjal
 
Array, string and pointer
Array, string and pointerArray, string and pointer
Array, string and pointer
Nishant Munjal
 
Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computers
Nishant Munjal
 
Shell Programming Concept
Shell Programming ConceptShell Programming Concept
Shell Programming Concept
Nishant Munjal
 
Asynchronous Transfer Mode
Asynchronous Transfer ModeAsynchronous Transfer Mode
Asynchronous Transfer Mode
Nishant Munjal
 
Overview of Cloud Computing
Overview of Cloud ComputingOverview of Cloud Computing
Overview of Cloud Computing
Nishant Munjal
 
SQL Queries Information
SQL Queries InformationSQL Queries Information
SQL Queries Information
Nishant Munjal
 
Database Design and Normalization Techniques
Database Design and Normalization TechniquesDatabase Design and Normalization Techniques
Database Design and Normalization Techniques
Nishant Munjal
 
Transaction Processing Concept
Transaction Processing ConceptTransaction Processing Concept
Transaction Processing Concept
Nishant Munjal
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
Nishant Munjal
 
Relational Data Model Introduction
Relational Data Model IntroductionRelational Data Model Introduction
Relational Data Model Introduction
Nishant Munjal
 
Virtualization, A Concept Implementation of Cloud
Virtualization, A Concept Implementation of CloudVirtualization, A Concept Implementation of Cloud
Virtualization, A Concept Implementation of Cloud
Nishant Munjal
 
Technical education benchmarks
Technical education benchmarksTechnical education benchmarks
Technical education benchmarks
Nishant Munjal
 
Ad

Recently uploaded (20)

Degree_of_Automation.pdf for Instrumentation and industrial specialist
Degree_of_Automation.pdf for  Instrumentation  and industrial specialistDegree_of_Automation.pdf for  Instrumentation  and industrial specialist
Degree_of_Automation.pdf for Instrumentation and industrial specialist
shreyabhosale19
 
Compiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptxCompiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptx
RushaliDeshmukh2
 
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITYADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ijscai
 
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
inmishra17121973
 
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Journal of Soft Computing in Civil Engineering
 
Compiler Design_Lexical Analysis phase.pptx
Compiler Design_Lexical Analysis phase.pptxCompiler Design_Lexical Analysis phase.pptx
Compiler Design_Lexical Analysis phase.pptx
RushaliDeshmukh2
 
railway wheels, descaling after reheating and before forging
railway wheels, descaling after reheating and before forgingrailway wheels, descaling after reheating and before forging
railway wheels, descaling after reheating and before forging
Javad Kadkhodapour
 
Value Stream Mapping Worskshops for Intelligent Continuous Security
Value Stream Mapping Worskshops for Intelligent Continuous SecurityValue Stream Mapping Worskshops for Intelligent Continuous Security
Value Stream Mapping Worskshops for Intelligent Continuous Security
Marc Hornbeek
 
ELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdfELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdf
Shiju Jacob
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
IntroSlides-April-BuildWithAI-VertexAI.pdf
IntroSlides-April-BuildWithAI-VertexAI.pdfIntroSlides-April-BuildWithAI-VertexAI.pdf
IntroSlides-April-BuildWithAI-VertexAI.pdf
Luiz Carneiro
 
Data Structures_Introduction to algorithms.pptx
Data Structures_Introduction to algorithms.pptxData Structures_Introduction to algorithms.pptx
Data Structures_Introduction to algorithms.pptx
RushaliDeshmukh2
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
Raish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdfRaish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdf
RaishKhanji
 
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdfMAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
ssuser562df4
 
Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.
anuragmk56
 
Smart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineeringSmart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineering
rushikeshnavghare94
 
introduction to machine learining for beginers
introduction to machine learining for beginersintroduction to machine learining for beginers
introduction to machine learining for beginers
JoydebSheet
 
π0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalizationπ0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalization
NABLAS株式会社
 
Artificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptxArtificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptx
aditichinar
 
Degree_of_Automation.pdf for Instrumentation and industrial specialist
Degree_of_Automation.pdf for  Instrumentation  and industrial specialistDegree_of_Automation.pdf for  Instrumentation  and industrial specialist
Degree_of_Automation.pdf for Instrumentation and industrial specialist
shreyabhosale19
 
Compiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptxCompiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptx
RushaliDeshmukh2
 
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITYADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ijscai
 
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
inmishra17121973
 
Compiler Design_Lexical Analysis phase.pptx
Compiler Design_Lexical Analysis phase.pptxCompiler Design_Lexical Analysis phase.pptx
Compiler Design_Lexical Analysis phase.pptx
RushaliDeshmukh2
 
railway wheels, descaling after reheating and before forging
railway wheels, descaling after reheating and before forgingrailway wheels, descaling after reheating and before forging
railway wheels, descaling after reheating and before forging
Javad Kadkhodapour
 
Value Stream Mapping Worskshops for Intelligent Continuous Security
Value Stream Mapping Worskshops for Intelligent Continuous SecurityValue Stream Mapping Worskshops for Intelligent Continuous Security
Value Stream Mapping Worskshops for Intelligent Continuous Security
Marc Hornbeek
 
ELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdfELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdf
Shiju Jacob
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
IntroSlides-April-BuildWithAI-VertexAI.pdf
IntroSlides-April-BuildWithAI-VertexAI.pdfIntroSlides-April-BuildWithAI-VertexAI.pdf
IntroSlides-April-BuildWithAI-VertexAI.pdf
Luiz Carneiro
 
Data Structures_Introduction to algorithms.pptx
Data Structures_Introduction to algorithms.pptxData Structures_Introduction to algorithms.pptx
Data Structures_Introduction to algorithms.pptx
RushaliDeshmukh2
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
Raish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdfRaish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdf
RaishKhanji
 
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdfMAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
ssuser562df4
 
Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.Fort night presentation new0903 pdf.pdf.
Fort night presentation new0903 pdf.pdf.
anuragmk56
 
Smart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineeringSmart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineering
rushikeshnavghare94
 
introduction to machine learining for beginers
introduction to machine learining for beginersintroduction to machine learining for beginers
introduction to machine learining for beginers
JoydebSheet
 
π0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalizationπ0.5: a Vision-Language-Action Model with Open-World Generalization
π0.5: a Vision-Language-Action Model with Open-World Generalization
NABLAS株式会社
 
Artificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptxArtificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptx
aditichinar
 

Unix Administration

  • 2. Device Files The definition of a file has been broadened by unix by declaring all the physical devices as a file. It includes tapes, printer, floppy drive, hard disks and terminals. Any output directed to it will be reflected onto the respective physical associative with the filename. Whenever you are issuing a command to print a file, actually you are directing the file’s output to the file associated with the printer. The kernel takes care of this mapping, these special files to respective devices. $ls –l /dev This listing will reveal two vital points: 1. Device files can be grouped into mainly two categories block and character devices depending on the first character of the permission field (b or c). 2. The fifth field–normally representing the size for other files–consist of a pair of numbers (major and minor numbers). A device file contains no data.
  • 3. Block and Character devices Floppy drive, cdrom, hard disk comes into this section because to whenever a user performs a write operation firstly it is written into chunks or blocks. And when it performs the read operation, the buffer cache accessed the recently used data. So these devices are using buffer and writing there data into blocks for such devices prefix ‘b’ is used. The terminal, tape drive and printer are character special devices because the read/write operation ignores the buffer cache and access the device directly.
  • 4. Major and Minor No The set of routines is requires to operate specific devices is known as device drivers. When a device is called the kernel passes some parameters for it to act properly. So the kernel must know not only the type of device but also certain details of it (like density, partition no of it). The fifth column shows the two no. which are major and minor numbers, major no. shows actually the type of device all hard disk or same kind of hardware will have the same major numbers but the minor will be different. Minor no. tells the kernel about the parameters to operate the particular device.
  • 5. The UNIX File System etc : Contains all system configuration files and the files which maintain information about the user and group. Bin : Contains all binary executables usr : default directory provided by UNIX OS to create users home directories and contains manual pages tmp: System or users temporary files which will be removed when the system reboots. dev: Contains all device files i.e logical names to physical devices. devices : Contains all the device files. i.e. physical names to physical devices. home : default directory allocated for the home directories of normal users when the administrator don’t specify any other directory. var : contains all the system log files and message files. sbin : Contains all the system administrator executables files.
  • 6. Partitions Partition divides hard disk into many logically independent disk and accessed by its own device files. And to use a partition, it is requires to create a file system on it. File system defines a directory structure. Some rules and the advantages of the partitions are: 1. Data is growing day by day but a partition should restrict it spill it over to other partition. 2. If one area is corrupted then other should be shielded for that harmful things which corrupt that area. 3. If the system have adequate number of partitions, each partition can be backed up separately into a single volume of tape. The administrator can have different backup schedules for the different partitions.
  • 7. File System In unix is configured with multiple file system where each has its own directory headed by root . but usually we see one root that’s because all have the same file system and becomes single one at a time of use. Each file system is organized in a sequence of blocks of 1024 bytes and generally has three four components. 1. The boot block – contains a small boot program. 2. The super block – it contains global information about the file system and it also maintains a free list of inodes and data blocks that can be immediately allocated be the kernel when creating a file. 3. The inode block – contains a table for every file system. All attributes of a file or directory stored in this area except the name of the file. 4. The data block – contains the files or programs of the user.
  • 8. File System Components Inode Blocks – every file has an inode – a 128 byte table that contains virtually everything you could possibly need to know about a file. All inodes are stored into a contiguous inode blocks. Each 128 byte inode contains – 1.File type (regular, directory, device etc…) Number of links Numeric user id of the user Numeric group user id of the user. File mode Number of bytes in a file Date and time of the last modification of the file data. Date and time of last access of the file data. Date and time of last change of the inode. The array of 15 pointers to the file. Whenever a file is opened its inode is copied to the memory inode table and then kept synchronizing periodically with the disk copy. And 15 arrays are required to get the different-2 information about a file using ls command.
  • 9. Mounting and Un-mounting File System Before mounting the file system to the we need to check the logical name of it by issuing command $ sudo fdisk –l How to mount/unmount Windows partitions (FAT) manually, and allow all users to read/write - e.g. Assumed that /dev/hda1 is the location of Windows partition (FAT) Local mount folder: /media/windows
  • 10. * To mount Windows partition $ sudo mkdir /media/windows $ sudo mount /dev/hda1 /media/windows/ -t vfat -o iocharset=utf8,umask=000 * To unmount Windows partition $ sudo umount /media/windows/ How to mount/unmount Windows partitions (FAT) manually, and allow all users to read/write - e.g. Assumed that /dev/hda1 is the location of Windows partition (FAT) Local mount folder: /media/windows
  • 11. * To mount Windows partition $ sudo mkdir /media/windows $ sudo mount /dev/hda1 /media/windows/ -t vfat -o iocharset=utf8,umask=000 * To unmount Windows partition $ sudo umount /media/windows/ How to mount/unmount network folders manually, and allow all users to read/write - e.g. Assumed that network connections have been configured properly Network computer's IP: 192.168.0.1 Network computer's Username: myusername Network computer's Password: mypassword Shared folder's name: linux Local mount folder: /media/sharename
  • 12. * To mount network folder $ sudo mkdir /media/sharename $sudo mount //192.168.0.1/linux /media/sharename/ -o username=myusername,password=mypassword,dmask=777,fmask=777. * To unmount network folder $ sudo umount /media/sharename/
  • 13. To find out the free disk space (df) and disk usage (du) Disk-free- Unix file system as one single tree structure with a single root directory. But there can be multiple disks and each will have its own root and file system. So to find out the free space in all the disk ‘df’ is the command. $ df $ df partition_name Disk-Usage- It will show you all the usages of disk and also can find out the disk usage of specific folder and all the files of the folder. $ du – will show the details for all files and directories. $ du /home/oracle/ - will show all the details for all the files and directories in home/oracle. $ du –s /home/oracle – will show summary.
  • 14. Compression of Files using - Compress, gzip and zip To save the space compression is used. Compress and gzip work with multiple files and remove the original files after it but the zip compress the files and retains the original file. But can also group multiple files into a single file. $ compress filename $ uncompress filename $ gzip filename $ gunzip filename $ zip filename $ unzip filename
  • 15. Printing a file ls and cancel $ lp filename $ lp –dlaser filename – providing the printer name also. $ lp –t “First” filename – will show First in the first page title. $ cancel laser- cancel current job on printer laser. $lpq - to know the number of jobs. $ lprm id– if you want to remove any job of the printer. $ lprm - - removes all the jobs owned by the user.
  • 16. File System Checking fsck Delaying updating superblock and inode block from the memory copy of both, leaves lot of scope for the file system inconsistency. If the power goes off or system shutdown due to some failure in that case superblock are not updated may cause serious error or corruption. The common are – 1. Two or more inodes claiming the same disk block. 2. A block marked as free but not listed in superblock. 3. An inode neither marked free nor in use or having a bad block number that is out of range. 4. Mismatch between the file size specified in inode and the number of data blocks specified in the address array.
  • 17. Fsck commands are used to check and repair a damaged file system. On many systems, file systems are marked as “dirty” and “clean”. Fsck then checks only the dirty file systems during the next startup. $ fsck $ fsck /dev/sda5/ It does following things – 1. Phase 1- Check Blocks and Sizes 2. Phase 2 – Check path names 3. Phase 3 – Check connectivity 4. Phase 4 – Check Reference counts 5. Phase 5 - Check free list.
  • 18. Useradd, usermod and userdel User-add: #useradd –u 210 –g dba –d /home/oracle –s /bin/ksh –m oracle Username –oracle User ID – 210 Group – dba Home Path - /home/oracle Shell - /bin/ksh (optional) -m option- ensures that the home directory is created added.
  • 19. … Useradd command creates the user entry in /etc/passwd #passwd oracle Will set the new password for the user oracle. /etc/passwd: all the information of user stored in here except the encryption technique of password. The encryption information is stored in /etc/shadow. oracle : x : 210 : 241: /home/oracle : /bin/ksh
  • 20. user-mod: # usermod –s /bin/bash oracle used to modify some parameters of user. Like sometimes need to change the login shell. user-del: # userdel oracle this commands removes the user from the system. This removes all entries but the users home directory does not get deleted.
  • 21. Role of init in startup and shutdown The startup and shutdown process are controlled by automated shell scripts which are changed quite infrequently. The kernel (/stand/unix, kernel/genunix or vmliuz) is loaded into the memory and it starts spawning further process. The most important of these is /sbin/init with PID 1, which is responsible for the birth of all subsequent processes. Role of init – 1. It controls the run levels (the system states) and decides which process to run (and kill) for each run level. 2. It spawns a getty process at every terminal or modem port so that users can log in. 3. It also ensures that all the system daemons are running.
  • 22. init Run levels 0 – system shutdown 1 – System administration mode (local file system mounted). Single User Mode 2 – Local Multiuser Mode with Networking but without network service (like NFS) 3 – Full Multiuser Mode with Networking 4 – Not Used 5 – Full Multiuser with Networking and X Windows GUI 6 – Shutdown and reboot mode S or s – single user more (file system mounted) # init 0 To check the current run level you are using ‘who –r’. /etc/inittab – The behavior of init controls by /etc/inittab. Init reads all the process from inittab. Its fields determine the process that should be spawned for each of the init run levels.
  • 23. Backing Up Files (tar, dump, cpio, dd) dd: it was a very powerful copying command and mainly for administrator. Previously it was used to copy file system but now its use is restricted to only the floppy diskettes. Insert first floppy drive and copied data temporarily. #dd if=/dev/sda4/ of=$$ bs=147456 Insert second floppy drive and temporary data is copied #dd if=$$ of=/dev/sda4/ bs=147456 if =input filename of = output filename bs =block size