SlideShare ist ein Scribd-Unternehmen logo
1 von 41
A
SEMINAR
ON
“REDHAT LINUX & NIS
SERVER”
PRESENTED TO :
HEAD, DEPTT. OF MCA
 PRESENTED BY :
 Priyanka bhadoriya
ABOUT LINUX
Linux was originally built by Linus
Torvalds at the University of Helsinki in
1991.
Linux is a Unix-like, Kernel-based, fully
memory-protected, multitasking operating
system
It runs on a wide range of hardware from
PCs to Macs.
FEATURES OF LINUX
 Linux is “OPEN SOURCE".
 Security
 Multi-user facility
 Free of Cost
 Virus-proof
 Choice of user-decided GUI
 Supports multiple copies of the Kernel
KERNEL OVERVIEW
 Kernel is the core of the Linux Operating
System. Kernel controls all hardware, enforce
security, and allocate memory.
 Kernel Duties:
Process Management:- scheduling, memory,
security, system
calls.
Hardware:- drivers, networking, file systems,
buffers, cache.
LINUX FILE SYSTEM
 /bin :- It contains all binary and executable
files.
 /sbin:- It contains all system executable and
binary files.
 /etc :- It contains all configuration files.
 /lib :- It contains the location for library
files.
 /boot:- It contains linux boot file and linux
kernel.
 /dev :- It contents all device files. eg.
CDROM, Harddisk.
 /var :- It contents login files and mails.
 /opt :- It contents typical location of
optional packages.
 /home:- It contents typical location for all users.
 /mnt :- It is a mount directory used to mount
CDROM , Floppy.
 /user/local:-It shows default location for
administrators.
Contd…
LINUX SHELL
 SHELL:- Shell is an interface between
the user and the kernel.
 TYPES OF SHELL
 bash
 sh
 nologin
 tcsh
 csh
 ksh
USERS,GROUPS AND
PERMISSIONS
 USERS
The concept of user accounts was created to
allow many individuals to share these precious
computing resources.
 TYPES OF USERS
Primary :- root (administrator)
Secondary :- other users
Contd….
 GROUPS
Sometimes users need to collaborate. This can
be accomplished by having users assigned to
groups and setting appropriate group
permissions for files or directories.
TYPES
User private group :- For private grouping.
Primary group :- By default.
Contd..
 PERMISSIONS
Permissions are used to restrict the files
user, files group and everyone else.
r: permission to read a file.
w: permission to write a file.
x: permission to execute a program or
change into a directory.
-: no permission
RAID DEVICE
 RAID (Redundant area of independent disks)
Raid Device are used to store the data in multiple storage
device simultaneously.
 TYPES OF RAID
RAID 0
RAID 1
RAID 5
RAID 6
LVM CONCEPT
 LVM (Logical Volume Manager)
It is a concept used by Linux to obtain the
maximum use of memory storage.
L.V.M. collects all the memory unallocated and
combines to form a volume group.
This volume group is Dynamic in size.
SNAPSHOT CONCEPT
 It is a new feature added in RHEL5 & RHEL5.2
 Snapshot provides the facility to save the
memory by reducing a big amount of data into a
very smaller memory space making a snap.
 We can only read the data.
LINUX
SERVER
CONFIGURATION
TYPES OF SERVERS
 NIS SERVER
 NFS SERVER
 DNS SERVER
 FTP SERVER
 DHCP SERVER
 SSH SERVER
 TELNET & XINETD SERVER
 SMTP SERVER
 SAMBA SERVER
 WEB SERVER
NIS SERVER
Network Information System(NIS)
NIS Server is Used to manage account &
system information on multiple system from a
central Server.
Software Required :- rpm –q portmap
rpm –q ypserv
Configuration File :- vim /etc/sysconfig/Network
vim /var/yp/Makefile
Service :- service portmap restart
service ypserv restart
service yppasswdd restart
SCREENSHOTS
NFS SERVER
 Network File Sharing (NFS)
NFS Server is used to share the directories on
the network locally or globally.
Software Required :- rpm –q portmap
rpm –q nfs-utils
Configuration File :- vi /etc/exports
Service :- service portmap start
service nfs start
DNS SERVER
DNS(Domain Name System)
 Resolves hostnames into IP addresses
(Forward Lookup).
 Resolves IP addresses into hostnames
(Reverse Lookup).
 Allow machines to be logically grouped by
name domains.
 Provides E-Mail routing information.
Contd..
 Software Required :- rpm –q bind
rpm –q bind-
utils

Configuration File :- vi /etc/named.conf
vi /var/named/*
vi /etc/rndc.*
vi /etc/resolv.conf
 Script : named
 Ports : 53(domain), 953(rndc)
DHCP SERVER
 DHCP : Dynamic Host Configuring Protocol,
implemented via dhcpd
 It assigns IP address for its clients.
 In a Network , A computer needs information
like
I.P. address , dns server ,gate way,
subnetmask to
communicate to other computers.
 DHCP automatically give all client computers
on
Contd..
Obtaining an initial address
 Client broadcasts DISCOVER to locate theClient broadcasts DISCOVER to locate the
server.server.
 Server reply with its IP.Server reply with its IP.
 Client sends REQUEST for address on theClient sends REQUEST for address on the
received IP.received IP.
 Server commits allocation & returns ACKServer commits allocation & returns ACK
containing IP, Subnet Mask, DNS, Gateway etc.containing IP, Subnet Mask, DNS, Gateway etc.
FTP SERVER
 File transfer protocol (FTP) is a common method of
copying files between computer systems.
 TYPES OF FTP
Regular FTP:- This is used primarily to allow specific users
to download files to their systems.
Anonymous FTP:- This is used primarily to allow any
remote user to download files to their systems.
Contd..
Software Required :- rpm –q vsftpd
Configuration File :- vi /etc/vsftpd/vsftpd.conf
Service :- service vsftpd start
SSH SERVER
 SSH (Secure shell server) is used to access the full
control on the remote machine on network.
Software Required :- rpm –q openssh
rpm –q openssl
rpm –q openssh-server
rpm –q openssh-clients
Configuration File :- vi /etc/ssh/sshd-config
Service :- service sshd start
TELNET & XINETD SERVER
 XINETD
Xinetd is a program used to start and stop a variety of
Linux data communication applications. Some of these
applications, such as TELNET, are installed by default in
Red Hat Linux.
Software Required :- rpm –q telnet
rpm –q telnet-server
Configuration File :- vi /etc/xinetd.d/telnet
vi /etc/securetty
Service :- service xinetd start
SMTP SERVER

Simple Mail Transfer Protocol(SMTP) is used to send or
retrieve the received mails on the network.
Based on two Services
Pop:- Post Office Protocol
imap:- Internet message acess protocol
Software Required :- rpm –q sendmail
rpm –q sendmail-cf
rpm –q m4
rpm –q make
rpm –q procmail
Configuration File :- vi /etc/mail/sendmail.cf
vi /etc/mail/access
Service :- service sendmail restart
SAMBA SERVER
 To share the files and directories of linux with
window or other operating system then we use
samba server.
Software Required :- rpm –q samba
rpm –q samba-common
rpm –q samba-client
Configuration File :- vi /etc/samba/smb.conf
Apache Web Server
 Apache is Redhat Standard Web Server
 According to Net craft Web server survey
Apache is the most widely used Web
server.
 More than 50% Web sites are hosted on Apache
Web Server
 Apache is Free.
 Apache is extremely powerful and extendable.
 Easily available with any Linux distribution.
Configuration Of Apache
 Packages : httpd
 Default Port Number : 80
 Configuration Directory : /etc/httpd/
 Main Configuration File :
etc/httpd/conf/httpd.conf
 Service Daemon : httpd
THANKS FOR KIND
ATTENTION….
QUERIES
???......?

Weitere ähnliche Inhalte

Was ist angesagt?

Linux beginner's Workshop
Linux beginner's WorkshopLinux beginner's Workshop
Linux beginner's Workshopfutureshocked
 
Network File System
Network File SystemNetwork File System
Network File SystemDivyang Oza
 
The basic concept of Linux FIleSystem
The basic concept of Linux FIleSystemThe basic concept of Linux FIleSystem
The basic concept of Linux FIleSystemHungWei Chiu
 
Red Hat Enterprise Linux 7
Red Hat Enterprise Linux 7Red Hat Enterprise Linux 7
Red Hat Enterprise Linux 7Mazenetsolution
 
Linux training
Linux trainingLinux training
Linux trainingartisriva
 
Linux week 2
Linux week 2Linux week 2
Linux week 2Vinoth Sn
 
Red hat enterprise linux 7 (rhel 7)
Red hat enterprise linux 7 (rhel 7)Red hat enterprise linux 7 (rhel 7)
Red hat enterprise linux 7 (rhel 7)Ramola Dhande
 
Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commandsaaj_sarkar06
 
basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)Sukhraj Singh
 
Linux-training-for-beginners-in-mumbai
Linux-training-for-beginners-in-mumbaiLinux-training-for-beginners-in-mumbai
Linux-training-for-beginners-in-mumbaiUnmesh Baile
 
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Edureka!
 
Linux Training Workshop
Linux Training WorkshopLinux Training Workshop
Linux Training WorkshopMeraj Khattak
 
Linux admin interview questions
Linux admin interview questionsLinux admin interview questions
Linux admin interview questionsKavya Sri
 
Install and configure linux
Install and configure linuxInstall and configure linux
Install and configure linuxVicent Selfa
 
NFS(Network File System)
NFS(Network File System)NFS(Network File System)
NFS(Network File System)udamale
 

Was ist angesagt? (20)

Linux beginner's Workshop
Linux beginner's WorkshopLinux beginner's Workshop
Linux beginner's Workshop
 
UNIX/Linux training
UNIX/Linux trainingUNIX/Linux training
UNIX/Linux training
 
Network File System
Network File SystemNetwork File System
Network File System
 
The basic concept of Linux FIleSystem
The basic concept of Linux FIleSystemThe basic concept of Linux FIleSystem
The basic concept of Linux FIleSystem
 
Red Hat Enterprise Linux 7
Red Hat Enterprise Linux 7Red Hat Enterprise Linux 7
Red Hat Enterprise Linux 7
 
Linux training
Linux trainingLinux training
Linux training
 
5. centos security
5. centos security5. centos security
5. centos security
 
Linux week 2
Linux week 2Linux week 2
Linux week 2
 
Red hat enterprise linux 7 (rhel 7)
Red hat enterprise linux 7 (rhel 7)Red hat enterprise linux 7 (rhel 7)
Red hat enterprise linux 7 (rhel 7)
 
Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commands
 
Ch18 system administration
Ch18 system administration Ch18 system administration
Ch18 system administration
 
basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)
 
Linux-training-for-beginners-in-mumbai
Linux-training-for-beginners-in-mumbaiLinux-training-for-beginners-in-mumbai
Linux-training-for-beginners-in-mumbai
 
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
 
AFS case study
AFS case studyAFS case study
AFS case study
 
Linux Training Workshop
Linux Training WorkshopLinux Training Workshop
Linux Training Workshop
 
Linux admin interview questions
Linux admin interview questionsLinux admin interview questions
Linux admin interview questions
 
Install and configure linux
Install and configure linuxInstall and configure linux
Install and configure linux
 
Sitaram_Chalasani_CV
Sitaram_Chalasani_CVSitaram_Chalasani_CV
Sitaram_Chalasani_CV
 
NFS(Network File System)
NFS(Network File System)NFS(Network File System)
NFS(Network File System)
 

Ähnlich wie linux (20)

lamp technology
lamp technologylamp technology
lamp technology
 
Deepa ppt about lamp technology
Deepa ppt about lamp technologyDeepa ppt about lamp technology
Deepa ppt about lamp technology
 
Lamp technology
Lamp technologyLamp technology
Lamp technology
 
Linux Security
Linux SecurityLinux Security
Linux Security
 
Nadhiya lamp
Nadhiya lampNadhiya lamp
Nadhiya lamp
 
Linux basic
Linux basicLinux basic
Linux basic
 
Linux: An Unbeaten Empire
Linux: An Unbeaten EmpireLinux: An Unbeaten Empire
Linux: An Unbeaten Empire
 
Linux
LinuxLinux
Linux
 
Linux Presentation
Linux PresentationLinux Presentation
Linux Presentation
 
3. intro
3. intro3. intro
3. intro
 
Basic orientation to Linux
Basic orientation to LinuxBasic orientation to Linux
Basic orientation to Linux
 
Linuxppt
LinuxpptLinuxppt
Linuxppt
 
Lamp ppt
Lamp pptLamp ppt
Lamp ppt
 
Linux Based Network Proposal
Linux Based Network ProposalLinux Based Network Proposal
Linux Based Network Proposal
 
cisco
ciscocisco
cisco
 
Intro to linux
Intro to linuxIntro to linux
Intro to linux
 
Ceh v5 module 18 linux hacking
Ceh v5 module 18 linux hackingCeh v5 module 18 linux hacking
Ceh v5 module 18 linux hacking
 
Linux
Linux Linux
Linux
 
linux installation.pdf
linux installation.pdflinux installation.pdf
linux installation.pdf
 
Linux introduction (eng)
Linux introduction (eng)Linux introduction (eng)
Linux introduction (eng)
 

Mehr von Ajay Chawda

Mastering the art of visual storytelling the graphic designers journey
Mastering the art of visual storytelling the graphic designers journeyMastering the art of visual storytelling the graphic designers journey
Mastering the art of visual storytelling the graphic designers journeyAjay Chawda
 
Android technlogy
Android technlogyAndroid technlogy
Android technlogyAjay Chawda
 
Wi fi technology
Wi fi technologyWi fi technology
Wi fi technologyAjay Chawda
 
Sonu seminar ppt
Sonu seminar pptSonu seminar ppt
Sonu seminar pptAjay Chawda
 

Mehr von Ajay Chawda (6)

Mastering the art of visual storytelling the graphic designers journey
Mastering the art of visual storytelling the graphic designers journeyMastering the art of visual storytelling the graphic designers journey
Mastering the art of visual storytelling the graphic designers journey
 
Android technlogy
Android technlogyAndroid technlogy
Android technlogy
 
Wi fi technology
Wi fi technologyWi fi technology
Wi fi technology
 
Virtualization
VirtualizationVirtualization
Virtualization
 
Sonu seminar ppt
Sonu seminar pptSonu seminar ppt
Sonu seminar ppt
 
4g technology
4g technology4g technology
4g technology
 

Kürzlich hochgeladen

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 

Kürzlich hochgeladen (20)

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 

linux

  • 1. A SEMINAR ON “REDHAT LINUX & NIS SERVER” PRESENTED TO : HEAD, DEPTT. OF MCA  PRESENTED BY :  Priyanka bhadoriya
  • 2. ABOUT LINUX Linux was originally built by Linus Torvalds at the University of Helsinki in 1991. Linux is a Unix-like, Kernel-based, fully memory-protected, multitasking operating system It runs on a wide range of hardware from PCs to Macs.
  • 3. FEATURES OF LINUX  Linux is “OPEN SOURCE".  Security  Multi-user facility  Free of Cost  Virus-proof  Choice of user-decided GUI  Supports multiple copies of the Kernel
  • 4. KERNEL OVERVIEW  Kernel is the core of the Linux Operating System. Kernel controls all hardware, enforce security, and allocate memory.  Kernel Duties: Process Management:- scheduling, memory, security, system calls. Hardware:- drivers, networking, file systems, buffers, cache.
  • 5. LINUX FILE SYSTEM  /bin :- It contains all binary and executable files.  /sbin:- It contains all system executable and binary files.  /etc :- It contains all configuration files.  /lib :- It contains the location for library files.  /boot:- It contains linux boot file and linux kernel.
  • 6.  /dev :- It contents all device files. eg. CDROM, Harddisk.  /var :- It contents login files and mails.  /opt :- It contents typical location of optional packages.  /home:- It contents typical location for all users.  /mnt :- It is a mount directory used to mount CDROM , Floppy.  /user/local:-It shows default location for administrators. Contd…
  • 7. LINUX SHELL  SHELL:- Shell is an interface between the user and the kernel.  TYPES OF SHELL  bash  sh  nologin  tcsh  csh  ksh
  • 8. USERS,GROUPS AND PERMISSIONS  USERS The concept of user accounts was created to allow many individuals to share these precious computing resources.  TYPES OF USERS Primary :- root (administrator) Secondary :- other users
  • 9. Contd….  GROUPS Sometimes users need to collaborate. This can be accomplished by having users assigned to groups and setting appropriate group permissions for files or directories. TYPES User private group :- For private grouping. Primary group :- By default.
  • 10. Contd..  PERMISSIONS Permissions are used to restrict the files user, files group and everyone else. r: permission to read a file. w: permission to write a file. x: permission to execute a program or change into a directory. -: no permission
  • 11. RAID DEVICE  RAID (Redundant area of independent disks) Raid Device are used to store the data in multiple storage device simultaneously.  TYPES OF RAID RAID 0 RAID 1 RAID 5 RAID 6
  • 12. LVM CONCEPT  LVM (Logical Volume Manager) It is a concept used by Linux to obtain the maximum use of memory storage. L.V.M. collects all the memory unallocated and combines to form a volume group. This volume group is Dynamic in size.
  • 13. SNAPSHOT CONCEPT  It is a new feature added in RHEL5 & RHEL5.2  Snapshot provides the facility to save the memory by reducing a big amount of data into a very smaller memory space making a snap.  We can only read the data.
  • 15. TYPES OF SERVERS  NIS SERVER  NFS SERVER  DNS SERVER  FTP SERVER  DHCP SERVER  SSH SERVER  TELNET & XINETD SERVER  SMTP SERVER  SAMBA SERVER  WEB SERVER
  • 16. NIS SERVER Network Information System(NIS) NIS Server is Used to manage account & system information on multiple system from a central Server. Software Required :- rpm –q portmap rpm –q ypserv Configuration File :- vim /etc/sysconfig/Network vim /var/yp/Makefile Service :- service portmap restart service ypserv restart service yppasswdd restart
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26. NFS SERVER  Network File Sharing (NFS) NFS Server is used to share the directories on the network locally or globally. Software Required :- rpm –q portmap rpm –q nfs-utils Configuration File :- vi /etc/exports Service :- service portmap start service nfs start
  • 27. DNS SERVER DNS(Domain Name System)  Resolves hostnames into IP addresses (Forward Lookup).  Resolves IP addresses into hostnames (Reverse Lookup).  Allow machines to be logically grouped by name domains.  Provides E-Mail routing information.
  • 28. Contd..  Software Required :- rpm –q bind rpm –q bind- utils  Configuration File :- vi /etc/named.conf vi /var/named/* vi /etc/rndc.* vi /etc/resolv.conf  Script : named  Ports : 53(domain), 953(rndc)
  • 29. DHCP SERVER  DHCP : Dynamic Host Configuring Protocol, implemented via dhcpd  It assigns IP address for its clients.  In a Network , A computer needs information like I.P. address , dns server ,gate way, subnetmask to communicate to other computers.  DHCP automatically give all client computers on
  • 30. Contd.. Obtaining an initial address  Client broadcasts DISCOVER to locate theClient broadcasts DISCOVER to locate the server.server.  Server reply with its IP.Server reply with its IP.  Client sends REQUEST for address on theClient sends REQUEST for address on the received IP.received IP.  Server commits allocation & returns ACKServer commits allocation & returns ACK containing IP, Subnet Mask, DNS, Gateway etc.containing IP, Subnet Mask, DNS, Gateway etc.
  • 31.
  • 32. FTP SERVER  File transfer protocol (FTP) is a common method of copying files between computer systems.  TYPES OF FTP Regular FTP:- This is used primarily to allow specific users to download files to their systems. Anonymous FTP:- This is used primarily to allow any remote user to download files to their systems.
  • 33. Contd.. Software Required :- rpm –q vsftpd Configuration File :- vi /etc/vsftpd/vsftpd.conf Service :- service vsftpd start
  • 34. SSH SERVER  SSH (Secure shell server) is used to access the full control on the remote machine on network. Software Required :- rpm –q openssh rpm –q openssl rpm –q openssh-server rpm –q openssh-clients Configuration File :- vi /etc/ssh/sshd-config Service :- service sshd start
  • 35. TELNET & XINETD SERVER  XINETD Xinetd is a program used to start and stop a variety of Linux data communication applications. Some of these applications, such as TELNET, are installed by default in Red Hat Linux. Software Required :- rpm –q telnet rpm –q telnet-server Configuration File :- vi /etc/xinetd.d/telnet vi /etc/securetty Service :- service xinetd start
  • 36. SMTP SERVER  Simple Mail Transfer Protocol(SMTP) is used to send or retrieve the received mails on the network. Based on two Services Pop:- Post Office Protocol imap:- Internet message acess protocol Software Required :- rpm –q sendmail rpm –q sendmail-cf rpm –q m4 rpm –q make rpm –q procmail Configuration File :- vi /etc/mail/sendmail.cf vi /etc/mail/access Service :- service sendmail restart
  • 37. SAMBA SERVER  To share the files and directories of linux with window or other operating system then we use samba server. Software Required :- rpm –q samba rpm –q samba-common rpm –q samba-client Configuration File :- vi /etc/samba/smb.conf
  • 38. Apache Web Server  Apache is Redhat Standard Web Server  According to Net craft Web server survey Apache is the most widely used Web server.  More than 50% Web sites are hosted on Apache Web Server  Apache is Free.  Apache is extremely powerful and extendable.  Easily available with any Linux distribution.
  • 39. Configuration Of Apache  Packages : httpd  Default Port Number : 80  Configuration Directory : /etc/httpd/  Main Configuration File : etc/httpd/conf/httpd.conf  Service Daemon : httpd