Bài giảng Hệ thống máy tính: Chương 9 - TS. Trần Thị Minh Khoa
lượt xem 3
download
Bài giảng Hệ thống máy tính: Chương 9 Cấu hình sử dụng máy tính, cung cấp cho người học những kiến thức như: Cài đặt; Bootloader; Người dùng; Quản lý ứng dụng, service; Quản lý FS, phân quyền; Các mức cấu hình. Mời các bạn cùng tham khảo
Bình luận(0) Đăng nhập để gửi bình luận!
Nội dung Text: Bài giảng Hệ thống máy tính: Chương 9 - TS. Trần Thị Minh Khoa
- Chap9: CẤU HÌNH SỬ DỤNG MÁY TÍNH GV: TS. Trần Thị Minh Khoa
- ()(9t) Cài đặt Bootloader Người dùng Quản lý ứng dụng, service Quản lý FS, phân quyền Các mức cấu hình
- Why is Booting Required ? Phần cứng không biết nơi lưu OS và cách nào để tải (load) Cần 1 chương trình đặc biệt để làm việc này – Bootstrap loader. E.g. BIOS – Boot Input Output System. Bootstrap loader định vị kernel, tải vào bộ nhớ và xử lý
- What files are needed to boot a PC computer? Cần ít nhất 3 files để thực hiện boot DOS prompt command.com io.sys msdos.sys NOTE:- Những file trên có kích thước rất nhỏ
- How Boot process occurs ? Sự kiện reset của CPU (power up, reboot): các thanh ghi chỉ dẫn được tải lên vị trí xác định trong bộ nhớ. Bao gồm: 1 chỉ dẫn nhảy (jump instruction) để chuyển việc xử lý lên đúng vị trí của chương trình Bootstrap Chương trình này hình thành ROM, vì RAM là trạng thái unknown khi hệ thống khởi động (start up). ROM thuận tiện vì nó không cần khởi tạo và không bị ảnh hưởng bởi virus
- The PC boot process 1. Executes code from well-known location. 2. Execute first-stage boot loader from MBR. 3. Execute second-stage boot loader. 4. Load the kernel. 5. Load the first user space program
- BIOS BIOS – Basic Input/Output System Located at memory location 0xFFFF0 Boot firmware designed to be run at startup POST – Power-on Self-Test Identifies, tests, and initializes system devices Run-time services Initial configuration Selects which device to boot from Alternatively, Extensible Firmware Interface (EFI)
- Stage 1 Boot Loader: MBR MBR – Master Boot Record Located on first sector of the boot disk Size: 512 bytes BIOS loads MBR to RAM, relinquishes control Main job: load the second-stage boot loader
- Anatomy of the MBR First 446 bytes Primary boot loader Code and error messages Next 64 bytes Partition information Last 2 bytes Magic number Validation check for MBR Image from http://www.ibm.com/developerworks/linux/library/l-linuxboot/
- Stage 2 Boot Loader Loads the kernel On Linux: GRUB – Grand Universal Bootloader LILO – Linux Loader Others: SysLinux, ISOLinux, PXELinux From Windows NT to Windows XP: NTLDR On Windows Vista: Windows Boot Manager
- A closer look at GRUB GRUB understands ext2 and ext3 file systems LILO had to load raw sectors from the hard disk GRUB displays a list of available kernels On Ubuntu, defined in /boot/grub/menu.lst More info: http://www.gnu.org/software/grub/
- What does GRUB load? title Ubuntu 9.04, kernel 2.6.2813generic uuid 0ef7b971 kernel /boot/vmlinuz2.6.2813generic root=UUID=0ef7b971 ro quiet splash initrd /boot/initrd.img2.6.2813generic kernel – a compressed kernel image Performs initial minimal hardware setup Decompresses the kernel image, puts it in memory If present, loads RAM disk (see below) initrd – initial RAM disk Temporary root file system Contains executables and drivers to load the real root
- Execution in the kernel ● arch/i386/boot/head.S ● performs basic hardware setup ● calls startup_32() of ./arch/i386/boot/compressed/head.S ● arch/i386/boot/compressed/head.S ● set up the basic environment ● clear Block Started by Symbol ● calls decompress_kernel() found in ./arch/i386/boot/compressed/misc.c ● calls startup_32 in ./arch/i386/kernel/head.S ● arch/i386/kernel/head.S also called swapper or process 0 ● ● initializes page tables and enables memory paging ● detects CPU type ● init/main.c ● calls start_kernel() ● calls kernel_thread to start init (process ID 1)
- initrd Initial RAM disk – a small temporary file system During stage 2 boot, initrd is copied into RAM and mounted Allows the kernel to fully boot without having to mount any physical disks Supports many hardware configurations through loadable modules After kernel is booted, the real root file system is mounted
- init The first user space program -- /sbin/init Typical for desktop Linux systems For Ubuntu, init reads /etc/event.d see https://launchpad.net/upstart/ default run level defined at /etc/event.d/rc-default for normal start, Ubuntu is at run level 2 executes programs from /etc/rc2.d For other Linux systems, init reads /etc/inittab
- What about Windows XP? Boot Loader Phase Kernel loading phase Session Manager Winlogon
- Windows XP and earlier NTLDR – the actual boot loader boot.ini – booting options presents menu options as to what OS to load if absent, defaults to \Windows directory of first partition
- What NTLDR does Accesses the file system on boot drive Looks for hiberfil.sys, the hibernation image Reads boot.ini and prompts the user Runs NTDETECT.COM Starts NTOSKRNL.EXE
- NTOSKRNL.EXE Kernel image of Windows NT family Contains Cache Manager Executive Kernel Security Reference Monitor Memory Manager Scheduler Also known as: NTOSKRNL.EXE : 1 CPU NTKRNLMP.EXE : N CPU SMP NTKRNLPA.EXE : 1 CPU, PAE NTKRPAMP.EXE : N CPU SMP, PAE
- Kernel Loading Phase HAL.DLL -- type of hardware abstraction layer KDCOM.DLL -- Kernel Debugger HW ExtensionDLL BOOTVID.DLL -- for the windows logo and side-scrolling bar config\system registry
CÓ THỂ BẠN MUỐN DOWNLOAD
-
Bài giảng Hệ thống máy tính: Chương 5 - Nguyễn Kim Khánh
8 p | 131 | 16
-
Bài giảng Hệ thống máy tính: Chương 1 - Nguyễn Kim Khánh
9 p | 139 | 15
-
Bài giảng Hệ thống máy tính: Chương 2 - Nguyễn Kim Khánh
20 p | 133 | 15
-
Bài giảng Hệ thống máy tính: Chương 3 - Nguyễn Kim Khánh
14 p | 129 | 13
-
Bài giảng Hệ thống máy tính - Chương 4: Hệ thống IO (Input Output System)
16 p | 275 | 7
-
Bài giảng Hệ thống máy tính (Computer Systems): Chương 2 - Nguyễn Kim Khánh
80 p | 14 | 5
-
Bài giảng Hệ thống máy tính và ngôn ngữ C - Chương 1: Ôn lại các kiến thức cơ bản về máy tính (GV. Nguyễn Nhật Nam)
58 p | 32 | 5
-
Bài giảng Hệ thống máy tính - Chương 8: Hệ thống file
16 p | 64 | 5
-
Bài giảng Hệ thống máy tính: Chương 2.2 - TS. Trần Thị Minh Khoa
23 p | 48 | 5
-
Bài giảng Hệ thống máy tính và ngôn ngữ lập trình - Chương 1: Ôn tập các kiến thức cơ bản về máy tính
39 p | 57 | 4
-
Bài giảng Hệ thống máy tính: Chương 6 - TS. Trần Thị Minh Khoa
119 p | 43 | 4
-
Bài giảng Hệ thống máy tính: Chương 2.1 - TS. Trần Thị Minh Khoa
30 p | 23 | 4
-
Bài giảng Hệ thống máy tính - Chương 5: Tổng quan hệ điều hành
8 p | 107 | 4
-
Bài giảng Hệ thống máy tính (Computer Systems): Chương 3 - Nguyễn Kim Khánh
49 p | 8 | 4
-
Bài giảng Hệ thống máy tính: Chương 3 - TS. Trần Thị Minh Khoa
78 p | 33 | 3
-
Bài giảng Hệ thống máy tính (Computer Systems): Chương 1 - Nguyễn Kim Khánh
68 p | 16 | 3
-
Bài giảng Hệ thống máy tính: Chương 1 - TS. Trần Thị Minh Khoa
15 p | 22 | 2
-
Bài giảng Hệ thống máy tính - Chương 0: Giới thiệu
7 p | 107 | 2
Chịu trách nhiệm nội dung:
Nguyễn Công Hà - Giám đốc Công ty TNHH TÀI LIỆU TRỰC TUYẾN VI NA
LIÊN HỆ
Địa chỉ: P402, 54A Nơ Trang Long, Phường 14, Q.Bình Thạnh, TP.HCM
Hotline: 093 303 0098
Email: support@tailieu.vn