Mounting a backup disk on CentOS

Discussion in 'Server Management' started by MultiBam, Feb 9, 2014.

  1. MultiBam

    MultiBam Administrator Staff Member

    Check for disks:
    Code:
    ls /dev/sd*
    No need to partioning the backup disk.

    Choose the file system:
    Code:
    [root@server] mkfs.ext4 /dev/sdb
    Make the backup directory:
    Code:
    mkdir /mnt/backup
    Mount the disk to the directory:
    Code:
    [root@server] mount /dev/sdb /mnt/backup
    And we are done! Now go add it to WHM...
     

Share This Page