Linux (commonly pronounced LIH-N?ks in English; variants exist) is a Unix-like computer operating system. Linux is one of the most prominent examples of free software and open source development: typically all underlying source code can be freely modified, used, and redistributed by anyone.

Tags |

Installing LARGE partitons in Linux

By default, you can not create a ext3 partition that is larger than 2TB. Getting around this road block however is quite simple, first you need to install parted which will allow you to make that large partition.



# apt-get install parted



Now we just need to run parted and create the partition, in my example below I show XFS as the file system, but you could use ext3 or jfs or reiserfs etc.




parted /dev/sdb

(parted) mklabel gpt

(parted) print

(parted) mkpart primary xfs 0 X (Where X is the number returned in the print command IE 1000GB)

(parted) quit



Now, just format it, again I used XFS but you can modify this with your partitioning scheme.



# mkfs.xfs /dev/sbd1




Comments

Feel free to leave a comment or question

Name: (Optional but appreciated):

Comment:

Use [code] [/code] for code block style



Security Code: