Dedicated Server Partitions

For two hard disks on a linux server, you will need to create partion for the server. In order to create partition on a dedicated server :

- Login as root
- Type disk /dev/sdb
- Type n to Create new partitions
- For extended or Primary, type p
- Type w and Enter tp write partitions
- Create file system :

Type mkfs -t ext3 /dev/sdb

In order to Mount File System :

- Type cd /sbin
- mkdir /mnt/disk2
- Type chmod 777 /mnt/disk2
- Type mount /dev/sdb /mnt/disk2

Leave a Reply