VM: memtype fix
[minix3.git] / man / man8 / diskctl.8
blob7bdac70234539be48cb527eeb1a40f474407e48b
1 .TH DISKCTL 8
2 .SH NAME
3 diskctl \- control disk drive
4 .SH SYNOPSIS
5 \fBdiskctl\fR \fIdevice\fR \fIcommand\fR [\fIarguments\fR]
6 .SH DESCRIPTION
7 The \fBdiskctl\fR tool allows one to view and manage settings of,
8 and perform actions on, disk drives. The following paragraph lists the
9 commands that are currently supported by this tool.
10 Please note that not all disks and drivers support all commands.
11 .SH COMMANDS
12 .TP 10
13 \fBgetwcache\fR
14 Retrieve the status (on or off) of the write cache on the device.
15 .TP 10
16 \fBsetwcache\fR [\fBon\fR|\fBoff\fR]
17 Enable or disable the write cache on the device.
18 Disabling the write cache typically also triggers a cache flush.
19 .TP 10
20 \fBflush\fR
21 Tell the device to flush its write cache.
22 The call will not return until the cache flush has completed.
23 .SH EXAMPLES
24 .TP 20
25 .B diskctl /dev/c0d0 setwcache on
26 # Turn on the write cache on c0d0.
27 .TP 20
28 .B diskctl /dev/c1d2 flush
29 # Trigger a cache flush on c1d2.
30 .SH "SEE ALSO"
31 .BR controller (4).
32 .SH AUTHOR
33 David van Moolenbroek <dcvmoole@cs.vu.nl>