Skip to main content

lab 6 operating system(four basic options available for the installation of a new operating system)

Operating System Chapter 6

6.1.2 Describe four basic options available for the installation of a new operating system

 

 A)clean INSTALL

  1. A clean install is done on a new system or in cases where no upgrade path exists between the current OS and the one being installed.  
  2. It deletes all data on the partition where the OS is installed and requires application software to be reinstalled.   
  3. A new computer system requires a clean install.    
  4. A clean install is also performed when the existing OS installation has become damaged in some way.  

B)UPGRADE 

  1.  If you are staying with the same OS platform, doing an upgrade is often possible.   
  2. With an upgrade, system configuration settings, applications, and data are preserved.   
  3. It simply replaces the old OS files with the new OS files. 

Example of UPGRADE


4.The term upgrade refers to the replacement of a product with a newer version of that same product. It is most often used in computing and consumer electronics, generally meaning a replacement of hardware, software or firmware with a newer or better version, in order to bring the system up to date or to improve its characteristics. The word is also used by audiophiles to describe the replacement of a product with a better quality product with the aim of bringing enhancements to sound quality



C)MULTI-BOOT



  • Installing more than one OS on a computer to create a multi-boot system is possible. 
  • Each OS is contained within its own partition and can have its own files and configuration settings. 
  • On startup, the user is presented with a menu to select the desired OS.  
  • Only one OS can run at a time and it has full control of the hardware.
  • As an example of multiboot, it is possible to install Windows XP, Windows Server, and Linux all on the same system.  
  • This setup can be useful in a test environment where only one PC is available but there is a need to test several different OS and applications
Example of MULTI-BOOT

D)VIRTUALIZATION
  • Virtualization is a technique that is often deployed on servers. 
  • It enables multiple copies of an OS to be run on a single set of hardware, thus creating many virtual machines. 
  • Each virtual machine can be treated as a separate computer.
  • This enables a single physical resource to appear to function as multiple logical resources. 
  • This type of approach generally demands more physical resources such as CPU processing and RAM because multiple OS’s are running on the same machine
Example of VIRTUALIZATION

Comments

  1. Pretty good post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog posts. Any way I'll be subscribing to your feed and I hope you post again soon. Big thanks for the useful info. microsoft office key

    ReplyDelete
  2. I would like to say that this blog really convinced me to do it! Thanks, very good post. change control software

    ReplyDelete
  3. I would like to say that this blog really convinced me to do it! Thanks, very good post. All in one marketing platform

    ReplyDelete

Post a Comment

Popular posts from this blog

Define Swapping technique which is usually used in memory management

  Define Swapping technique which is usually used in memory management   Swapping is a simple memory/process management technique used by the operating system(os) to increase the utilization of the processor by moving some blocked process from the main memory to the secondary memory(hard disk);thus forming a queue of temporarily suspended process and the execution continues with the newly arrived process.   After performing the swapping process, the operating system has two options in selecting a process for execution Swapping is a mechanism in which a process can be swapped temporarily out of main memory to a backing store , and then brought back into memory for continued execution. Backing store is a usually a hard disk drive or any other secondary storage which fast in access and large enough to accommodate copies of all memory images for all users. It must be capable of providing direct access to these memory images. Major time cons...

Operating Systems Definition and the Classification of OS

             OPERATING SYSTEMS ( OS ) What is an operating system? An operating system (sometimes abbreviated as "OS") is the program that, after being initially loaded into the computer by a boot program, manages all the other programs in a computer. The other programs are called applications or application programs. The application programs make use of the operating system by making requests for services through a defined application program interface (API). In addition, users can interact directly with the operating system through a user interface such as a command language or a graphical user interface (GUI). An operating system performs these services for applications:     In a multitasking operating system where multiple programs can be running at the same time, the operating system determines which applications should run in what order and how much time should be allowed for each application before g...

3.1.1 Identify Between Resident And Transient Routines

Memory Management Memory management is concerned with managing: The computer’s available pool of memory Allocating space to application routines and making sure that they do not interfere with each other. 3.1.1 Identify between resident and transient routines The operating system is a collection of software routines. Resident routines Transient routines Routines that directly support application programs as they run Stored on disk and read into memory only when needed Example: routine that control physical I/O Example: routine that formats disks The operating system occupies low memory beginning with address 0. Key control information comes first followed by the various resident operating system routines. The remaining memory, called the transient area, is where application programs and transient operating system routines are loaded. Resident & transient routines structure...