OPS235: Week 1 Installing Linux (Lab1: Investigations 4 - )

Slides:



Advertisements
Similar presentations
Introduction to Linux Linux startup process Unix Shells and scripts.
Advertisements

Basic Unix system administration
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 can be generally divided into four major components: 1. KERNEL – OS, ultimate boss The kernel is the core program that runs programs and manages.
Linux+ Guide to Linux Certification, Third Edition
Linux+ Guide to Linux Certification, Second Edition
SIS - Security Lab Introductory Session University of Pittsburgh 2006.
Linux+ Guide to Linux Certification, Second Edition Chapter 3 Linux Installation and Usage.
Starting and Stopping Linux. Boot Process BIOS initializes hardware –Loads the boot sector MBR loads the bootloader –Point to kernel Kernel initializes.
Processes & Daemons Chapter IV / Part III. Commands Internal commands: alias, cd, echo, pwd, time External commands, code is in a file: grep, ls, more.
System Startup and Shutdown
Installing a New Windows Server 2008 Domain Controller in a New Windows Server 2008 R2.
Linux Shell. 2 Linux Command-Line Interface ■ Linux shells: A shell is a command interpreter that allows you to type commands from the keyboard to interact.
Linux System Administration LINUX SYSTEM ADMINISTRATION.
System Administration: Linux Track 2 Workshop June 2010 Pago Pago, American Samoa.
File System and Directory Structure in Linux. What is File System In a computer, a file system is the way in which files are named and where they are.
Linux Filesystem Management
Linux+ Guide to Linux Certification, Third Edition
CompTIA Linux+ Certification
Linux+ Guide to Linux Certification Chapter Three Linux Installation and Usage.
Booting and boot levels
System Startup & Shutdown Objectives –to interpret the Unix startup and shutdown configuration files –to be able to create a customised run level Contents.
Linux Security Anthony Albrecht – Services & Accounts
1 Linux Basics for Networking. 2 Module - Linux Basics for Networking ♦ Overview This module focuses on the basics of networking using Redhat Enterprise.
ITI-481: Unix Administration Meeting 3. Today’s Agenda Hands-on exercises with booting and software installation. Account Management Basic Network Configuration.
Linux Services Muhammad Amer. 2 xinetd Programs  In computer networking, xinetd, the eXtended InterNET Daemon, is an open-source super-server daemon.
Basic Router Configuration 1.1 Global configuration Cisco allows us to configure the router to support various protocols and interfaces. The router stores.
Agenda Link of the week Use of Virtual Machine Review week one lab assignment This week’s expected outcomes Review next lab assignments Break Out Problems.
Guide to Linux Installation and Administration1 Chapter 4 Running a Linux System.
UNIX (Linux) Introduction Module-1. OS Kernel In computing, the kernel is the central component of OS. It is a bridge between applications and the actual.
ITI Chris Uriarte ITI-481: Unix Administration Meeting 2 Rutgers University Center for Applied Computer Technologies Chris Uriarte, Instructor.
A Practical Guide to Fedora and Red Hat Enterprise Linux Unit 9: Basic Linux Administration Chapter 11: System Administration: Core Concepts Chapter 16:
Linux Startup Process Presenter: Dipu Gupta.
Networking in Linux. ♦ Introduction A computer network is defined as a number of systems that are connected to each other and exchange information across.
7200 Samsung Confidential & Proprietary Information Copyright 2006, All Rights Reserved. 1/16 OfficeServ 7200 Enterprise IP Solutions Data Server S/W Upgrade.
CSI3131 – Lab 1 Observing Process Behaviour. Running Linux under Virtual PC  Start Virtual PC  This Windows program provides a virtual machine to run.
Introduction to Routers
Unix System Administration Booting and Shutting Down Chapter 2.
Sem 2v2 Chapter 5 Router Startup and Setup. A router initializes by loading the bootstrap, the operating system, and a configuration file. If the router.
Sys Admin Course Service Management Fourie Joubert.
1 Figure 6-5: Turning Off Unnecessary Services Unnecessary Services  Operating system vendors used to install many services by default  This made them.
1 Pertemuan 3 Operating Cisco IOS Software. Discussion Topics The purpose of Cisco IOS software Router user interface Router user interface modes Cisco.
System initialization Unit objectives A.Outline steps necessary to boot a Linux system, configure LILO and GRUB boot loaders, and dual boot Linux with.
Using Networks. Assignment Issues find syntax Permissions HW4 3c /proc vs /tmp vs /var.
System Administration Startup Process. Why Care? ● Every process on your system comes about by following a specific chain of events from the machine startup.
Introduction to the Linux Commandline
Chap-I Network and System Configuration in Linux
SYSTEM ADMINISTRATION PART I by İlker Korkmaz and Kaya Oğuz
Chapter 3 Installing Red Hat Linux
Data Server S/W Upgrade Samsung Electronics Co., Ltd.
Router Startup and Setup
Linux Start Sequence Summary
Chapter 4 Booting and Shutdown
Lab 7 - Topics Establishing SSH Connection Install SSH Configure SSH
OPS235: Week 1 Installing Linux ( Lab1: Investigations 1-4)
OPS235: Configuring a Network Using Virtual Machines – Part 2
OPS235 Lab4: Investigations 5 – 9
COP 4343 Unix System Administration
SUSE Linux Enterprise Desktop Administration
LINUX SYSTEM ADMINISTRATION
OPS235: Week 1 Installing Linux ( Lab1: Investigations 1-4)
OPS235 Configuring a Network Using Virtual Machines – Part I
Router Startup and Setup
Linux Filesystem Management
Objectives Topic 2.6 Understanding the boot process
Presentation transcript:

OPS235: Week 1 Installing Linux (Lab1: Investigations 4 - )

Lab 2 Topics – Part II Lab Time Run Levels: Grub Bootloader: Purpose of Run Levels How to determine current Run-level Grub Bootloader: Purpose Securing Grub bootloader (encryption) Obtaining Network information

Run Levels A Run-Level indicates the “state” (characteristic, mode, or abilities) of the computer system after a boot-up. Level Purpose Description Halt Shuts down system 1 Single-User Mode No network interfaces, start daemons, or allow non-root logins. Shell defaults to root user. Possibly recover forgotten admin password 2 Multi-User Mode No network interfaces or start daemons. 3 Multi-User Mode with Networking Starts the system normally, but in text-based mode (instead of Graphic mode). 4 User-definable For special purposes – For example, automatically booting into KIOSKS or user-defined purposes. 5 X11 (Graphical) Starts the system normally, but in Graphical mode. 6 Reboot Restarts the computer

Run Levels Exact rules and configuration may vary between different Linux distributions. Run Control (rc) directories contain scripts that set-up environment for command or system. Run-levels correspond to scripts executed in directories for each run level: eg. /etc/rc0.d, /etc/rc1.d … /etc/rc6.d This tends to make sense since for example upon shutdown or halt (run-level 0) there would be execution of scripts to terminate processes (eg. services or daemons) prior to power-off. For administrators that forget their password, a default install allows a user to enter Single User Mode (runlevel 1) to change password!

Protecting Grub Access Provide example why Grub boot-loader access should be protected (even if administrators forget their passwords!) List the steps to password protect Grub boot-loader access. List the steps to access grub, and boot in Run Level 1 (single user mode).

Run Levels / Network Info How to determine your current run-level? Are all Unix/Linux distributions consistent with run-levels? How to change your current run-level? What run levels do you consider useful as an administrator? What is purpose of ifconfig command? What is purpose of route / netstat -rn commands? What is purpose of nslookup command?