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.
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
Feel free to leave a comment or question
Code block comments
2010-03-19
Added a code block for comments
Windows 7 Items
2009-09-24
new info on windows 7
Snort on Debain Lenny
2009-08-19
Installing snort+PGSQL on Debian