Top Banner
Computers in the real world Objectives • Understand the key ideas of the operating system • Look at standard utility software and be able to describe them • Explore the terms – Custom built – Open source – Off the shelf – Proprietary software
40

Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Apr 01, 2015

Download

Documents

Kyler Brackley
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldObjectives

• Understand the key ideas of the operating system

• Look at standard utility software and be able to describe them

• Explore the terms– Custom built – Open source– Off the shelf– Proprietary software

Page 2: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldThe operating system

A operating system is known as system software. It is responsible for •Managing all connected devices (like keyboards)•Managing RAM and virtual memory•Managing running programs•Managing the file system•Managing security •Managing network and internet connections

Apple Linux Windows

Page 3: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldThe operating system

There is more than one operating system (or OS). The three main types are Apple, Linux and windows. Most people use windows but Apple and linux also have a large number of users.

Apple Linux Windows

There are some major differences between the three different types and it is important to know the advantages and disadvantages of each.

Page 4: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldThe operating system

•Fast and responsive.•Has innovative design and interface•Apple software is well integrated making standard tasks such as burning a DVD really easy•Very few viruses are aimed at Mac’s and it is more secure than windows.

•Software and hardware tend to be very expensive•Integrating non-apple hardware is very difficult. You tend to be tied into apple•Have to emulate windows software meaning that the software available for Apple is limited.•Contrary to popular belief mac’s are not easy to use if you want to do anything which is not basic.

Page 5: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldThe operating system

•Will run on any hardware, regardless of how old•No other operating system offers as much choice and configurability as Linux. Not even close!•There are very few viruses aimed at Linux and it is much more secure than windows.•It is free!!!! •Software is regularly updated meaning you get the latest features and bug fixes.•Uses a repository system meaning installing new software is very easy. •Uses virtual desktops and advanced visual effects. Both windows and mac are far behind on this front!

•It is not easy to use. It is designed and used by people who know what they are doing•Software sometimes has to be compiled to run which is very difficult.•Sometimes bugs occur which mean you have to wait a while before someone fixes them.•It is very weak on video editing!

Page 6: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldThe operating system

•The most common OS and as such has the most software available.•Hardware tends to be designed with windows in mind which means you have less problems getting hardware to work in windows.•There is no real viable contender for office products which means that windows is the main choice for companies.

•Windows is very insecure. Most viruses and hacking occurs due to issues in windows•It is too simple for it’s own good! Users feel safe when in truth their details are very vulnerable.•Windows uses old legacy technology which causes issues. For example defragging is only needed on windows!•Uses a vast amount of system resources. Will use about 2Gb of RAM!

Page 7: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldA quick look at Linux

The video below shows a Linux desktop. This shows you just how much you can mess about with the settings! <TODO add video>

Page 8: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldActivity

Load up the Linux Virtual machine. Do the following –

•Write hello world in size 48 font and make it red!•Draw a smiley face in a graphics package•Try and change the background and some of the desktop settings

Note – internet is disabled in the virtual machine. Sorry!

Page 9: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldOS split into sections

The operating system is split into the following sections. The desktop offers a graphical interface to hide the details of what the OS is REALLY doing!

Hardware

Device drivers

Memory manager

Processmanager

Filemanager

OS interface (desktop)

RAM

Page 10: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldWIMP!

OS offer a interface for the user to use. This allows the user to run other software such as a word processor, a game or a file browser.

They offer a GUI interface which uses WIMP. Or a graphical user interface which offers windows, icons, menus and pointers!

The interface then uses human interface devices (like a mouse) to allow manipulation of the OS.

Page 11: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldWindows!

Do not confuse a “window” with “windows” the OS! Each application will open up in a new windows. This can be dragged, resized or closed by the user. The image to the right shows two windows open with different applications running.

The user interface of the OS controls these windows. It will send messages to the applications to inform them of things such as keyboard presses or mouse clicks.

In the world of programming these are known as events! It is why when you hit a key the letter appears in the right window. The OS is controlling where the message gets sent to!

Page 12: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldIcons

Icons are small images which represent a action or task within a application or OS. When the user clicks on a icon an event is sent to the application so it can deal with that event.

Page 13: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldMenus

Menu’s are used to access features which may not be as well used as the ones represented by icons. A menu is split into sections (such as File, Edit, View etc) which can be further split up.

The OS handles the drawing of the menu while the application handles the contents and the action associated with the menu item.

Page 14: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldActivity

Research the following

“Windows Areo”“compiz desktop effects”

What do they both do? Consider what the advantage / disadvantages are of this type of software.

Page 15: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldMemory management

Memory is shared amongst all of the programs running on your system. The diagram above shows how memory may be split up. The OS has the responsibility to manage which program has what part of memory. This is known as memory management.

Photoshop Word OS Excel

The memory manager is a small piece of code within the OS which will –•Allocate memory to a program•Will reclaim it when it is not in use•Will swap memory blocks in and out of virtual memory•Will prevent programs from accessing each others memory.

Page 16: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldPreventing hacking

The memory manager must stop a program from accessing other parts of memory.

Photoshop Word OS Web browser

Consider spyware running on a system. If it could have access to the web browser memory it could read all of your sensitive information. It could also over write it and even control your web browser!

Spyware

Page 17: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldAllocating memory

When a program needs memory it must ask the memory manger to allocate it. The memory manager will need to decide if anything will need to into virtual memory or not.

Memory manager

Web browser Word processor

Photoshop Word OS Web browserWord

Page 18: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldAllocating memory and virtual memory

Memory manager

Web browser Word processor

Photoshop Word OS Web browserWord Word

Page 19: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldGreedy program

Sometimes a program may use up more memory than it should. The OS should prevent a single program from accessing ALL of the memory as this would prevent other processes from running.

Word OS Web browserWord WordWord

Memory manager

Web browser Word processor

Page 20: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldMemory and task manager!

You can monitor how much memory is being used on your computer. Each running program will say how much memory has been allocated to it.

The image to the right shows that a program called “iexplore.exe” is using 160Mb of RAM. If your system is always running slow it may be worth looking to see what memory is being used and see if there is a memory hog!

Page 21: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldActivity

Make notes on what memory management is and why it is needed.

Also make notes on user interface of the OS.

Page 22: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldMulti-tasking

Multi-tasking is how the OS can run more than one program at once. It gives the illusion that programs are running concurrently while in reality they are simply taking turns on the CPU.

EACH CORE CAN ONLY RUN ONE PROGRAM AT A TIME!!!!

Page 23: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldIllusion of concurrency

So how does the OS allow us to have as many programs running at the same time? The OS will run one program at a time but swap them around so each program has a chance to run. It does this so fast that the user is not aware that it is happening.

EACH CORE CAN ONLY RUN ONE PROGRAM AT A TIME!!!!

Multi-tasking is the term we use to explain the idea that a CPU can run many programs at once by quickly swapping them about.

Page 24: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

The CPU will be running a program in the normal way. Another program will be waiting for access to the CPU.

Wordprocessor

Web browser

running Waiting

Page 25: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

After a while (a few milliseconds) the running program is “swapped” out and placed in the waiting queue.

Wordprocessor

Web browser

running Waiting

Page 26: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

The new program will then get a chance to run by swapping it into the running state.

Wordprocessor

Web browser

running Waiting

Page 27: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

This continues until the programs are closed.

Wordprocessor

Web browser

running Waiting

Page 28: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

This continues until the programs are closed.

Wordprocessor

Web browser

running Waiting

Page 29: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

This continues until the programs are closed.

Wordprocessor

Web browser

running Waiting

Page 30: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

This continues until the programs are closed.

Wordprocessor

Web browser

running Waiting

Page 31: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

This continues until the programs are closed.

Wordprocessor

Web browser

running Waiting

Page 32: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldHow it works

This continues until the programs are closed.

Wordprocessor

Web browser

running Waiting

Page 33: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldIssues with multitasking

Swapping programs around takes time. If it is done too often then the system will slow down as too much time will be spent doing the swap!

Multi-tasking also makes programming harder as it can cause bugs which are unpredictable!

If programs are not swapped often enough then the user will notice “freezes” where the screen stops responding. This is when the running program is waiting for CPU time or another device such as the hard drive.

Page 34: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldActivity

Make notes on multi-tasking

How would multi-tasking work if you had two cores? Update the animation in this PowerPoint to show how this would work. You can copy the slides out to get you started.

Page 35: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldPeripheral management

Peripheral device – A device plugged externally into the PC.

Many different devices can be plugged into a PC. These will perform input, output and storage functions and are made by many different vendors. The OS needs to be able to communicate and manage all of these devices! No easy feat!

In order to communicate with hardware the OS will use device drivers. These are small programs written by the vendor to allow the OS a generic way of communicating with the hardware.

Page 36: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldDevice drivers

The device driver converts what the OS wants to do into messages that the devices understand. Consider different printers....

Hardware

Device drivers

Memory manager

Processmanager

Filemanager

OS interface (desktop)

Page 37: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldDevice drivers

When the user clicks print they expect it to , errr, print

Hardware

Device driversThe OS will use the device driver of the printer the user selected. This will then translate the print request into something the printer will understand.

This then gets sent to the printer by the device driver. The printers will then dutifully print!

Page 38: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldPeripheral management

Peripheral device – A device plugged externally into the PC.

As well as communicating with the device the OS needs to be able to register the device so it can be recognised by other programs. It also needs to deal with the fact that they can be unplugged.

This “registration” will link the device with a device driver. You can see this by going to “device settings” or “device manager”.

Or you can type in lspci or lsusb under Linux!

Page 39: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldDevice manager – Windows 7

Page 40: Computers in the real world Objectives Understand the key ideas of the operating system Look at standard utility software and be able to describe them.

Computers in the real worldDevice manager – Linux