
Envoyé par
bombai
Hi, i rent this server thinking i will have 1TB storage, and now i See only have 500GB from RAID 1 (as I think I supose that have the data duplicated in two diferents HDD). Is possible to change this to can use 1TB and not 500GB?
Thanks.
Yes, you can install your OS in RAID0 you will have about 1000 GO of storage. ( The manager is bugged, it only shows you 500 but after the installation you would have 1TO)
Or you can "delete the RAID1" and format again your second hard drive. (it's a Soft Raid + mdadm)
http://www.tcpdump.com/kb/os/linux/r...d-devices.html
after following this tutorial and delete your RAID,
you can format your 2 partitions ( if the partitions are sda2 and sdb2 )
mke2fs -t ext4 /dev/sda2
mke2fs -t ext4 /dev/sdb2
mkdir /data1
mkdir /data2
add in /etc/fstab
/dev/sda2 /data1 ext4 defaults,relatime 1 2
/dev/sdb2 /data2 ext4 defaults,relatime 1 2
mount /dev/sda2 /data1
mount /dev/sdb2 /data2
source :
http://forum.ubuntu-fr.org/viewtopic.php?pid=12773731