Chap 3 Installation. Kickstart Kickstart is Red Hat’s program that completely or partially automates the same installation and post-installation on one.

Slides:



Advertisements
Similar presentations
ITI-481: Unix Administration Rutgers University Center for Applied Computer Technologies Christopher Uriarte, Instructor Meeting 4.
Advertisements

Chapter 9 Part III Linux File System Administration
Linux+ Guide to Linux Certification Chapter Nine System Initialization.
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
| © 2007 LenovoLenovo Confidential Lenovo OneKey Recovery - Ver for Y510&Y710-
Managing Your Hard Disk and Operating System 23,26 March :30pm - 4:00pm.
Linux+ Guide to Linux Certification, Second Edition Chapter 3 Linux Installation and Usage.
S.Ha.R.K. Workshop28/02/05 S.Ha.R.K. Installation HowTo Tullio Facchinetti University of Pavia - Italy.
1 Web Server Administration Chapter 3 Installing the Server.
Linux+ Guide to Linux Certification, Second Edition Chapter 7 Advanced Installation.
Chapter 7: Configuring Disks. 2/24 Objectives Learn about disk and file system configuration in Vista Learn how to manage storage Learn about the additional.
Bootloader / multi-boot
Linux Install. Resources Guide to Linux Installation and Administration, Nicholas Wells, Course Technology, 2000.
Installation. Overview  Download files to make media or another bootable configuration.  Prepare system for installation.  Boot the computer and run.
Laksh mi.  fdisk is an interactive utility to manipulate disk partitions.  Use fdisk –l to review the disks and partitions on the system.  Use fdisk.
Chapter 8: Adding a Disk — Unix Hard Disk Basics Installation and Configuration Barry Kane CMSC-691X.
Partitioning the SD card ● First of all remember that check the drive which you are formatting otherwise you will loose all your data, “SDA” is reserved.
Basic Computer Maintenance Basic Computer Maintenance Clean and Cool Deleting Temporary Files Scandisk Backup Your Data How to.
Configuring Disk Quotas Linux System Administration To implement disk quotas, use the following steps: Enable quotas per file system by modifying /etc/fstab.
SUSE Linux Enterprise Desktop Administration Chapter 1 Install SUSE Linux Enterprise Desktop 10.
Linux+ Guide to Linux Certification, Third Edition
CompTIA Linux+ Certification
Linux+ Guide to Linux Certification Chapter Three Linux Installation and Usage.
Using Large Hard Drives in Linux Presented by Kevin McGregor Manitoba UNIX User Group March 12, 2013.
RAID RAID stands for Redundant Array of Inexpensive (Independent) Disks.
Unix File System Internal Structures By C. Shing ITEC Dept Radford University.
2/12/2003 Lecture 2 Computer System Administration Lecture 2 Setup and Installation Irix & FreeBSD.
Guide to Linux Installation and Administration, 2e1 Chapter 3 Installing Linux.
Chapter 2 Installation Overview. Planning the Installation Questions: –Size of partitions –Where to put partitions –Which software packages to install.
Guide to Linux Installation and Administration, 2e1 Chapter 8 Basic Administration Tasks.
11 INSTALLING AND MANAGING STORAGE DEVICES IN WINDOWS XP Chapter 8.
MCTS Guide to Microsoft Windows Vista Chapter 4 Managing Disks.
Chapter 6: Linux Filesystem Administration
Partitioning and Formatting drives The easy way, using Knoppix live CD By Carl Weisheit.
Installation Overview Lab#2 1Hanin Abdulrahman. Installing Ubuntu Linux is the process of copying operating system files from a CD, DVD, or USB flash.
Chapter 2: Installation Overview Part 1. Installing Fedora/RHEL is the process of copying operating system files from media to the local system and setting.
1 Interface Two most common types of interfaces –SCSI: Small Computer Systems Interface (servers and high-performance desktops) –IDE/ATA: Integrated Drive.
Module 2 - The File System
Chapter 1 Managing Storage. Contents Understanding Partitioning Understanding LVM Understanding RAID Understanding Clustering and GFS Using Access Control.
1 Objectives Manage and install new file systems.
Slackware 9.1 Installation First prompt in the installation process.
Chapter 2 (Cont.) The Unix Way Essential System Administration, 3rd Edition.
Configuring Disk Devices. Module 4 – Configuring Disk Devices ♦ Overview This module deals with making partitions using fdisk, implementing RAID and Logical.
Kickstart Installation
Creating and Managing File Systems. Module 5 – Creating and Managing File Systems ♦ Overview This module deals with the structure of the file system,
IST 222 Day 3. Homework for Today Take up homework and go over Go to Microsoft website and check out their hardware compatibility list.
Linux+ Guide to Linux Certification Chapter Six Linux Filesystem Administration.
CSCI 330 UNIX and Network Programming Unit XX: Linux Administration.
Disk storage systems Question#1 (True/False) A track is divided into multiple units called sectors.
Gorman, Stubbs, & CEP Inc. 1 Introduction to Operating Systems Lesson 8 Linux.
Materi managing user & groups, file system Managing Software Packages and File Systems The Complete Guide to Linux System Administration Chapter 10.
1 C1-UD 6-2 INSTALLING LINUX Academic Year DAI. Credit 1 (Single and Multiuser Operating Systems) Ferran Chic PELE-08/09 (Pla Experimental Llengües.
Linux Filesystem Administration
© 2007 IBM Corporation 9/26/2016 Automated Generation of Kickstart Files IBM.
© 2007 IBM Corporation 9/29/2016 Automated Generation of Kickstart Files IBM.
Andrea Chierici Virtualization tutorial Catania 1-3 dicember 2010
Chapter 8 Unix & Linux.
Configuring Disk Quotas
OPS235: Week 2 Installing Linux
Guide to Linux Installation and Administration, 2e
The Architecture of oVirt Node
Installing OS.
Operating System Module 1: Linux Installation
Linux File Systems Partitioning Mounting File Systems
OPS235: Week 5 Lab4: Investigations 1 – 3
Linux+ Guide to Linux Certification, Second Edition
Recap – Intro to Project 3 and FAT32
Configuring Disk Quotas
Presentation transcript:

Chap 3 Installation

Kickstart Kickstart is Red Hat’s program that completely or partially automates the same installation and post-installation on one or more machines. To use, create a single file (ks.cfg) that answers all questions that are normally asked during an installation. Anaconda then refers to this file instead of asking you questions.

Kickstart cont System-config-kickstart utility is part of the system-config-kickstart package that you can install using yum. This can be used to create the installation script.

parted parted reports on and manipulates disk partitions from the command line. /sbin/parted /dev/hda print – uses the print command to display info about the partitions on the /dev/hda drive. Includes partition number, start location, end location, size, type (primary, ext, or logical), file system, flags that are turned on (boot, swap, raid, lvm)

Figure 3-19 The primary and extended partitions from the example

parted Note that you cannot make changes to an extended partition without affecting all logical partitions within it. Parted can also be used to change disk layout. Be extremely careful – changing the partition table on a disk can destroy information.

parted To make changes to partitions, /sbin/parted /dev/hdb (name of device) –h gives list of help command –p print displays current partition information –Quit - exits Parted will not allow you to set up overlapping partitions and will not allow you to create a partition at the beginning of a disk to avoid loss of data.

Parted guidelines Don’t delete or modify the partition that defines the extended partition unless you are willing to lose all data on all logical partitions within the extended. Put /boot at the beginning of the drive (partition 1) Easiest to use parted to create partitions and use mkfs amd mkswap to create the filesystem on the partitions.