ALL > Computer and Education > courses > university courses > undergraduate courses > An Overview of Computer Science > zstu-(2020-2021-2) > online classroom exercise >
online classroom exercise 3 Version 0
👤 Author: by writer 2021-03-19 23:43:43
Summarize the booting process.

Please login to reply. Login

3108655967qqcom • 2021-03-20 08:19:03
Machine starts by executing the boot loader program already in memory. Operating system is stored in mass storage.Boot loader program directs the operating system into main memory and then transfers control to it. PostVer 0

Please login to reply. Login

nintendolinkfoxmailcom • 2021-03-20 15:15:21
When the computer boots, it will get the instructions in the boot loader, which will direct the CPU to transfer the operating system from a predetermined location into the volatile area of main memory. PostVer 0

Please login to reply. Login

wx287_oz26ftyeszxunhjb6ehly8qq5vdi • 2021-03-20 15:57:29
the instructions in the boot loader direct the CPU to transfer the operating system from a predetermined location into the volatile area from main memory PostVer 0

Please login to reply. Login

3218825920qqcom • 2021-03-20 19:21:47
When the user starts the computer, a boot instruction will be generated to boot the CPU from the specified location to the volatile area of main memory. PostVer 0

Please login to reply. Login

981193371qqcom • 2021-03-21 09:06:03
Boot loader program in memory will be executed to start the machine, then it directs the transfer of the OS from mass storage to main memory and then transfers control to it. PostVer 0

Please login to reply. Login

387940240qqcom • 2021-03-21 10:45:59

When the machine is turned on, the CPU begins executing the bootstrap, which resides in ROM. This bootstrap directs the CPU through the process of transferring the operating system from mass storage into the volatile area of main memory. When this transfer is complete, the bootstrap directs the CPU to jump to the operating system.
PostVer 0

Please login to reply. Login

1281489327qqcom • 2021-03-21 10:50:40
PostVer 0

Please login to reply. Login

3301794392qqcom • 2021-03-21 14:29:14
Boot is a means that computer often uses when it starts to input. After the computer is started, the equipment can input a small amount of instructions and data, and then they can input other programs. This process is called booting. PostVer 0

Please login to reply. Login

542236691qqcom • 2021-03-21 19:05:14
After the computer is turned on the device implements a small number of instructions and data input, and then they input more program,this process is called booting process. PostVer 0

Please login to reply. Login

1917871807qqcom • 2021-03-21 21:11:08
At the beginning,the instructions in the boot loader direct the CPU to transfer the operating system from a predetermined location into the volatile area of main memory.Modern boot loaders can copy an operating system into main memory from a variety of locations.Once the operating system has been placed in main memory, the boot loader directs the CPU to execute a jump instruction to that area of memory. PostVer 0

Please login to reply. Login

zboa6023gmailcom • 2021-03-22 14:19:56
Booting is a process of switching on the computer and starting the operating system. Six steps of the booting process are BIOS and Setup Program, The Power-On-Self-Test (POST), The Operating System Loads, System Configuration, System Utility Loads and Users Authentication. PostVer 0

Please login to reply. Login

1634605411qqcom • 2021-03-22 15:32:25
<div>
<ul>
<li>Step 1: Power On and System Startup</li>
<li>Step 2: Bootloader</li>
<li>Step 3: Kernel</li>
<li>Step 4: init process</li>
<li>Step 5: Zygote and Dalvik</li>
<li>Step 6: System service</li>
</ul>
</div>
&nbsp; PostVer 0

Please login to reply. Login

1772435220qqcom • 2021-03-22 15:59:47
When the boot program starts, it first looks for the boot line in NVRAM. If not, the contents of the NVRAM are added to the BOOT_PARAMS structure. The boot program and the VxWorks kernel then use this structure to look for the boot parameters. PostVer 0

Please login to reply. Login

2542886026qqcom • 2021-03-22 19:52:51
When booting, BIOS self checks first(POST---Power On Self Test), and then looks for booting devices. There is MBR stored in a location on the hard disk. Then, start from MBR to find the system boot partition and load bootloader. After confirming booting, bootloader will give boot permissions to system files, and then load the system files into memory in a certain order, and then start the service, load boot items, and start successfully. PostVer 0

Please login to reply. Login

2287245796qqcom • 2021-03-22 21:34:06
Booting is a means that computer often uses when it starts to input. After the computer is started, the equipment can input a small amount of instructions and data, and then they can input other programs. This process is called booting. PostVer 0

Please login to reply. Login

1498139310qqcom • 2021-03-23 07:55:12
When booting, BIOS self checks first, and then looks for booting device. If MBR is stored in a location on the hard disk, the system boot partition will be found from MBR and the system boot will be loaded. The system boot will decide which system to boot. After confirming the startup, the system boot will give the boot permission to the system files, and then load the system files into the memory in a certain order. Then start the service, load the startup item, and start it successfully. PostVer 0

Please login to reply. Login

wx287_oz26ftx_gczjz0jpscvm1-d3flry • 2021-03-23 08:26:50
When the computer is turned on the device implements a small number of instructions and data input, and then they input more program,this process is called booting process. PostVer 0

Please login to reply. Login

1017364560qqcom • 2021-03-23 08:35:51
Modern boot loaders can copy an operating systems into main memory from a variety of locations. Once the operating system has been placed in main memory, the boot loader directs the CPU to execute a jump instruction to that area of memory. The overall process of executing the boot loader and thus starting the system is called booting the computer.
PostVer 0

Please login to reply. Login

2394773179qqcom • 2021-03-25 08:28:51
System boot refers to the process of loading the operating system kernel into memory and booting the system. PostVer 0

Please login to reply. Login

1281489327qqcom • 2021-03-28 10:08:51
1. Power on;

2, BIOS Power On Self Test (post-power On Self Test), memory address is 0FFF :0000;

Read the first Sector (Boot Sector) into the memory address 0000:7c00;

4, Check (Word)0000: 7DFE is equal to 0xAA55. If not, try another medium. If there is No other boot media, it displays "No ROM Basic" and crashes.

5. Jump to 0000:7C00 to execute the program in MBR;

6, the MBR will copy itself to 0000:0600 first, and then continue execution;

Search for active partitions in the primary partition table. If there is no active partition or more than one active partition, stop;

Read the first sector of the active partition into the memory address 0000:7c00;

9. Jump to 0000:7C00 to continue to execute the startup procedure of the specific system;

10. Start the program PostVer 0

Please login to reply. Login

wx287_oz26ftxkg9s80omiw6ifl9sdtr-s • 2021-03-28 16:24:55
The BIOS program first loads the boot record of the storage device into memory, and then executes the boot program in the boot record;

The bootloader will load the operating system kernel in the storage device into memory and enter the entry point of the kernel to start execution

The post OS kernel completes the initialization of the system and allows users to interact with the OS PostVer 0

Please login to reply. Login

wx287_oz26ft4i1taklosxq83xveqlblcc • 2021-03-30 08:42:05
1. The PC power supply is ON ---- the lights on the display, keyboard, and case flash;
2. Detection screen-a short brake message appears on the screen;
3. Detect the memory-easy information of the memory appears on the screen through the beep sound;
4. Execute BIOS ---- brief BIOS information appears on the screen;
5. Detect other equipment ---- the information of other equipment appears (CPU, HDD, MEM...);
6. Execute the initialization file of OS (operating system)----start WINDOWS2000, etc. PostVer 0

Please login to reply. Login

2653815589qqcom • 2021-03-30 09:05:13
These are the high-level steps in the boot process. You need to be aware of files involved in the boot process because errors in these files can cause boot problems. PostVer 0

Please login to reply. Login

819354461qqcom • 2021-04-03 16:57:55
Boot is a means that computer often uses when it starts to input. After the computer is started, the equipment can input a small amount of instructions and data, and then they can input other programs. This process is called booting. The boot program in the microcomputer can input the program and data entered by the user through the keyboard into the random access memory PostVer 0

Please login to reply. Login

1115727260qqcom • 2021-04-06 10:45:23
Machine starts by executing the boot loader program already in memory.Operating system is stored in mass storage.Boot loader program directs the transfer of the operating system into main memory and then transfers control to it. PostVer 0

Please login to reply. Login

1525693772qqcom • 2021-04-08 16:59:47
Booting is the act of switching on the computer and loading the operating system. This process is referred to as cold booting. PostVer 0

Please login to reply. Login

wx287_oz26ft_ppvmz0yhrwncdglpjyuum • 2021-04-17 18:35:59
The computer boot process includes two aspects, one is the power on self-test of the computer, the other is the boot process of the computer, which is the process of the computer from inanimate hardware to living software. PostVer 0

Please login to reply. Login

2848519344qqcom • 2021-04-19 23:13:10
The boot program is usually divided into two parts: the first stage boot program is located in the master boot record, which is used to guide the second stage boot program located on a certain partition. PostVer 0

Please login to reply. Login

Reversion History

Loading...
No reversions found.