<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://staging.moocwiki.org/index.php?action=history&amp;feed=atom&amp;title=English%3AOperating_Systems_and_File_Management</id>
	<title>English:Operating Systems and File Management - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://staging.moocwiki.org/index.php?action=history&amp;feed=atom&amp;title=English%3AOperating_Systems_and_File_Management"/>
	<link rel="alternate" type="text/html" href="https://staging.moocwiki.org/index.php?title=English:Operating_Systems_and_File_Management&amp;action=history"/>
	<updated>2026-08-28T15:41:19Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in MOOCsWiki Staging</subtitle>
	<generator>MediaWiki 1.45.4</generator>
	<entry>
		<id>https://staging.moocwiki.org/index.php?title=English:Operating_Systems_and_File_Management&amp;diff=47166&amp;oldid=prev</id>
		<title>Glanz: aiMOOC über GPT aiMOOC Action erstellt</title>
		<link rel="alternate" type="text/html" href="https://staging.moocwiki.org/index.php?title=English:Operating_Systems_and_File_Management&amp;diff=47166&amp;oldid=prev"/>
		<updated>2026-08-27T12:49:01Z</updated>

		<summary type="html">&lt;p&gt;aiMOOC über GPT aiMOOC Action erstellt&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{T}}&lt;br /&gt;
[[Category:English]]&lt;br /&gt;
[[Category:Operating Systems and File Management]]&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Operating Systems and File Management&amp;#039;&amp;#039;&amp;#039; explains how a computer organizes its work and how you can organize your own digital information. An [[English:Operating system|operating system]], often shortened to &amp;#039;&amp;#039;&amp;#039;OS&amp;#039;&amp;#039;&amp;#039;, is system software that manages hardware resources, provides services for applications, and gives users ways to control the computer. [[English:File management|File management]] is the set of practices used to create, name, organize, find, copy, move, protect, back up, and delete files and folders.&lt;br /&gt;
&lt;br /&gt;
For Grades 9–10, the most important idea is that the operating system acts as a bridge between you, your applications, and the hardware. When you open a document, save a photograph, connect headphones, or switch between apps, the operating system coordinates many tasks in the background.&lt;br /&gt;
&lt;br /&gt;
[[File:Operating system placement (software).svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=26QPDBe-NB8|500|center}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Learning Goals =&lt;br /&gt;
&lt;br /&gt;
By the end of this aiMOOC, you should be able to explain the main functions of an operating system, distinguish software and hardware responsibilities, describe basic process and memory management, use GUI and command-line ideas appropriately, organize files in a hierarchy, interpret file paths and extensions, explain file-system permissions, and plan reliable backup routines.&lt;br /&gt;
&lt;br /&gt;
You should also be able to apply these ideas to practical situations such as managing a school project, sharing files safely, troubleshooting storage problems, and deciding how to organize digital work so that it remains easy to find.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= What an Operating System Does =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== The OS as a Resource Manager ==&lt;br /&gt;
&lt;br /&gt;
A computer has limited resources: processor time, main memory, storage space, network access, and input/output devices. The operating system decides how these resources are used. It keeps track of running programs, assigns memory, communicates with devices, and controls access to files.&lt;br /&gt;
&lt;br /&gt;
The operating system also provides &amp;#039;&amp;#039;&amp;#039;abstraction&amp;#039;&amp;#039;&amp;#039;. This means it hides many low-level details. A writing application does not need to know the exact physical location of every byte on a storage device. Instead, it asks the operating system to open or save a named file.&lt;br /&gt;
&lt;br /&gt;
[[File:Role of an Operating System.svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
Important OS responsibilities include [[English:Process management|process management]], [[English:Memory management|memory management]], [[English:Device driver|device management]], [[English:File system|file-system management]], security, user accounts, networking, and the user interface.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Operating System Families ==&lt;br /&gt;
&lt;br /&gt;
Common desktop operating systems include [[English:Microsoft Windows|Windows]], [[English:MacOS|macOS]], and [[English:Linux|Linux]]. Mobile devices often use [[English:Android (operating system)|Android]] or [[English:IOS|iOS]]. Different operating systems may look different, but they all need to perform similar core tasks: start the computer or device, run applications, manage memory, work with hardware, organize stored data, and protect access.&lt;br /&gt;
&lt;br /&gt;
An operating system is not the same as an application. A web browser, game, or word processor runs &amp;#039;&amp;#039;&amp;#039;on&amp;#039;&amp;#039;&amp;#039; the operating system and uses services provided by it.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Processes, Memory, and Devices =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Processes and CPU Time ==&lt;br /&gt;
&lt;br /&gt;
A [[English:Process (computing)|process]] is a program that is currently being executed. When you open several applications, the operating system may have many processes to manage. Even with one processor core, rapid switching can make several tasks appear to run at the same time. Modern computers often also have multiple processor cores, so some work can genuinely happen in parallel.&lt;br /&gt;
&lt;br /&gt;
The operating system uses a &amp;#039;&amp;#039;&amp;#039;scheduler&amp;#039;&amp;#039;&amp;#039; to decide which process gets processor time. It also prevents one misbehaving program from taking complete control of the machine.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Memory Management ==&lt;br /&gt;
&lt;br /&gt;
Programs need [[English:Random-access memory|RAM]] while they run. The operating system assigns memory to processes and keeps their memory areas separated. This separation improves stability and security because one ordinary application should not be able to overwrite another application&amp;#039;s memory.&lt;br /&gt;
&lt;br /&gt;
When physical RAM is under pressure, many operating systems can use storage as part of a [[English:Virtual memory|virtual-memory]] system. Storage is slower than RAM, so heavy reliance on it can reduce performance.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Device Management and Drivers ==&lt;br /&gt;
&lt;br /&gt;
Keyboards, printers, cameras, network adapters, graphics hardware, and storage devices all need to communicate with the operating system. A [[English:Device driver|device driver]] is software that helps the operating system control a specific kind of hardware.&lt;br /&gt;
&lt;br /&gt;
When a device does not work correctly, possible causes include a loose connection, disabled hardware, an incorrect setting, missing permissions, or an unsuitable driver. Good troubleshooting changes one factor at a time and checks the result.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= User Interfaces =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== GUI and CLI ==&lt;br /&gt;
&lt;br /&gt;
A [[English:Graphical user interface|graphical user interface]], or &amp;#039;&amp;#039;&amp;#039;GUI&amp;#039;&amp;#039;&amp;#039;, lets you work with windows, icons, menus, buttons, and pointer or touch controls. A [[English:Command-line interface|command-line interface]], or &amp;#039;&amp;#039;&amp;#039;CLI&amp;#039;&amp;#039;&amp;#039;, lets you type commands. Both are ways to request actions from the operating system.&lt;br /&gt;
&lt;br /&gt;
A GUI is often easier for visual browsing, while a CLI can be efficient for repeating precise tasks. Knowing both approaches helps you understand that the same file operation can be requested in different ways.&lt;br /&gt;
&lt;br /&gt;
[[File:Dolphin File Manager v24.08.1.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
The screenshot above shows a graphical file manager. File managers usually provide a folder tree or location view, a main area for files, navigation controls, and tools for actions such as copy, move, rename, search, and delete.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Files and Folders =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Files, Formats, and Extensions ==&lt;br /&gt;
&lt;br /&gt;
A [[English:Computer file|file]] is a named collection of stored data. The internal arrangement of that data is its &amp;#039;&amp;#039;&amp;#039;file format&amp;#039;&amp;#039;&amp;#039;. Examples include text, image, audio, video, spreadsheet, and program formats.&lt;br /&gt;
&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;file extension&amp;#039;&amp;#039;&amp;#039; is the ending of a file name after a dot, such as .txt, .jpg, or .pdf. Extensions help users and software recognize likely file types, but changing an extension alone does not actually convert the file&amp;#039;s internal format. Proper conversion requires software that reads one format and writes another.&lt;br /&gt;
&lt;br /&gt;
Files also have [[English:Metadata|metadata]], such as a name, size, creation or modification time, owner, and access permissions. The exact metadata available depends on the operating system and file system.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=KN8YgJnShPM|500|center}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Directories, Folders, and Hierarchies ==&lt;br /&gt;
&lt;br /&gt;
A [[English:Directory (computing)|directory]], commonly shown as a &amp;#039;&amp;#039;&amp;#039;folder&amp;#039;&amp;#039;&amp;#039; in a GUI, groups files and other directories. Most modern file systems use a hierarchy: a top level contains folders, which can contain subfolders, which can contain more files and folders.&lt;br /&gt;
&lt;br /&gt;
[[File:File Hierarchy.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
A hierarchy is useful because it creates meaningful locations. Instead of placing every school file together, you can create folders such as School, Grade10, Science, Project, and Images.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Paths and Locations ==&lt;br /&gt;
&lt;br /&gt;
A [[English:Path (computing)|path]] describes where a file or folder is located in a hierarchy. Different operating systems use different path conventions. Windows commonly uses drive letters and backslashes, while Unix-like systems such as Linux and macOS use forward slashes and begin the hierarchy at a root directory.&lt;br /&gt;
&lt;br /&gt;
A path can be &amp;#039;&amp;#039;&amp;#039;absolute&amp;#039;&amp;#039;&amp;#039;, starting from a fixed root or drive location, or &amp;#039;&amp;#039;&amp;#039;relative&amp;#039;&amp;#039;&amp;#039;, starting from the current working location. Understanding paths helps you follow error messages, work in a command line, and avoid saving files in the wrong place.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= File Systems and Storage =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== What a File System Does ==&lt;br /&gt;
&lt;br /&gt;
A [[English:File system|file system]] is the method and data structure an operating system uses to name, store, locate, organize, and retrieve files. It also keeps track of information about files and folders. Examples of file systems include [[English:NTFS|NTFS]], [[English:ExFAT|exFAT]], [[English:Ext4|ext4]], and [[English:Apple File System|APFS]].&lt;br /&gt;
&lt;br /&gt;
Different file systems support different features and compatibility choices. For example, a removable drive that must work across several operating systems may need a different file-system choice from an internal system drive. Reformatting can erase data, so it should never be done casually.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Storage Devices ==&lt;br /&gt;
&lt;br /&gt;
Long-term data is stored on non-volatile devices such as [[English:Hard disk drive|hard disk drives]], [[English:Solid-state drive|solid-state drives]], memory cards, and USB flash drives. A hard disk stores data magnetically on spinning platters, while an SSD uses flash memory and has no moving read/write head.&lt;br /&gt;
&lt;br /&gt;
[[File:Hard disk platters and head.jpg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
The operating system and file system let you think in terms of named files and folders rather than physical sectors, cells, or blocks.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=TQCr9RV7twk|500|center}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Fragmentation and Free Space ==&lt;br /&gt;
&lt;br /&gt;
Some file systems may store parts of a file in non-adjacent blocks. This is called [[English:File system fragmentation|fragmentation]]. On traditional hard drives, severe fragmentation can increase the movement needed by the read/write head and may reduce performance. Modern file systems try to limit fragmentation, and SSDs behave differently because they have no moving head.&lt;br /&gt;
&lt;br /&gt;
[[File:File system fragmentation.svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
You should not assume that manual defragmentation is useful for every device. In particular, SSD maintenance is normally handled by the operating system and device firmware. Follow the guidance for the specific operating system and storage technology.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Practical File Management =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Naming and Organizing Files ==&lt;br /&gt;
&lt;br /&gt;
Good file names make your work easier to find. Use names that describe content, topic, or date. A useful pattern for a school project might be ClimateProject_ResearchNotes_2026-08-27 rather than final2newreallyfinal. Consistent naming is more valuable than a complicated system.&lt;br /&gt;
&lt;br /&gt;
Avoid creating unnecessary duplicate folders. Group files by purpose, and use a structure that another person could understand without guessing.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Copying, Moving, Renaming, and Deleting ==&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Copying&amp;#039;&amp;#039;&amp;#039; creates another version of a file in a new location while leaving the original. &amp;#039;&amp;#039;&amp;#039;Moving&amp;#039;&amp;#039;&amp;#039; changes the file&amp;#039;s location. &amp;#039;&amp;#039;&amp;#039;Renaming&amp;#039;&amp;#039;&amp;#039; changes its name without changing its contents. &amp;#039;&amp;#039;&amp;#039;Deleting&amp;#039;&amp;#039;&amp;#039; removes a file from its current location, although many systems first place deleted files in a temporary recovery area such as a recycle bin or trash.&lt;br /&gt;
&lt;br /&gt;
Before deleting important work, check whether another copy or backup exists. Before moving shared files, consider whether other people or applications depend on the original path.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Search and Sorting ==&lt;br /&gt;
&lt;br /&gt;
A well-organized folder system is useful, but search tools are also important. You can often search by file name, file type, date, or content. Sorting by name, size, type, or modification date can reveal patterns, such as duplicate downloads or unusually large files.&lt;br /&gt;
&lt;br /&gt;
Search works best when file names and metadata are meaningful. Good organization and good search habits support each other.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Permissions and Security ==&lt;br /&gt;
&lt;br /&gt;
[[English:File-system permissions|File permissions]] control which users or processes may read, modify, or execute a file. The exact permission model differs among operating systems, but the principle is the same: access should be limited to what is needed.&lt;br /&gt;
&lt;br /&gt;
You should be careful with executable files from unknown sources, unexpected attachments, and prompts that request administrator access. Administrator privileges allow powerful changes, so they should be used only when necessary and when you understand the action.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Backups, Sync, and Versioning ==&lt;br /&gt;
&lt;br /&gt;
A [[English:Backup|backup]] is an additional copy of data kept so that you can recover from deletion, damage, hardware failure, or other loss. A synchronized cloud folder can be convenient, but synchronization is not automatically the same as a complete backup because unwanted changes or deletions may also synchronize.&lt;br /&gt;
&lt;br /&gt;
For important schoolwork, keep more than one copy and avoid storing every copy on the same device. Versioned backups are especially useful because they let you recover an earlier state after a mistake.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Practical Example: Organize a School Project =&lt;br /&gt;
&lt;br /&gt;
Imagine that you are producing a group documentary for science class. You could create a main folder named Science_Documentary and subfolders named Research, Script, Images, Audio, Video, and Exports. Each group member should know where shared material belongs.&lt;br /&gt;
&lt;br /&gt;
Use clear file names such as Interview_Amina_2026-08-27.mp4 or Script_v03.odt. Store original media separately from edited versions. Keep at least one backup outside the main working device. Before submission, export the final product to the required format without deleting the editable project files.&lt;br /&gt;
&lt;br /&gt;
This structure makes it easier to find assets, reduces accidental overwriting, and helps the group understand which files are source material and which are final outputs.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Interactive Tasks =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Quiz: Test Your Knowledge ==&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is one main role of an operating system?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Managing hardware resources and providing services to applications)&lt;br /&gt;
(!Creating every document stored on the computer)&lt;br /&gt;
(!Replacing all application software)&lt;br /&gt;
(!Turning every file into the same format)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is a process?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(A program that is currently being executed)&lt;br /&gt;
(!A permanent folder on a storage device)&lt;br /&gt;
(!A type of file extension)&lt;br /&gt;
(!A copy of a deleted file)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Why does an operating system manage RAM?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(To allocate working memory to running processes)&lt;br /&gt;
(!To rename every file automatically)&lt;br /&gt;
(!To convert a hard drive into a monitor)&lt;br /&gt;
(!To replace the processor with storage)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is a device driver used for?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Helping the operating system control a kind of hardware)&lt;br /&gt;
(!Encrypting every user document)&lt;br /&gt;
(!Creating folders for all applications)&lt;br /&gt;
(!Changing a file extension into a new format)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is the purpose of a directory?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(To group files and other directories)&lt;br /&gt;
(!To increase the physical size of a monitor)&lt;br /&gt;
(!To schedule processor time)&lt;br /&gt;
(!To replace the operating system kernel)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What does a file extension usually help indicate?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(The likely type or format of a file)&lt;br /&gt;
(!The physical location of every byte)&lt;br /&gt;
(!The amount of RAM in the computer)&lt;br /&gt;
(!The password of the file owner)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is an absolute path?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(A path that starts from a fixed root or drive location)&lt;br /&gt;
(!A path that always points to the newest file)&lt;br /&gt;
(!A file name without any location information)&lt;br /&gt;
(!A backup stored on another computer)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Why are file permissions important?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(They control who or what can access a file)&lt;br /&gt;
(!They make every file smaller)&lt;br /&gt;
(!They guarantee that no file can be deleted)&lt;br /&gt;
(!They convert folders into applications)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Which statement best describes a backup?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(An additional copy kept for recovery after data loss)&lt;br /&gt;
(!A shortcut that points to the only copy)&lt;br /&gt;
(!A temporary name for a running process)&lt;br /&gt;
(!A file extension used by every operating system)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Why is changing a file extension not the same as converting a file?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(The internal data format remains unchanged)&lt;br /&gt;
(!The processor stops running)&lt;br /&gt;
(!The file system loses all folders)&lt;br /&gt;
(!The operating system always deletes the file)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Memory Game ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;memo-quiz&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| Kernel || Core part of an operating system that manages essential resources&lt;br /&gt;
|-&lt;br /&gt;
| Process || Program that is currently being executed&lt;br /&gt;
|-&lt;br /&gt;
| Directory || Container used to group files and other folders&lt;br /&gt;
|-&lt;br /&gt;
| Metadata || Information that describes a file&lt;br /&gt;
|-&lt;br /&gt;
| Driver || Software that helps the operating system communicate with hardware&lt;br /&gt;
|-&lt;br /&gt;
| Path || Description of a file or folder location&lt;br /&gt;
|-&lt;br /&gt;
| Backup || Separate copy kept for recovery&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Drag and Drop ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;lueckentext-quiz&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Match the correct terms.&lt;br /&gt;
! Topic&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Kernel&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Manages core operating system functions&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Directory&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Organizes files into a hierarchy&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Path&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Describes a location in the file system&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Extension&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Helps indicate a likely file type&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;Backup&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Supports recovery after data loss&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Match each term with the phrase that best describes its role.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Crossword Puzzle ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;kreuzwort-quiz&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| Kernel || What is the core part of an operating system called&lt;br /&gt;
|-&lt;br /&gt;
| Directory || What structure groups files and subfolders&lt;br /&gt;
|-&lt;br /&gt;
| Extension || What ending such as txt or jpg helps identify a file type&lt;br /&gt;
|-&lt;br /&gt;
| Permissions || What controls whether users may read or modify a file&lt;br /&gt;
|-&lt;br /&gt;
| Fragmentation || What term describes a file split across non-adjacent storage blocks&lt;br /&gt;
|-&lt;br /&gt;
| Backup || What recovery copy protects against data loss&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== LearningApps ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe&amp;gt; https://learningapps.org/index.php?s=Operating+Systems+and+File+Management &amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Cloze Text ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;quiz display=simple&amp;gt;&lt;br /&gt;
{&amp;#039;&amp;#039;&amp;#039;Complete the text.&amp;#039;&amp;#039;&amp;#039;&amp;lt;br&amp;gt;&lt;br /&gt;
|type=&amp;quot;{}&amp;quot;}&lt;br /&gt;
An operating system manages computer { resources } and provides services to applications. A running program is called a { process }. The operating system gives processes working space in { RAM }. Software that helps the operating system communicate with hardware is a { driver }. Files are commonly organized inside a hierarchy of { directories }. A file&amp;#039;s location can be described with a { path }. Information such as file size or modification time is called { metadata }. Access to files can be limited with { permissions }. An extra copy kept for recovery is a { backup }. Changing only a file extension does not change the internal file { format }.&lt;br /&gt;
&amp;lt;/quiz&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Open-Ended Tasks =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Easy ===&lt;br /&gt;
# [[English:File naming|File naming]]: Create a set of ten clear file names for a fictional school project and explain the naming pattern you used.&lt;br /&gt;
# [[English:Folder structure|Folder structure]]: Draw a simple folder tree for your schoolwork with at least three levels and explain why each folder belongs where you placed it.&lt;br /&gt;
# [[English:File manager|File manager]]: Use a file manager to sort a safe practice folder by name, type, size, and modification date, then record what each view helps you notice.&lt;br /&gt;
# [[English:Operating system interface|Operating system interface]]: Make a labeled screenshot or hand-drawn diagram showing five parts of a graphical file-management interface and describe what each part does.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Standard ===&lt;br /&gt;
# [[English:File paths|File paths]]: Create five example absolute or relative paths for a fictional project and explain how each one leads to a specific file.&lt;br /&gt;
# [[English:Storage comparison|Storage comparison]]: Produce a one-page comparison of hard disk drives and solid-state drives, focusing on how their physical design affects access to stored data.&lt;br /&gt;
# [[English:Backup strategy|Backup strategy]]: Design a backup plan for a student with school documents, photographs, and videos, and justify where each backup copy should be stored.&lt;br /&gt;
# [[English:User interview|User interview]]: Interview a classmate or family member about how they organize digital files, identify two strengths and two risks in the method, and suggest practical improvements.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Advanced ===&lt;br /&gt;
# [[English:Command-line interface|Command-line interface]]: In a safe practice directory, use appropriate command-line tools on your operating system to create folders, list contents, copy a file, move it, rename it, and document each command with its effect.&lt;br /&gt;
# [[English:File permissions|File permissions]]: Build a scenario with three users who need different levels of access to shared files, then design a permission plan and explain why each permission is necessary.&lt;br /&gt;
# [[English:File-system investigation|File-system investigation]]: Research the file systems used by two different operating systems or storage devices, compare their intended uses, and present your findings as an infographic or short video.&lt;br /&gt;
# [[English:Digital workflow|Digital workflow]]: Create a complete file-management workflow for a group media project, including folder structure, naming, permissions, versioning, backup, and final archiving, then test it with sample files and evaluate what you would improve.&lt;br /&gt;
&lt;br /&gt;
{{:Open Task - Create a MOOC}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Learning Assessment =&lt;br /&gt;
&lt;br /&gt;
# [[English:Resource management|Resource management]]: Explain how the operating system would respond when several applications need processor time, memory, storage access, and a printer at the same time, and identify at least two possible conflicts it must manage.&lt;br /&gt;
# [[English:Path reasoning|Path reasoning]]: Given a folder tree created by your teacher, determine where three target files are located, write suitable paths, and explain how moving one folder would change those paths.&lt;br /&gt;
# [[English:Format and extension|Format and extension]]: Analyze a case in which a student renames photo.jpg to photo.pdf, predict what will happen when the file is opened, and propose the correct way to create a PDF version.&lt;br /&gt;
# [[English:Security permissions|Security permissions]]: Design access rules for a class project in which students may edit drafts, guests may only read the final report, and only the teacher may delete assessment records.&lt;br /&gt;
# [[English:Backup recovery|Backup recovery]]: Evaluate two backup strategies after a laptop is lost and explain which one would provide better recovery and why.&lt;br /&gt;
# [[English:Troubleshooting storage|Troubleshooting storage]]: Analyze a computer with very little free space, duplicate downloads, and slow access to a traditional hard disk, then propose a safe sequence of actions and justify the order.&lt;br /&gt;
# [[English:Transfer task|Transfer task]]: Apply file-management principles to a new situation such as a photography club, small business, or sports team, and explain how your folder structure, naming system, permissions, and backup plan would change.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Evidence of Learning =&lt;br /&gt;
&lt;br /&gt;
;&amp;#039;&amp;#039;&amp;#039;Knowledge&amp;#039;&amp;#039;&amp;#039;: You can explain the roles of the operating system, kernel, processes, RAM, drivers, files, directories, paths, file systems, metadata, permissions, and backups.&lt;br /&gt;
;&amp;#039;&amp;#039;&amp;#039;Skills&amp;#039;&amp;#039;&amp;#039;: You can organize files logically, use meaningful names, navigate folder hierarchies, interpret paths, search and sort files, manage copies safely, and choose suitable access controls.&lt;br /&gt;
;&amp;#039;&amp;#039;&amp;#039;Products&amp;#039;&amp;#039;&amp;#039;: You can create a folder plan, naming convention, backup strategy, interface diagram, investigation report, or documented digital workflow.&lt;br /&gt;
;&amp;#039;&amp;#039;&amp;#039;Reasoning&amp;#039;&amp;#039;&amp;#039;: You can explain why a file-management choice improves reliability, security, findability, or collaboration instead of only describing the steps.&lt;br /&gt;
;&amp;#039;&amp;#039;&amp;#039;Transfer&amp;#039;&amp;#039;&amp;#039;: You can adapt the same principles to unfamiliar devices, operating systems, school subjects, personal projects, or workplace scenarios.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= OERs on the Topic =&lt;br /&gt;
&lt;br /&gt;
The following open encyclopedia article provides additional background on operating systems. You can also explore related ideas through [[English:File system|File system]], [[English:Computer file|Computer file]], [[English:Directory (computing)|directories]], and [[English:Data backup|Data backup]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe&amp;gt; https://en.m.wikipedia.org/wiki/Operating_system &amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Linked Learning Areas =&lt;br /&gt;
&lt;br /&gt;
{| align=center&lt;br /&gt;
{{:D-Tab}}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;[[English:Operating Systems and File Management|Operating Systems and File Management]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
# [[English:Operating system|Operating system]]&lt;br /&gt;
# [[English:Kernel|Kernel]]&lt;br /&gt;
# [[English:Process management|Process management]]&lt;br /&gt;
# [[English:Memory management|Memory management]]&lt;br /&gt;
# [[English:Device driver|Device driver]]&lt;br /&gt;
# [[English:Graphical user interface|Graphical user interface]]&lt;br /&gt;
# [[English:Command-line interface|Command-line interface]]&lt;br /&gt;
# [[English:Computer file|Computer file]]&lt;br /&gt;
# [[English:File system|File system]]&lt;br /&gt;
# [[English:Directory (computing)|Directory]]&lt;br /&gt;
# [[English:Path (computing)|Path]]&lt;br /&gt;
# [[English:File-system permissions|File-system permissions]]&lt;br /&gt;
# [[English:Data backup|Data backup]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= aiMOOC Projects =&lt;br /&gt;
[[Category:English]]&lt;br /&gt;
[[Category:Operating Systems and File Management]]&lt;br /&gt;
[[Category:Computer Science]]&lt;br /&gt;
[[Category:Information Technology]]&lt;br /&gt;
[[Category:Digital Literacy]]&lt;br /&gt;
[[Category:Operating Systems]]&lt;br /&gt;
[[Category:File Management]]&lt;br /&gt;
[[Category:Grades 9-10]]&lt;br /&gt;
[[Category:AI_MOOC]]&lt;br /&gt;
[[Category:GPT aiMOOC]]&lt;br /&gt;
{{MT}}&lt;/div&gt;</summary>
		<author><name>Glanz</name></author>
	</entry>
</feed>