File: raidstart.8

package info (click to toggle)
raidtools2 0.90.990824-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 688 kB
  • ctags: 468
  • sloc: ansic: 2,631; makefile: 143; sh: 114
file content (98 lines) | stat: -rw-r--r-- 2,557 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
.\" -*- nroff -*-
.TH raidstart 8
.SH NAME
raidstart, raidstop, \- command set to manage md devices.
.SH SYNOPSIS

.BI raidstart
[options] <raiddevice>*

.BI raidstop
[options] <raiddevice>*

.SH DESCRIPTION
RAID devices are virtual devices created from two or more real block
devices. This allows multiple disks to be combined into a single
filesystem, possibly with automated backup and recovery. Linux RAID
devices are implemented through the md device driver.

If you're using the
.B /proc
filesystem,
.B /proc/mdstat
gives you informations about md devices status.

Currently, Linux supports linear md devices, RAID0 (striping), 
RAID1 (mirrroring), and RAID4 and RAID5. For information on
the various levels of RAID, check out:

     http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/

for new releases of the RAID driver check out:

     ftp://ftp.fi.kernel.org/pub/linux/daemons/raid/alpha

Avaible commands are :

.br
.B mkraid
: configures (creates) md (RAID) devices in the kernel, banding multiple devices into one.
.br

.B raidstart
: activates (starts) an existing 'persistent' md device
.br

.B raid0run
: activates old nonpersistent RAID0/LINEAR md devices
.br

.B raidstop
: turns off an md device, and unconfigures (stops) it
.br

By default, a systems RAID configuration is kept in \fB/etc/raidtab\fR, which
can configure multiple RAID devices. 

All of these tools work similiarly. If \fB-a\fR (or \fB-\-all\fR) is
specified, the specified operation is performed on all of the RAID
devices mentioned in the configuration file. Otherwise, one or more
RAID devices must be specified on the command line. For example:

.B raid0run -a

Starts all of the 'old' RAID0 RAID devices specified in \fB/etc/raidtab\fR. If
only \fI/dev/md1\fR should be started, the following command
should be used instead:

.B raidstart /dev/md1


.SH OPTIONS
.IP "\fB\-a\fP, \fB\-\-all\fP"
Apply the command to all of the configurations specified in the config file.

.IP "\fB-c\fP, \fB\-\-configfile\fP \fIfilename\fR"
Use \fIfilename\fR as the configuration file (\fB/etc/raidtab\fR is used
by default).

.IP "\fB\-h\fP, \fB\-\-help\fP"
Displays a short usage message, then exits.

.IP "\fB\-V\fP, \fB\-\-version\fP"
Displays a short version message, then exits.

.SH NOTES

The raidtools are derived from the md-tools and raidtools packages, which
were originally written by Marc Zyngier, Miguel de Icaza, Gadi Oxman, 
Bradley Ward Allen, and Ingo Molnar.

.SH BUGS
no known bugs.

.SH SEE ALSO
.IR raidtab (5),
.IR raid0run (8),
.IR raidstop (8),
.IR mkraid (8)