aboutsummaryrefslogtreecommitdiff
path: root/notes/software.tex
blob: 472b55835b65198c764917f6d4010d2f2cb2456d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
\chapter{Software}

We can think of the operations of a system in \textit{layers}. At
the very top there is the user. Below this there are applications
that the user interacts with. These then interact with the
operating system in the layer below, which interacts with the
system hardware as the bottom layer. 

\begin{myquote}
        \textit{Software} consists of the
        programs and other operating information used by a computer.
\end{myquote}

\textit{Application software} performs tasks for a user (such as a
word processor, game, or web browser) through interaction with the
operating system.  \textit{Utility programs} are used to maintain and
improve functionality of the computer. Utility programs include
\textit{firewalls} (which blocks network activity deemed dangerous),
\textit{disk defragmenters} (which ensure that files are organised in
a sensible way across the blocks on a hard disk in order to improve
performance, rather than having a file scattered across multiple
blocks), \textit{disk formatters}, and \textit{system information and
diagnostics} tools.

\section{Operating sytem}

The operating system is a type of system software which provides an
interface between applications and the hardware. It has five primary
tasks:

\begin{itemize}
    \item Processor management: allocating time and cores for
        applications to run on the CPU.
    \item Memory management: allocating and managing main memory
        needed by applications.
    \item Security: managing login and other basic authentication and
        security operations of the system, such as preventing an
        unprivileged user from making some changes.
    \item Input/output (I/O) device management: managing any I/O
        devices such as keyboards, mice, screens, printers, speakers,
        and network interfaces by ensuring that the necessary drives
        are present to allow many different devices to work with the
        system.
    \item Applications: interfacing with the applications being run
        and providing essentials such as a graphical interface for the
        application to the user and network access to an application.
\end{itemize}