Example of mounting a data disk in Linux

Source: Internet
Author: User

The Linux server was recently upgraded because the previous configuration was so low that the database could not be accessed. After an upgrade, found that the allocation of a 50G data disk, and the need to mount their own system, so have to find data to mount the database, and the site data transfer to this data disk. The steps are as follows:

Description

1. Applicable system: Linux (Redhat, Centos,debian,ubuntu)

2. Linux Cloud Server data disk is not partitioned and formatted

1, view the data disk

You cannot see the data disk until you have partitioned and formatted the data disk, and you can view it using the "fdisk-l" command by using the "df–h" command. The following figure:

Friendly tip: If you execute fdisk-l command and find no/dev/xvdb indicating that your cloud service does not have a data disk, then you do not need to mount, this tutorial is not applicable to you

2. Partition the data disk

Execute the "fdisk-s 56/dev/xvdb" command to partition the data disk;
According to the prompts, enter "n", "P" "1", two times carriage return, "Wq", the partition begins, will soon complete.

3, view the new partition

Using the "fdisk-l" command, you can see that the new partition XVDB1 has been built.

4, format the new partition

The new partition is formatted using the "MKFS.EXT3/DEV/XVDB1" command, and the formatted time varies depending on the size of the hard disk.
(also can decide to choose EXT4 format freely)

5, add the partition information

Write new partition information using the "Echo '/dev/xvdb1/mnt ext3 defaults 0 0′>>/etc/fstab" (without quotes) command.
Then use the "cat/etc/fstab" command to view that the following information indicates a write success.
* If you need to mount the data disk to a separate folder, such as the separate use of the Web page, you can modify the/mnt section of the above command

6. Mount New Partition


Use the "mount-a" command to mount a new partition, and then use the "df-h" command to view it, with the following information stating that the mount is successful and you can start using the new partition.


7, Finished!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.