Sponsored Content
Operating Systems Linux Red Hat Is overlapping two RAID5 arrays on same drives a bad idea ?? Post 302527691 by Saed on Saturday 4th of June 2011 01:46:44 PM
Old 06-04-2011
Error Is overlapping two RAID5 arrays on same drives a bad idea ??

is placing two RAID5 arrays on disk as shown below Is advisable? Will this create performance problems?

Code:
            sda-(500GB)        sdb-(1TB)       sdc-(1TB)         sdd-(1TB) 
              (250MB)----------(250MB) ---------unused------------unused------->(/dev/md0) RAID1
              (470GB)----------(470GB) ---------(500GB)-----------(500GB)------>(/dev/md1) RAID5
               unused----------(500GB) ---------(500GB)-----------(500GB)------>(/dev/md2) RAID5

 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Limitations of awk? Good idea? Bad idea?

Keeping in mind that I'm relatively comfortable with programming in general but very new to unix and korn/bourne shell scripts.. I'm using awk on a CSV file, and then performing calculations and operations on specific fields within specific records. The CSV file I'm working with has about 600... (2 Replies)
Discussion started by: yongho
2 Replies

2. UNIX for Dummies Questions & Answers

Why is it Bad Idea to insert "." (Dot) to PATH ?

I was told that it's a Bad Idea (especially for root ) to Add To the Variable $PATH in unix the ":." (dot), In order to execute programs in my current directory without typing ./program For example: PATH=$PATH:$HOME/bin:. Does someone know why is it a Bad Idea? (2 Replies)
Discussion started by: amitbern
2 Replies

3. Shell Programming and Scripting

using case to do this might be a bad idea?

Reading this file. I want to read all 4 fields. If 2 is populated with a p, I want to set $TYPEP to "Printers", if not should be empty. If 3 is populated with an r, I want to set $TYPER to "REQ Printers" if not should be empty. If 4 is populated with letter o, I want to set $TYPEO to... (12 Replies)
Discussion started by: Skyybugg
12 Replies

4. Shell Programming and Scripting

how floppy disks, CDs and flash drives (pen drives) are accessed in UNIX

hi how floppy disks, CDs and flash drives (pen drives) are accessed in UNIX? thanks (0 Replies)
Discussion started by: nokia1100
0 Replies

5. OS X (Apple)

Deleting a recursive symbolic link was a very bad idea

Well i was tidying up some files in a very important directory on our development server and somehow some plank had put a recursive sybmolic link in it. Which I the even bigger plank tried to delete from my FTP client. My FTP client then thought it would be OK to delete not only the sybmolic link... (0 Replies)
Discussion started by: timgolding
0 Replies

6. Programming

question about int arrays and file pointer arrays

if i declare both but don't input any variables what values will the int array and file pointer array have on default, and if i want to reset any of the elements of both arrays to default, should i just set it to 0 or NULL or what? (1 Reply)
Discussion started by: omega666
1 Replies

7. What is on Your Mind?

Idea: selling Puppy Linux flash drives

What do you think of the idea of selling flash drives already prepared to boot Puppy Linux on PCs? (I still need to see if I can boot on Macs using online instructions I've found.) I know it's not too hard to prep your own flash drive, even if you have to buy one first, but just think about why... (8 Replies)
Discussion started by: MrMormon
8 Replies

8. SuSE

Raid5

Hi all, I am currently using opensuse 12.1, We have Raid 5 array of 8 disks. A friend of mine accidently removed a drive & place it back and also added a new disk to it(making it 9 disks). now the output of mdadm --detail is as shown below si64:/dev # mdadm --detail /dev/md3 /dev/md3:... (1 Reply)
Discussion started by: patilrajashekar
1 Replies

9. Shell Programming and Scripting

Identify the overlapping and non overlapping regions

file1 chr pos1 pos2 pos3 pos4 1)chr1 1000 2000 3000 4000 2)chr1 1380 1480 6800 7800 3)chr1 6700 7700 1200 2200 4)chr2 8500 9500 5670 6670 file2 chr pos1 pos2 pos3 pos4 1)chr2 8500 9500 5000 6000 2)chr1 6700 7700 1200 2200 3)chr1 1380 1480 6700 7700 4)chr1 1000 2000 4900 5900 I... (2 Replies)
Discussion started by: data_miner
2 Replies
PARTX(8)						       System Administration							  PARTX(8)

NAME
       partx - tell the kernel about the presence and numbering of on-disk partitions

SYNOPSIS
       partx [-a|-d|-P|-r|-s|-u] [-t type] [-n M:N] [-] disk
       partx [-a|-d|-P|-r|-s|-u] [-t type] partition [disk]

DESCRIPTION
       Given a device or disk-image, partx tries to parse the partition table and list its contents.  It can also tell the kernel to add or remove
       partitions from its bookkeeping.

       The disk argument is optional when a partition argument is provided.  To force scanning a partition as if it were a whole disk (for example
       to list nested subpartitions), use the argument "-" (hyphen-minus).  For example:

	      partx --show - /dev/sda3

       This will see sda3 as a whole-disk rather than as a partition.

       partx  is  not  an fdisk program - adding and removing partitions does not change the disk, it just tells the kernel about the presence and
       numbering of on-disk partitions.

OPTIONS
       -a, --add
	      Add the specified partitions, or read the disk and add all partitions.

       -b, --bytes
	      Print the SIZE column in bytes rather than in human-readable format.

       -d, --delete
	      Delete the specified partitions or all partitions.

       -g, --noheadings
	      Do not print a header line with --show or --raw.

       -l, --list
	      List the partitions.  Note that all numbers are in 512-byte sectors.  This output format is DEPRECATED in favour of --show.  Do  not
	      use it in newly written scripts.

       -n, --nr M:N
	      Specify  the range of partitions.  For backward compatibility also the format M-N is supported.  The range may contain negative num-
	      bers, for example --nr -1:-1 means the last partition, and --nr -2:-1 means the last two partitions.  Supported range specifications
	      are:

		     M	    Specifies just one partition (e.g. --nr 3).

		     M:     Specifies the lower limit only (e.g. --nr 2:).

		     :N     Specifies the upper limit only (e.g. --nr :4).

		     M:N    Specifies the lower and upper limits (e.g. --nr 2:4).

       -o, --output list
	      Define the output columns to use for --show, --pairs and --raw output.  If no output arrangement is specified, then a default set is
	      used.  Use --help to get list of all supported columns.  This option cannot be combined with the --add, --delete, --update or --list
	      options.

       -P, --pairs
	      List the partitions using the KEY="value" format.

       -r, --raw
	      List the partitions using the raw output format.

       -s, --show
	      List  the partitions.  The output columns can be selected and rearranged with the --output option.  All numbers (except SIZE) are in
	      512-byte sectors.

       -t, --type type
	      Specify the partition table type.

       --list-types
	      List supported partition types and exit.

       -u, --update
	      Update the specified partitions.

       -S, --sector-size size
	      Overwrite default sector size.

       -v, --verbose
	      Verbose mode.

       -V, --version
	      Display version information and exit.

       -h, --help
	      Display help text and exit.

EXAMPLES
       partx --show /dev/sdb3
       partx --show --nr 3 /dev/sdb
       partx --show /dev/sdb3 /dev/sdb
	      All three commands list partition 3 of /dev/sdb.

       partx --show - /dev/sdb3
	      Lists all subpartitions on /dev/sdb3 (the device is used as whole-disk).

       partx -o START -g --nr 5 /dev/sdb
	      Prints the start sector of partition 5 on /dev/sdb without header.

       partx -o SECTORS,SIZE /dev/sda5 /dev/sda
	      Lists the length in sectors and human-readable size of partition 5 on /dev/sda.

       partx --add --nr 3:5 /dev/sdd
	      Adds all available partitions from 3 to 5 (inclusive) on /dev/sdd.

       partx -d --nr :-1 /dev/sdd
	      Removes the last partition on /dev/sdd.

SEE ALSO
       addpart(8), delpart(8), fdisk(8), parted(8), partprobe(8)

AUTHORS
       Davidlohr Bueso <dave@gnu.org>
       Karel Zak <kzak@redhat.com>

       The original version was written by Andries E. Brouwer <aeb@cwi.nl>.

ENVIRONMENT
       LIBBLKID_DEBUG=all
	      enables libblkid debug output.

AVAILABILITY
       The partx command is part of the util-linux package and is available  from  Linux  Kernel  Archive  <https://www.kernel.org/pub/linux/utils
       /util-linux/>.

util-linux							   December 2014							  PARTX(8)
All times are GMT -4. The time now is 01:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy