<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://library.morph.zone/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Boot+wb</id>
		<title>MorphOS Library - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://library.morph.zone/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Boot+wb"/>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/Special:Contributions/Boot_wb"/>
		<updated>2026-04-08T03:01:16Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://library.morph.zone/index.php?title=Shell_Commands/RequestChoice&amp;diff=3594</id>
		<title>Shell Commands/RequestChoice</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Shell_Commands/RequestChoice&amp;diff=3594"/>
				<updated>2016-07-08T20:11:11Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''RequestChoice''' - Asks for input via a requester&lt;br /&gt;
&lt;br /&gt;
TITLE/A, BODY/A, GADGETS/A/M, PUBSCREEN/K,TYPE/K,TIMEOUT=TIMEOUTSECS/K/N&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
TITLE     - Title string of the requester                                      &lt;br /&gt;
BODY      - Body string of the requester&lt;br /&gt;
            Linefeeds can be embedded using *N&lt;br /&gt;
GADGETS   - Gadgets of the requester (see below)&lt;br /&gt;
            The gadget labels are separated with spaces&lt;br /&gt;
PUBSCREEN - Optional: name of the publicscreen to use&lt;br /&gt;
TYPE      - Type of the requester (not implemented yet)&lt;br /&gt;
TIMEOUT   - Time in seconds to cancel the requester&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
The number of the selected gadget is printed as a result to the console.&lt;br /&gt;
For evaluation in a script file, you can redirect this output&lt;br /&gt;
into an environment variable. If the requester cannot be opened,&lt;br /&gt;
the command generates a return code of 20.&lt;br /&gt;
&lt;br /&gt;
The PUBSCREEN argument allows the requester to open its window on a public screen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
MorphOS:&amp;gt; RequestChoice &amp;gt;ENV:rcnum &amp;quot;New Title&amp;quot; &amp;quot;This is my requester*NSelect a gadget&amp;quot; &amp;quot;OK&amp;quot; &amp;quot;Maybe&amp;quot; &amp;quot;Cancel&amp;quot;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
ENV:rcnum contains 1, 2 or 0 respectively after a gadget is selected. The script can use this value to control its later execution.&lt;br /&gt;
&lt;br /&gt;
Note that whatever the name or number of gadgets specified the first gadget always returns a 1, the second gadget returns a 2, etc, and the final gadget returns a 0. &lt;br /&gt;
&lt;br /&gt;
Example script:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
RequestChoice &amp;gt;ENV:rcnum &amp;quot;Shutdown Requester&amp;quot; &amp;quot;Press enter to shutdown or wait 10s to cancel.&amp;quot; &amp;quot;Shutdown&amp;quot; &amp;quot;Reboot&amp;quot; &amp;quot;Cancel&amp;quot; TYPE=1 TIMEOUT=10&lt;br /&gt;
If $rcnum EQ 1&lt;br /&gt;
	ShutDown&lt;br /&gt;
	Quit&lt;br /&gt;
EndIf&lt;br /&gt;
If $rcnum EQ 2&lt;br /&gt;
	Reboot&lt;br /&gt;
	Quit&lt;br /&gt;
EndIf&lt;br /&gt;
If $rcnum EQ 0&lt;br /&gt;
; User cancelled shutdown procedure&lt;br /&gt;
	Quit&lt;br /&gt;
Endif&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Shell_Commands/RequestChoice&amp;diff=3593</id>
		<title>Shell Commands/RequestChoice</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Shell_Commands/RequestChoice&amp;diff=3593"/>
				<updated>2016-07-08T17:48:34Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Clarify the values returned by requestchoice&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''RequestChoice''' - Asks for input via a requester&lt;br /&gt;
&lt;br /&gt;
TITLE/A, BODY/A, GADGETS/A/M, PUBSCREEN/K,TYPE/K,TIMEOUT=TIMEOUTSECS/K/N&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
TITLE     - Title string of the requester                                      &lt;br /&gt;
BODY      - Body string of the requester&lt;br /&gt;
            Linefeeds can be embedded using *N&lt;br /&gt;
GADGETS   - Gadgets of the requester (see below)&lt;br /&gt;
            The gadget labels are separated with spaces&lt;br /&gt;
PUBSCREEN - Optional: name of the publicscreen to use&lt;br /&gt;
TYPE      - Type of the requester (not implemented yet)&lt;br /&gt;
TIMEOUT   - Time in seconds to cancel the requester&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
The number of the selected gadget is printed as a result to the console.&lt;br /&gt;
For evaluation in a script file, you can redirect this output&lt;br /&gt;
into an environment variable. If the requester cannot be opened,&lt;br /&gt;
the command generates a return code of 20.&lt;br /&gt;
&lt;br /&gt;
The PUBSCREEN argument allows the requester to open its window on a public screen.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
MorphOS:&amp;gt; RequestChoice &amp;gt;ENV:rcnum &amp;quot;New Title&amp;quot; &amp;quot;This is my requester*NSelect a gadget&amp;quot; &amp;quot;OK&amp;quot; &amp;quot;Maybe&amp;quot; &amp;quot;Cancel&amp;quot;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
ENV:rcnum contains 1, 2 or 0 respectively after a gadget is selected. The script can use this value to control its later execution.&lt;br /&gt;
&lt;br /&gt;
Note that whatever the name or number of gadgets specified the first gadget always returns a 1, the second gadget returns a 2, etc, and the final gadget returns a 0. &lt;br /&gt;
&lt;br /&gt;
Example script:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
RequestChoice &amp;gt;ENV:rcnum &amp;quot;Shutdown Requester&amp;quot; &amp;quot;Press enter to shutdown or wait 10s to cancel.&amp;quot; &amp;quot;Shutdown&amp;quot; &amp;quot;Reboot&amp;quot; &amp;quot;Cancel&amp;quot; TYPE=1 TIMEOUT=10&lt;br /&gt;
If $rcnum EQ 1&lt;br /&gt;
	ShutDown&lt;br /&gt;
	Quit&lt;br /&gt;
EndIf&lt;br /&gt;
If $rcnum EQ 2&lt;br /&gt;
	Reboot&lt;br /&gt;
	Quit&lt;br /&gt;
EndIf&lt;br /&gt;
If $rcnum EQ 0&lt;br /&gt;
; User cancelled shutdown procedure&lt;br /&gt;
	Quit&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Applications/Apdf&amp;diff=2267</id>
		<title>Applications/Apdf</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Applications/Apdf&amp;diff=2267"/>
				<updated>2015-06-19T19:23:00Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Description ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A PDF viewer, based upon the open source application XPDF 3.01. &lt;br /&gt;
This viewer supports PDF files versions 1.5 and below. &lt;br /&gt;
&lt;br /&gt;
Largely superceded by [[Applications/Vpdf | Vpdf]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Apdf can be launched from Ambient or from the command line.&lt;br /&gt;
&lt;br /&gt;
When launched without specifying a pdf file (for example by double-clicking the application icon) a file requester is generated for the user to specify the document to open.&lt;br /&gt;
&lt;br /&gt;
Once launched, the document is displayed in a simple viewer window with zooming controls, text search functions and selection tool available through the gadgets at the bottom of the window. &lt;br /&gt;
&lt;br /&gt;
Apdf supports PDF forms, and can save the content of completed pdf forms using the fdf file format (used to export form data to stand-alone files that can be imported back into the corresponding PDF interactive form.)&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=First_Steps_Using_MorphOS&amp;diff=2266</id>
		<title>First Steps Using MorphOS</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=First_Steps_Using_MorphOS&amp;diff=2266"/>
				<updated>2015-05-25T11:19:53Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Assigns */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Booting MorphOS for the first time =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After installation, power on your computer to boot into your new installation of MorphOS.&lt;br /&gt;
&lt;br /&gt;
Once the boot process has completed, you will see a screen similar to that pictured below (it may look slightly different depending upon your monitor's resolution).&lt;br /&gt;
&lt;br /&gt;
[Picture: MorphOS desktop - fresh installation]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Interacting with your system =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Keyboard and Mouse ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In MorphOS, in common with most desktop operating systems, the mouse and keyboard are the primary means of user interaction with the system.&lt;br /&gt;
&lt;br /&gt;
Two mouse buttons are used by default:&lt;br /&gt;
&lt;br /&gt;
* The left mouse button (LMB) is used to select or activate;&lt;br /&gt;
* The right mouse button (RMB) is used for accessing menus.&lt;br /&gt;
&lt;br /&gt;
Scrolling and unidirectional mouse wheels are also supported out-of-the-box.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Interaction when using an Apple laptop or single-buttoned mouse ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All supported Apple laptops offer only a single mouse-button, which is used by MorphOS as the LMB. As accessing menus is an integral part of using MorphOS and compatible software, the missing RMB must therefore be made available.&lt;br /&gt;
&lt;br /&gt;
In order to follow this guide it is recommended that, if using an Apple laptop, you have a USB two-button mouse connected.&lt;br /&gt;
&lt;br /&gt;
To find out more about emulating the RMB on Apple laptops see [[Utilities/Commodities | Shiftclick]].&lt;br /&gt;
&lt;br /&gt;
=== Conventions used to describe mouse actions in this guide ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Where the term 'double-click' is used, this refers to clicking the left mouse button twice in quick succession and releasing;&lt;br /&gt;
* Where the term 'drag' is used this refers to keeping the left mouse button depressed whilst moving the mouse pointer;&lt;br /&gt;
* Where the term 'lasso' is used this refers to drawing a box around one or more items by dragging on an empty area of screen/window;&lt;br /&gt;
* Activation and navigation through menus is expressed as: RMB &amp;gt; [Menu heading] &amp;gt; [menu entry].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The Screen =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The current screen contains Ambient, MorphOS default desktop environment which launches upon booting. &lt;br /&gt;
&lt;br /&gt;
The strip along the top of the screen containing text and small icons is called the screenbar.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Screenbar ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Screenbar displays the currently selected application name on the left (currently Ambient).&lt;br /&gt;
&lt;br /&gt;
The right-hand most icon is the 'screen-depth' gadget, which is used to navigate between screens when multiple screens are open. &lt;br /&gt;
&lt;br /&gt;
Between these two are a clock and some small, colourful and surprisingly tasty icons. These icons are called screenbar modules, and are generally used to display useful information (such as battery state, date and time, memory usage, etc) or provide quick access to useful functions (such as ejecting the optical drive, or adjusting audio output volume).&lt;br /&gt;
&lt;br /&gt;
Notes: From a fresh installation, MorphOS boots with one screen open, however supports as many screens as can be created in graphics memory. Each connected monitor can display one screen at any one time, with the user able to select which screen is displayed on the monitor using the screen depth gadget.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== System Menus ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
System menus appear on the screenbar when the RMB is held.&lt;br /&gt;
&lt;br /&gt;
* Menus and submenus can be expanded by hovering the mouse pointer over the heading;&lt;br /&gt;
* Individual menu items are activated by hovering over them and releasing the RMB;&lt;br /&gt;
* Multiple menu items can be selected by left-clicking on items whilst continuing to hold the RMB:&lt;br /&gt;
** Selected entries are activated by releasing the RMB whilst hovering over an entry;&lt;br /&gt;
* Menus are closed by releasing the RMB whilst not hovering over an entry.&lt;br /&gt;
&lt;br /&gt;
An alternative method for accessing menus (which is the default method for Apple laptops which have only a single mouse-button) is quickly clicking the RMB to activate the menus (which remain open on a short click), then clicking with the LMB to activate an entry.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Open My MorphOS (RMB on desktop &amp;gt; Ambient &amp;gt; My MorphOS)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Context menus ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Context menus appear under the mouse pointer when the RMB is clicked on an icon or other object for which context menus are supported.&lt;br /&gt;
&lt;br /&gt;
Context menus give convenient access to a range of common actions which are supported for that object type.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introducing Ambient =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ambient is MorphOS default desktop environment incorporating file browsing, Mime-based filetype handling, graphical desktop supporting shortcuts, panels, and providing GUI access to a range of utilities such as disk formatting, CLI, system monitor, system preferences, and many more.&lt;br /&gt;
&lt;br /&gt;
[It is important to note that Ambient is not MorphOS, but is an application running on MorphOS&lt;br /&gt;
&lt;br /&gt;
Applications may be started from Ambient (eg by double-clicking an icon), but do not run on or within Ambient, even though they may open windows or display output on the same screen.&lt;br /&gt;
&lt;br /&gt;
Don't worry if the distinction of what Ambient is &amp;amp; is not appears a little blurry, it isn't crystal clear to me either. :) ] - is this useful or relevant at this stage of the guide? Move elsewhere!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Ambient Desktop ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From a fresh installation, the screen contents show a picture of a blue wave effect, with several icons also visible. This is Ambient's desktop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Desktop Icons ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The icons currently visible on the desktop represent the volumes on your hard drive(s), as well as any detected volumes on any other devices such as a CD, DVD or USB stick. On a standard installation you will see 'MorphOS' and 'Work' volumes showing on your desktop.&lt;br /&gt;
&lt;br /&gt;
There are also two other icon on the desktop: 'My MorphOS' and 'Ram Disk' which are a little different:&lt;br /&gt;
&lt;br /&gt;
* 'My MorphOS' gives access to the top level of the filesystem (analogous to 'My Computer' in Windows, or 'Computer' in OSX), and shows all your volumes;&lt;br /&gt;
* 'Ram disk' is a volume created and automatically resized dynamically in system memory which is used for fast access to system environment variables during runtime, for the system clipboard, and various other things. It is often useful to the user as a temporary storage area which flushes upon reboot, or as a fast 'swap,' 'cache' or 'temp' area for applications which make use of such features.&lt;br /&gt;
&lt;br /&gt;
Icons on the Ambient desktop can be opened by double-clicking.&lt;br /&gt;
&lt;br /&gt;
Icons can be dragged and placed anywhere on the desktop.&lt;br /&gt;
&lt;br /&gt;
Multiple icons can be selected by clicking on the desktop and dragging to 'lasso' multiple icons. The selected icons can then be dragged, or have actions performed upon them (eg cut, copy, paste), as one object. The object group is unselected by clicking on the desktop or by selecting a different - unselected - object.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Snapshotting desktop icons ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Icons will appear ordered on the desktop starting from the left hand corner of the desktop, but can be moved anywhere on the desktop during a session.&lt;br /&gt;
&lt;br /&gt;
Upon a reboot icons will return to their default position unless we 'snapshot' them in place. (Question: Is auto snapshot enabled by default?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click-drag your 'Work' volume icon and place it to the right side of the desktop. Now right-click on the 'Work' icon, and select 'snapshot' from the context menu.&lt;br /&gt;
* Now click-drag your 'MorphOS' volume icon and place it to the right side of the desktop. Don't snapshot this in place.&lt;br /&gt;
* Now reboot. After a reboot, the MorphOS icon has returned to its previous position, but the 'Work' icon has stayed where we snapshotted it.'''&lt;br /&gt;
&lt;br /&gt;
This is a very useful concept, since it means we can make a complete mess of the desktop during a session sure in the knowledge that, as long as we don't snapshot the icons in place, they will return to their saved positions upon a reboot.&lt;br /&gt;
&lt;br /&gt;
Notes: 'Unsnapshotting' simply deletes this saved information and will return the icon to the default position in the top left of the desktop upon a reboot. It does not return it to a previously snapshotted position.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Panels ===&lt;br /&gt;
&lt;br /&gt;
(Section needs re-doing, since MyMorphOS icon can't be dragged onto Panels. Grrrr...)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another way to keep icons ordered on the desktop is by using Ambient's panels.&lt;br /&gt;
&lt;br /&gt;
Let's create a panel!&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* RMB on desktop &amp;gt; Settings &amp;gt; Ambient&lt;br /&gt;
* In the Ambient preferences:&lt;br /&gt;
** Select 'Panels' in the list on the left hand side;&lt;br /&gt;
** Click the 'New Panel' button to create a panel;&lt;br /&gt;
** Click 'Save' to close Ambient preferences and save the new panel.'''&lt;br /&gt;
&lt;br /&gt;
Currently the panel contains no icons, just an arrow in a box. This is the drag gadget which, as the name suggests, is used to drag the panel into a desired position.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Drag your 'My MorphOS' icon from the desktop onto the drag gadget of your new panel.'''&lt;br /&gt;
&lt;br /&gt;
A copy of the 'My MorphOS' icon now appears on the panel.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click on the 'My MorphOS' icon on the panel - it opens the location with a single click.'''&lt;br /&gt;
&lt;br /&gt;
Ambient's panels provide a single-click method of opening locations, applications, files, etc (as well as other more advanced features not covered here).&lt;br /&gt;
&lt;br /&gt;
=== Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
As we don't want to have to navigate to every file from the top level of the drive each time, another type of icon which the desktop supports is shortcuts to a location or file.&lt;br /&gt;
&lt;br /&gt;
A commonly used application is Odyssey (MorphOS' default Web Browser), which is located in the applications drawer on the 'System' volume. Let's create a shortcut on the desktop to launch OWB.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click on the 'My MorphOS' icon in the panel. &lt;br /&gt;
* Double-click on the System volume&lt;br /&gt;
* Double-click on the 'Applications' drawer, then double click again on the OWB drawer. &lt;br /&gt;
* Drag the 'OWB' application icon onto the desktop.'''&lt;br /&gt;
&lt;br /&gt;
However really this is what panels are useful for. Let's keep the desktop tidy and put OWB into the panel also, that way it launches with a single-click instead of a double-click - doubling your productivity!1&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Drag the 'OWB' application icon onto the drag gadget of the panel. Make sure to drag it onto the drag gadget, and not onto the 'My MorphOS' icon placed there in the previous section.'''&lt;br /&gt;
&lt;br /&gt;
Now we are left with a redundant Odyssey icon on the desktop which needs to be 'put away.' Again, this can be done from the context menu.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* RMB on Odyssey desktop shortcut &amp;gt; put away.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==  File browsing ==&lt;br /&gt;
&lt;br /&gt;
In the section above, we touched upon file browsing - we opened a volume, navigated into a drawer, and then into another drawer to access a file.&lt;br /&gt;
&lt;br /&gt;
In order to navigate effectively, we need to recognise some landmarks, so at this point there are a few basic concepts which need to be introduced and defined.&lt;br /&gt;
&lt;br /&gt;
There's no delicate way around this, just grab yourself a cup of tea/coffee/vodka and try to stay awake. It's all important stuff that will help you down the line.&lt;br /&gt;
&lt;br /&gt;
=== MorphOS Filesystem ===&lt;br /&gt;
&lt;br /&gt;
'My MorphOS' is the top level of the filesystem, and is the point at which all volumes (eg 'System' and 'Work') are mounted.&lt;br /&gt;
&lt;br /&gt;
MorphOS retains full compatibility with AmigaDOS, in which volume names are followed by a colon (eg 'System:' and 'Work:'), and directories are separated by a forward slash '/'.&lt;br /&gt;
&lt;br /&gt;
The path to the web browser 'OWB' is thus expressed as:&lt;br /&gt;
&lt;br /&gt;
* System:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
==== Assigns ====&lt;br /&gt;
&lt;br /&gt;
In addition to volumes, MorphOS retains the concept of assigns. In the simplest sense, an assign is pseudonyms for a volume or directory path.&lt;br /&gt;
&lt;br /&gt;
As with volumes, assigns are suffixed by a colon, and are also mounted at the top level of the filesystem.&lt;br /&gt;
&lt;br /&gt;
An example of an assign is 'sys' - which is a pseudonym for the 'system' volume.&lt;br /&gt;
&lt;br /&gt;
The above path can therefore be expressed as:&lt;br /&gt;
&lt;br /&gt;
* System:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
or &lt;br /&gt;
&lt;br /&gt;
* Sys:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
Another example of an assign is 'envarc' - which is a pseudonym for the directory 'prefs/env-archive' on the 'system' volume.&lt;br /&gt;
&lt;br /&gt;
This directory path can therefore be expressed either as:&lt;br /&gt;
&lt;br /&gt;
* System:prefs/env-archive&lt;br /&gt;
&lt;br /&gt;
* Sys:prefs/env-archive&lt;br /&gt;
&lt;br /&gt;
or simply&lt;br /&gt;
&lt;br /&gt;
* Envarc:&lt;br /&gt;
&lt;br /&gt;
Assigns can also refer to multiple locations. The 'c' assign is an example of this. The primary location is 'system:c', however it is also a pseudonym for the location 'system:morphos/c'.&lt;br /&gt;
&lt;br /&gt;
Assigns addressing multiple locations are prioritised in the order they are created. In this case 'system:c' is created first, then 'system:/morphos/c' added.&lt;br /&gt;
&lt;br /&gt;
Consequently the command:&lt;br /&gt;
&lt;br /&gt;
* c:foobar&lt;br /&gt;
&lt;br /&gt;
will first search the location system:c for the file 'foobar'. If the file is not found, the location system:morphos/c will then be searched.&lt;br /&gt;
&lt;br /&gt;
===  Ambient File Browser ===&lt;br /&gt;
&lt;br /&gt;
When viewing files in an Ambient browser window files are not visible by default unless they have an associated icon.&lt;br /&gt;
&lt;br /&gt;
==== Icons (.info files) ====&lt;br /&gt;
&lt;br /&gt;
Icons are separate files which have the same name, but are appended with the extension .info (for example the icon for the file 'sys:foo/bar' would be named 'sys:foo/bar.info' ).&lt;br /&gt;
&lt;br /&gt;
MorphOS native Icon files are actually PNG image files, which also store any snapshot information, tooltypes etc in the file header (binary information which is part of the file, but does not contain the image).&lt;br /&gt;
&lt;br /&gt;
Notes: MorphOS icons can be edited using Sketch which can be found within the applications drawer.&lt;br /&gt;
&lt;br /&gt;
MorphOS also supports legacy Amiga icons (and glowicons?) however does not provide editing tools as part of OS for these legacy icon types, although 3rd party tools are available if required. (move to later section - not needed here!)&lt;br /&gt;
&lt;br /&gt;
Thumbnails&lt;br /&gt;
&lt;br /&gt;
--- Show all&lt;br /&gt;
&lt;br /&gt;
--- Lister Mode&lt;br /&gt;
&lt;br /&gt;
-- Basic file management&lt;br /&gt;
&lt;br /&gt;
---What goes where: c, devs, l, libs, etc (not /etc)&lt;br /&gt;
&lt;br /&gt;
-- Bookmarks&lt;br /&gt;
&lt;br /&gt;
-- Inbuilt viewers&lt;br /&gt;
&lt;br /&gt;
--- Opening files with external applications&lt;br /&gt;
&lt;br /&gt;
-- Utilities&lt;br /&gt;
&lt;br /&gt;
--- Exchange&lt;br /&gt;
&lt;br /&gt;
--- Sound player&lt;br /&gt;
&lt;br /&gt;
--- System Monitor&lt;br /&gt;
&lt;br /&gt;
--- System Log&lt;br /&gt;
&lt;br /&gt;
--- Format&lt;br /&gt;
&lt;br /&gt;
--- Find&lt;br /&gt;
&lt;br /&gt;
--- Hotkeys&lt;br /&gt;
&lt;br /&gt;
--- Ambient Settings&lt;br /&gt;
&lt;br /&gt;
-- Screenbar module Settings&lt;br /&gt;
&lt;br /&gt;
-- My MorphOS &amp;amp; Filesystem root &amp;amp; removable media&lt;br /&gt;
&lt;br /&gt;
-- Window icons&lt;br /&gt;
&lt;br /&gt;
-- Window depth concept&lt;br /&gt;
&lt;br /&gt;
-- Window Gadgets &amp;amp; handling: Dragging, resizing, iconify, hiding, scrolling, closing&lt;br /&gt;
&lt;br /&gt;
-- Moving an application onto its own screen&lt;br /&gt;
&lt;br /&gt;
--- Screen depth gadget&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=First_Steps_Using_MorphOS&amp;diff=2265</id>
		<title>First Steps Using MorphOS</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=First_Steps_Using_MorphOS&amp;diff=2265"/>
				<updated>2015-05-25T11:14:18Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Panels */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Booting MorphOS for the first time =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After installation, power on your computer to boot into your new installation of MorphOS.&lt;br /&gt;
&lt;br /&gt;
Once the boot process has completed, you will see a screen similar to that pictured below (it may look slightly different depending upon your monitor's resolution).&lt;br /&gt;
&lt;br /&gt;
[Picture: MorphOS desktop - fresh installation]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Interacting with your system =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Keyboard and Mouse ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In MorphOS, in common with most desktop operating systems, the mouse and keyboard are the primary means of user interaction with the system.&lt;br /&gt;
&lt;br /&gt;
Two mouse buttons are used by default:&lt;br /&gt;
&lt;br /&gt;
* The left mouse button (LMB) is used to select or activate;&lt;br /&gt;
* The right mouse button (RMB) is used for accessing menus.&lt;br /&gt;
&lt;br /&gt;
Scrolling and unidirectional mouse wheels are also supported out-of-the-box.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Interaction when using an Apple laptop or single-buttoned mouse ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All supported Apple laptops offer only a single mouse-button, which is used by MorphOS as the LMB. As accessing menus is an integral part of using MorphOS and compatible software, the missing RMB must therefore be made available.&lt;br /&gt;
&lt;br /&gt;
In order to follow this guide it is recommended that, if using an Apple laptop, you have a USB two-button mouse connected.&lt;br /&gt;
&lt;br /&gt;
To find out more about emulating the RMB on Apple laptops see [[Utilities/Commodities | Shiftclick]].&lt;br /&gt;
&lt;br /&gt;
=== Conventions used to describe mouse actions in this guide ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Where the term 'double-click' is used, this refers to clicking the left mouse button twice in quick succession and releasing;&lt;br /&gt;
* Where the term 'drag' is used this refers to keeping the left mouse button depressed whilst moving the mouse pointer;&lt;br /&gt;
* Where the term 'lasso' is used this refers to drawing a box around one or more items by dragging on an empty area of screen/window;&lt;br /&gt;
* Activation and navigation through menus is expressed as: RMB &amp;gt; [Menu heading] &amp;gt; [menu entry].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The Screen =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The current screen contains Ambient, MorphOS default desktop environment which launches upon booting. &lt;br /&gt;
&lt;br /&gt;
The strip along the top of the screen containing text and small icons is called the screenbar.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Screenbar ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Screenbar displays the currently selected application name on the left (currently Ambient).&lt;br /&gt;
&lt;br /&gt;
The right-hand most icon is the 'screen-depth' gadget, which is used to navigate between screens when multiple screens are open. &lt;br /&gt;
&lt;br /&gt;
Between these two are a clock and some small, colourful and surprisingly tasty icons. These icons are called screenbar modules, and are generally used to display useful information (such as battery state, date and time, memory usage, etc) or provide quick access to useful functions (such as ejecting the optical drive, or adjusting audio output volume).&lt;br /&gt;
&lt;br /&gt;
Notes: From a fresh installation, MorphOS boots with one screen open, however supports as many screens as can be created in graphics memory. Each connected monitor can display one screen at any one time, with the user able to select which screen is displayed on the monitor using the screen depth gadget.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== System Menus ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
System menus appear on the screenbar when the RMB is held.&lt;br /&gt;
&lt;br /&gt;
* Menus and submenus can be expanded by hovering the mouse pointer over the heading;&lt;br /&gt;
* Individual menu items are activated by hovering over them and releasing the RMB;&lt;br /&gt;
* Multiple menu items can be selected by left-clicking on items whilst continuing to hold the RMB:&lt;br /&gt;
** Selected entries are activated by releasing the RMB whilst hovering over an entry;&lt;br /&gt;
* Menus are closed by releasing the RMB whilst not hovering over an entry.&lt;br /&gt;
&lt;br /&gt;
An alternative method for accessing menus (which is the default method for Apple laptops which have only a single mouse-button) is quickly clicking the RMB to activate the menus (which remain open on a short click), then clicking with the LMB to activate an entry.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Open My MorphOS (RMB on desktop &amp;gt; Ambient &amp;gt; My MorphOS)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Context menus ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Context menus appear under the mouse pointer when the RMB is clicked on an icon or other object for which context menus are supported.&lt;br /&gt;
&lt;br /&gt;
Context menus give convenient access to a range of common actions which are supported for that object type.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introducing Ambient =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ambient is MorphOS default desktop environment incorporating file browsing, Mime-based filetype handling, graphical desktop supporting shortcuts, panels, and providing GUI access to a range of utilities such as disk formatting, CLI, system monitor, system preferences, and many more.&lt;br /&gt;
&lt;br /&gt;
[It is important to note that Ambient is not MorphOS, but is an application running on MorphOS&lt;br /&gt;
&lt;br /&gt;
Applications may be started from Ambient (eg by double-clicking an icon), but do not run on or within Ambient, even though they may open windows or display output on the same screen.&lt;br /&gt;
&lt;br /&gt;
Don't worry if the distinction of what Ambient is &amp;amp; is not appears a little blurry, it isn't crystal clear to me either. :) ] - is this useful or relevant at this stage of the guide? Move elsewhere!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Ambient Desktop ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From a fresh installation, the screen contents show a picture of a blue wave effect, with several icons also visible. This is Ambient's desktop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Desktop Icons ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The icons currently visible on the desktop represent the volumes on your hard drive(s), as well as any detected volumes on any other devices such as a CD, DVD or USB stick. On a standard installation you will see 'MorphOS' and 'Work' volumes showing on your desktop.&lt;br /&gt;
&lt;br /&gt;
There are also two other icon on the desktop: 'My MorphOS' and 'Ram Disk' which are a little different:&lt;br /&gt;
&lt;br /&gt;
* 'My MorphOS' gives access to the top level of the filesystem (analogous to 'My Computer' in Windows, or 'Computer' in OSX), and shows all your volumes;&lt;br /&gt;
* 'Ram disk' is a volume created and automatically resized dynamically in system memory which is used for fast access to system environment variables during runtime, for the system clipboard, and various other things. It is often useful to the user as a temporary storage area which flushes upon reboot, or as a fast 'swap,' 'cache' or 'temp' area for applications which make use of such features.&lt;br /&gt;
&lt;br /&gt;
Icons on the Ambient desktop can be opened by double-clicking.&lt;br /&gt;
&lt;br /&gt;
Icons can be dragged and placed anywhere on the desktop.&lt;br /&gt;
&lt;br /&gt;
Multiple icons can be selected by clicking on the desktop and dragging to 'lasso' multiple icons. The selected icons can then be dragged, or have actions performed upon them (eg cut, copy, paste), as one object. The object group is unselected by clicking on the desktop or by selecting a different - unselected - object.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Snapshotting desktop icons ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Icons will appear ordered on the desktop starting from the left hand corner of the desktop, but can be moved anywhere on the desktop during a session.&lt;br /&gt;
&lt;br /&gt;
Upon a reboot icons will return to their default position unless we 'snapshot' them in place. (Question: Is auto snapshot enabled by default?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click-drag your 'Work' volume icon and place it to the right side of the desktop. Now right-click on the 'Work' icon, and select 'snapshot' from the context menu.&lt;br /&gt;
* Now click-drag your 'MorphOS' volume icon and place it to the right side of the desktop. Don't snapshot this in place.&lt;br /&gt;
* Now reboot. After a reboot, the MorphOS icon has returned to its previous position, but the 'Work' icon has stayed where we snapshotted it.'''&lt;br /&gt;
&lt;br /&gt;
This is a very useful concept, since it means we can make a complete mess of the desktop during a session sure in the knowledge that, as long as we don't snapshot the icons in place, they will return to their saved positions upon a reboot.&lt;br /&gt;
&lt;br /&gt;
Notes: 'Unsnapshotting' simply deletes this saved information and will return the icon to the default position in the top left of the desktop upon a reboot. It does not return it to a previously snapshotted position.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Panels ===&lt;br /&gt;
&lt;br /&gt;
(Section needs re-doing, since MyMorphOS icon can't be dragged onto Panels. Grrrr...)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another way to keep icons ordered on the desktop is by using Ambient's panels.&lt;br /&gt;
&lt;br /&gt;
Let's create a panel!&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* RMB on desktop &amp;gt; Settings &amp;gt; Ambient&lt;br /&gt;
* In the Ambient preferences:&lt;br /&gt;
** Select 'Panels' in the list on the left hand side;&lt;br /&gt;
** Click the 'New Panel' button to create a panel;&lt;br /&gt;
** Click 'Save' to close Ambient preferences and save the new panel.'''&lt;br /&gt;
&lt;br /&gt;
Currently the panel contains no icons, just an arrow in a box. This is the drag gadget which, as the name suggests, is used to drag the panel into a desired position.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Drag your 'My MorphOS' icon from the desktop onto the drag gadget of your new panel.'''&lt;br /&gt;
&lt;br /&gt;
A copy of the 'My MorphOS' icon now appears on the panel.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click on the 'My MorphOS' icon on the panel - it opens the location with a single click.'''&lt;br /&gt;
&lt;br /&gt;
Ambient's panels provide a single-click method of opening locations, applications, files, etc (as well as other more advanced features not covered here).&lt;br /&gt;
&lt;br /&gt;
=== Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
As we don't want to have to navigate to every file from the top level of the drive each time, another type of icon which the desktop supports is shortcuts to a location or file.&lt;br /&gt;
&lt;br /&gt;
A commonly used application is Odyssey (MorphOS' default Web Browser), which is located in the applications drawer on the 'System' volume. Let's create a shortcut on the desktop to launch OWB.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click on the 'My MorphOS' icon in the panel. &lt;br /&gt;
* Double-click on the System volume&lt;br /&gt;
* Double-click on the 'Applications' drawer, then double click again on the OWB drawer. &lt;br /&gt;
* Drag the 'OWB' application icon onto the desktop.'''&lt;br /&gt;
&lt;br /&gt;
However really this is what panels are useful for. Let's keep the desktop tidy and put OWB into the panel also, that way it launches with a single-click instead of a double-click - doubling your productivity!1&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Drag the 'OWB' application icon onto the drag gadget of the panel. Make sure to drag it onto the drag gadget, and not onto the 'My MorphOS' icon placed there in the previous section.'''&lt;br /&gt;
&lt;br /&gt;
Now we are left with a redundant Odyssey icon on the desktop which needs to be 'put away.' Again, this can be done from the context menu.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* RMB on Odyssey desktop shortcut &amp;gt; put away.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==  File browsing ==&lt;br /&gt;
&lt;br /&gt;
In the section above, we touched upon file browsing - we opened a volume, navigated into a drawer, and then into another drawer to access a file.&lt;br /&gt;
&lt;br /&gt;
In order to navigate effectively, we need to recognise some landmarks, so at this point there are a few basic concepts which need to be introduced and defined.&lt;br /&gt;
&lt;br /&gt;
There's no delicate way around this, just grab yourself a cup of tea/coffee/vodka and try to stay awake. It's all important stuff that will help you down the line.&lt;br /&gt;
&lt;br /&gt;
=== MorphOS Filesystem ===&lt;br /&gt;
&lt;br /&gt;
'My MorphOS' is the top level of the filesystem, and is the point at which all volumes (eg 'System' and 'Work') are mounted.&lt;br /&gt;
&lt;br /&gt;
MorphOS retains full compatibility with AmigaDOS, in which volume names are followed by a colon (eg 'System:' and 'Work:'), and directories are separated by a forward slash '/'.&lt;br /&gt;
&lt;br /&gt;
The path to the web browser 'OWB' is thus expressed as:&lt;br /&gt;
&lt;br /&gt;
* System:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
==== Assigns ====&lt;br /&gt;
&lt;br /&gt;
In addition to volumes, MorphOS retains the concept of assigns. In the simplest sense, an assign is pseudonyms for a volume or directory path.&lt;br /&gt;
&lt;br /&gt;
As with volumes, assigns are suffixed by a colon, and are also mounted at the top level of the filesystem.&lt;br /&gt;
&lt;br /&gt;
An example of an assign is 'sys' - which is a pseudonym for the system volume 'MorphOS'.&lt;br /&gt;
&lt;br /&gt;
The above path can therefore be expressed as:&lt;br /&gt;
&lt;br /&gt;
* Sys:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
Another example of an assign is 'envarc' - which is a pseudonym for the directory 'prefs/env-archive' on the system volume 'morphos'.&lt;br /&gt;
&lt;br /&gt;
This directory path can therefore be expressed either as:&lt;br /&gt;
&lt;br /&gt;
* MorphOS:prefs/env-archive&lt;br /&gt;
&lt;br /&gt;
* Sys:prefs/env-archive&lt;br /&gt;
&lt;br /&gt;
or simply&lt;br /&gt;
&lt;br /&gt;
* Envarc:&lt;br /&gt;
&lt;br /&gt;
Assigns can also refer to multiple locations. The 'c' assign is an example of this. The primary location is morphos:c, however it is also a pseudonym for the location morphos:morphos/c.&lt;br /&gt;
&lt;br /&gt;
Assigns addressing multiple locations are prioritised in the order they are created (In this case sys:c is created first, then mossys:c added).&lt;br /&gt;
&lt;br /&gt;
Consequently the command:&lt;br /&gt;
&lt;br /&gt;
* c:foobar&lt;br /&gt;
&lt;br /&gt;
will first search the location sys:c for the file 'foobar'. If the file is not found, the location sys:morphos/c will then be searched.&lt;br /&gt;
&lt;br /&gt;
===  Ambient File Browser ===&lt;br /&gt;
&lt;br /&gt;
When viewing files in an Ambient browser window files are not visible by default unless they have an associated icon.&lt;br /&gt;
&lt;br /&gt;
==== Icons (.info files) ====&lt;br /&gt;
&lt;br /&gt;
Icons are separate files which have the same name, but are appended with the extension .info (for example the icon for the file 'sys:foo/bar' would be named 'sys:foo/bar.info' ).&lt;br /&gt;
&lt;br /&gt;
MorphOS native Icon files are actually PNG image files, which also store any snapshot information, tooltypes etc in the file header (binary information which is part of the file, but does not contain the image).&lt;br /&gt;
&lt;br /&gt;
Notes: MorphOS icons can be edited using Sketch which can be found within the applications drawer.&lt;br /&gt;
&lt;br /&gt;
MorphOS also supports legacy Amiga icons (and glowicons?) however does not provide editing tools as part of OS for these legacy icon types, although 3rd party tools are available if required. (move to later section - not needed here!)&lt;br /&gt;
&lt;br /&gt;
Thumbnails&lt;br /&gt;
&lt;br /&gt;
--- Show all&lt;br /&gt;
&lt;br /&gt;
--- Lister Mode&lt;br /&gt;
&lt;br /&gt;
-- Basic file management&lt;br /&gt;
&lt;br /&gt;
---What goes where: c, devs, l, libs, etc (not /etc)&lt;br /&gt;
&lt;br /&gt;
-- Bookmarks&lt;br /&gt;
&lt;br /&gt;
-- Inbuilt viewers&lt;br /&gt;
&lt;br /&gt;
--- Opening files with external applications&lt;br /&gt;
&lt;br /&gt;
-- Utilities&lt;br /&gt;
&lt;br /&gt;
--- Exchange&lt;br /&gt;
&lt;br /&gt;
--- Sound player&lt;br /&gt;
&lt;br /&gt;
--- System Monitor&lt;br /&gt;
&lt;br /&gt;
--- System Log&lt;br /&gt;
&lt;br /&gt;
--- Format&lt;br /&gt;
&lt;br /&gt;
--- Find&lt;br /&gt;
&lt;br /&gt;
--- Hotkeys&lt;br /&gt;
&lt;br /&gt;
--- Ambient Settings&lt;br /&gt;
&lt;br /&gt;
-- Screenbar module Settings&lt;br /&gt;
&lt;br /&gt;
-- My MorphOS &amp;amp; Filesystem root &amp;amp; removable media&lt;br /&gt;
&lt;br /&gt;
-- Window icons&lt;br /&gt;
&lt;br /&gt;
-- Window depth concept&lt;br /&gt;
&lt;br /&gt;
-- Window Gadgets &amp;amp; handling: Dragging, resizing, iconify, hiding, scrolling, closing&lt;br /&gt;
&lt;br /&gt;
-- Moving an application onto its own screen&lt;br /&gt;
&lt;br /&gt;
--- Screen depth gadget&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Installing_software&amp;diff=2264</id>
		<title>Installing software</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Installing_software&amp;diff=2264"/>
				<updated>2015-05-23T22:51:30Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This tutorial follows on from the article [[First_Steps_Using_MorphOS]], and may assume familiarity with the topics covered therein.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Installing additional software =&lt;br /&gt;
&lt;br /&gt;
Whilst MorphOS is a farily comprehensive operating system, including many useful utilities and programs, every user will want to install some additional software at some point.&lt;br /&gt;
&lt;br /&gt;
This guide explains installing software, and takes you through the process of downloading and installing two pieces of software: Grunch, and MPlayer. &lt;br /&gt;
&lt;br /&gt;
This simple process demonstrates the general case which is applicable to the installation of all native MorphOS and Amiga software.&lt;br /&gt;
&lt;br /&gt;
== Where to install applications ==&lt;br /&gt;
&lt;br /&gt;
Applications can be installed in any location, although should always be installed onto a MorphOS native filesystem (such as SFS, PFS, IceFS). Filesystems originating from other sytems such as NTFS, HFS+ or ext2/3/4 do not support Amiga file protection bits (Jargon alert) which can cause problems when trying to running applications stored on them.&lt;br /&gt;
&lt;br /&gt;
In this guide it is assumed that the user is installing software into the applications folder on the System volume (sys:applications).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Many users prefer to keep the MorphOS volume free from third-party software. It is not uncommon to install software into an applications folder on the work: volume (work:applications).&lt;br /&gt;
&lt;br /&gt;
== Installing Applications Manually ==&lt;br /&gt;
&lt;br /&gt;
=== Finding MorphOS Software ===&lt;br /&gt;
&lt;br /&gt;
There are several useful repositories for MorphOS software worth bookmarking: &lt;br /&gt;
&lt;br /&gt;
* MorphOS Files (http://morphos-files.net) is exclusively focused on MorphOS compatible software. This well presented and frequently updated site provides a comprehensive index of software available for MorphOS, offers a very user-friendly interface and search, and is frequently updated. &lt;br /&gt;
* Aminet (http://aminet.net) is a vast repository of software for all Amiga-compatible platforms: Amiga, AROS, MorphOS, and AmigaOS4. Many MorphOS sofware developers host their software here, and this is also the primary source for Amiga (68K) software. &lt;br /&gt;
* LukySoft (http://morphos.lukysoft.cz/) offers some MorphOS software not available on either of the above, but appears to be less frequently updated.&lt;br /&gt;
&lt;br /&gt;
Many other developers also keep their own websites on which additional software can also be found.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Using popular search engines such as Google to find MorphOS software can be frustrating, since most search results tend to be for Windows, OSX or Linux software. A useful strategy is to include &amp;quot;&amp;amp;MorphOS&amp;quot; in the search terms, which instructs the search engine to return results with your search terms AND the word &amp;quot;MorphOS&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Software archives ===&lt;br /&gt;
&lt;br /&gt;
Most MorphOS and Amiga software can be downloaded in the form of a .lha archive (analogous to how applications are often distributed on other operating systems, such as the .zip archive on windows, or the .dmg image on OSX).&lt;br /&gt;
&lt;br /&gt;
Double-clicking on a .lha archive launches Ambient's browser window allowing you to access the contents of the archive. From here files can be viewed, installed, copied to another location, or in many cases even run from within the archive. Note that the contents of the archive become inaccessible again once the browser window is closed, so the browser window must remain open until any file-copy or installation process has completed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Installation scripts ===&lt;br /&gt;
&lt;br /&gt;
Where software requires files to be copied to specific locations, or needs configuration changes (such as adding assigns at boot time) to be made, an installation script will usually be included.&lt;br /&gt;
&lt;br /&gt;
Installation scripts make use of MorphOS included Installer tool to automate all file copying, configuration changes, etc and prompt the user for an installation location, and to make any other choices or provide information as required.&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* When running installation scripts from older Amiga software, it can be useful to use the 68K Amiga &amp;quot;installer&amp;quot; tool available from Aminet. &lt;br /&gt;
&lt;br /&gt;
=== Installing without an installation script ===&lt;br /&gt;
&lt;br /&gt;
Where an application does not use an installation script, there will usually be a text file included which describes the installation process. This process may be as simple as copying the application from the archive to your MorphOS:applications directory.&lt;br /&gt;
&lt;br /&gt;
Readme files and guides are two of the most common types of documentation you can expect to find with MorphOS and Amiga software, and are always worth reading. They are generally found in the main directory of the archive. Both can be viewed by double-clicking the icon.&lt;br /&gt;
&lt;br /&gt;
A Readme or Guide may contain installation instructions, system requirements, usage instructions, FAQs, changelogs, copyright notice or even witty comments about how no-one ever reads the readme.&lt;br /&gt;
&lt;br /&gt;
Some developers prefer to include separate files for installation instructions, user guides, changelogs, and readmes, others will put it all in one, some may even not include anything but the program. There are no rules: it's anarchy out there!&lt;br /&gt;
&lt;br /&gt;
Please always read the readme and the guide before asking for help. There will be a test.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Open MorphOS:MorphOS.readme. &lt;br /&gt;
* Read.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Manual Installation Example: Installing a Package Manager ===&lt;br /&gt;
&lt;br /&gt;
Firstly, we need find a Package Manager, download it, and then manually install it.&lt;br /&gt;
&lt;br /&gt;
User actions:&lt;br /&gt;
* Open OWB by single-clicking on the panel icon; &lt;br /&gt;
* Navigate to www.morphos-files.net;&lt;br /&gt;
* Search for &amp;quot;Package Manager&amp;quot; using the fast-find box. Of the two available, the most recently updated one is &amp;quot;Grunch&amp;quot;;&lt;br /&gt;
* Download Grunch by clicking on the link in the search results. Odyssey's opens a window to show the progress of the download;&lt;br /&gt;
* Once the download completes, click on the 'Finished' tab in Odyssey's 'Downloads' window, and double-click the entry for Grunch. Ambient's browser opens displaying the contents of the archive;&lt;br /&gt;
* Double-click on the grunch.install icon to run the installation script which guides you through the installation process;&lt;br /&gt;
* Accept all default options and click 'next' on each page, then click install;&lt;br /&gt;
* Close the .lha archive browser window and navigate to MorphOS:applications/grunch;&lt;br /&gt;
* Add Grunch to the panel on the desktop, and close the browser window.&lt;br /&gt;
&lt;br /&gt;
== Installing applications using a Package Manager ==&lt;br /&gt;
&lt;br /&gt;
=== Grunch ===&lt;br /&gt;
&lt;br /&gt;
Grunch is a package manager.&lt;br /&gt;
&lt;br /&gt;
Grunch is a relatively recent addition to MorphOS software base, and its database is continually growing. Its philosophy is to limit its offerings to stable, high quality software rather than trying to provide everything regardless of quality.&lt;br /&gt;
&lt;br /&gt;
Grunch is also donationware, so please consider Geit when composing your Christmas card list.&lt;br /&gt;
&lt;br /&gt;
Grunch automates software installation, updates and dependencies such that finding, downloading and installing an application becomes a single-click operation.&lt;br /&gt;
&lt;br /&gt;
=== Package Manager Installation Example: Installing a Media Player using Grunch ===&lt;br /&gt;
&lt;br /&gt;
We can use Grunch to find and install the type of application we need.&lt;br /&gt;
&lt;br /&gt;
User action:&lt;br /&gt;
* Click the Grunch panel icon;&lt;br /&gt;
* Once Grunch has run its initial checks, activate the 'search' box and search for &amp;quot;Media player&amp;quot;;&lt;br /&gt;
* Select the entry for 'MPlayer' and click 'install';&lt;br /&gt;
* Once Grunch has downloaded and installed MPlayer, close Grunch;&lt;br /&gt;
* Navigate to MorphOS:applications/mplayer;&lt;br /&gt;
* Read the readme :) ;&lt;br /&gt;
* Double click the application icon to launch mplayer (or add the icon to the panel on the desktop, or create a shortcut, etc);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Read MPlayer's readme with regards to making the native GUI available by default. You may want to do this before adding MPlayer's icon to the panel.&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Installing_software&amp;diff=2263</id>
		<title>Installing software</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Installing_software&amp;diff=2263"/>
				<updated>2015-05-23T22:44:29Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Package Manager Installation Example: Installing a Media Player using Grunch */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing additional software =&lt;br /&gt;
&lt;br /&gt;
Whilst MorphOS is a farily comprehensive operating system, including many useful utilities and programs, every user will want to install some additional software at some point.&lt;br /&gt;
&lt;br /&gt;
This guide explains installing software, and takes you through the process of downloading and installing two pieces of software: Grunch, and MPlayer. &lt;br /&gt;
&lt;br /&gt;
This simple process demonstrates the general case which is applicable to the installation of all native MorphOS and Amiga software.&lt;br /&gt;
&lt;br /&gt;
== Where to install applications ==&lt;br /&gt;
&lt;br /&gt;
Applications can be installed in any location, although should always be installed onto a MorphOS native filesystem (such as SFS, PFS, IceFS). Filesystems originating from other sytems such as NTFS, HFS+ or ext2/3/4 do not support Amiga file protection bits (Jargon alert) which can cause problems when trying to running applications stored on them.&lt;br /&gt;
&lt;br /&gt;
In this guide it is assumed that the user is installing software into the applications folder on the System volume (sys:applications).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Many users prefer to keep the MorphOS volume free from third-party software. It is not uncommon to install software into an applications folder on the work: volume (work:applications).&lt;br /&gt;
&lt;br /&gt;
== Installing Applications Manually ==&lt;br /&gt;
&lt;br /&gt;
=== Finding MorphOS Software ===&lt;br /&gt;
&lt;br /&gt;
There are several useful repositories for MorphOS software worth bookmarking: &lt;br /&gt;
&lt;br /&gt;
* MorphOS Files (http://morphos-files.net) is exclusively focused on MorphOS compatible software. This well presented and frequently updated site provides a comprehensive index of software available for MorphOS, offers a very user-friendly interface and search, and is frequently updated. &lt;br /&gt;
* Aminet (http://aminet.net) is a vast repository of software for all Amiga-compatible platforms: Amiga, AROS, MorphOS, and AmigaOS4. Many MorphOS sofware developers host their software here, and this is also the primary source for Amiga (68K) software. &lt;br /&gt;
* LukySoft (http://morphos.lukysoft.cz/) offers some MorphOS software not available on either of the above, but appears to be less frequently updated.&lt;br /&gt;
&lt;br /&gt;
Many other developers also keep their own websites on which additional software can also be found.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Using popular search engines such as Google to find MorphOS software can be frustrating, since most search results tend to be for Windows, OSX or Linux software. A useful strategy is to include &amp;quot;&amp;amp;MorphOS&amp;quot; in the search terms, which instructs the search engine to return results with your search terms AND the word &amp;quot;MorphOS&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Software archives ===&lt;br /&gt;
&lt;br /&gt;
Most MorphOS and Amiga software can be downloaded in the form of a .lha archive (analogous to how applications are often distributed on other operating systems, such as the .zip archive on windows, or the .dmg image on OSX).&lt;br /&gt;
&lt;br /&gt;
Double-clicking on a .lha archive launches Ambient's browser window allowing you to access the contents of the archive. From here files can be viewed, installed, copied to another location, or in many cases even run from within the archive. Note that the contents of the archive become inaccessible again once the browser window is closed, so the browser window must remain open until any file-copy or installation process has completed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Installation scripts ===&lt;br /&gt;
&lt;br /&gt;
Where software requires files to be copied to specific locations, or needs configuration changes (such as adding assigns at boot time) to be made, an installation script will usually be included.&lt;br /&gt;
&lt;br /&gt;
Installation scripts make use of MorphOS included Installer tool to automate all file copying, configuration changes, etc and prompt the user for an installation location, and to make any other choices or provide information as required.&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* When running installation scripts from older Amiga software, it can be useful to use the 68K Amiga &amp;quot;installer&amp;quot; tool available from Aminet. &lt;br /&gt;
&lt;br /&gt;
=== Installing without an installation script ===&lt;br /&gt;
&lt;br /&gt;
Where an application does not use an installation script, there will usually be a text file included which describes the installation process. This process may be as simple as copying the application from the archive to your MorphOS:applications directory.&lt;br /&gt;
&lt;br /&gt;
Readme files and guides are two of the most common types of documentation you can expect to find with MorphOS and Amiga software, and are always worth reading. They are generally found in the main directory of the archive. Both can be viewed by double-clicking the icon.&lt;br /&gt;
&lt;br /&gt;
A Readme or Guide may contain installation instructions, system requirements, usage instructions, FAQs, changelogs, copyright notice or even witty comments about how no-one ever reads the readme.&lt;br /&gt;
&lt;br /&gt;
Some developers prefer to include separate files for installation instructions, user guides, changelogs, and readmes, others will put it all in one, some may even not include anything but the program. There are no rules: it's anarchy out there!&lt;br /&gt;
&lt;br /&gt;
Please always read the readme and the guide before asking for help. There will be a test.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Open MorphOS:MorphOS.readme. &lt;br /&gt;
* Read.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Manual Installation Example: Installing a Package Manager ===&lt;br /&gt;
&lt;br /&gt;
Firstly, we need find a Package Manager, download it, and then manually install it.&lt;br /&gt;
&lt;br /&gt;
User actions:&lt;br /&gt;
* Open OWB by single-clicking on the panel icon; &lt;br /&gt;
* Navigate to www.morphos-files.net;&lt;br /&gt;
* Search for &amp;quot;Package Manager&amp;quot; using the fast-find box. Of the two available, the most recently updated one is &amp;quot;Grunch&amp;quot;;&lt;br /&gt;
* Download Grunch by clicking on the link in the search results. Odyssey's opens a window to show the progress of the download;&lt;br /&gt;
* Once the download completes, click on the 'Finished' tab in Odyssey's 'Downloads' window, and double-click the entry for Grunch. Ambient's browser opens displaying the contents of the archive;&lt;br /&gt;
* Double-click on the grunch.install icon to run the installation script which guides you through the installation process;&lt;br /&gt;
* Accept all default options and click 'next' on each page, then click install;&lt;br /&gt;
* Close the .lha archive browser window and navigate to MorphOS:applications/grunch;&lt;br /&gt;
* Add Grunch to the panel on the desktop, and close the browser window.&lt;br /&gt;
&lt;br /&gt;
== Installing applications using a Package Manager ==&lt;br /&gt;
&lt;br /&gt;
=== Grunch ===&lt;br /&gt;
&lt;br /&gt;
Grunch is a package manager.&lt;br /&gt;
&lt;br /&gt;
Grunch is a relatively recent addition to MorphOS software base, and its database is continually growing. Its philosophy is to limit its offerings to stable, high quality software rather than trying to provide everything regardless of quality.&lt;br /&gt;
&lt;br /&gt;
Grunch is also donationware, so please consider Geit when composing your Christmas card list.&lt;br /&gt;
&lt;br /&gt;
Grunch automates software installation, updates and dependencies such that finding, downloading and installing an application becomes a single-click operation.&lt;br /&gt;
&lt;br /&gt;
=== Package Manager Installation Example: Installing a Media Player using Grunch ===&lt;br /&gt;
&lt;br /&gt;
We can use Grunch to find and install the type of application we need.&lt;br /&gt;
&lt;br /&gt;
User action:&lt;br /&gt;
* Click the Grunch panel icon;&lt;br /&gt;
* Once Grunch has run its initial checks, activate the 'search' box and search for &amp;quot;Media player&amp;quot;;&lt;br /&gt;
* Select the entry for 'MPlayer' and click 'install';&lt;br /&gt;
* Once Grunch has downloaded and installed MPlayer, close Grunch;&lt;br /&gt;
* Navigate to MorphOS:applications/mplayer;&lt;br /&gt;
* Read the readme :) ;&lt;br /&gt;
* Double click the application icon to launch mplayer (or add the icon to the panel on the desktop, or create a shortcut, etc);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Read MPlayer's readme with regards to making the native GUI available by default. You may want to do this before adding MPlayer's icon to the panel.&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Installing_software&amp;diff=2262</id>
		<title>Installing software</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Installing_software&amp;diff=2262"/>
				<updated>2015-05-23T22:40:36Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Where to install applications */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing additional software =&lt;br /&gt;
&lt;br /&gt;
Whilst MorphOS is a farily comprehensive operating system, including many useful utilities and programs, every user will want to install some additional software at some point.&lt;br /&gt;
&lt;br /&gt;
This guide explains installing software, and takes you through the process of downloading and installing two pieces of software: Grunch, and MPlayer. &lt;br /&gt;
&lt;br /&gt;
This simple process demonstrates the general case which is applicable to the installation of all native MorphOS and Amiga software.&lt;br /&gt;
&lt;br /&gt;
== Where to install applications ==&lt;br /&gt;
&lt;br /&gt;
Applications can be installed in any location, although should always be installed onto a MorphOS native filesystem (such as SFS, PFS, IceFS). Filesystems originating from other sytems such as NTFS, HFS+ or ext2/3/4 do not support Amiga file protection bits (Jargon alert) which can cause problems when trying to running applications stored on them.&lt;br /&gt;
&lt;br /&gt;
In this guide it is assumed that the user is installing software into the applications folder on the System volume (sys:applications).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Many users prefer to keep the MorphOS volume free from third-party software. It is not uncommon to install software into an applications folder on the work: volume (work:applications).&lt;br /&gt;
&lt;br /&gt;
== Installing Applications Manually ==&lt;br /&gt;
&lt;br /&gt;
=== Finding MorphOS Software ===&lt;br /&gt;
&lt;br /&gt;
There are several useful repositories for MorphOS software worth bookmarking: &lt;br /&gt;
&lt;br /&gt;
* MorphOS Files (http://morphos-files.net) is exclusively focused on MorphOS compatible software. This well presented and frequently updated site provides a comprehensive index of software available for MorphOS, offers a very user-friendly interface and search, and is frequently updated. &lt;br /&gt;
* Aminet (http://aminet.net) is a vast repository of software for all Amiga-compatible platforms: Amiga, AROS, MorphOS, and AmigaOS4. Many MorphOS sofware developers host their software here, and this is also the primary source for Amiga (68K) software. &lt;br /&gt;
* LukySoft (http://morphos.lukysoft.cz/) offers some MorphOS software not available on either of the above, but appears to be less frequently updated.&lt;br /&gt;
&lt;br /&gt;
Many other developers also keep their own websites on which additional software can also be found.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Using popular search engines such as Google to find MorphOS software can be frustrating, since most search results tend to be for Windows, OSX or Linux software. A useful strategy is to include &amp;quot;&amp;amp;MorphOS&amp;quot; in the search terms, which instructs the search engine to return results with your search terms AND the word &amp;quot;MorphOS&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Software archives ===&lt;br /&gt;
&lt;br /&gt;
Most MorphOS and Amiga software can be downloaded in the form of a .lha archive (analogous to how applications are often distributed on other operating systems, such as the .zip archive on windows, or the .dmg image on OSX).&lt;br /&gt;
&lt;br /&gt;
Double-clicking on a .lha archive launches Ambient's browser window allowing you to access the contents of the archive. From here files can be viewed, installed, copied to another location, or in many cases even run from within the archive. Note that the contents of the archive become inaccessible again once the browser window is closed, so the browser window must remain open until any file-copy or installation process has completed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Installation scripts ===&lt;br /&gt;
&lt;br /&gt;
Where software requires files to be copied to specific locations, or needs configuration changes (such as adding assigns at boot time) to be made, an installation script will usually be included.&lt;br /&gt;
&lt;br /&gt;
Installation scripts make use of MorphOS included Installer tool to automate all file copying, configuration changes, etc and prompt the user for an installation location, and to make any other choices or provide information as required.&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* When running installation scripts from older Amiga software, it can be useful to use the 68K Amiga &amp;quot;installer&amp;quot; tool available from Aminet. &lt;br /&gt;
&lt;br /&gt;
=== Installing without an installation script ===&lt;br /&gt;
&lt;br /&gt;
Where an application does not use an installation script, there will usually be a text file included which describes the installation process. This process may be as simple as copying the application from the archive to your MorphOS:applications directory.&lt;br /&gt;
&lt;br /&gt;
Readme files and guides are two of the most common types of documentation you can expect to find with MorphOS and Amiga software, and are always worth reading. They are generally found in the main directory of the archive. Both can be viewed by double-clicking the icon.&lt;br /&gt;
&lt;br /&gt;
A Readme or Guide may contain installation instructions, system requirements, usage instructions, FAQs, changelogs, copyright notice or even witty comments about how no-one ever reads the readme.&lt;br /&gt;
&lt;br /&gt;
Some developers prefer to include separate files for installation instructions, user guides, changelogs, and readmes, others will put it all in one, some may even not include anything but the program. There are no rules: it's anarchy out there!&lt;br /&gt;
&lt;br /&gt;
Please always read the readme and the guide before asking for help. There will be a test.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Open MorphOS:MorphOS.readme. &lt;br /&gt;
* Read.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Manual Installation Example: Installing a Package Manager ===&lt;br /&gt;
&lt;br /&gt;
Firstly, we need find a Package Manager, download it, and then manually install it.&lt;br /&gt;
&lt;br /&gt;
User actions:&lt;br /&gt;
* Open OWB by single-clicking on the panel icon; &lt;br /&gt;
* Navigate to www.morphos-files.net;&lt;br /&gt;
* Search for &amp;quot;Package Manager&amp;quot; using the fast-find box. Of the two available, the most recently updated one is &amp;quot;Grunch&amp;quot;;&lt;br /&gt;
* Download Grunch by clicking on the link in the search results. Odyssey's opens a window to show the progress of the download;&lt;br /&gt;
* Once the download completes, click on the 'Finished' tab in Odyssey's 'Downloads' window, and double-click the entry for Grunch. Ambient's browser opens displaying the contents of the archive;&lt;br /&gt;
* Double-click on the grunch.install icon to run the installation script which guides you through the installation process;&lt;br /&gt;
* Accept all default options and click 'next' on each page, then click install;&lt;br /&gt;
* Close the .lha archive browser window and navigate to MorphOS:applications/grunch;&lt;br /&gt;
* Add Grunch to the panel on the desktop, and close the browser window.&lt;br /&gt;
&lt;br /&gt;
== Installing applications using a Package Manager ==&lt;br /&gt;
&lt;br /&gt;
=== Grunch ===&lt;br /&gt;
&lt;br /&gt;
Grunch is a package manager.&lt;br /&gt;
&lt;br /&gt;
Grunch is a relatively recent addition to MorphOS software base, and its database is continually growing. Its philosophy is to limit its offerings to stable, high quality software rather than trying to provide everything regardless of quality.&lt;br /&gt;
&lt;br /&gt;
Grunch is also donationware, so please consider Geit when composing your Christmas card list.&lt;br /&gt;
&lt;br /&gt;
Grunch automates software installation, updates and dependencies such that finding, downloading and installing an application becomes a single-click operation.&lt;br /&gt;
&lt;br /&gt;
=== Package Manager Installation Example: Installing a Media Player using Grunch ===&lt;br /&gt;
&lt;br /&gt;
We can use Grunch to find and install the type of application we need.&lt;br /&gt;
&lt;br /&gt;
User action:&lt;br /&gt;
* Click the Grunch panel icon;&lt;br /&gt;
* Once Grunch has run its initial checks, activate the 'search' box and search for &amp;quot;Media player&amp;quot;;&lt;br /&gt;
* Select the entry for 'MPlayer' and click 'install';&lt;br /&gt;
* Once Grunch has downloaded and installed MPlayer, close Grunch;&lt;br /&gt;
* Navigate to MorphOS:applications/mplayer;&lt;br /&gt;
* Add MPlayer to the panel on the desktop, and close the browser window;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Read MPlayer's readme with regards to making the native GUI available by default. You may want to do this before adding MPlayer's icon to the panel.&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=First_Steps_Using_MorphOS&amp;diff=2261</id>
		<title>First Steps Using MorphOS</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=First_Steps_Using_MorphOS&amp;diff=2261"/>
				<updated>2015-05-23T22:27:58Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Interaction when using an Apple laptop or single-buttoned mouse */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Booting MorphOS for the first time =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After installation, power on your computer to boot into your new installation of MorphOS.&lt;br /&gt;
&lt;br /&gt;
Once the boot process has completed, you will see a screen similar to that pictured below (it may look slightly different depending upon your monitor's resolution).&lt;br /&gt;
&lt;br /&gt;
[Picture: MorphOS desktop - fresh installation]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Interacting with your system =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Keyboard and Mouse ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In MorphOS, in common with most desktop operating systems, the mouse and keyboard are the primary means of user interaction with the system.&lt;br /&gt;
&lt;br /&gt;
Two mouse buttons are used by default:&lt;br /&gt;
&lt;br /&gt;
* The left mouse button (LMB) is used to select or activate;&lt;br /&gt;
* The right mouse button (RMB) is used for accessing menus.&lt;br /&gt;
&lt;br /&gt;
Scrolling and unidirectional mouse wheels are also supported out-of-the-box.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Interaction when using an Apple laptop or single-buttoned mouse ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All supported Apple laptops offer only a single mouse-button, which is used by MorphOS as the LMB. As accessing menus is an integral part of using MorphOS and compatible software, the missing RMB must therefore be made available.&lt;br /&gt;
&lt;br /&gt;
In order to follow this guide it is recommended that, if using an Apple laptop, you have a USB two-button mouse connected.&lt;br /&gt;
&lt;br /&gt;
To find out more about emulating the RMB on Apple laptops see [[Utilities/Commodities | Shiftclick]].&lt;br /&gt;
&lt;br /&gt;
=== Conventions used to describe mouse actions in this guide ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Where the term 'double-click' is used, this refers to clicking the left mouse button twice in quick succession and releasing;&lt;br /&gt;
* Where the term 'drag' is used this refers to keeping the left mouse button depressed whilst moving the mouse pointer;&lt;br /&gt;
* Where the term 'lasso' is used this refers to drawing a box around one or more items by dragging on an empty area of screen/window;&lt;br /&gt;
* Activation and navigation through menus is expressed as: RMB &amp;gt; [Menu heading] &amp;gt; [menu entry].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The Screen =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The current screen contains Ambient, MorphOS default desktop environment which launches upon booting. &lt;br /&gt;
&lt;br /&gt;
The strip along the top of the screen containing text and small icons is called the screenbar.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Screenbar ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Screenbar displays the currently selected application name on the left (currently Ambient).&lt;br /&gt;
&lt;br /&gt;
The right-hand most icon is the 'screen-depth' gadget, which is used to navigate between screens when multiple screens are open. &lt;br /&gt;
&lt;br /&gt;
Between these two are a clock and some small, colourful and surprisingly tasty icons. These icons are called screenbar modules, and are generally used to display useful information (such as battery state, date and time, memory usage, etc) or provide quick access to useful functions (such as ejecting the optical drive, or adjusting audio output volume).&lt;br /&gt;
&lt;br /&gt;
Notes: From a fresh installation, MorphOS boots with one screen open, however supports as many screens as can be created in graphics memory. Each connected monitor can display one screen at any one time, with the user able to select which screen is displayed on the monitor using the screen depth gadget.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== System Menus ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
System menus appear on the screenbar when the RMB is held.&lt;br /&gt;
&lt;br /&gt;
* Menus and submenus can be expanded by hovering the mouse pointer over the heading;&lt;br /&gt;
* Individual menu items are activated by hovering over them and releasing the RMB;&lt;br /&gt;
* Multiple menu items can be selected by left-clicking on items whilst continuing to hold the RMB:&lt;br /&gt;
** Selected entries are activated by releasing the RMB whilst hovering over an entry;&lt;br /&gt;
* Menus are closed by releasing the RMB whilst not hovering over an entry.&lt;br /&gt;
&lt;br /&gt;
An alternative method for accessing menus (which is the default method for Apple laptops which have only a single mouse-button) is quickly clicking the RMB to activate the menus (which remain open on a short click), then clicking with the LMB to activate an entry.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Open My MorphOS (RMB on desktop &amp;gt; Ambient &amp;gt; My MorphOS)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Context menus ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Context menus appear under the mouse pointer when the RMB is clicked on an icon or other object for which context menus are supported.&lt;br /&gt;
&lt;br /&gt;
Context menus give convenient access to a range of common actions which are supported for that object type.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introducing Ambient =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ambient is MorphOS default desktop environment incorporating file browsing, Mime-based filetype handling, graphical desktop supporting shortcuts, panels, and providing GUI access to a range of utilities such as disk formatting, CLI, system monitor, system preferences, and many more.&lt;br /&gt;
&lt;br /&gt;
[It is important to note that Ambient is not MorphOS, but is an application running on MorphOS&lt;br /&gt;
&lt;br /&gt;
Applications may be started from Ambient (eg by double-clicking an icon), but do not run on or within Ambient, even though they may open windows or display output on the same screen.&lt;br /&gt;
&lt;br /&gt;
Don't worry if the distinction of what Ambient is &amp;amp; is not appears a little blurry, it isn't crystal clear to me either. :) ] - is this useful or relevant at this stage of the guide? Move elsewhere!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Ambient Desktop ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From a fresh installation, the screen contents show a picture of a blue wave effect, with several icons also visible. This is Ambient's desktop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Desktop Icons ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The icons currently visible on the desktop represent the volumes on your hard drive(s), as well as any detected volumes on any other devices such as a CD, DVD or USB stick. On a standard installation you will see 'MorphOS' and 'Work' volumes showing on your desktop.&lt;br /&gt;
&lt;br /&gt;
There are also two other icon on the desktop: 'My MorphOS' and 'Ram Disk' which are a little different:&lt;br /&gt;
&lt;br /&gt;
* 'My MorphOS' gives access to the top level of the filesystem (analogous to 'My Computer' in Windows, or 'Computer' in OSX), and shows all your volumes;&lt;br /&gt;
* 'Ram disk' is a volume created and automatically resized dynamically in system memory which is used for fast access to system environment variables during runtime, for the system clipboard, and various other things. It is often useful to the user as a temporary storage area which flushes upon reboot, or as a fast 'swap,' 'cache' or 'temp' area for applications which make use of such features.&lt;br /&gt;
&lt;br /&gt;
Icons on the Ambient desktop can be opened by double-clicking.&lt;br /&gt;
&lt;br /&gt;
Icons can be dragged and placed anywhere on the desktop.&lt;br /&gt;
&lt;br /&gt;
Multiple icons can be selected by clicking on the desktop and dragging to 'lasso' multiple icons. The selected icons can then be dragged, or have actions performed upon them (eg cut, copy, paste), as one object. The object group is unselected by clicking on the desktop or by selecting a different - unselected - object.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Snapshotting desktop icons ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Icons will appear ordered on the desktop starting from the left hand corner of the desktop, but can be moved anywhere on the desktop during a session.&lt;br /&gt;
&lt;br /&gt;
Upon a reboot icons will return to their default position unless we 'snapshot' them in place. (Question: Is auto snapshot enabled by default?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click-drag your 'Work' volume icon and place it to the right side of the desktop. Now right-click on the 'Work' icon, and select 'snapshot' from the context menu.&lt;br /&gt;
* Now click-drag your 'MorphOS' volume icon and place it to the right side of the desktop. Don't snapshot this in place.&lt;br /&gt;
* Now reboot. After a reboot, the MorphOS icon has returned to its previous position, but the 'Work' icon has stayed where we snapshotted it.'''&lt;br /&gt;
&lt;br /&gt;
This is a very useful concept, since it means we can make a complete mess of the desktop during a session sure in the knowledge that, as long as we don't snapshot the icons in place, they will return to their saved positions upon a reboot.&lt;br /&gt;
&lt;br /&gt;
Notes: 'Unsnapshotting' simply deletes this saved information and will return the icon to the default position in the top left of the desktop upon a reboot. It does not return it to a previously snapshotted position.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Panels ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another way to keep icons ordered on the desktop is by using Ambient's panels.&lt;br /&gt;
&lt;br /&gt;
Let's create a panel!&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* RMB on desktop &amp;gt; Settings &amp;gt; Ambient&lt;br /&gt;
* In the Ambient preferences:&lt;br /&gt;
** Select 'Panels' in the list on the left hand side;&lt;br /&gt;
** Click the 'New Panel' button to create a panel;&lt;br /&gt;
** Click 'Save' to close Ambient preferences and save the new panel.'''&lt;br /&gt;
&lt;br /&gt;
Currently the panel contains no icons, just an arrow in a box. This is the drag gadget which, as the name suggests, is used to drag the panel into a desired position.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Drag your 'My MorphOS' icon from the desktop onto the drag gadget of your new panel.'''&lt;br /&gt;
&lt;br /&gt;
A copy of the 'My MorphOS' icon now appears on the panel.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click on the 'My MorphOS' icon on the panel - it opens the location with a single click.'''&lt;br /&gt;
&lt;br /&gt;
Ambient's panels provide a single-click method of opening locations, applications, files, etc (as well as other more advanced features not covered here).&lt;br /&gt;
&lt;br /&gt;
=== Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
As we don't want to have to navigate to every file from the top level of the drive each time, another type of icon which the desktop supports is shortcuts to a location or file.&lt;br /&gt;
&lt;br /&gt;
A commonly used application is Odyssey (MorphOS' default Web Browser), which is located in the applications drawer on the 'System' volume. Let's create a shortcut on the desktop to launch OWB.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click on the 'My MorphOS' icon in the panel. &lt;br /&gt;
* Double-click on the System volume&lt;br /&gt;
* Double-click on the 'Applications' drawer, then double click again on the OWB drawer. &lt;br /&gt;
* Drag the 'OWB' application icon onto the desktop.'''&lt;br /&gt;
&lt;br /&gt;
However really this is what panels are useful for. Let's keep the desktop tidy and put OWB into the panel also, that way it launches with a single-click instead of a double-click - doubling your productivity!1&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Drag the 'OWB' application icon onto the drag gadget of the panel. Make sure to drag it onto the drag gadget, and not onto the 'My MorphOS' icon placed there in the previous section.'''&lt;br /&gt;
&lt;br /&gt;
Now we are left with a redundant Odyssey icon on the desktop which needs to be 'put away.' Again, this can be done from the context menu.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* RMB on Odyssey desktop shortcut &amp;gt; put away.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==  File browsing ==&lt;br /&gt;
&lt;br /&gt;
In the section above, we touched upon file browsing - we opened a volume, navigated into a drawer, and then into another drawer to access a file.&lt;br /&gt;
&lt;br /&gt;
In order to navigate effectively, we need to recognise some landmarks, so at this point there are a few basic concepts which need to be introduced and defined.&lt;br /&gt;
&lt;br /&gt;
There's no delicate way around this, just grab yourself a cup of tea/coffee/vodka and try to stay awake. It's all important stuff that will help you down the line.&lt;br /&gt;
&lt;br /&gt;
=== MorphOS Filesystem ===&lt;br /&gt;
&lt;br /&gt;
'My MorphOS' is the top level of the filesystem, and is the point at which all volumes (eg 'System' and 'Work') are mounted.&lt;br /&gt;
&lt;br /&gt;
MorphOS retains full compatibility with AmigaDOS, in which volume names are followed by a colon (eg 'System:' and 'Work:'), and directories are separated by a forward slash '/'.&lt;br /&gt;
&lt;br /&gt;
The path to the web browser 'OWB' is thus expressed as:&lt;br /&gt;
&lt;br /&gt;
* System:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
==== Assigns ====&lt;br /&gt;
&lt;br /&gt;
In addition to volumes, MorphOS retains the concept of assigns. In the simplest sense, an assign is pseudonyms for a volume or directory path.&lt;br /&gt;
&lt;br /&gt;
As with volumes, assigns are suffixed by a colon, and are also mounted at the top level of the filesystem.&lt;br /&gt;
&lt;br /&gt;
An example of an assign is 'sys' - which is a pseudonym for the system volume 'MorphOS'.&lt;br /&gt;
&lt;br /&gt;
The above path can therefore be expressed as:&lt;br /&gt;
&lt;br /&gt;
* Sys:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
Another example of an assign is 'envarc' - which is a pseudonym for the directory 'prefs/env-archive' on the system volume 'morphos'.&lt;br /&gt;
&lt;br /&gt;
This directory path can therefore be expressed either as:&lt;br /&gt;
&lt;br /&gt;
* MorphOS:prefs/env-archive&lt;br /&gt;
&lt;br /&gt;
* Sys:prefs/env-archive&lt;br /&gt;
&lt;br /&gt;
or simply&lt;br /&gt;
&lt;br /&gt;
* Envarc:&lt;br /&gt;
&lt;br /&gt;
Assigns can also refer to multiple locations. The 'c' assign is an example of this. The primary location is morphos:c, however it is also a pseudonym for the location morphos:morphos/c.&lt;br /&gt;
&lt;br /&gt;
Assigns addressing multiple locations are prioritised in the order they are created (In this case sys:c is created first, then mossys:c added).&lt;br /&gt;
&lt;br /&gt;
Consequently the command:&lt;br /&gt;
&lt;br /&gt;
* c:foobar&lt;br /&gt;
&lt;br /&gt;
will first search the location sys:c for the file 'foobar'. If the file is not found, the location sys:morphos/c will then be searched.&lt;br /&gt;
&lt;br /&gt;
===  Ambient File Browser ===&lt;br /&gt;
&lt;br /&gt;
When viewing files in an Ambient browser window files are not visible by default unless they have an associated icon.&lt;br /&gt;
&lt;br /&gt;
==== Icons (.info files) ====&lt;br /&gt;
&lt;br /&gt;
Icons are separate files which have the same name, but are appended with the extension .info (for example the icon for the file 'sys:foo/bar' would be named 'sys:foo/bar.info' ).&lt;br /&gt;
&lt;br /&gt;
MorphOS native Icon files are actually PNG image files, which also store any snapshot information, tooltypes etc in the file header (binary information which is part of the file, but does not contain the image).&lt;br /&gt;
&lt;br /&gt;
Notes: MorphOS icons can be edited using Sketch which can be found within the applications drawer.&lt;br /&gt;
&lt;br /&gt;
MorphOS also supports legacy Amiga icons (and glowicons?) however does not provide editing tools as part of OS for these legacy icon types, although 3rd party tools are available if required. (move to later section - not needed here!)&lt;br /&gt;
&lt;br /&gt;
Thumbnails&lt;br /&gt;
&lt;br /&gt;
--- Show all&lt;br /&gt;
&lt;br /&gt;
--- Lister Mode&lt;br /&gt;
&lt;br /&gt;
-- Basic file management&lt;br /&gt;
&lt;br /&gt;
---What goes where: c, devs, l, libs, etc (not /etc)&lt;br /&gt;
&lt;br /&gt;
-- Bookmarks&lt;br /&gt;
&lt;br /&gt;
-- Inbuilt viewers&lt;br /&gt;
&lt;br /&gt;
--- Opening files with external applications&lt;br /&gt;
&lt;br /&gt;
-- Utilities&lt;br /&gt;
&lt;br /&gt;
--- Exchange&lt;br /&gt;
&lt;br /&gt;
--- Sound player&lt;br /&gt;
&lt;br /&gt;
--- System Monitor&lt;br /&gt;
&lt;br /&gt;
--- System Log&lt;br /&gt;
&lt;br /&gt;
--- Format&lt;br /&gt;
&lt;br /&gt;
--- Find&lt;br /&gt;
&lt;br /&gt;
--- Hotkeys&lt;br /&gt;
&lt;br /&gt;
--- Ambient Settings&lt;br /&gt;
&lt;br /&gt;
-- Screenbar module Settings&lt;br /&gt;
&lt;br /&gt;
-- My MorphOS &amp;amp; Filesystem root &amp;amp; removable media&lt;br /&gt;
&lt;br /&gt;
-- Window icons&lt;br /&gt;
&lt;br /&gt;
-- Window depth concept&lt;br /&gt;
&lt;br /&gt;
-- Window Gadgets &amp;amp; handling: Dragging, resizing, iconify, hiding, scrolling, closing&lt;br /&gt;
&lt;br /&gt;
-- Moving an application onto its own screen&lt;br /&gt;
&lt;br /&gt;
--- Screen depth gadget&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Main_Page&amp;diff=2260</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Main_Page&amp;diff=2260"/>
				<updated>2015-05-23T22:24:42Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;siteLogo&amp;quot; style=&amp;quot;float: right;&amp;quot;&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#274572;&amp;quot;&amp;gt;Welcome to the MorphOS Library,&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;top:+0.2em; font-size:95%;&amp;quot;&amp;gt;the wiki based library of MorphOS related documentation.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Do you have suggestions or would like to contribute? Please contact: https://morph.zone/message2library.png&lt;br /&gt;
&lt;br /&gt;
'''Important notes to editors:''' [[Basic Guidelines]] - [[List of Wanted Articles]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;small&amp;gt;This page in other languages: [[Strona główna|Polish]]&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==About MorphOS==&lt;br /&gt;
MorphOS - The Lightning OS&lt;br /&gt;
* [[What is MorphOS?]]&lt;br /&gt;
* [[Hardware Platforms]]&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
* [[Characteristic features]]&lt;br /&gt;
* [[MorphOS integration]]&lt;br /&gt;
* [[MorphOS Development]]&lt;br /&gt;
* [[Developer tools]]&lt;br /&gt;
* [[3D graphics]]&lt;br /&gt;
* [[Games]]&lt;br /&gt;
* [[MorphOS key applications]]&lt;br /&gt;
* [[Platform expansion]]&lt;br /&gt;
* [[Who needs MorphOS?]]&lt;br /&gt;
* [[Conclusions]]&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[F.A.Q.]]&lt;br /&gt;
* [[Historical notes]]&lt;br /&gt;
* [[Contributors]]&lt;br /&gt;
A five minute read for users familiar with the Commodore Amiga&lt;br /&gt;
*[[MorphOS in 5 minutes]]&lt;br /&gt;
&lt;br /&gt;
==Articles==&lt;br /&gt;
The core of the MorphOS Library can be found here.  Along with the provided manuals, there are several documents designed to help users get the most out of their MorphOS powered computer.&lt;br /&gt;
&lt;br /&gt;
* [[Fundamentals of MorphOS]]&lt;br /&gt;
* [[Dictionary of Terms]]&lt;br /&gt;
* [[First_Steps_Using_MorphOS | First Steps Using MorphOS]]&lt;br /&gt;
* [[Shell Commands|Shell: Commands]]&lt;br /&gt;
* [[Pattern matching|Shell: Pattern Matching]]&lt;br /&gt;
* [[Volume Names]]&lt;br /&gt;
* [[Tips and Tricks]]&lt;br /&gt;
* [[Supported Computers]]&lt;br /&gt;
* [[Applications|Applications included with MorphOS]]&lt;br /&gt;
* [[Tools|Tools included with MorphOS]]&lt;br /&gt;
* [[Utilities|Utilities included with MorphOS]]&lt;br /&gt;
&lt;br /&gt;
==Tutorials==&lt;br /&gt;
Welcome to the Tutorials section of the MorphOS Library.  In this aisle of the library you can find examples and step by step instructions to help get the most out of your MorphOS experience.&lt;br /&gt;
&lt;br /&gt;
*[[Modifying the User-Startup file]]&lt;br /&gt;
*[[Configuring_Network | Configuring a Network Connnection]]&lt;br /&gt;
*[[Installing_software | Installing Third Party Software]]&lt;br /&gt;
*[[Dual-boot MorphOS and MacOS X on a Mac Mini G4]]&lt;br /&gt;
*[[How to write Mails with SimpleMail]]&lt;br /&gt;
*[[MorphOS External USB Drive Backup Guide]]&lt;br /&gt;
*[[Scanning with SCANdal]]&lt;br /&gt;
*[[Recording an LP with Audio Evolution 4]]&lt;br /&gt;
*[[Passwordless SSH login with RemoteShell]]&lt;br /&gt;
*[[How to Install Directory Opus Magellan II]]&lt;br /&gt;
*[[How to Make MorphOS Look Like OS4]]&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
In the development section of the MorphOS Library, you can find a collection of helpful articles and tutorials focused on MorphOS software development.&lt;br /&gt;
&lt;br /&gt;
*[[First steps in MorphOS programming]]&lt;br /&gt;
*[[Magic User Interface Programming]]&lt;br /&gt;
*[[In-depth: The New MorphOS Memory System]]&lt;br /&gt;
*[[Reggae: MorphOS multimedia framework]]&lt;br /&gt;
*[[An Introduction to MorphOS PPC Assembly]]&lt;br /&gt;
*[[Advanced Topics]]&lt;br /&gt;
&lt;br /&gt;
==Benchmarks, Reports &amp;amp; Reviews==&lt;br /&gt;
*[[jPV's MorphOS 2 Review]]&lt;br /&gt;
*[[What's New in MorphOS 3]]&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
The MorphOS Link Database is a collection of websites that are of interest to all current and potential future users of MorphOS. For easier navigation, we have separated the list of websites into multiple categories.&lt;br /&gt;
&lt;br /&gt;
*[[Links#Community_Portals_.26_Forums|Community Portals]]&lt;br /&gt;
*[[Links#File_Repositories|File Repositories]]&lt;br /&gt;
*[[Links#Software|Software]]&lt;br /&gt;
*[[Links#Developers|Developers]]&lt;br /&gt;
*[[Links#Misc|Misc]]&lt;br /&gt;
&lt;br /&gt;
==Work in Progress==&lt;br /&gt;
*[[ReTooled]]&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Installing_software&amp;diff=2259</id>
		<title>Installing software</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Installing_software&amp;diff=2259"/>
				<updated>2015-05-23T22:21:21Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;= Installing additional software =  Whilst MorphOS is a farily comprehensive operating system, including many useful utilities and programs, every user will want to install so...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Installing additional software =&lt;br /&gt;
&lt;br /&gt;
Whilst MorphOS is a farily comprehensive operating system, including many useful utilities and programs, every user will want to install some additional software at some point.&lt;br /&gt;
&lt;br /&gt;
This guide explains installing software, and takes you through the process of downloading and installing two pieces of software: Grunch, and MPlayer. &lt;br /&gt;
&lt;br /&gt;
This simple process demonstrates the general case which is applicable to the installation of all native MorphOS and Amiga software.&lt;br /&gt;
&lt;br /&gt;
== Where to installation applications ==&lt;br /&gt;
&lt;br /&gt;
Applications can be installed in any location, although should always be installed onto a MorphOS native filesystem (such as SFS, PFS, IceFS). Filesystems originating from other sytems such as NTFS, HFS+ or ext2/3/4 do not support Amiga file protection bits (Jargon alert) which can cause problems when trying to running applications stored on them.&lt;br /&gt;
&lt;br /&gt;
In this guide it is assumed that the user is installing software into the applications folder on the System volume (sys:applications).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Many users prefer to keep the MorphOS volume free from third-party software. It is not uncommon to install software into an applications folder on the work: volume (work:applications). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installing Applications Manually ==&lt;br /&gt;
&lt;br /&gt;
=== Finding MorphOS Software ===&lt;br /&gt;
&lt;br /&gt;
There are several useful repositories for MorphOS software worth bookmarking: &lt;br /&gt;
&lt;br /&gt;
* MorphOS Files (http://morphos-files.net) is exclusively focused on MorphOS compatible software. This well presented and frequently updated site provides a comprehensive index of software available for MorphOS, offers a very user-friendly interface and search, and is frequently updated. &lt;br /&gt;
* Aminet (http://aminet.net) is a vast repository of software for all Amiga-compatible platforms: Amiga, AROS, MorphOS, and AmigaOS4. Many MorphOS sofware developers host their software here, and this is also the primary source for Amiga (68K) software. &lt;br /&gt;
* LukySoft (http://morphos.lukysoft.cz/) offers some MorphOS software not available on either of the above, but appears to be less frequently updated.&lt;br /&gt;
&lt;br /&gt;
Many other developers also keep their own websites on which additional software can also be found.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Using popular search engines such as Google to find MorphOS software can be frustrating, since most search results tend to be for Windows, OSX or Linux software. A useful strategy is to include &amp;quot;&amp;amp;MorphOS&amp;quot; in the search terms, which instructs the search engine to return results with your search terms AND the word &amp;quot;MorphOS&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Software archives ===&lt;br /&gt;
&lt;br /&gt;
Most MorphOS and Amiga software can be downloaded in the form of a .lha archive (analogous to how applications are often distributed on other operating systems, such as the .zip archive on windows, or the .dmg image on OSX).&lt;br /&gt;
&lt;br /&gt;
Double-clicking on a .lha archive launches Ambient's browser window allowing you to access the contents of the archive. From here files can be viewed, installed, copied to another location, or in many cases even run from within the archive. Note that the contents of the archive become inaccessible again once the browser window is closed, so the browser window must remain open until any file-copy or installation process has completed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Installation scripts ===&lt;br /&gt;
&lt;br /&gt;
Where software requires files to be copied to specific locations, or needs configuration changes (such as adding assigns at boot time) to be made, an installation script will usually be included.&lt;br /&gt;
&lt;br /&gt;
Installation scripts make use of MorphOS included Installer tool to automate all file copying, configuration changes, etc and prompt the user for an installation location, and to make any other choices or provide information as required.&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* When running installation scripts from older Amiga software, it can be useful to use the 68K Amiga &amp;quot;installer&amp;quot; tool available from Aminet. &lt;br /&gt;
&lt;br /&gt;
=== Installing without an installation script ===&lt;br /&gt;
&lt;br /&gt;
Where an application does not use an installation script, there will usually be a text file included which describes the installation process. This process may be as simple as copying the application from the archive to your MorphOS:applications directory.&lt;br /&gt;
&lt;br /&gt;
Readme files and guides are two of the most common types of documentation you can expect to find with MorphOS and Amiga software, and are always worth reading. They are generally found in the main directory of the archive. Both can be viewed by double-clicking the icon.&lt;br /&gt;
&lt;br /&gt;
A Readme or Guide may contain installation instructions, system requirements, usage instructions, FAQs, changelogs, copyright notice or even witty comments about how no-one ever reads the readme.&lt;br /&gt;
&lt;br /&gt;
Some developers prefer to include separate files for installation instructions, user guides, changelogs, and readmes, others will put it all in one, some may even not include anything but the program. There are no rules: it's anarchy out there!&lt;br /&gt;
&lt;br /&gt;
Please always read the readme and the guide before asking for help. There will be a test.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Open MorphOS:MorphOS.readme. &lt;br /&gt;
* Read.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Manual Installation Example: Installing a Package Manager ===&lt;br /&gt;
&lt;br /&gt;
Firstly, we need find a Package Manager, download it, and then manually install it.&lt;br /&gt;
&lt;br /&gt;
User actions:&lt;br /&gt;
* Open OWB by single-clicking on the panel icon; &lt;br /&gt;
* Navigate to www.morphos-files.net;&lt;br /&gt;
* Search for &amp;quot;Package Manager&amp;quot; using the fast-find box. Of the two available, the most recently updated one is &amp;quot;Grunch&amp;quot;;&lt;br /&gt;
* Download Grunch by clicking on the link in the search results. Odyssey's opens a window to show the progress of the download;&lt;br /&gt;
* Once the download completes, click on the 'Finished' tab in Odyssey's 'Downloads' window, and double-click the entry for Grunch. Ambient's browser opens displaying the contents of the archive;&lt;br /&gt;
* Double-click on the grunch.install icon to run the installation script which guides you through the installation process;&lt;br /&gt;
* Accept all default options and click 'next' on each page, then click install;&lt;br /&gt;
* Close the .lha archive browser window and navigate to MorphOS:applications/grunch;&lt;br /&gt;
* Add Grunch to the panel on the desktop, and close the browser window.&lt;br /&gt;
&lt;br /&gt;
== Installing applications using a Package Manager ==&lt;br /&gt;
&lt;br /&gt;
=== Grunch ===&lt;br /&gt;
&lt;br /&gt;
Grunch is a package manager.&lt;br /&gt;
&lt;br /&gt;
Grunch is a relatively recent addition to MorphOS software base, and its database is continually growing. Its philosophy is to limit its offerings to stable, high quality software rather than trying to provide everything regardless of quality.&lt;br /&gt;
&lt;br /&gt;
Grunch is also donationware, so please consider Geit when composing your Christmas card list.&lt;br /&gt;
&lt;br /&gt;
Grunch automates software installation, updates and dependencies such that finding, downloading and installing an application becomes a single-click operation.&lt;br /&gt;
&lt;br /&gt;
=== Package Manager Installation Example: Installing a Media Player using Grunch ===&lt;br /&gt;
&lt;br /&gt;
We can use Grunch to find and install the type of application we need.&lt;br /&gt;
&lt;br /&gt;
User action:&lt;br /&gt;
* Click the Grunch panel icon;&lt;br /&gt;
* Once Grunch has run its initial checks, activate the 'search' box and search for &amp;quot;Media player&amp;quot;;&lt;br /&gt;
* Select the entry for 'MPlayer' and click 'install';&lt;br /&gt;
* Once Grunch has downloaded and installed MPlayer, close Grunch;&lt;br /&gt;
* Navigate to MorphOS:applications/mplayer;&lt;br /&gt;
* Add MPlayer to the panel on the desktop, and close the browser window;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* Read MPlayer's readme with regards to making the native GUI available by default. You may want to do this before adding MPlayer's icon to the panel.&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Main_Page&amp;diff=2258</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Main_Page&amp;diff=2258"/>
				<updated>2015-05-23T22:05:40Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Articles */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;siteLogo&amp;quot; style=&amp;quot;float: right;&amp;quot;&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#274572;&amp;quot;&amp;gt;Welcome to the MorphOS Library,&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;top:+0.2em; font-size:95%;&amp;quot;&amp;gt;the wiki based library of MorphOS related documentation.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Do you have suggestions or would like to contribute? Please contact: https://morph.zone/message2library.png&lt;br /&gt;
&lt;br /&gt;
'''Important notes to editors:''' [[Basic Guidelines]] - [[List of Wanted Articles]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;small&amp;gt;This page in other languages: [[Strona główna|Polish]]&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==About MorphOS==&lt;br /&gt;
MorphOS - The Lightning OS&lt;br /&gt;
* [[What is MorphOS?]]&lt;br /&gt;
* [[Hardware Platforms]]&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
* [[Characteristic features]]&lt;br /&gt;
* [[MorphOS integration]]&lt;br /&gt;
* [[MorphOS Development]]&lt;br /&gt;
* [[Developer tools]]&lt;br /&gt;
* [[3D graphics]]&lt;br /&gt;
* [[Games]]&lt;br /&gt;
* [[MorphOS key applications]]&lt;br /&gt;
* [[Platform expansion]]&lt;br /&gt;
* [[Who needs MorphOS?]]&lt;br /&gt;
* [[Conclusions]]&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[F.A.Q.]]&lt;br /&gt;
* [[Historical notes]]&lt;br /&gt;
* [[Contributors]]&lt;br /&gt;
A five minute read for users familiar with the Commodore Amiga&lt;br /&gt;
*[[MorphOS in 5 minutes]]&lt;br /&gt;
&lt;br /&gt;
==Articles==&lt;br /&gt;
The core of the MorphOS Library can be found here.  Along with the provided manuals, there are several documents designed to help users get the most out of their MorphOS powered computer.&lt;br /&gt;
&lt;br /&gt;
* [[Fundamentals of MorphOS]]&lt;br /&gt;
* [[Dictionary of Terms]]&lt;br /&gt;
* [[First_Steps_Using_MorphOS | First Steps Using MorphOS]]&lt;br /&gt;
* [[Shell Commands|Shell: Commands]]&lt;br /&gt;
* [[Pattern matching|Shell: Pattern Matching]]&lt;br /&gt;
* [[Volume Names]]&lt;br /&gt;
* [[Tips and Tricks]]&lt;br /&gt;
* [[Supported Computers]]&lt;br /&gt;
* [[Applications|Applications included with MorphOS]]&lt;br /&gt;
* [[Tools|Tools included with MorphOS]]&lt;br /&gt;
* [[Utilities|Utilities included with MorphOS]]&lt;br /&gt;
&lt;br /&gt;
==Tutorials==&lt;br /&gt;
Welcome to the Tutorials section of the MorphOS Library.  In this aisle of the library you can find examples and step by step instructions to help get the most out of your MorphOS experience.&lt;br /&gt;
&lt;br /&gt;
*[[Modifying the User-Startup file]]&lt;br /&gt;
*[[Configuring_Network | Configuring a Network Connnection]]&lt;br /&gt;
*[[Dual-boot MorphOS and MacOS X on a Mac Mini G4]]&lt;br /&gt;
*[[How to write Mails with SimpleMail]]&lt;br /&gt;
*[[MorphOS External USB Drive Backup Guide]]&lt;br /&gt;
*[[Scanning with SCANdal]]&lt;br /&gt;
*[[Recording an LP with Audio Evolution 4]]&lt;br /&gt;
*[[Passwordless SSH login with RemoteShell]]&lt;br /&gt;
*[[How to Install Directory Opus Magellan II]]&lt;br /&gt;
*[[How to Make MorphOS Look Like OS4]]&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
In the development section of the MorphOS Library, you can find a collection of helpful articles and tutorials focused on MorphOS software development.&lt;br /&gt;
&lt;br /&gt;
*[[First steps in MorphOS programming]]&lt;br /&gt;
*[[Magic User Interface Programming]]&lt;br /&gt;
*[[In-depth: The New MorphOS Memory System]]&lt;br /&gt;
*[[Reggae: MorphOS multimedia framework]]&lt;br /&gt;
*[[An Introduction to MorphOS PPC Assembly]]&lt;br /&gt;
*[[Advanced Topics]]&lt;br /&gt;
&lt;br /&gt;
==Benchmarks, Reports &amp;amp; Reviews==&lt;br /&gt;
*[[jPV's MorphOS 2 Review]]&lt;br /&gt;
*[[What's New in MorphOS 3]]&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
The MorphOS Link Database is a collection of websites that are of interest to all current and potential future users of MorphOS. For easier navigation, we have separated the list of websites into multiple categories.&lt;br /&gt;
&lt;br /&gt;
*[[Links#Community_Portals_.26_Forums|Community Portals]]&lt;br /&gt;
*[[Links#File_Repositories|File Repositories]]&lt;br /&gt;
*[[Links#Software|Software]]&lt;br /&gt;
*[[Links#Developers|Developers]]&lt;br /&gt;
*[[Links#Misc|Misc]]&lt;br /&gt;
&lt;br /&gt;
==Work in Progress==&lt;br /&gt;
*[[ReTooled]]&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=First_Steps_Using_MorphOS&amp;diff=2257</id>
		<title>First Steps Using MorphOS</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=First_Steps_Using_MorphOS&amp;diff=2257"/>
				<updated>2015-05-23T22:02:34Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;   = Booting MorphOS for the first time =   After installation, power on your computer to boot into your new installation of MorphOS.  Once the boot process has completed, you...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Booting MorphOS for the first time =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After installation, power on your computer to boot into your new installation of MorphOS.&lt;br /&gt;
&lt;br /&gt;
Once the boot process has completed, you will see a screen similar to that pictured below (it may look slightly different depending upon your monitor's resolution).&lt;br /&gt;
&lt;br /&gt;
[Picture: MorphOS desktop - fresh installation]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Interacting with your system =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Keyboard and Mouse ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In MorphOS, in common with most desktop operating systems, the mouse and keyboard are the primary means of user interaction with the system.&lt;br /&gt;
&lt;br /&gt;
Two mouse buttons are used by default:&lt;br /&gt;
&lt;br /&gt;
* The left mouse button (LMB) is used to select or activate;&lt;br /&gt;
* The right mouse button (RMB) is used for accessing menus.&lt;br /&gt;
&lt;br /&gt;
Scrolling and unidirectional mouse wheels are also supported out-of-the-box.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Interaction when using an Apple laptop or single-buttoned mouse ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All supported Apple laptops offer only a single mouse-button, which is used by MorphOS as the LMB. As accessing menus is an integral part of using MorphOS and compatible software, the missing RMB must therefore be made available.&lt;br /&gt;
&lt;br /&gt;
In order to follow this guide it is recommended that, if using an Apple laptop, you have a USB two-button mouse connected.&lt;br /&gt;
&lt;br /&gt;
To find out more about emulating the RMB on Apple laptops see [[Utilities/Shiftclick | Shiftclick]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Conventions used to describe mouse actions in this guide ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Where the term 'double-click' is used, this refers to clicking the left mouse button twice in quick succession and releasing;&lt;br /&gt;
* Where the term 'drag' is used this refers to keeping the left mouse button depressed whilst moving the mouse pointer;&lt;br /&gt;
* Where the term 'lasso' is used this refers to drawing a box around one or more items by dragging on an empty area of screen/window;&lt;br /&gt;
* Activation and navigation through menus is expressed as: RMB &amp;gt; [Menu heading] &amp;gt; [menu entry].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= The Screen =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The current screen contains Ambient, MorphOS default desktop environment which launches upon booting. &lt;br /&gt;
&lt;br /&gt;
The strip along the top of the screen containing text and small icons is called the screenbar.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Screenbar ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Screenbar displays the currently selected application name on the left (currently Ambient).&lt;br /&gt;
&lt;br /&gt;
The right-hand most icon is the 'screen-depth' gadget, which is used to navigate between screens when multiple screens are open. &lt;br /&gt;
&lt;br /&gt;
Between these two are a clock and some small, colourful and surprisingly tasty icons. These icons are called screenbar modules, and are generally used to display useful information (such as battery state, date and time, memory usage, etc) or provide quick access to useful functions (such as ejecting the optical drive, or adjusting audio output volume).&lt;br /&gt;
&lt;br /&gt;
Notes: From a fresh installation, MorphOS boots with one screen open, however supports as many screens as can be created in graphics memory. Each connected monitor can display one screen at any one time, with the user able to select which screen is displayed on the monitor using the screen depth gadget.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== System Menus ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
System menus appear on the screenbar when the RMB is held.&lt;br /&gt;
&lt;br /&gt;
* Menus and submenus can be expanded by hovering the mouse pointer over the heading;&lt;br /&gt;
* Individual menu items are activated by hovering over them and releasing the RMB;&lt;br /&gt;
* Multiple menu items can be selected by left-clicking on items whilst continuing to hold the RMB:&lt;br /&gt;
** Selected entries are activated by releasing the RMB whilst hovering over an entry;&lt;br /&gt;
* Menus are closed by releasing the RMB whilst not hovering over an entry.&lt;br /&gt;
&lt;br /&gt;
An alternative method for accessing menus (which is the default method for Apple laptops which have only a single mouse-button) is quickly clicking the RMB to activate the menus (which remain open on a short click), then clicking with the LMB to activate an entry.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Open My MorphOS (RMB on desktop &amp;gt; Ambient &amp;gt; My MorphOS)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Context menus ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Context menus appear under the mouse pointer when the RMB is clicked on an icon or other object for which context menus are supported.&lt;br /&gt;
&lt;br /&gt;
Context menus give convenient access to a range of common actions which are supported for that object type.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Introducing Ambient =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ambient is MorphOS default desktop environment incorporating file browsing, Mime-based filetype handling, graphical desktop supporting shortcuts, panels, and providing GUI access to a range of utilities such as disk formatting, CLI, system monitor, system preferences, and many more.&lt;br /&gt;
&lt;br /&gt;
[It is important to note that Ambient is not MorphOS, but is an application running on MorphOS&lt;br /&gt;
&lt;br /&gt;
Applications may be started from Ambient (eg by double-clicking an icon), but do not run on or within Ambient, even though they may open windows or display output on the same screen.&lt;br /&gt;
&lt;br /&gt;
Don't worry if the distinction of what Ambient is &amp;amp; is not appears a little blurry, it isn't crystal clear to me either. :) ] - is this useful or relevant at this stage of the guide? Move elsewhere!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== The Ambient Desktop ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From a fresh installation, the screen contents show a picture of a blue wave effect, with several icons also visible. This is Ambient's desktop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Desktop Icons ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The icons currently visible on the desktop represent the volumes on your hard drive(s), as well as any detected volumes on any other devices such as a CD, DVD or USB stick. On a standard installation you will see 'MorphOS' and 'Work' volumes showing on your desktop.&lt;br /&gt;
&lt;br /&gt;
There are also two other icon on the desktop: 'My MorphOS' and 'Ram Disk' which are a little different:&lt;br /&gt;
&lt;br /&gt;
* 'My MorphOS' gives access to the top level of the filesystem (analogous to 'My Computer' in Windows, or 'Computer' in OSX), and shows all your volumes;&lt;br /&gt;
* 'Ram disk' is a volume created and automatically resized dynamically in system memory which is used for fast access to system environment variables during runtime, for the system clipboard, and various other things. It is often useful to the user as a temporary storage area which flushes upon reboot, or as a fast 'swap,' 'cache' or 'temp' area for applications which make use of such features.&lt;br /&gt;
&lt;br /&gt;
Icons on the Ambient desktop can be opened by double-clicking.&lt;br /&gt;
&lt;br /&gt;
Icons can be dragged and placed anywhere on the desktop.&lt;br /&gt;
&lt;br /&gt;
Multiple icons can be selected by clicking on the desktop and dragging to 'lasso' multiple icons. The selected icons can then be dragged, or have actions performed upon them (eg cut, copy, paste), as one object. The object group is unselected by clicking on the desktop or by selecting a different - unselected - object.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Snapshotting desktop icons ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Icons will appear ordered on the desktop starting from the left hand corner of the desktop, but can be moved anywhere on the desktop during a session.&lt;br /&gt;
&lt;br /&gt;
Upon a reboot icons will return to their default position unless we 'snapshot' them in place. (Question: Is auto snapshot enabled by default?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click-drag your 'Work' volume icon and place it to the right side of the desktop. Now right-click on the 'Work' icon, and select 'snapshot' from the context menu.&lt;br /&gt;
* Now click-drag your 'MorphOS' volume icon and place it to the right side of the desktop. Don't snapshot this in place.&lt;br /&gt;
* Now reboot. After a reboot, the MorphOS icon has returned to its previous position, but the 'Work' icon has stayed where we snapshotted it.'''&lt;br /&gt;
&lt;br /&gt;
This is a very useful concept, since it means we can make a complete mess of the desktop during a session sure in the knowledge that, as long as we don't snapshot the icons in place, they will return to their saved positions upon a reboot.&lt;br /&gt;
&lt;br /&gt;
Notes: 'Unsnapshotting' simply deletes this saved information and will return the icon to the default position in the top left of the desktop upon a reboot. It does not return it to a previously snapshotted position.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Panels ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another way to keep icons ordered on the desktop is by using Ambient's panels.&lt;br /&gt;
&lt;br /&gt;
Let's create a panel!&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* RMB on desktop &amp;gt; Settings &amp;gt; Ambient&lt;br /&gt;
* In the Ambient preferences:&lt;br /&gt;
** Select 'Panels' in the list on the left hand side;&lt;br /&gt;
** Click the 'New Panel' button to create a panel;&lt;br /&gt;
** Click 'Save' to close Ambient preferences and save the new panel.'''&lt;br /&gt;
&lt;br /&gt;
Currently the panel contains no icons, just an arrow in a box. This is the drag gadget which, as the name suggests, is used to drag the panel into a desired position.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Drag your 'My MorphOS' icon from the desktop onto the drag gadget of your new panel.'''&lt;br /&gt;
&lt;br /&gt;
A copy of the 'My MorphOS' icon now appears on the panel.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click on the 'My MorphOS' icon on the panel - it opens the location with a single click.'''&lt;br /&gt;
&lt;br /&gt;
Ambient's panels provide a single-click method of opening locations, applications, files, etc (as well as other more advanced features not covered here).&lt;br /&gt;
&lt;br /&gt;
=== Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
As we don't want to have to navigate to every file from the top level of the drive each time, another type of icon which the desktop supports is shortcuts to a location or file.&lt;br /&gt;
&lt;br /&gt;
A commonly used application is Odyssey (MorphOS' default Web Browser), which is located in the applications drawer on the 'System' volume. Let's create a shortcut on the desktop to launch OWB.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Click on the 'My MorphOS' icon in the panel. &lt;br /&gt;
* Double-click on the System volume&lt;br /&gt;
* Double-click on the 'Applications' drawer, then double click again on the OWB drawer. &lt;br /&gt;
* Drag the 'OWB' application icon onto the desktop.'''&lt;br /&gt;
&lt;br /&gt;
However really this is what panels are useful for. Let's keep the desktop tidy and put OWB into the panel also, that way it launches with a single-click instead of a double-click - doubling your productivity!1&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* Drag the 'OWB' application icon onto the drag gadget of the panel. Make sure to drag it onto the drag gadget, and not onto the 'My MorphOS' icon placed there in the previous section.'''&lt;br /&gt;
&lt;br /&gt;
Now we are left with a redundant Odyssey icon on the desktop which needs to be 'put away.' Again, this can be done from the context menu.&lt;br /&gt;
&lt;br /&gt;
'''User action: &lt;br /&gt;
* RMB on Odyssey desktop shortcut &amp;gt; put away.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==  File browsing ==&lt;br /&gt;
&lt;br /&gt;
In the section above, we touched upon file browsing - we opened a volume, navigated into a drawer, and then into another drawer to access a file.&lt;br /&gt;
&lt;br /&gt;
In order to navigate effectively, we need to recognise some landmarks, so at this point there are a few basic concepts which need to be introduced and defined.&lt;br /&gt;
&lt;br /&gt;
There's no delicate way around this, just grab yourself a cup of tea/coffee/vodka and try to stay awake. It's all important stuff that will help you down the line.&lt;br /&gt;
&lt;br /&gt;
=== MorphOS Filesystem ===&lt;br /&gt;
&lt;br /&gt;
'My MorphOS' is the top level of the filesystem, and is the point at which all volumes (eg 'System' and 'Work') are mounted.&lt;br /&gt;
&lt;br /&gt;
MorphOS retains full compatibility with AmigaDOS, in which volume names are followed by a colon (eg 'System:' and 'Work:'), and directories are separated by a forward slash '/'.&lt;br /&gt;
&lt;br /&gt;
The path to the web browser 'OWB' is thus expressed as:&lt;br /&gt;
&lt;br /&gt;
* System:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
==== Assigns ====&lt;br /&gt;
&lt;br /&gt;
In addition to volumes, MorphOS retains the concept of assigns. In the simplest sense, an assign is pseudonyms for a volume or directory path.&lt;br /&gt;
&lt;br /&gt;
As with volumes, assigns are suffixed by a colon, and are also mounted at the top level of the filesystem.&lt;br /&gt;
&lt;br /&gt;
An example of an assign is 'sys' - which is a pseudonym for the system volume 'MorphOS'.&lt;br /&gt;
&lt;br /&gt;
The above path can therefore be expressed as:&lt;br /&gt;
&lt;br /&gt;
* Sys:applications/owb/owb&lt;br /&gt;
&lt;br /&gt;
Another example of an assign is 'envarc' - which is a pseudonym for the directory 'prefs/env-archive' on the system volume 'morphos'.&lt;br /&gt;
&lt;br /&gt;
This directory path can therefore be expressed either as:&lt;br /&gt;
&lt;br /&gt;
* MorphOS:prefs/env-archive&lt;br /&gt;
&lt;br /&gt;
* Sys:prefs/env-archive&lt;br /&gt;
&lt;br /&gt;
or simply&lt;br /&gt;
&lt;br /&gt;
* Envarc:&lt;br /&gt;
&lt;br /&gt;
Assigns can also refer to multiple locations. The 'c' assign is an example of this. The primary location is morphos:c, however it is also a pseudonym for the location morphos:morphos/c.&lt;br /&gt;
&lt;br /&gt;
Assigns addressing multiple locations are prioritised in the order they are created (In this case sys:c is created first, then mossys:c added).&lt;br /&gt;
&lt;br /&gt;
Consequently the command:&lt;br /&gt;
&lt;br /&gt;
* c:foobar&lt;br /&gt;
&lt;br /&gt;
will first search the location sys:c for the file 'foobar'. If the file is not found, the location sys:morphos/c will then be searched.&lt;br /&gt;
&lt;br /&gt;
===  Ambient File Browser ===&lt;br /&gt;
&lt;br /&gt;
When viewing files in an Ambient browser window files are not visible by default unless they have an associated icon.&lt;br /&gt;
&lt;br /&gt;
==== Icons (.info files) ====&lt;br /&gt;
&lt;br /&gt;
Icons are separate files which have the same name, but are appended with the extension .info (for example the icon for the file 'sys:foo/bar' would be named 'sys:foo/bar.info' ).&lt;br /&gt;
&lt;br /&gt;
MorphOS native Icon files are actually PNG image files, which also store any snapshot information, tooltypes etc in the file header (binary information which is part of the file, but does not contain the image).&lt;br /&gt;
&lt;br /&gt;
Notes: MorphOS icons can be edited using Sketch which can be found within the applications drawer.&lt;br /&gt;
&lt;br /&gt;
MorphOS also supports legacy Amiga icons (and glowicons?) however does not provide editing tools as part of OS for these legacy icon types, although 3rd party tools are available if required. (move to later section - not needed here!)&lt;br /&gt;
&lt;br /&gt;
Thumbnails&lt;br /&gt;
&lt;br /&gt;
--- Show all&lt;br /&gt;
&lt;br /&gt;
--- Lister Mode&lt;br /&gt;
&lt;br /&gt;
-- Basic file management&lt;br /&gt;
&lt;br /&gt;
---What goes where: c, devs, l, libs, etc (not /etc)&lt;br /&gt;
&lt;br /&gt;
-- Bookmarks&lt;br /&gt;
&lt;br /&gt;
-- Inbuilt viewers&lt;br /&gt;
&lt;br /&gt;
--- Opening files with external applications&lt;br /&gt;
&lt;br /&gt;
-- Utilities&lt;br /&gt;
&lt;br /&gt;
--- Exchange&lt;br /&gt;
&lt;br /&gt;
--- Sound player&lt;br /&gt;
&lt;br /&gt;
--- System Monitor&lt;br /&gt;
&lt;br /&gt;
--- System Log&lt;br /&gt;
&lt;br /&gt;
--- Format&lt;br /&gt;
&lt;br /&gt;
--- Find&lt;br /&gt;
&lt;br /&gt;
--- Hotkeys&lt;br /&gt;
&lt;br /&gt;
--- Ambient Settings&lt;br /&gt;
&lt;br /&gt;
-- Screenbar module Settings&lt;br /&gt;
&lt;br /&gt;
-- My MorphOS &amp;amp; Filesystem root &amp;amp; removable media&lt;br /&gt;
&lt;br /&gt;
-- Window icons&lt;br /&gt;
&lt;br /&gt;
-- Window depth concept&lt;br /&gt;
&lt;br /&gt;
-- Window Gadgets &amp;amp; handling: Dragging, resizing, iconify, hiding, scrolling, closing&lt;br /&gt;
&lt;br /&gt;
-- Moving an application onto its own screen&lt;br /&gt;
&lt;br /&gt;
--- Screen depth gadget&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Main_Page&amp;diff=2256</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Main_Page&amp;diff=2256"/>
				<updated>2015-05-23T21:07:33Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;siteLogo&amp;quot; style=&amp;quot;float: right;&amp;quot;&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#274572;&amp;quot;&amp;gt;Welcome to the MorphOS Library,&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;top:+0.2em; font-size:95%;&amp;quot;&amp;gt;the wiki based library of MorphOS related documentation.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Do you have suggestions or would like to contribute? Please contact: https://morph.zone/message2library.png&lt;br /&gt;
&lt;br /&gt;
'''Important notes to editors:''' [[Basic Guidelines]] - [[List of Wanted Articles]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;small&amp;gt;This page in other languages: [[Strona główna|Polish]]&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==About MorphOS==&lt;br /&gt;
MorphOS - The Lightning OS&lt;br /&gt;
* [[What is MorphOS?]]&lt;br /&gt;
* [[Hardware Platforms]]&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
* [[Characteristic features]]&lt;br /&gt;
* [[MorphOS integration]]&lt;br /&gt;
* [[MorphOS Development]]&lt;br /&gt;
* [[Developer tools]]&lt;br /&gt;
* [[3D graphics]]&lt;br /&gt;
* [[Games]]&lt;br /&gt;
* [[MorphOS key applications]]&lt;br /&gt;
* [[Platform expansion]]&lt;br /&gt;
* [[Who needs MorphOS?]]&lt;br /&gt;
* [[Conclusions]]&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[F.A.Q.]]&lt;br /&gt;
* [[Historical notes]]&lt;br /&gt;
* [[Contributors]]&lt;br /&gt;
A five minute read for users familiar with the Commodore Amiga&lt;br /&gt;
*[[MorphOS in 5 minutes]]&lt;br /&gt;
&lt;br /&gt;
==Articles==&lt;br /&gt;
The core of the MorphOS Library can be found here.  Along with the provided manuals, there are several documents designed to help users get the most out of their MorphOS powered computer.&lt;br /&gt;
&lt;br /&gt;
* [[Fundamentals of MorphOS]]&lt;br /&gt;
* [[Dictionary of Terms]]&lt;br /&gt;
* [[Shell Commands|Shell: Commands]]&lt;br /&gt;
* [[Pattern matching|Shell: Pattern Matching]]&lt;br /&gt;
* [[Volume Names]]&lt;br /&gt;
* [[Tips and Tricks]]&lt;br /&gt;
* [[Supported Computers]]&lt;br /&gt;
* [[Applications|Applications included with MorphOS]]&lt;br /&gt;
* [[Tools|Tools included with MorphOS]]&lt;br /&gt;
* [[Utilities|Utilities included with MorphOS]]&lt;br /&gt;
&lt;br /&gt;
==Tutorials==&lt;br /&gt;
Welcome to the Tutorials section of the MorphOS Library.  In this aisle of the library you can find examples and step by step instructions to help get the most out of your MorphOS experience.&lt;br /&gt;
&lt;br /&gt;
*[[Modifying the User-Startup file]]&lt;br /&gt;
*[[Configuring_Network | Configuring a Network Connnection]]&lt;br /&gt;
*[[Dual-boot MorphOS and MacOS X on a Mac Mini G4]]&lt;br /&gt;
*[[How to write Mails with SimpleMail]]&lt;br /&gt;
*[[MorphOS External USB Drive Backup Guide]]&lt;br /&gt;
*[[Scanning with SCANdal]]&lt;br /&gt;
*[[Recording an LP with Audio Evolution 4]]&lt;br /&gt;
*[[Passwordless SSH login with RemoteShell]]&lt;br /&gt;
*[[How to Install Directory Opus Magellan II]]&lt;br /&gt;
*[[How to Make MorphOS Look Like OS4]]&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
In the development section of the MorphOS Library, you can find a collection of helpful articles and tutorials focused on MorphOS software development.&lt;br /&gt;
&lt;br /&gt;
*[[First steps in MorphOS programming]]&lt;br /&gt;
*[[Magic User Interface Programming]]&lt;br /&gt;
*[[In-depth: The New MorphOS Memory System]]&lt;br /&gt;
*[[Reggae: MorphOS multimedia framework]]&lt;br /&gt;
*[[An Introduction to MorphOS PPC Assembly]]&lt;br /&gt;
*[[Advanced Topics]]&lt;br /&gt;
&lt;br /&gt;
==Benchmarks, Reports &amp;amp; Reviews==&lt;br /&gt;
*[[jPV's MorphOS 2 Review]]&lt;br /&gt;
*[[What's New in MorphOS 3]]&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
The MorphOS Link Database is a collection of websites that are of interest to all current and potential future users of MorphOS. For easier navigation, we have separated the list of websites into multiple categories.&lt;br /&gt;
&lt;br /&gt;
*[[Links#Community_Portals_.26_Forums|Community Portals]]&lt;br /&gt;
*[[Links#File_Repositories|File Repositories]]&lt;br /&gt;
*[[Links#Software|Software]]&lt;br /&gt;
*[[Links#Developers|Developers]]&lt;br /&gt;
*[[Links#Misc|Misc]]&lt;br /&gt;
&lt;br /&gt;
==Work in Progress==&lt;br /&gt;
*[[ReTooled]]&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Main_Page&amp;diff=2255</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Main_Page&amp;diff=2255"/>
				<updated>2015-05-23T21:04:42Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: /* Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;siteLogo&amp;quot; style=&amp;quot;float: right;&amp;quot;&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#274572;&amp;quot;&amp;gt;Welcome to the MorphOS Library,&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;top:+0.2em; font-size:95%;&amp;quot;&amp;gt;the wiki based library of MorphOS related documentation.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Do you have suggestions or would like to contribute? Please contact: https://morph.zone/message2library.png&lt;br /&gt;
&lt;br /&gt;
'''Important notes to editors:''' [[Basic Guidelines]] - [[List of Wanted Articles]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;small&amp;gt;This page in other languages: [[Strona główna|Polish]]&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==About MorphOS==&lt;br /&gt;
MorphOS - The Lightning OS&lt;br /&gt;
* [[What is MorphOS?]]&lt;br /&gt;
* [[Hardware Platforms]]&lt;br /&gt;
* [[Installation]]&lt;br /&gt;
* [[Characteristic features]]&lt;br /&gt;
* [[MorphOS integration]]&lt;br /&gt;
* [[MorphOS Development]]&lt;br /&gt;
* [[Developer tools]]&lt;br /&gt;
* [[3D graphics]]&lt;br /&gt;
* [[Games]]&lt;br /&gt;
* [[MorphOS key applications]]&lt;br /&gt;
* [[Platform expansion]]&lt;br /&gt;
* [[Who needs MorphOS?]]&lt;br /&gt;
* [[Conclusions]]&lt;br /&gt;
* [[Useful links]]&lt;br /&gt;
* [[F.A.Q.]]&lt;br /&gt;
* [[Historical notes]]&lt;br /&gt;
* [[Contributors]]&lt;br /&gt;
A five minute read for users familiar with the Commodore Amiga&lt;br /&gt;
*[[MorphOS in 5 minutes]]&lt;br /&gt;
&lt;br /&gt;
==Articles==&lt;br /&gt;
The core of the MorphOS Library can be found here.  Along with the provided manuals, there are several documents designed to help users get the most out of their MorphOS powered computer.&lt;br /&gt;
&lt;br /&gt;
* [[Fundamentals of MorphOS]]&lt;br /&gt;
* [[Dictionary of Terms]]&lt;br /&gt;
* [[Shell Commands|Shell: Commands]]&lt;br /&gt;
* [[Pattern matching|Shell: Pattern Matching]]&lt;br /&gt;
* [[Volume Names]]&lt;br /&gt;
* [[Tips and Tricks]]&lt;br /&gt;
* [[Supported Computers]]&lt;br /&gt;
* [[Applications|Applications included with MorphOS]]&lt;br /&gt;
* [[Tools|Tools included with MorphOS]]&lt;br /&gt;
* [[Utilities|Utilities included with MorphOS]]&lt;br /&gt;
&lt;br /&gt;
==Tutorials==&lt;br /&gt;
Welcome to the Tutorials section of the MorphOS Library.  In this aisle of the library you can find examples and step by step instructions to help get the most out of your MorphOS experience.&lt;br /&gt;
&lt;br /&gt;
*[[Modifying the User-Startup file]]&lt;br /&gt;
*[[Configure_Network | Configuring a Network Connnection]]&lt;br /&gt;
*[[Dual-boot MorphOS and MacOS X on a Mac Mini G4]]&lt;br /&gt;
*[[How to write Mails with SimpleMail]]&lt;br /&gt;
*[[MorphOS External USB Drive Backup Guide]]&lt;br /&gt;
*[[Scanning with SCANdal]]&lt;br /&gt;
*[[Recording an LP with Audio Evolution 4]]&lt;br /&gt;
*[[Passwordless SSH login with RemoteShell]]&lt;br /&gt;
*[[How to Install Directory Opus Magellan II]]&lt;br /&gt;
*[[How to Make MorphOS Look Like OS4]]&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
In the development section of the MorphOS Library, you can find a collection of helpful articles and tutorials focused on MorphOS software development.&lt;br /&gt;
&lt;br /&gt;
*[[First steps in MorphOS programming]]&lt;br /&gt;
*[[Magic User Interface Programming]]&lt;br /&gt;
*[[In-depth: The New MorphOS Memory System]]&lt;br /&gt;
*[[Reggae: MorphOS multimedia framework]]&lt;br /&gt;
*[[An Introduction to MorphOS PPC Assembly]]&lt;br /&gt;
*[[Advanced Topics]]&lt;br /&gt;
&lt;br /&gt;
==Benchmarks, Reports &amp;amp; Reviews==&lt;br /&gt;
*[[jPV's MorphOS 2 Review]]&lt;br /&gt;
*[[What's New in MorphOS 3]]&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
The MorphOS Link Database is a collection of websites that are of interest to all current and potential future users of MorphOS. For easier navigation, we have separated the list of websites into multiple categories.&lt;br /&gt;
&lt;br /&gt;
*[[Links#Community_Portals_.26_Forums|Community Portals]]&lt;br /&gt;
*[[Links#File_Repositories|File Repositories]]&lt;br /&gt;
*[[Links#Software|Software]]&lt;br /&gt;
*[[Links#Developers|Developers]]&lt;br /&gt;
*[[Links#Misc|Misc]]&lt;br /&gt;
&lt;br /&gt;
==Work in Progress==&lt;br /&gt;
*[[ReTooled]]&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Configuring_Network&amp;diff=2254</id>
		<title>Configuring Network</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Configuring_Network&amp;diff=2254"/>
				<updated>2015-05-23T21:01:25Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In order to browse the internet, check e-mail or download software, a network connection must be configured.&lt;br /&gt;
&lt;br /&gt;
It is assumed in this guide that you have a standard setup with a router to which all computers are connected. If you have a different setup, and/or experience trouble configuring your connection, please ask for help if needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Setting up Hardware =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wired connections (ethernet) ==&lt;br /&gt;
&lt;br /&gt;
Connect one end of a network cable to a spare port on your router, and the other end into the network port of your system. If your system has more than one network port (eg Pegasos 2 has two onboard network ports) make sure to note which port is used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wireless connections (WLan) ==&lt;br /&gt;
&lt;br /&gt;
For PCMCIA or PCI cards, ensure the wireless networking hardware is connected prior to booting the computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Setting up Software =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Boot your MorphOS system.&lt;br /&gt;
&lt;br /&gt;
Ensure that the network interface you wish to use is enabled:&lt;br /&gt;
* RMB on desktop&amp;gt;Settings&amp;gt;System..&amp;gt;Network&lt;br /&gt;
* In the Network Interfaces tab, you should see one entry for each network interface available. (There is also an entry for loopback, but you can ignore this. It is enabled by default, leave it alone.)&lt;br /&gt;
** Find the entry for the connection you wish to use, and ensure the radio button for that connection is checked (eg eth0, wl0).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Automatic configuration (DHCP) ==&lt;br /&gt;
&lt;br /&gt;
MorphOS included network stack supports automatic configuration via DHCP. If your router is set to automatically configure attached devices (ie DHCP server is enabled) then your network connection should configure itself after booting with no user input.&lt;br /&gt;
&lt;br /&gt;
If your router is not set up to automatically configure attached devices, or your system fails to obtain an IP address from the router, see the 'Manual configuration' section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Manual configuration ==&lt;br /&gt;
&lt;br /&gt;
MorphOS makes configuration of the network connection very simple.&lt;br /&gt;
&lt;br /&gt;
You will need to know your router's IP address (eg 192.168.0.1), and an available IP address to use for your MorphOS system (eg 192.168.0.101).&lt;br /&gt;
&lt;br /&gt;
RMB on desktop&amp;gt;Settings&amp;gt;System..&amp;gt;Network&lt;br /&gt;
&lt;br /&gt;
In the Network Interfaces tab:&lt;br /&gt;
&lt;br /&gt;
* Expand the entry for your network connection (On mac-mini this is sungem_eth, Pegasos 2 rhinevia, blah, etc);&lt;br /&gt;
* Enter an IP address for your MorphOS system (eg 192.168.0.101);&lt;br /&gt;
* Enter Subnet Mask (eg 255.255.255.0);&lt;br /&gt;
* Enter Gateway - your router's IP address (eg 192.168.0.1).&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
In the Host and DNS tab:&lt;br /&gt;
&lt;br /&gt;
* (Optional) Enter a hostname to identify your system on the network (This should be a unique name on your local network). Ideally this should be 8 characters or less.&lt;br /&gt;
* Enter at least one, and up to 2 DNS server addresses (On a standard network, entering your router's IP address should be sufficient).&lt;br /&gt;
* Hit 'Save' and close the System Preferences pane.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wired connections ==&lt;br /&gt;
&lt;br /&gt;
A wired ethernet connection should now successfully connect to the network, no further user action is needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wireless network connections ==&lt;br /&gt;
&lt;br /&gt;
You now need to tell MorphOS to connect to your network, and enter the password if necessary.&lt;br /&gt;
&lt;br /&gt;
MorphOS networking allows settings for multiple wireless networks to be configured. These will be remembered, enabling simple roaming between multiple wireless networks.&lt;br /&gt;
&lt;br /&gt;
WPA/WPA2 security is supported along with 54mbps (wireless g) transfer speeds, making MorphOS interoperable with most public and private wireless networks.&lt;br /&gt;
&lt;br /&gt;
RMB on desktop&amp;gt;Settings&amp;gt;System..&amp;gt;Network&lt;br /&gt;
Select the Network Interfaces tab:&lt;br /&gt;
* Expand the entry for your network connection (eg wl0);&lt;br /&gt;
* A box should appear listing the names (SSIDs) of the wireless networks currently within range of the interface;&lt;br /&gt;
* Double-click on the network you wish to join;&lt;br /&gt;
* Enter the Network Security Password at the prompt (if network is secured);&lt;br /&gt;
&lt;br /&gt;
The indicator lamp next to your chosen network name (SSID) should now turn green to indicate connection status.&lt;br /&gt;
&lt;br /&gt;
* If you need to re-enter your Network Security Password (either through mis-spelling the password, or changing your network) right click on the SSID and select 'Forget' from the context menu. You can now re-enter a Network Security Password following the steps listed above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* If roaming between networks, automatic configuration by DHCP is strongly recommended. If using manual configuration you will probably have to change your IP address to ensure a valid configuration for each network.&lt;br /&gt;
* When last tested G+ speeds (128mbps) were not supported - if your router and WLan card support this mode, it should be disabled in your router settings to avoid any problems.)&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Configuring_Network&amp;diff=2253</id>
		<title>Configuring Network</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Configuring_Network&amp;diff=2253"/>
				<updated>2015-05-23T20:59:28Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;= Configuring your network connection =   In order to browse the internet, check e-mail or download software, a network connection must be configured.  It is assumed in this g...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Configuring your network connection =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In order to browse the internet, check e-mail or download software, a network connection must be configured.&lt;br /&gt;
&lt;br /&gt;
It is assumed in this guide that you have a standard setup with a router to which all computers are connected. If you have a different setup, and/or experience trouble configuring your connection, please ask for help if needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Setting up Hardware ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Wired connections (ethernet) ===&lt;br /&gt;
&lt;br /&gt;
Connect one end of a network cable to a spare port on your router, and the other end into the network port of your system. If your system has more than one network port (eg Pegasos 2 has two onboard network ports) make sure to note which port is used.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Wireless connections (WLan) ===&lt;br /&gt;
&lt;br /&gt;
For PCMCIA or PCI cards, ensure the wireless networking hardware is connected prior to booting the computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Setting up Software ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Boot your MorphOS system.&lt;br /&gt;
&lt;br /&gt;
Ensure that the network interface you wish to use is enabled:&lt;br /&gt;
* RMB on desktop&amp;gt;Settings&amp;gt;System..&amp;gt;Network&lt;br /&gt;
* In the Network Interfaces tab, you should see one entry for each network interface available. (There is also an entry for loopback, but you can ignore this. It is enabled by default, leave it alone.)&lt;br /&gt;
** Find the entry for the connection you wish to use, and ensure the radio button for that connection is checked (eg eth0, wl0).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Automatic configuration (DHCP) ===&lt;br /&gt;
&lt;br /&gt;
MorphOS included network stack supports automatic configuration via DHCP. If your router is set to automatically configure attached devices (ie DHCP server is enabled) then your network connection should configure itself after booting with no user input.&lt;br /&gt;
&lt;br /&gt;
If your router is not set up to automatically configure attached devices, or your system fails to obtain an IP address from the router, see the 'Manual configuration' section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Manual configuration ===&lt;br /&gt;
&lt;br /&gt;
MorphOS makes configuration of the network connection very simple.&lt;br /&gt;
&lt;br /&gt;
You will need to know your router's IP address (eg 192.168.0.1), and an available IP address to use for your MorphOS system (eg 192.168.0.101).&lt;br /&gt;
&lt;br /&gt;
RMB on desktop&amp;gt;Settings&amp;gt;System..&amp;gt;Network&lt;br /&gt;
&lt;br /&gt;
In the Network Interfaces tab:&lt;br /&gt;
&lt;br /&gt;
* Expand the entry for your network connection (On mac-mini this is sungem_eth, Pegasos 2 rhinevia, blah, etc);&lt;br /&gt;
* Enter an IP address for your MorphOS system (eg 192.168.0.101);&lt;br /&gt;
* Enter Subnet Mask (eg 255.255.255.0);&lt;br /&gt;
* Enter Gateway - your router's IP address (eg 192.168.0.1).&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
In the Host and DNS tab:&lt;br /&gt;
&lt;br /&gt;
* (Optional) Enter a hostname to identify your system on the network (This should be a unique name on your local network). Ideally this should be 8 characters or less.&lt;br /&gt;
* Enter at least one, and up to 2 DNS server addresses (On a standard network, entering your router's IP address should be sufficient).&lt;br /&gt;
* Hit 'Save' and close the System Preferences pane.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Wired connections ===&lt;br /&gt;
&lt;br /&gt;
A wired ethernet connection should now successfully connect to the network, no further user action is needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Wireless network connections ===&lt;br /&gt;
&lt;br /&gt;
You now need to tell MorphOS to connect to your network, and enter the password if necessary.&lt;br /&gt;
&lt;br /&gt;
MorphOS networking allows settings for multiple wireless networks to be configured. These will be remembered, enabling simple roaming between multiple wireless networks.&lt;br /&gt;
&lt;br /&gt;
WPA/WPA2 security is supported along with 54mbps (wireless g) transfer speeds, making MorphOS interoperable with most public and private wireless networks.&lt;br /&gt;
&lt;br /&gt;
RMB on desktop&amp;gt;Settings&amp;gt;System..&amp;gt;Network&lt;br /&gt;
Select the Network Interfaces tab:&lt;br /&gt;
* Expand the entry for your network connection (eg wl0);&lt;br /&gt;
* A box should appear listing the names (SSIDs) of the wireless networks currently within range of the interface;&lt;br /&gt;
* Double-click on the network you wish to join;&lt;br /&gt;
* Enter the Network Security Password at the prompt (if network is secured);&lt;br /&gt;
&lt;br /&gt;
The indicator lamp next to your chosen network name (SSID) should now turn green to indicate connection status.&lt;br /&gt;
&lt;br /&gt;
* If you need to re-enter your Network Security Password (either through mis-spelling the password, or changing your network) right click on the SSID and select 'Forget' from the context menu. You can now re-enter a Network Security Password following the steps listed above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: &lt;br /&gt;
* If roaming between networks, automatic configuration by DHCP is strongly recommended. If using manual configuration you will probably have to change your IP address to ensure a valid configuration for each network.&lt;br /&gt;
* When last tested G+ speeds (128mbps) were not supported - if your router and WLan card support this mode, it should be disabled in your router settings to avoid any problems.)&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Commodities&amp;diff=2252</id>
		<title>Utilities/Commodities</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Commodities&amp;diff=2252"/>
				<updated>2015-05-21T21:18:31Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Commodities are tools which are run as background processes affecting system behaviour.&lt;br /&gt;
&lt;br /&gt;
Commodities are typically started with no GUI, so cannot be usually be shut down by accessing a menu or using a shortcut key. Exchange (the Commodity Manager tool) is used to start and stop individual commodities and access their interface to adjust settings.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Exchange  ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Exchange is the commodities manager. This allows the user to monitor which commodities are running, manage their behaviour and settings, and activate, deactivate or remove individual commodities. Exchange can also be quite useful for accessing applications whose windows have been 'hidden'. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: Also available though Ambient RMB &amp;gt; Utilities &amp;gt; Exchange.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Mixer  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Master audio hardware controls: output volume, recording levels and mixing. &lt;br /&gt;
Volume and recording level controls available through individual applications are scaled within these global settings. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: Output volume control is also available through the 'volume' screenbar.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== NoCapsLock  ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Allows disabling or repurposing the Caps Lock key (useful for limited keyboards, eg iBook). &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== ShiftClick  ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Allows Right Mouse Button (RMB) to be emulated by using the left mouse button whilst holding a qualifier key (qualifier key(s) can be configured). Particularly useful on Apple laptops, or when using a single-button Apple mouse. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: Shiftclick can be activated during installation from the welcome screen by clicking on the image of the one-armed mouse.&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Commodities&amp;diff=2250</id>
		<title>Utilities/Commodities</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Commodities&amp;diff=2250"/>
				<updated>2015-05-18T22:26:07Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Commodities are tools which are run as background processes affecting system behaviour.  Commodities are typically started with no GUI, so cannot be usually be shut down by ac...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Commodities are tools which are run as background processes affecting system behaviour.&lt;br /&gt;
&lt;br /&gt;
Commodities are typically started with no GUI, so cannot be usually be shut down by accessing a menu or using a shortcut key. Exchange (the Commodity Manager tool) is used to start and stop individual commodities and access their interface to adjust settings.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Exchange  ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Exchange is the commodities manager. This allows the user to monitor which commodities are running, manage their behaviour and settings, and activate/deactivate/remove individual commodities. (Also available though Ambient RMB &amp;gt; Utilities &amp;gt; Exchange) &lt;br /&gt;
Exchange is also quite useful for accessing applications whose windows have been 'hidden'. &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Mixer  ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Manages hardware audio input and output mixer settings. Analogous to Master Controls. &lt;br /&gt;
See section on MorphOS audio subsystem for a fuller explanation. &lt;br /&gt;
Software volume audio controls available through AHI and volume control screenbar are subservient to these master settings.  &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== NoCapsLock  ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Allows disabling or repurposing the Caps Lock key (useful for limited keyboards, eg iBook). &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== ShiftClick  ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Allows Right Mouse Button (RMB) to be emulated by using the left mouse button whilst holding a qualifier key (qualifier key(s) can be configured). Particularly useful on Apple laptops, or when using a single-button Apple mouse. &lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Zoom&amp;diff=2249</id>
		<title>Utilities/Zoom</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Zoom&amp;diff=2249"/>
				<updated>2015-05-18T22:07:15Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;A simple screen magnifier.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A simple screen magnifier. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Trancestats&amp;diff=2248</id>
		<title>Utilities/Trancestats</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Trancestats&amp;diff=2248"/>
				<updated>2015-05-18T22:06:13Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;System monitoring tool showing statistics on the JIT 68K &amp;gt; PPC interpreter (Trance).     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;System monitoring tool showing statistics on the JIT 68K &amp;gt; PPC interpreter (Trance). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Tips&amp;diff=2247</id>
		<title>Utilities/Tips</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Tips&amp;diff=2247"/>
				<updated>2015-05-18T22:05:31Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Small help application which contains various hints and tips for using MorphOS.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Small help application which contains various hints and tips for using MorphOS. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/TaskManager&amp;diff=2246</id>
		<title>Utilities/TaskManager</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/TaskManager&amp;diff=2246"/>
				<updated>2015-05-18T22:03:57Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;System monitoring tool.   Lists running processes and tasks, allows adjusting the priority of tasks and sending break signals.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;System monitoring tool. &lt;br /&gt;
&lt;br /&gt;
Lists running processes and tasks, allows adjusting the priority of tasks and sending break signals. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Mysticview&amp;diff=2245</id>
		<title>Utilities/Mysticview</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Mysticview&amp;diff=2245"/>
				<updated>2015-05-18T22:01:25Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;An image viewer.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An image viewer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Multiview&amp;diff=2244</id>
		<title>Utilities/Multiview</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Multiview&amp;diff=2244"/>
				<updated>2015-05-18T21:59:42Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Media viewer supporting images and text files.      Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Media viewer supporting images and text files.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/MUIProCalc&amp;diff=2243</id>
		<title>Utilities/MUIProCalc</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/MUIProCalc&amp;diff=2243"/>
				<updated>2015-05-18T21:55:18Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Feature-rich scientific calculator application     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Feature-rich scientific calculator application &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/More&amp;diff=2242</id>
		<title>Utilities/More</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/More&amp;diff=2242"/>
				<updated>2015-05-18T21:52:48Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Simple text file viewer.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Simple text file viewer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/MiniCalc&amp;diff=2241</id>
		<title>Utilities/MiniCalc</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/MiniCalc&amp;diff=2241"/>
				<updated>2015-05-18T21:51:27Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Simple pocket calculator program, providing the usual basic set of mathematical operators.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Simple pocket calculator program, providing the usual basic set of mathematical operators. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/KeyExplorer&amp;diff=2240</id>
		<title>Utilities/KeyExplorer</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/KeyExplorer&amp;diff=2240"/>
				<updated>2015-05-18T21:48:16Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Utility showing ascii and unicode values for all characters.   Useful for finding codes when typing unsupported characters on limited keyboards.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Utility showing ascii and unicode values for all characters. &lt;br /&gt;
&lt;br /&gt;
Useful for finding codes when typing unsupported characters on limited keyboards. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Jukebox&amp;diff=2239</id>
		<title>Utilities/Jukebox</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Jukebox&amp;diff=2239"/>
				<updated>2015-05-18T21:46:36Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Simple music player supporting playlists, random playback, and displaying file metadata (album, artist, etc).     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Simple music player supporting playlists, random playback, and displaying file metadata (album, artist, etc). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/GraphicBoards&amp;diff=2238</id>
		<title>Utilities/GraphicBoards</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/GraphicBoards&amp;diff=2238"/>
				<updated>2015-05-18T21:42:18Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A system info tool displaying detailed information about the installed graphics hardware. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/GraphicBoards&amp;diff=2237</id>
		<title>Utilities/GraphicBoards</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/GraphicBoards&amp;diff=2237"/>
				<updated>2015-05-18T21:40:02Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;A hardware info tool displaying detailed information about the installed graphics hardware.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A hardware info tool displaying detailed information about the installed graphics hardware. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Grabber&amp;diff=2236</id>
		<title>Utilities/Grabber</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Grabber&amp;diff=2236"/>
				<updated>2015-05-18T21:37:08Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Screen grabbing tool.  Allows individual application windows and entire screens to be captured and saved in a variety of resolutions and formats.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screen grabbing tool.&lt;br /&gt;
&lt;br /&gt;
Allows individual application windows and entire screens to be captured and saved in a variety of resolutions and formats. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Fragment&amp;diff=2235</id>
		<title>Utilities/Fragment</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Fragment&amp;diff=2235"/>
				<updated>2015-05-18T21:35:34Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Memory monitoring tool, providing a visualization of memory usage and fragmentation.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Memory monitoring tool, providing a visualization of memory usage and fragmentation. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/Installer&amp;diff=2234</id>
		<title>Tools/Installer</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/Installer&amp;diff=2234"/>
				<updated>2015-05-18T21:32:05Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Software installation script interpreter.&lt;br /&gt;
&lt;br /&gt;
Actually just an icon with its default tool set to the MorphOS installer tool in the sys:morphos/c drawer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: Installer included with MorphOS is largely, but not entirely, compatible with the installer tool provided with Workbench 3.x (Commodore's final version of its 68K Amiga Operating system). &lt;br /&gt;
Some older 68K software installation scripts will not function correctly. In this case it is useful to download the 68K version of Installer available from Aminet. This can then be renamed (eg to Installer68K) and used for those scripts which fail using MorphOS default installer tool.&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Utilities/Editor&amp;diff=2233</id>
		<title>Utilities/Editor</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Utilities/Editor&amp;diff=2233"/>
				<updated>2015-05-18T21:30:54Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;A simple text editor.  Actually just an icon pointing to the Ed tool in sys:morphos/c.    Usage:       Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A simple text editor.&lt;br /&gt;
&lt;br /&gt;
Actually just an icon pointing to the Ed tool in sys:morphos/c.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/UnitControl&amp;diff=2232</id>
		<title>Tools/UnitControl</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/UnitControl&amp;diff=2232"/>
				<updated>2015-05-18T18:33:18Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Storage Device management tool. Used to stop/start/mount/eject devices.    Usage:      Notes: For partition and filesystem management see HDConfig, for part...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Storage Device management tool. Used to stop/start/mount/eject devices.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: For partition and filesystem management see [[Tools/HDConfig|HDConfig]], for partition mounting and unmounting see [[Tools/Mounter|Mounter]]; for virtual device management see [[Tools/FileImageCtrl|FileImageCtrl]]&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/Snoopium&amp;diff=2231</id>
		<title>Tools/Snoopium</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/Snoopium&amp;diff=2231"/>
				<updated>2015-05-18T18:24:04Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;System, application and DOS monitoring tool.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;System, application and DOS monitoring tool. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/PFSDoctor&amp;diff=2230</id>
		<title>Tools/PFSDoctor</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/PFSDoctor&amp;diff=2230"/>
				<updated>2015-05-18T18:23:19Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Diagnostic and repair tool for PFS formatted partitions. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/SFSDoctor&amp;diff=2229</id>
		<title>Tools/SFSDoctor</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/SFSDoctor&amp;diff=2229"/>
				<updated>2015-05-18T18:22:39Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Diagnostic and repair tool for SFS formatted partitions.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Diagnostic and repair tool for SFS formatted partitions. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/RegTool&amp;diff=2228</id>
		<title>Tools/RegTool</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/RegTool&amp;diff=2228"/>
				<updated>2015-05-18T18:18:19Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Registration tool used for requesting your personalised MorphOS keyfile to remove demo timeout limitations. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/RegTool&amp;diff=2227</id>
		<title>Tools/RegTool</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/RegTool&amp;diff=2227"/>
				<updated>2015-05-18T18:17:29Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Registration tool used for purchasing your personalised MorphOS keyfile. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/RegTool&amp;diff=2226</id>
		<title>Tools/RegTool</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/RegTool&amp;diff=2226"/>
				<updated>2015-05-18T18:16:15Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Registration tool used for purchasing keyfile for MorphOS.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Registration tool used for purchasing keyfile for MorphOS. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/PFSDoctor&amp;diff=2225</id>
		<title>Tools/PFSDoctor</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/PFSDoctor&amp;diff=2225"/>
				<updated>2015-05-18T18:14:39Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Diagnostic and repair tool for PFS formatted volumes.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Diagnostic and repair tool for PFS formatted volumes. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/NetStat&amp;diff=2224</id>
		<title>Tools/NetStat</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/NetStat&amp;diff=2224"/>
				<updated>2015-05-18T18:13:59Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Comprehensive Network information and statistics monitoring tool.     Usage:      Notes:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Comprehensive Network information and statistics monitoring tool. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/Mounter&amp;diff=2223</id>
		<title>Tools/Mounter</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/Mounter&amp;diff=2223"/>
				<updated>2015-05-18T18:00:44Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Tool for mounting and unmounting disk partitions.  Mounted partitions can be unmounted; unmounted partitions can be mounted manually, or set to automount at boot time.     Us...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tool for mounting and unmounting disk partitions.&lt;br /&gt;
&lt;br /&gt;
Mounted partitions can be unmounted; unmounted partitions can be mounted manually, or set to automount at boot time. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: A reboot is required before remounting a partition which has been previously mounted and then unmounted.&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/Installer&amp;diff=2222</id>
		<title>Tools/Installer</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/Installer&amp;diff=2222"/>
				<updated>2015-05-18T17:51:32Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Software installation script interpreter.  Actually just an icon with its default tool set to the actual installer tool in the sys:morphos/c drawer.     Usage:      Notes: In...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Software installation script interpreter.&lt;br /&gt;
&lt;br /&gt;
Actually just an icon with its default tool set to the actual installer tool in the sys:morphos/c drawer. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes: Installer included with MorphOS is largely, but not entirely, compatible with the installer tool provided with Workbench 3.x (Commodore's final version of its 68K Amiga Operating system). &lt;br /&gt;
Some older 68K software installation scripts will not function correctly. In this case it is useful to download the 68K version of Installer available from Aminet. This can then be renamed (eg to Installer68K) and used for those scripts which fail using MorphOS default installer tool.&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/HDConfig&amp;diff=2221</id>
		<title>Tools/HDConfig</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/HDConfig&amp;diff=2221"/>
				<updated>2015-05-18T17:42:56Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;Disk initialisation and partition management tool.  Used to initialise disks (create MBR/RDB/APM disk layout), create and manage partitions and filesystems, change partition f...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Disk initialisation and partition management tool.&lt;br /&gt;
&lt;br /&gt;
Used to initialise disks (create MBR/RDB/APM disk layout), create and manage partitions and filesystems, change partition flags (boot priority, automount), etc. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/FTManager&amp;diff=2220</id>
		<title>Tools/FTManager</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/FTManager&amp;diff=2220"/>
				<updated>2015-05-18T17:39:49Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GUI for installing freetype fonts. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
&lt;br /&gt;
I really don't know how to use this, or what it really does. :)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	<entry>
		<id>https://library.morph.zone/index.php?title=Tools/FTManager&amp;diff=2219</id>
		<title>Tools/FTManager</title>
		<link rel="alternate" type="text/html" href="https://library.morph.zone/index.php?title=Tools/FTManager&amp;diff=2219"/>
				<updated>2015-05-18T17:38:56Z</updated>
		
		<summary type="html">&lt;p&gt;Boot wb: Created page with &amp;quot;GUI for installing freetype fonts. I really don't know how to use this, or what it really does. :)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GUI for installing freetype fonts. I really don't know how to use this, or what it really does. :)&lt;/div&gt;</summary>
		<author><name>Boot wb</name></author>	</entry>

	</feed>