@@ -12,15 +12,15 @@
|
||||
|
||||
- mark disk as failed
|
||||
|
||||
`mdadm {{/path/to/raid_device_file}} -f {/path/to/disk_device_file{}}`
|
||||
`mdadm {{/path/to/raid_device_file}} -f {{/path/to/disk_device_file}}`
|
||||
|
||||
- remove disk
|
||||
|
||||
`mdadm {{/path/to/raid_device_file}} -r {/path/to/disk_device_file{}}`
|
||||
`mdadm {{/path/to/raid_device_file}} -r {{/path/to/disk_device_file}}`
|
||||
|
||||
- add disk to array
|
||||
|
||||
`mdadm {{/path/to/raid_device_file}} -a {/path/to/disk_device_file{}}`
|
||||
`mdadm {{/path/to/raid_device_file}} -a {{/path/to/disk_device_file}}`
|
||||
|
||||
- show RAID info
|
||||
|
||||
|
19
pages/linux/shuf.md
Normal file
19
pages/linux/shuf.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# shuf
|
||||
|
||||
> generate random permutations
|
||||
|
||||
- randomize the order of lines in a file and output the result
|
||||
|
||||
`shuf {{filename}}`
|
||||
|
||||
- only output the first n entries of the result
|
||||
|
||||
`shuf -n {{n}} {{filename}}`
|
||||
|
||||
- write output to another file
|
||||
|
||||
`shuf -o {{another_filename}} {{filename}}`
|
||||
|
||||
- generate random numbers in range
|
||||
|
||||
`shuf -i {{low}}-{{high}}`
|
Reference in New Issue
Block a user