LPI Linux LPIC1. Module 1

Size: px
Start display at page:

Download "LPI Linux LPIC1. Module 1"

Transcription

1 LPI Linux LPIC1 Module 1

2 Module Contents 1 Evans Ikua Lead Editor Kenya ikua@fossfa.net 2 Chris Brown Content Author UK cb11840@gmail.com 3 Mark Clarke Content Author RSA mark@jumpingbean.co.za 4 Brian Ssennoga Content Author Uganda bssennoga@ihsu.ac.ug 5 Trust Zifa Material co-editor Zimbabwe trust@jumpingbean.co.za 6 John Matogo Material co-editor Kenya john jmatogo@strathmore.edu 7 Ken Mutua Material co-editor Kenya kenmutua@gmail.com 8 Bernard Owuor Material co-editor Kenya b_owuor@yahoo.com 9 Sisay Adugna Material co-editor Ethiopia sisayie@gmail.com 10 Balthas Seibold Senior Project Manager - GIZ Germany Balthas.seibold@giz.de 11 Petra Hagemann Project Manager - GIZ Germany Petra.hagemann@giz.de 12 George Nyambuya Africa Coordinator - ict@innovation RSA George.nyambuya@giz.de 13 David Paulus Intern - GIZ Germany david.paulus@giz.de

3 Module Contents Boot the system Change run levels Shutdown and reboot system

4 Enable and disable integrated peripherals. Configure systems with or without external peripherals such as keyboards. Differentiate between the various types of mass storage devices. Set the correct hardware ID for different devices, especially the boot device. Know the differences between coldplug and hotplug devices. Determine hardware resources for devices. Tools and utilities to list various hardware information (e.g. lsusb, lspci, etc.) Tools and utilities to manipulate USB devices Conceptual understanding of sysfs, udev, hald, dbus

5 According to von Neumann, a computer system consists of a central CPU, primary storage or memory, secondary or permanent storage such as a hard disk, and various input/output devices. In order to operate the CPU needs to be able to load instructions and data into the CPU from memory, possibly having to fetch it from the secondary storage first, execute the instructions and then store the results back in memory. It communicates with the various input/output or peripheral devices via a data path know as bus. A computer system may have more than one bus which it uses to communicate with different components.

6 BIOS The purpose of the BIOS (Basic Input/Output System) is to perform a Power On Self Test(POST), identify and initialize system devices and peripherals and start the process to load the operating system by loading the boot loader from the boot device. The BIOS also provides an abstraction layer to the operating system for accessing system devices. The intention of this layer is to insulate the operating system form having to deal with the wide variety of devices available today but it is ignored by most modern operating systems, including Linux, which access the devices with their own device drivers.

7 Most BIOS manufactures provide a console based user interface that allows you to configure the low-level system for devices. The BIOS configuration interface, and how it is accessed, varies from manufacturer to manufacturer but is usually accessed by pushing a key or key combination, such as delete or insert during system boot. It is under the BIOS configuration console that you can: enable or disable devices, allocate resources such as IRQ and IO addresses, select the boot order of devices and, change that affect operating modes of devices such as disk drives and network cards

8 Most BIOS console allow one to disable integrated peripherals such as COM ports, video or network cards. Even if these devices are not causing any installation or boot up issues you may wish to disable them if they are unused to free up resources that would otherwise be unavailable for other purposes. Sometimes it is necessary to disable system checks for peripherals such as a keyboard or a mouse which, although necessary for the proper operation of desktop machines, are often not present for servers. Machines without keyboards, mouse or monitors are referred to as headless systems. Some BIOSes will refuse to boot if these devices are not present unless these system checks are disabled. (You may wonder how headless machines are accessed at all if they don't have a keyboard, mouse or monitor. The answer is via the network with utilities such as SSH which is covered later in this book.) Of course to access the BIOS itself it is necessary to have peripherals such as a keyboard and monitor present!

9 IRQ, IO Addresses and DMA Addresses IRQs are the mechanism by which peripherals tell the CPU to suspend its current activity and to handle its event such as a key press or a disk read. IO addresses are regions of memory mapped to devices where the CPU can write information of the devices attention and read from the devices as well. This is a somewhat simplified explanation of how peripheral devices communicate with the CPU but suits our purposes for understanding IRQ and IO Addresses.

10 IRQ, IO Addresses and DMA Addresses IRQ 0 system timer (cannot be changed); IRQ 1 keyboard controller(cannot be changed); IRQ 2 cascaded signals from IRQs 8 15 devices configured to use IRQ 2 will use IRQ 9 IRQ 3 serial port controller for COM2 (shared with COM4, if present); IRQ 4 serial port controller for COM1 (shared with COM3, if present); IRQ 5 LPT port 2 or sound card; IRQ 6 floppy disk controller;

11 IRQ, IO Addresses and DMA Addresses IRQ 7 LPT port 1 or sound card (8bit Sound Blaster and compatibles). IRQ 8 realtime clock; IRQ 9 open interrupt / available or SCSI host adapter; IRQ 10 open interrupt / available or SCSI or NIC; IRQ 11 open interrupt / available or SCSI or NIC; IRQ 12 mouse on PS/2 connector; IRQ 13 math coprocessor / integrated floating point unit or interprocessor interrupt (use IRQ 14 primary ATA channel (disk drive or CDROM); IRQ 15 secondary ATA channel

12 IRQ, IO Addresses and DMA Addresses When the CPU and peripheral devices need to communicate and/or pass data between each other they make use of IO addresses. Essentially they communicate by reading and writing data to the reserved IO addresses of the device. There are two complementary methods for performing IO between the CPU and device. There is memory mapped IO (MMIO) and port IO (PIO) addressing.

13 IRQ, IO Addresses and DMA Addresses For allocation of IO memory you can look at /proc/iomem, an example of the contents of this file is given. Prior to plug and play technology you would have to configure IO devices addresses in the BIOS and operating system but with the introduction of plug and play the allocation is now done automatically by the operating system and the bus.

14 IRQ, IO Addresses and DMA Addresses DMA stands for direct memory access and is an optimization that allows devices to read and write directly to memory without having to go through the CPU. Traditionally when the CPU requests data to be read from a device into memory, the CPU needs to be involved in the process of transferring the data. Under this model, called Progammed IO (PIO), significant CPU time is spent simply copying data between the device and memory. With DMA devices can write directly to memory, bypassing the CPU. This greatly enhances system performance.

15 IRQ, IO Addresses and DMA Addresses DMA is automatically configured by the operating system for most devices. A significant device where DMA may not be automatically configured is on the system parallel ata (PATA) disks. For PATA devices (see section below) DMA access can be enabled, assuming your device is /dev/hda (SATA drives which are popular today do not use DMA in the conventional sense) by running the command: hdparm -d1 /dev/sda To see the current setting on your hard disk you can run the command hdparm -d /dev/sda

16 Configuring IRQs, IO Ports/Addresses and DMA Configuration for device IRQ, IO addresses, DMA channels and memory regions happens automatically with today's plug and play PCI bus. Resources are allocated via the system BIOS, via the Linux kernel and possibly the device driver with resource conflicts being automatically resolved in most cases. Linux provides various utilities to query devices to find out the resources that they use. A lot of these utilities make use of the information exported by the kernel in the /proc file system.

17 Configuring IRQs, IO Ports/Addresses and DMA Two commands used to query PCI devices are the lspci and setpci commands. The lspci utility can provide verbose information on devices using the PCI bus, depending on which parameters you use. The lspci utility can provide verbose information on devices using the PCI bus, depending on which parameters you use. l spci -vv provides detailed output on PCI devices. The output below shows typical output from the l spci command with no parameters.

18 Configuring IRQs, IO Ports/Addresses and DMA Even though IRQ conflicts are now a thing of the past, as interrupts can be shared, it can still be a bad idea for some devices with a high frequency of interrupts to share the same IRQ. This is particularly true if the devices are hard disks or sound devices. In this case it is recommended to try and move the PCI cards to different slots to try and get them assigned different IRQs.

19 Linux Device Management Overview A device driver is a kernel space program that allows user space applications to interact with the underlying hardware. Kernel space refers to privileged code which has full access to hardware and runs in ring 0 which is a hardware enforced privileged execution mode. User space applications run in a less privileged mode, ring 3, and cannot access hardware directly. User space application can only interact with hardware by making system calls to the kernel to perform actions on their behalf.

20 Linux Device Management Overview The Linux kernel exports information about the devices from the device drivers to a pseudo filesystem mounted under /sys. This file system tells user space what devices are available. It is populated at system boot but when a hot plug device is inserted or removed the /sys file system is updated and the kernel fires events to let user space know that there has been a change.

21 Linux Device Management Overview One of these user space applications is the kernel device manager, udev, which creates a device node under the /dev directory to allow user space application access to the device. The name of the device node or file is determined by the device drivers naming convention or by user defined rules in /etc/udev/rules.d/. It is through the entries under /dev that user space application can interact with the device driver.

22 Linux Device Management Overview D-Bus (desktop bus). These applications are mainly used by desktop environment to carry out tasks when an event occurs such as open the file browser when a USB drive is inserted or image application when a camera is inserted. While udev creates the relevant entries under the /dev file system, if anything useful need to happen when the event occurs HAL and D-Bus are needed. (Note: HAL is now deprecated as it is being merged into udev). HAL is a single daemon responsible for discovering, enumerating and mediating access to most of the hardware on the host computer for desktop applications to which it provides a hardware abstraction layer.

23 Mass Storage Devices Over time numerous interfaces for connecting mass storage devices have been developed but the four main types of disks encountered today are : PATA Parallel Advanced Technology Attachment, also known as IDE SATA Serial Advanced Technology Attachment, the latest standard replacing PATA especially on desktops and laptops; SATA drive naming conventions uses the scsi sub system naming conventions with devices being labeled /dev/sd[az].,

24 Mass Storage Devices SCSI Small Computer System Interface disks are used in servers and other high end machines. SCSI provides high speed access as well as the ability to connect a large number of devices SAS serial SCSI, a new SCSI standard aimed at servers Besides the interface, the type of mass storage is also determined by the device itself. For example you can have SATA optical drives (CDROMs/DVDROMS) as well as hard disk and SCSCI disks and SCSI tape drives.

25 Identifying the correct device ID for BOOT device The purpose of listing the different type of mass storage devices and their naming conventions is to allow you to easily identify the device ID for your disks. The blkid utility, which replaces vol_id, can be used to query the on a device or search for a device with a specific UUID. blkid /dev/sda1 produces the following output:

26 Identifying the correct device ID for BOOT device /dev/sda1: UUID="c7d63e4b-2d9f-450a b8929ec8a6b" TYPE="ext4" showing that the first partition on the device sda has an ext4 filesystem and a UUID of c7d63e4b-2d9f-450a b8929ec8a6b blkid -U cc4b-4bfc-beb9-305e1f7f8bc9 searches for the device with the specified ID and returns /dev/sdb1. Alternatively you could look under /dev/disk/by-uuid to see which ids map to which devices as seen by the Linux kernel.

27 Hot plug & Cold plug Devices Hot plug and cold plug devices refer to the ability of a device to be inserted or removed while the computer is running (hot plug) or whether the machine has to be powered down before the device can be inserted or removed (cold plug). Typical hot plug devices are USB data sticks, mice or keyboards and some SATA drives, while cold plug devices include video cards, network cards and CPUs, although in high end server machines even these components can be hot pluggable. The benefit of hot plug devices is the ability to swap out faulty, or add additional, components without having to take the machine offline, a requirement for many production servers that need to maintain maximum uptime.

28 USB Support One of the most popular types of hotplug interfaces today is the Universal Serial Bus (USB) which is a communication architecture designed to connect devices to a PC. These devices are divided into five classes: Display Devices Communication Devices Audio Devices Mass Storage Devices Human Interface Devices (HID) The devices are plugged into a USB port which is driven by a USB controller. Support for USB controllers is present in the Linux kernel since version 2.2.7

29 USB Support There are 3 types of USB host controllers: OHCI (Compaq) UHCI (Intel) EHCI (USB v 2.0) - usb-ohci.o - usb-uhci.o - ehci-hdc.o Once a USB device is plugged into a PC we can list the devices with lsusb.

30 Device Drivers In Linux device drivers most drivers are provided as part of the kernel source code and can be compiled as modules which can be loaded and unloaded dynamically into of the kernel or are compiled directly into the kernel. The modular system makes it possible for 3rd parties to write device drivers and provide them as modules that can be loaded and unloaded without having to recompile the kernel. Most drivers are compiled as modules as this keep the kernel small and allows for far more drivers to be available that what would be practical if they were all compiled as part of the kernel.

31 Device Drivers The commands you need to know to manage device drivers under Linux are: lsmod lists currently install modules, modinfo query a module for dependency, author and parameter information insmod installs a module by providing a path to the driver, modprobe installs a module via module name and handles dependency resolution, rmmod remove

32 Boot the System When an x86 computer starts up it follows a predefined set of steps to boot the operating system: 1. On start up the CPU jumps to the address of the BIOS and proceeds to load it. The BIOS performs some checks and initializes hardware before locating the configured boot device. The boot device is configured in the BIOS user interface by setting the boot order of attached mass storage devices.

33 Boot the System 2. Once the boot device is located the BIOS proceeds to load the the Master Boot Record (MBR) of the boot device. The MBR is the first sector ( 512 bytes) of the boot device and contains the 1st stage boot loader with a partition table. 3. The 1st stage boot loader locates the partition of the 2nd stage boot loader by looking at the boot sectors of the partition marked as active / bootable.

34 Boot the System 4. The second stage boot loader has the task of loading the operating system for Linux; this means the Linux kernel and initial ram disk. The second-boot loader may present the user with a menu to select which kernel to boot and may even allow the user to boot heterogeneous operating systems (aka dual boot). 5. Once the 2nd stage boot loader has loaded the kernel it passes control over to it, The kernel starts and configures the CPU type, interrupt handling, the rest of memory management such as paging tables and memory paging, device initialization, drivers, etc.

35 Boot the System 6. Once the kernel is fully operational it starts an initial programme which by default is /sbin/init. The init programme sets up user space and starts the login shells and/or the graphical login. What services are started and the state of the machine after the init process has completed its initialization depends on the default runlevel and its configuration.

36 Boot the System

37 Boot the System When the 2nd sage boot loader is running, you are presented with an opportunity to pass additional parameters to the Linux kernel via a text console that is part of the boot loader. Typical parameters that you may pass to the kernel include: init overrides the process that is run by the kernel after it has finished loading. init=/bin/bash is used to bypass the login prompt in cases where the root password had been forgotten.

38 Boot the System root informs the kernel which device to use as the root filesystem. Often used when troubleshooting an incorrectly configured boot loader. E.g root = /dev/hda1 tells the kernel to use /dev/hda1 as the root device filesystem rather than what it has been configured to use noapic/nolapic tells the kernel not to use the advanced programmable interrupt controller or local advanced programmable interrupt controller for assigning IRQ and resources. This effectively turns off pnp in the Linux kernel. noacpi turns off the advance

39 Boot the System Once the kernel has finished loading it starts the init process. Init is responsible for checking and mounting file systems, and starting up configured services, such as the network, mail and web servers for example, it does this by entering its default runlevel. This is configured in the /sbin/init application configuration file /etc/inittab.

40 Boot the System A line in the inittab file has the following format: id:runlevel s:actions:process id 1-4 characters that identify the function, runlevels the runlevels for which the process will be executed, action One of a defined list of events for which the process should be executed or an instruction to init on what to do when the process is executed.

41 Boot the System The most commonly used actions are: wait init will wait till the process it is starting has completed before continuing, respawn tells init to restart the process whenever it terminates, this is useful for login processes. Ctrl-Alt-Del this traps the ctrl-alt-delete key combination, initdefault set the default runlevel powerfail and powerokwait are used to respond to notifications from attached UPS devices in the event of power failure and restoration

42 Runlevels, Rebooting & Shutting down the system Traditionally Linux has 7 runlevels numbered from 0-6. A runlevel defines the state of the computer after boot. Except for runlevels 0 and 6, the the allocation of runlevel numbers to particular configurations differ from distribution to distribution. Run level 0 is the runlevel used to halt the system and run level 6 is used for rebooting the system. Runlevel specific scripts are stored under /etc/rc.d/rc?.d, /etc/init.d/rc?.d or /etc/rc?.d or similar location where the? Is the number of the runlevel. Under each of these directories there are symbolic links back to a common set of scripts, under the /etc/rc.d, /etc/init.d, or /etc/rc.d/init.d (note the missing number from the paths), that all runlevels use.

43 Runlevels, Rebooting & Shutting down the system The remaining runlevels are typically assigned to the following configurations: 1) single user mode 2) multi-user, text mode, no servers 3) multi-user, text mode, servers 4) multi-user, GUI mode, no servers 5) multi-user, GUI mode, servers.

44 Runlevels, Rebooting & Shutting down the system Runlevel specific scripts are stored under /etc/rc.d/rc?.d, /etc/init.d/rc?.d or /etc/rc?.d or similar location where the? Is the number of the runlevel. Under each of these directories there are symbolic links back to a common set of scripts, under the /etc/rc.d, /etc/init.d, or /etc/rc.d/init.d (note the missing number from the paths), that all runlevels use. The symbolic links have a name that starts with a S or K, a number and then the name of the service the script controls.

45 Runlevels, Rebooting & Shutting down the system The S means that this is a script run with 'start' when the runlevel is entered and K signifies a script which is run when the run level is exited. The number indicates the order in which the scripts are run while the name indicates the services. The order of the scripts is determined by system requirements, for example the network needs to be configured before the mail or web server can be started. Startup scripts are simply bash scripts that call the appropriate application when run. These scripts take a standard set of parameters namely; start, stop, restart and reload. Some poorly written scripts may not implement all of the parameters.

46 Configuring Runlevels You can add or remove services from run levels by changing the symbolic links in the respective /etc/rc.d/rc?.d directory but various tools exists to enable easy management of these scripts. Under Debian systems and their derivatives you can use the update-rc.d or rc-update scripts, passing in the name of the service you wish to add or remove with the appropriate parameter, for example: update-rc.d disable 3 apache2 update-rc.d enable 3 apache2

47 Configuring Runlevels For rpm based distributions (like RedHat or CentOS) the command chkconfig does the same thing. chkconfig -del httpd will remove the apache web server from all configured run levels, chkconfig -add httpd will add the apache web server to all default runlevel, chkconfig -level 3 httpd on will add apache to runlevel 3

48 Starting & Stopping Services You may also stop and start services at runtime. On Debianbased systems, by either invoking the start-up script directly on debian based systems with the appropriate parameter i.e. start for starting the service and stop for halting the service. /etc/init.d/apache2 stop /etc/init.d/apache2 start On Redhat based systems you can use the service command to stop and start services. service httpd start service httpd stop

49 EXERCISE 1.1 examin hardware configuration 1. Thoroughly examine the following files and directories: /proc/ioports /proc/interrupts /proc/iomem /proc/dma /etc/rc.d/ /etc/rc.d/rc?.d /dev/* 2. Check kernel boot options (to do so you need to find the grub.conf file, for example using /etc/grub.conf symlink)

50 EXERCISE 1.2 Check the last boot status 1. Sometimes the boot process does not finish correctly. In such a case you can check what went wrong for example by running dmesg command or, in order to troubleshoot the boot phase when services are starting, you can check log files via examining the /var/log/* files, mainly /var/log/messages/.

51 EXERCISE 1.3 Check system boot and shutdown process 1. Check /etc/inittab file and check the default runlevel (find the initdefault option). Then identify appropriate startup directory for the runlevel and examine the order in which services are starting and stopping while boot / shutdown process. 2. Reboot your system (shutdown r now) and check which services are being stopped and how this corresponds with the K scripts. Then, while the system is booting, check if the services starting sequece corresponds with the S scripts order.

52 EXERCISE 1.4 Add remove service from runlevels 1. Using chkconfig l check which services are running in which runlevels. 2. Use manual (man command) or read lecture notes in order to check how can you remove a service to be omitted while entering a specified runlevel (for example your default runlevel).

53 EXERCISE 1.4 Add remove service from runlevels - continued 3. Remove one selected service from all runlevels (for example network) and check appropriate runlevel rc?.d directory to see what happened. 4. Add the service back to all runlevels and compare what has changed in the rc?.d directory.

CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL

CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL CompTIA Linux+/LPIC-1 COPYRIGHTED MATERIAL Chapter System Architecture (Domain 101) THE FOLLOWING COMPTIA LINUX+/LPIC-1 EXAM OBJECTIVES ARE COVERED IN THIS CHAPTER: 101.1 Determine and Configure hardware

More information

PL-I Assignment Broup B-Ass 5 BIOS & UEFI

PL-I Assignment Broup B-Ass 5 BIOS & UEFI PL-I Assignment Broup B-Ass 5 BIOS & UEFI Vocabulary BIOS = Basic Input Output System UEFI = Unified Extensible Firmware Interface POST= Power On Self Test BR = Boot Record (aka MBR) BC =Boot Code (aka

More information

LPI Linux LPIC1. Module 2

LPI Linux LPIC1. Module 2 LPI Linux LPIC1 Module 2 Module Contents 1 Evans Ikua Lead Editor Kenya ikua@fossfa.net 2 Chris Brown Content Author UK cb11840@gmail.com 3 Mark Clarke Content Author RSA mark@jumpingbean.co.za 4 Brian

More information

The Linux IPL Procedure

The Linux IPL Procedure The Linux IPL Procedure SHARE - Tampa February 13, 2007 Session 9274 Edmund MacKenty Rocket Software, Inc. Purpose De-mystify the Linux boot sequence Explain what happens each step of the way Describe

More information

The kernel constitutes the core part of the Linux operating system. Kernel duties:

The kernel constitutes the core part of the Linux operating system. Kernel duties: The Linux Kernel The kernel constitutes the core part of the Linux operating system. Kernel duties: System initialization: detects hardware resources and boots up the system. Process scheduling: determines

More information

System Administration. Startup Process

System Administration. Startup Process System Administration Startup Process Why Care? Every process on your system comes about by following a specific chain of events from the machine startup You may want to disable processes You may want

More information

Using grub to Boot various Operating Systems

Using grub to Boot various Operating Systems Operating Systems and Systems Integration Using grub to Boot various Operating Systems Contents 1 Aim 2 2 What You Will Do 2 3 Background 2 3.1 Installing grub in MBR from a floppy, and from the OS........

More information

Certification. System Initialization and Services

Certification. System Initialization and Services Certification System Initialization and Services UNIT 3 System Initialization and Services UNIT 3: Objectives Upon completion of this unit the student should be able to: Describe BIOS functions with respect

More information

Booting up and Shutting down A primer for troubleshooting

Booting up and Shutting down A primer for troubleshooting Booting up and Shutting down A primer for troubleshooting In this section, we touch upon the startup and shutdown process on Linux. It is beyond the scope of this course to cover this topic in depth and

More information

CSE 265: System and Network Administration

CSE 265: System and Network Administration CSE 265: System and Network Administration System startup and shutdown Bootstrapping Booting PCs Boot loaders Booting into single user mode Startup scripts Rebooting and shutting down Bootstrapping i.e.,

More information

CSE 265: System and Network Administration

CSE 265: System and Network Administration CSE 265: System and Network Administration System startup and shutdown Bootstrapping Booting PCs Boot loaders Booting into single user mode Startup scripts Rebooting and shutting down Bootstrapping i.e.,

More information

CST8177 Linux II. Linux Boot Process

CST8177 Linux II. Linux Boot Process CST8177 Linux II Linux Boot Process Reference information from the text, http://www.linuxdoc.org and several other web sites Linux Boot Process Topics covered in this slide-set Basic definition of the

More information

Chapter 6. Boot time configuration. Chapter 6 Boot time configuration

Chapter 6. Boot time configuration. Chapter 6 Boot time configuration Chapter 6. Boot time configuration Chapter 6 Boot time configuration Last revised: 20/6/2004 Chapter 6 Outline In this chapter we will learn about: How the system boots How to configure the boot loaders

More information

The Early System Start-Up Process. Group Presentation by: Tianyuan Liu, Caiwei He, Krishna Parasuram Srinivasan, Wenbin Xu

The Early System Start-Up Process. Group Presentation by: Tianyuan Liu, Caiwei He, Krishna Parasuram Srinivasan, Wenbin Xu The Early System Start-Up Process Group Presentation by: Tianyuan Liu, Caiwei He, Krishna Parasuram Srinivasan, Wenbin Xu 1 Boot Process Booting is the initialization of a computerized system In Linux,

More information

Linux/Citrix Virtual Environment Documentation

Linux/Citrix Virtual Environment Documentation Linux/Citrix Virtual Environment Documentation Purpose This document provides information on creating a bootable Ubuntu flash drive, customizing the interface, and using basic commands. Contents Bootable

More information

LPI EXAM LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2. Buy Full Product.

LPI EXAM LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2. Buy Full Product. LPI EXAM - 101-350 LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 Buy Full Product http://www.examskey.com/101-350.html Examskey LPI 101-350 exam demo product is here for you to test

More information

RHCE BOOT CAMP. The Boot Process. Wednesday, November 28, 12

RHCE BOOT CAMP. The Boot Process. Wednesday, November 28, 12 RHCE BOOT CAMP The Boot Process OVERVIEW The boot process gets a machine from the useless off state to the feature rich operating system we all know and love Requires cooperation between hardware and software

More information

CompTIA Linux+ Guide to Linux Certification Fourth Edition. Chapter 2 Linux Installation and Usage

CompTIA Linux+ Guide to Linux Certification Fourth Edition. Chapter 2 Linux Installation and Usage CompTIA Linux+ Guide to Linux Certification Fourth Edition Chapter 2 Linux Installation and Usage Objectives Prepare for and install Fedora Linux using good practices Outline the structure of the Linux

More information

Installing Linux (Chapter 8) Note packet # 4. CSN 115 Operating Systems Ken Mead Genesee Community College. Objectives

Installing Linux (Chapter 8) Note packet # 4. CSN 115 Operating Systems Ken Mead Genesee Community College. Objectives Installing Linux (Chapter 8) Note packet # 4 CSN 115 Operating Systems Ken Mead Genesee Community College Objectives Learn about the hardware components of your computer system Configure hard disk space

More information

LPIC 102. be familiar with standard runlevels in a Linux system

LPIC 102. be familiar with standard runlevels in a Linux system LPIC 102 The boot process, init and runlevels 1 Aim After successfully working through this exercise, You will: be familiar with standard runlevels in a Linux system be able to rescue a system without

More information

Introduction to Configuration. Chapter 4

Introduction to Configuration. Chapter 4 Introduction to Configuration Chapter 4 This presentation covers: > Qualities of a Good Technician > Configuration Overview > Motherboard Battery > Hardware Configuration Overview > Troubleshooting Configurations

More information

How Hardware and Software Work Together

How Hardware and Software Work Together C3_CH0_39 CHAPTER How Hardware and Software Work Together C In this chapter, you will learn: omputer systems contain both hardware and How an operating system manages software, and computer technicians

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage Linux+ Guide to Linux Certification, Third Edition Chapter 2 Linux Installation and Usage Objectives Install Red Hat Fedora Linux using good practices Outline the structure of the Linux interface Enter

More information

Linux Essentials. Smith, Roderick W. Table of Contents ISBN-13: Introduction xvii. Chapter 1 Selecting an Operating System 1

Linux Essentials. Smith, Roderick W. Table of Contents ISBN-13: Introduction xvii. Chapter 1 Selecting an Operating System 1 Linux Essentials Smith, Roderick W. ISBN-13: 9781118106792 Table of Contents Introduction xvii Chapter 1 Selecting an Operating System 1 What Is an OS? 1 What Is a Kernel? 1 What Else Identifies an OS?

More information

Troubleshooting & Repair

Troubleshooting & Repair Chapter Troubleshooting & Repair 6.1 Introduction This chapter provides the most common problem encountered with the M785 notebook computer and some troubleshooting means. Some of the common problems are:

More information

TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103

TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103 TestOut Linux Pro - English 4.0.x OBJECTIVE MAPPING: CompTIA Linux+ LX0-103 CompTIA Linux+ Powered by LPI LX0-103 Objectives The Linux+ Powered by LPI Exam: LX0-103 exam covers the following topics. #

More information

client X11 Linux workstation

client X11 Linux workstation LPIC1 LPIC Linux: System Administrator LPIC 1 LPI command line LPIC-1 Linux LPIC-1 client X11 Linux workstation Unix GNU Linux Fundamentals Unix and its Design Principles FSF and GNU GPL - General Public

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 6 Advanced Installation

Linux+ Guide to Linux Certification, Third Edition. Chapter 6 Advanced Installation Linux+ Guide to Linux Certification, Third Edition Chapter 6 Advanced Installation Objectives Describe the types and structure of SCSI devices Explain the different levels of RAID and types of RAID configurations

More information

ECE 471 Embedded Systems Lecture 12

ECE 471 Embedded Systems Lecture 12 ECE 471 Embedded Systems Lecture 12 Vince Weaver http://www.eece.maine.edu/~vweaver vincent.weaver@maine.edu 8 October 2015 Announcements Homework grades have been sent out, let me know if you did not

More information

Exam : 1Z Title : Enterprise Linux System Administration. Version : DEMO

Exam : 1Z Title : Enterprise Linux System Administration. Version : DEMO Exam : 1Z0-403 Title : Enterprise Linux System Administration Version : DEMO 1. You are logged in to server1 and want to allow remote connections to server1 through X Display Manager Control Protocol (XDMCP).

More information

Magic Card User Manual

Magic Card User Manual Table of Contents Magic Card User Manual Magic Card Introduction 2 What is Magic card? 2 Magic Card Features 2 Working Modes 3 Magic card editions 3 Installation 4 System Requirements 4 Pre-installation

More information

Vendor: LPI. Exam Code: Exam Name: LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2. Version: Demo

Vendor: LPI. Exam Code: Exam Name: LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2. Version: Demo Vendor: LPI Exam Code: 101-350 Exam Name: LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 Version: Demo System Architecture QUESTION 1 What is the process ID number of the init program?

More information

Course 55187B Linux System Administration

Course 55187B Linux System Administration Course Outline Module 1: System Startup and Shutdown This module explains how to manage startup and shutdown processes in Linux. Understanding the Boot Sequence The Grand Unified Boot Loader GRUB Configuration

More information

Linux+ Guide to Linux Certification, Third Edition

Linux+ Guide to Linux Certification, Third Edition Linux+ Guide to Linux Certification, Third Edition Chapter 14 Troubleshooting, Performance, and Security Objectives Describe and outline good troubleshooting practices Effectively troubleshoot common hardware-

More information

Runlevels, System Shutdown and Reboot

Runlevels, System Shutdown and Reboot Information These notes were originally written in the year 2000 as part of a set of LPI Exam 101 training materials. The LPI training course at Bromley College was subsequently discontinued and some of

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Model: A1010 Document Date: 05/20/02 Document Part Number: FPC58-0681-01 FUJITSU PC CORPORATION 1 LifeBook A Series Notebook BIOS A Series BIOS SYSTEM

More information

Chapter 3: System Configuration

Chapter 3: System Configuration Chapter 3: System Configuration Complete CompTIA A+ Guide to PCs, 6e How to make configuration changes to a computer The importance of BIOS and UEFI BIOS How to replace a motherboard battery What system

More information

MMX Enhanced. 586 GXM-AV Main Board. Trademarks and / or Registered trademarks are the properties of their respective owners.

MMX Enhanced. 586 GXM-AV Main Board. Trademarks and / or Registered trademarks are the properties of their respective owners. 586 GXM-AV Main Board Trademarks and / or Registered trademarks are the properties of their respective owners. User s Manual Version 1.1 The Information presented in this publication has been carefully

More information

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1 More on file systems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 bind mounts quotas Booting process and SysVinit Installation Disk rescue mode 2 A bind mount is used to mount

More information

E Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure

E Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure BIOS SECTION E8020 LifeBook E Series BIOS E Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the factory

More information

HOW TO: Perform a Hardware Independent Restore (HIR)

HOW TO: Perform a Hardware Independent Restore (HIR) Document ID:00000184 Last Modified:12/12/2008 HOW TO: Perform a Hardware Independent Restore (HIR) Key Words: How to, HIR, Hardware independent restore, recovery Situation: The purpose of this document

More information

CMOS Passwords and Resources

CMOS Passwords and Resources LAB PROCEDURE 3 CMOS Passwords and Resources OBJECTIVES 1. Use BIOS Features extended setup. 2. Use CMOS passwords. 3. Learn about power management settings. 4. Learn about integrated peripherals. Hardware

More information

HOW LINUX BOOTS. As it turns out, there isn t much to the boot process:

HOW LINUX BOOTS. As it turns out, there isn t much to the boot process: 3 HOW LINUX BOOTS You now know the physical structure of a Linux system, what the kernel is, and how to work with processes. This chapter teaches you how the system starts (boots) that is, how the kernel

More information

Lab 3a Using the vi editor

Lab 3a Using the vi editor Lab 3a Using the vi editor Objectives: Become familiar with the vi Editor Review the three vi Modes Review keystrokes to move between vi modes Create a new file with vi Editor Invoke vi with show mode

More information

Data rate - The data rate is the number of bytes per second that the drive can deliver to the CPU.

Data rate - The data rate is the number of bytes per second that the drive can deliver to the CPU. A+ Guide to Hardware, 4e Chapter 7 Hard Drives Learning from Floppy Drives Floppy drives are an obsolescent technology Replacements: CD drives and USB flash memory Good reasons for studying floppy drive

More information

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1 More on file systems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 bind mounts quotas Booting process and SysVinit Installation Disk rescue mode 2 A bind mount is used to mount

More information

LX0-103 Exam Questions Demo CompTIA. Exam Questions LX CompTIA Linux+ [Powered by LPI] 1

LX0-103 Exam Questions Demo   CompTIA. Exam Questions LX CompTIA Linux+ [Powered by LPI] 1 CompTIA Exam Questions LX0-103 CompTIA Linux+ [Powered by LPI] 1 Version:Demo 1.CORRECT TEXT Which file in the /proc filesystem lists parameters passed from the bootloader to the kernel? (Specify the file

More information

S Series BIOS BIOS SETUP UTILITY

S Series BIOS BIOS SETUP UTILITY BIOS SECTION S2110 LifeBook S Series Notebook BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

Disks, Filesystems 1

Disks, Filesystems 1 Disks, Filesystems 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity: fsck command /etc/fstab mounting file systems: mount command unmounting

More information

OPERATING SYSTEMS & UTILITY PROGRAMS

OPERATING SYSTEMS & UTILITY PROGRAMS OPERATING SYSTEMS & UTILITY PROGRAMS System Software System software consists of the programs that control the operations of the computer and its devices. Functions that system software performs include:

More information

Please choose the best answer. More than one answer might be true, but choose the one that is best.

Please choose the best answer. More than one answer might be true, but choose the one that is best. Introduction to Linux and Unix - endterm Please choose the best answer. More than one answer might be true, but choose the one that is best. SYSTEM STARTUP 1. A hard disk master boot record is located:

More information

A+ Guide to Hardware: Managing, Maintaining, and Troubleshooting, 5e. Chapter 6 Supporting Hard Drives

A+ Guide to Hardware: Managing, Maintaining, and Troubleshooting, 5e. Chapter 6 Supporting Hard Drives A+ Guide to Hardware: Managing, Maintaining, and Troubleshooting, 5e Chapter 6 Supporting Hard Drives Objectives Learn about the technologies used inside a hard drive and how data is organized on the drive

More information

Initialization: runlevels

Initialization: runlevels Initialization: init The init process is always the first started (has a PID of 1) and will remain running until the system is shut down With init running, the kernel moves to the background awaiting system

More information

CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT

CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT Types of User Interface USER INTERFACE Command Interface Menu Interface Graphical User Interface Voice actuated Interface Web- form Interface User interface

More information

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B::

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B:: Module Title Duration : 55187B: Linux System Administration : 4 days Overview This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

ECE 471 Embedded Systems Lecture 16

ECE 471 Embedded Systems Lecture 16 ECE 471 Embedded Systems Lecture 16 Vince Weaver http://web.eece.maine.edu/~vweaver vincent.weaver@maine.edu 15 October 2018 Announcements Midterm is graded Don t forget HW#5 No class Wednesday, Career

More information

LPI Exam LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 Version: 6.0 [ Total Questions: 120 ]

LPI Exam LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 Version: 6.0 [ Total Questions: 120 ] s@lm@n LPI Exam 101-400 LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 Version: 6.0 [ Total Questions: 120 ] LPI 101-400 : Practice Test Topic break down Topic No. of Questions Topic

More information

Installation of the OS

Installation of the OS Lab 1 Installation of the OS 1.1 Objectives The goal of this first session is to install a Debian/Linux operating system from scratch on a Intel x86- based computer. The installation will be made on a

More information

Note: The configurations and factory defaults described here are for BIOS version

Note: The configurations and factory defaults described here are for BIOS version EBX-12 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EBX-12 (Cobra). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

ICAU1128B: Operate a Personal Computer Student Handbook

ICAU1128B: Operate a Personal Computer Student Handbook ICA20105 Certificate II in Information Technology ICAU1128B: Operate a Personal Computer Student Handbook Modification History Competency Handbooks ICA20105: Cert II in Information Technology: ICAU1128B

More information

LPIC-1 Exam 101, Part 1 of 2, version 4.0

LPIC-1 Exam 101, Part 1 of 2, version 4.0 101-400 - LPIC-1 Exam 101, Part 1 of 2, version 4.0 1. Which of the following statements is correct when talking about /proc/? A. All changes to files in /proc/ are stored in /etc/proc.d/ and restored

More information

BIOS Setup DESKPOWER 5000

BIOS Setup DESKPOWER 5000 BIOS Setup DESKPOWER 5000 1 Preface What is BIOS setup? BIOS setup is a program that helps the user set up a hardware environment, including memory, hard disks, and floppy disk drives. Minimum setup has

More information

1 Introduction Brief Description Character Conventions Editions User Manual Redesign... 4

1 Introduction Brief Description Character Conventions Editions User Manual Redesign... 4 HDClone 9 Manual Table of Contents 3 Table of Contents 1 Introduction.... 4 1.1 Brief Description... 4 1.2 Character Conventions... 4 1.3 Editions... 4 1.4 User Manual Redesign... 4 2 Variants... 5 2.1

More information

Note: The configurations and factory defaults described here are for EPM-4 BIOS version

Note: The configurations and factory defaults described here are for EPM-4 BIOS version EPM-4 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EPM-4 (Lynx). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

CST8207 GNU/Linux O/S I Disks and Partitions

CST8207 GNU/Linux O/S I Disks and Partitions CST8207 GNU/Linux O/S I Disks and Partitions Topics Disk Partition Table Identifying Partitions Linux Partitions fdisk CST8207 - Algonquin College 2 Associated Readings Chapter 3: pages 71 82 You ve already

More information

Sysinstall main menu. Move the cursor down by using the DOWN-ARROW and select Standard.

Sysinstall main menu. Move the cursor down by using the DOWN-ARROW and select Standard. Initial Boot from Install Disc 1 Turn on the power for your machine. Sysinstall main menu Immediately place the first CD-ROM of the FreeBSD 5.3 install set in your machine's CD-ROM drive. You'll see an

More information

CompTIA Exam LX0-103 CompTIA Linux+ [Powered by LPI] Exam 1 Version: 6.0 [ Total Questions: 120 ]

CompTIA Exam LX0-103 CompTIA Linux+ [Powered by LPI] Exam 1 Version: 6.0 [ Total Questions: 120 ] s@lm@n CompTIA Exam LX0-103 CompTIA Linux+ [Powered by LPI] Exam 1 Version: 6.0 [ Total Questions: 120 ] CompTIA LX0-103 : Practice Test Topic break down Topic No. of Questions Topic 1: System Architecture

More information

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions:

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions: This course prepares students to take the 101 exam of the LPI level 1 certification. The Linux Professional Institute (LPI) is the go to certification body for vendor independent Linux certifications.

More information

S Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure

S Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure BIOS SECTION S6130 LifeBook S Series Notebook BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

Virtual Data Center (vdc) Manual

Virtual Data Center (vdc) Manual Virtual Data Center (vdc) Manual English Version 1.0 Page 1 of 43 Content 1 HOW TO USE CLOUD PORTAL (VMWARE VIRTUAL DATA CENTER)... 3 2 VMWARE SYSTEM DETAILS... 5 3 HOW TO MANAGE VIRTUAL MACHINE... 6 Edit

More information

System CMOS/BIOS Configuration PC Diagnostics

System CMOS/BIOS Configuration PC Diagnostics System CMOS/BIOS Configuration PC Diagnostics (POST; Error Messages and Error Codes) CMOS/BIOS Complementary Metal Oxide Substrate (CMOS) A part of the motherboard that maintains system variables in static

More information

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 2680/2684 SAS Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table

More information

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting Synopsis: This is the second System Administration class, a follow-on class for new administrators with limited networking

More information

Oracle 1Z Enterprise Linux System Administration. Download Full Version :

Oracle 1Z Enterprise Linux System Administration. Download Full Version : Oracle 1Z0-403 Enterprise Linux System Administration Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-403 B. It does not provide any protection to remote X connections. C. It allows

More information

T Series BIOS BIOS SETUP UTILITY

T Series BIOS BIOS SETUP UTILITY BIOS SECTION T4010 LifeBook T Series Tablet PC T Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your tablet. Your BIOS is set at the factory

More information

Exam LFCS/Course 55187B Linux System Administration

Exam LFCS/Course 55187B Linux System Administration Exam LFCS/Course 55187B Linux System Administration About this course This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

Manually Mount Usb Flash Drive Linux Command Line Redhat

Manually Mount Usb Flash Drive Linux Command Line Redhat Manually Mount Usb Flash Drive Linux Command Line Redhat How to Format USB in Linux using Command Line. This article will help you to format USB Flash drive in Ubuntu systems via Command line. So first

More information

"Charting the Course... MOC B: Linux System Administration. Course Summary

Charting the Course... MOC B: Linux System Administration. Course Summary Description Course Summary This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional Linux system administrator. The course covers

More information

QUICK MANUAL. Kontron Embedded Linux Image for Micro Client II and MediClient with ETXPM

QUICK MANUAL. Kontron Embedded Linux Image for Micro Client II and MediClient with ETXPM QUICK MANUAL Kontron Embedded Linux Image for Micro Client II (M@CII) and MediClient with ETXPM Copyright 2008 Kontron Embedded Computers GmbH All right are reserved Release February 2008 Seite: 1 von

More information

LPIC-1 System Administrator

LPIC-1 System Administrator LPIC-1 System Administrator The world s largest and most recognized Linux Certification LPIC-1 is the first certification in LPI s multi-level Linux professional certification program. The LPIC-1 will

More information

PCISniffer 3. Manual

PCISniffer 3. Manual PCISniffer 3 PCISniffer 3 Manual Table of Contents 3 Table of Contents 1 Introduction.... 5 1.1 Brief description.... 5 1.2 Chapter summary... 5 1.3 Character conventions.... 5 2 Supported hardware...

More information

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 5, 2008 Table

More information

OPERATING SYSTEMS LINUX

OPERATING SYSTEMS LINUX OPERATING SYSTEMS LINUX Božo Krstajić, PhD, University of Montenegro Podgorica bozok@cg.ac.yu Process management Linux operating systems work with processes. Basically a process consists of program code

More information

Part I Overview Chapter 1: Introduction

Part I Overview Chapter 1: Introduction Part I Overview Chapter 1: Introduction Fall 2010 1 What is an Operating System? A computer system can be roughly divided into the hardware, the operating system, the application i programs, and dthe users.

More information

Date and Time The date is factory set to the date of the BIOS build. The date and time are editable. NumLock

Date and Time The date is factory set to the date of the BIOS build. The date and time are editable. NumLock EPIC-2 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EPIC-2 (Gecko). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

Serial ATA PCI RAID Quick Installation Guide

Serial ATA PCI RAID Quick Installation Guide Serial ATA PCI RAID Quick Installation Guide Introducing the Serial ATA PCI RAID The Serial ATA PCI RAID is an ultra high-speed two channel Serial ATA controller board for use in Pentium-class computers.

More information

A+ Guide to Managing and Maintaining Your PC. How Hardware and Software Work Together

A+ Guide to Managing and Maintaining Your PC. How Hardware and Software Work Together A+ Guide to Managing and Maintaining Your PC Fifth Edition Chapter 2 How Hardware and Software Work Together You Will Learn About operating systems, what they are, and what they do How an OS interfaces

More information

8 ISSUE 02 SPECIAL EDITION. Installing opensuse Ready to get started? This article shows you how to install opensuse from the disc

8 ISSUE 02 SPECIAL EDITION. Installing opensuse Ready to get started? This article shows you how to install opensuse from the disc Installing opensuse 11.0 Ready to get started? This article shows you how to install opensuse from the disc included with this special edition. BY MARCEL HILZINGER he two-sided DVD included with this special

More information

ECE 471 Embedded Systems Lecture 16

ECE 471 Embedded Systems Lecture 16 ECE 471 Embedded Systems Lecture 16 Vince Weaver http://web.eece.maine.edu/~vweaver vincent.weaver@maine.edu 6 October 2017 Midterm will be graded Don t forget HW#5 Announcements MEMSYS wrapup. Academia,

More information

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on September 17, 2008 Table of Contents 1

More information

Authored by: Brian E. Brzezicki Copyright 2013, Paladin Group LLC Reuse without permission is strictly prohibited

Authored by: Brian E. Brzezicki Copyright 2013, Paladin Group LLC Reuse without permission is strictly prohibited Authored by: Brian E. Brzezicki Copyright 2013, Paladin Group LLC Reuse without permission is strictly prohibited Traditionally Unix systems have used the ATT System V initialization mechanism In System

More information

Troubleshooting the System Hardware

Troubleshooting the System Hardware CHAPTER 5 This chapter provides basic troubleshooting information to help you identify some common problems that might occur with your Wide Area Virtualization Engine (WAVE). This chapter contains the

More information

SANS Institute - Operations Essentials. Operating System Installation Guidelines. Windows XP Professional Installation. Creating Boot Disks

SANS Institute - Operations Essentials. Operating System Installation Guidelines. Windows XP Professional Installation. Creating Boot Disks SANS Institute - Operations Essentials Operating System Installation Guidelines The following document guides you step-by-step through the process of creating a dualboot system. Even if you do not use

More information

Boot Sequence OBJECTIVES RESOURCES DISCUSSION PROCEDURE LAB PROCEDURE 2

Boot Sequence OBJECTIVES RESOURCES DISCUSSION PROCEDURE LAB PROCEDURE 2 LAB PROCEDURE 2 Boot Sequence OBJECTIVES 1. Show the boot sequence of Marcraft 8000 Trainer. 2. See the extended memory count. 3. Change settings in CMOS. 4. See the LED sequence. 5. Detect hard disk drives.

More information

Installation of Fedora 12 with CD

Installation of Fedora 12 with CD Prepared by investech.wordpress.com Installation of Fedora 12 with Net Install CD Version 1.0 investech.wordpress.com 07-12-09 This document is produced under Creative Common License (Attribution No Derivatives).

More information

v02.54 (C) Copyright , American Megatrends, Inc.

v02.54 (C) Copyright , American Megatrends, Inc. 1 Main Advanced H/W Monitor Boot Security Exit System Overview System Time System Date BIOS Version Processor Type Processor Speed Microcode Update Cache Size Total Memory DDR 1 DDR 2 [ 14:00:09] [Tue

More information

Hardware OS & OS- Application interface

Hardware OS & OS- Application interface CS 4410 Operating Systems Hardware OS & OS- Application interface Summer 2013 Cornell University 1 Today How my device becomes useful for the user? HW-OS interface Device controller Device driver Interrupts

More information

S Series BIOS BIOS SETUP UTILITY

S Series BIOS BIOS SETUP UTILITY BIOS SECTION S7020 LifeBook S Series Notebook BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

Adding a block devices and extending file systems in Linux environments

Adding a block devices and extending file systems in Linux environments Adding a block devices and extending file systems in Linux environments In this exercise we simulate situation where user files partition /home fills up and needs to be extended. Also we migrate from static

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Model: A6030 Document Date: 06/06/2007 Document Part Number: FPC58-1698-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook A Series BIOS A Series

More information