--- Cannot embed stylesheet: [Errno 2] No such file or directory: '../../../aros.css' --->
Mount
Mount <Device> <From> [SHUTDOWN]
DEVICE/M, FROM/K, SHUTDOWN/S
C:
Loads and mounts a device
DEVICE -- The device type to be mounted
FROM -- Search device in this mountlist
SHUTDOWN -- Stop the handler behind an already mounted device,
without removing the device node
Standard DOS error codes.
Mount DEVS:FAT0 (Mounts a FAT device defined in the DEVS:FAT0 file) Mount AUX0: SHUTDOWN (Tells the handler serving AUX0: to go away. AUX0: stays mounted and the handler is restarted when it is next used.)
SHUTDOWN leaves the device mounted, so the handler is started
again the next time the device is accessed. Removing the device
node is what Assign DISMOUNT does, so shutting a device down
completely takes both:
Mount HD5: SHUTDOWN
Assign HD5: DISMOUNT
Not every handler can be shut down. One that is still in use, or
that does not implement ACTION_DIE, reports an error and keeps
running.