Chapter 3 Installing Red Hat Linux

Slides:



Advertisements
Similar presentations
Linux Boot Loaders. ♦ Overview A boot loader is a small program that exists in the system and loads the operating system into the system’s memory at system.
Advertisements

Booting and Shuting Down WeeSan Lee. Roadmap Bootstrapping Boot Loaders Startup/Init Scripts Reboot & Shutdown Q&A.
Genesis: from raw hardware to processes System booting sequence: how does a machine come into life.
Chapter 9: Understanding System Initialization The Complete Guide To Linux System Administration.
Week 8 System Initialization and X Windows. Objectives  Summarize the major steps necessary to boot a Linux system  Configure the LILO and GRUB boot.
Booting and Shutting Down the UNIX Operating System Arcadio A. Sincero Jr. 6/6/2001 CMSC 691X, Section 6080.
Linux+ Guide to Linux Certification Chapter Nine System Initialization.
Linux Booting Procedure
Linux+ Guide to Linux Certification, Second Edition
Linux can be generally divided into four major components: 1. KERNEL – OS, ultimate boss The kernel is the core program that runs programs and manages.
Booting the Linux Kernel Dr. Michael L. Collard 1.
INSTALLING LINUX.  Identify the proper Hardware  Methods for installing Linux  Determine a purpose for the Linux Machine  Linux File Systems  Linux.
Linux+ Guide to Linux Certification, Third Edition
Linux Installation LINUX INSTALLATION. Download LINUX Linux Installation To install Red Hat, you will need to download the ISO images (CD Images) of the.
Linux+ Guide to Linux Certification, Second Edition
CIS238/DL1 Chapter 15 Rebuilding the Linux Kernel Preparing the Source Code Locating the Source Code Installing the Source Code Read the Documentation.
2440: 141 Web Site Administration Server Installation Instructor: Enoch E. Damson.
Linux+ Guide to Linux Certification, Second Edition Chapter 3 Linux Installation and Usage.
Linux Installation Chapter II. Linux Distributions Pre-packaged, installable Linux Anyone can compile a distribution, have to inculde GPL Available for.
Linux Intro Linux, the do it yourself OS Linux, successor to MINIX Linux, Unix for the masses (PC users) History:
1 Web Server Administration Chapter 3 Installing the Server.
Web Administration Introduction to Linux. Linux – The Basics  Core component  Kernel  Kernel along with supporting function libraries  written in.
Lesson 5-Accessing Networks. Overview Introduction to Windows XP Professional. Introduction to Novell Client. Introduction to Red Hat Linux workstation.
Module 8 Linux Installation Procedures 8.1 Pre-Installation Tasks 8.2 Installing and Configuring Linux 8.3 X Server 8.4 Post Installation Configuration.
Bootloader / multi-boot
Lesson 4-Installing Network Operating Systems. Overview Installing and configuring Novell NetWare 6.0. Installing and configuring Windows 2000 Server.
Partitioning Hard Drives. Disk Organization MBR tells layout of the disk Primary PartitionExtended Partition Logical Drives.
Disk Volume Management CSS-1. Terms  Extent – any contiguous set of clusters  Partition – extent treated as a disk  Volume - partition formatted with.
Installing Linux Redhat: A how to guide in installing and configuring Redhat 6.2.
Configuring Disk Quotas Linux System Administration To implement disk quotas, use the following steps: Enable quotas per file system by modifying /etc/fstab.
Linux+ Guide to Linux Certification, Third Edition
CompTIA Linux+ Certification
Linux+ Guide to Linux Certification Chapter Three Linux Installation and Usage.
Guide to Linux Installation and Administration, 2e1 Chapter 3 Installing Linux.
VMWare Workstation Installation. Starting Vmware Workstation Go to the start menu and start the VMware Workstation program. *Note: The following instructions.
Day 4 Understanding Hardware Partitions Linux Boot Sequence.
CIS 191 – Lesson 2 System Administration. CIS 191 – Lesson 2 System Architecture Component Architecture –The OS provides the simple components from which.
Chapter 2 BAI517 Chris Redford.  Different version of Linux are called Distributions or Distros. Each one has its strengths and focus: Red Hat / Fedora.
Guide to Linux Installation and Administration1 Chapter 4 Running a Linux System.
UNIX/LINUX OPERATING SYSTEM. Introduction to Linux Introduction to Unix History of UNIX What is Linux Linux Distributions Linux Installation Unix File.
CHAPTER 8 Managing Software and System Resources.
UNIX Startup and Shutdown CSCI N321 – System and Network Administration Copyright © 2000, 2009 by Scott Orr and the Trustees of Indiana University.
Isecur1ty training center Presented by : Eng. Mohammad Khreesha.
System initialization Unit objectives A.Outline steps necessary to boot a Linux system, configure LILO and GRUB boot loaders, and dual boot Linux with.
This courseware is copyrighted © 2016 gtslearning. No part of this courseware or any training material supplied by gtslearning International Limited to.
1 Setup and Compile Linux Kernel Speaker: Yi-Ji Jheng Date:
Thousands of Linux Installations (and only one administrator) A Linux cluster client for the University of Manchester A V Le Blanc I T Services University.
Overview A) Power on or reset B) 1st stage boot loader C) 2nd stage boot loader D) Operate system.
Linux Introduction Linux was developed in the early 1990’s by Linus Torvald computer science student at the University of Helsinki Linux is distributed.
Chap- 2 BOOTING & SHUTDOWN LINUX SYSTEM Created by: Asst. Prof. Ashish Shah, J.M.PATEL COLLEGE, GOREGOAN W 1.
1 COP 4343 Unix System Administration Unit 1: –Linux OS structure –Distributions –Hardware inventory –Disks and partitions –Installation steps –Boot loader.
Day 1 Tasks How do you backup the MBR (Master Boot Record) of a hard disk? How do you backup the primary partition table of an MBR type hard disk? How.
Chapter 8 Unix & Linux.
GRUB 2 Dave Soergel.
Guide to Linux Installation and Administration, 2e
UBUNTU INSTALLATION
Chapter 4 – Introduction to Operating System Concepts
Operating System Module 1: Linux Installation
Installing Linux Redhat:
Chapter 4 Post-Installation Configuration
OPS235: Week 1 Installing Linux (Lab1: Investigations 4 - )
COP 4343 Unix System Administration
SUSE Linux Enterprise Desktop Administration
User accounts.
Chapter 9 Linux Installation Procedures
Linux and TCP/IP Networking
User accounts.
Partitioning & Formatting
Configuring Disk Quotas
Presentation transcript:

Chapter 3 Installing Red Hat Linux

Important points of the chapter Boot Complete step by step installation Login Shutdown Reboot To plan the best partitioning scheme How much disk space your system presently require? Disk space needed in the future? System’s requirement for dual boot. Data back ups needed and backup system best suitable

Boot Loaders Red Hat Linux systems requires minimum 100MB space to boot. It can boot in two ways: LILO- Linux loader Small boot loader Installed in MBR (Memory Boot Record) More familiar to long term Linux users May not be supported in Red Hat future releases GRUB-(Grand Unified Boot Loader) Default boot loader in Red Hat Works with all BSD Unix More recommendable

Installation Soft Wares on Linux Soft wares can be installed by two different methods RPM (Red Hat Package Manager) ext .rmp e.g soundcardV88.rpm (the display of .rpm files are black or white color) Source files ext .tar e.g driver-0.5.tar (the display of .tar files are always in red color) To configure a source file follow the below steps ./configure ; make ; make install Linux Shutdown commands su –c “/sbin/shutdown –h now OR shutdown -h now su –c “/sbin/shutdown –h 0 OR shutdown –h 0 Linux Reboot commands su –c “/sbin/shutdown –r now OR shutdown –r now su –c “/sbin/shutdown –r 0 OR shutdown –r 0 shutdown –h 18:30 “going down for maintenance” su -c is used to shift from a normal user to Super user /system-admin/root user as only the super user can Reboot and shutdown the system