操作場景
通過云服務管理控制臺擴容成功后,僅擴大了云硬盤的存儲容量,因此需要參考本章節操作擴展分區和文件系統。
對于Linux操作系統而言,需要將擴容部分的容量劃分至已有分區內,或者為擴容部分的云硬盤分配新的分區。
本文以“CentOS 7.4 64位”操作系統為例,提供針對SCSI數據盤的MBR分區的操作指導。不同操作系統的操作可能不同,本文僅供參考,具體操作步驟和差異請參考對應操作系統的產品文檔。
前提條件
- 已通過管理控制臺擴容云硬盤容量,并已掛載至云主機,請參見_擴容“正在使用”狀態的云硬盤容量或者擴容“可用”狀態的云硬盤容量。
- 已登錄云主機。
新增MBR分區
數據盤“/dev/sda”原有容量50GB,只有一個分區“/dev/sda1”。將數據盤容量擴大至100GB,本示例為新增的50GB分配新的MBR分區“/dev/sda2”。
步驟 1 執行以下命令,查看磁盤的分區信息。
fdisk -l
回顯類似如下信息:
[root@ecs-scsi ~]# fdisk -l
Disk /dev/vda: 42.9 GB, 42949672960 bytes, 83886080 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000bcb4e
Device Boot Start End Blocks Id System
/dev/vda1 * 2048 83886079 41942016 83 Linux
Disk /dev/sda: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x915ffe6a
Device Boot Start End Blocks Id System
/dev/sda1 2048 104857599 52427776 83 Linux
查看回顯中SCSI數據盤“/dev/sda”的容量,擴容的容量是否已經包含在容量總和中。
- 若擴容的容量未在數據盤容量總和中,請執行步驟2刷新系統內容量。
- 若擴容的容量已在數據盤容量總和中,請執行步驟3。
步驟 2 (可選)執行以下步驟,刷新系統內SCSI數據盤的容量。
- 執行以下命令,刷新云主機內SCSI數據盤的容量。
echo 1 > /sys/class/scsi_device/%d:%d:%d:%d/device/rescan &
其中“%d:%d:%d:%d”為“/sys/class/scsi_device/”路徑下的文件夾,執行ll /sys/class/scsi_device/命令獲取。
回顯類似如下信息,“2:0:0:0”即為待獲取的文件夾。
cs-xen-02:/sys/class/scsi_device # ll /sys/class/scsi_device/
total 0
lrwxrwxrwx 1 root root 0 Sep 26 11:37 2:0:0:0 -> ../../devices/xen/vscsi-2064/host2/target2:0:0/2:0:0:0/scsi_device/2:0:0:0
命令示例:
echo 1 > /sys/class/scsi_device/2:0:0:0/device/rescan &
- 刷新完成后,執行以下命令,再次查看磁盤分區信息。
fdisk -l
若擴容的容量已在數據盤容量總和中,請執行步驟3。
步驟 3 執行以下命令,進入fdisk分區工具。
fdisk 磁盤
命令示例:
fdisk /dev/sda
回顯類似如下信息:
[root@ecs-scsi ~]# fdisk /dev/sda
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help):
步驟 4 輸入“n”,按“Enter”,開始新建分區。
回顯類似如下信息:
Command (m for help): n
Partition type:
p primary (1 primary, 0 extended, 3 free)
e extended
Select (default p):
表示磁盤有兩種分區類型:
- “p”表示主分區。
- “e”表示擴展分區。
說明磁盤使用MBR分區形式,最多可以創建4個主分區,或者3個主分區加1個擴展分區,擴展分區不可以直接使用,需要劃分成若干個邏輯分區才可以使用。
磁盤使用GPT分區形式時,沒有主分區、擴展分區以及邏輯分區之分。
步驟 5 以創建一個主分區為例,輸入“p”,按“Enter”。
回顯類似如下信息:
Select (default p): p
Partition number (2-4, default 2):
“Partition number”表示主分區編號,可以選擇2-4,由于1已被使用,此處從2開始。
步驟 6 以分區編號選擇“2”為例,輸入分區編號“2”,按“Enter”。
回顯類似如下信息:
Partition number (2-4, default 2): 2
First sector (104857600-209715199, default 104857600):
“First sector”表示起始磁柱值,可以選擇104857600-209715199,默認為104857600。
步驟 7 輸入新分區的起始磁柱值,以使用默認起始磁柱值為例,按“Enter”。
系統會自動提示分區可用空間的起始磁柱值和截止磁柱值,可以在該區間內自定義,或者使用默認值。起始磁柱值必須小于分區的截止磁柱值。
回顯類似如下信息:
First sector (104857600-209715199, default 104857600):
Using default value 104857600
Last sector, +sectors or +size{K,M,G} (104857600-209715199, default 209715199):
“Last sector”表示截止磁柱值,可以選擇104857600-209715199,默認為209715199。
步驟 8 輸入新分區的截止磁柱值,以使用默認截止磁柱值為例,按“Enter”。
系統會自動提示分區可用空間的起始磁柱值和截止磁柱值,可以在該區間內自定義,或者使用默認值。起始磁柱值必須小于分區的截止磁柱值。
回顯類似如下信息:
Last sector, +sectors or +size{K,M,G} (104857600-209715199, default 209715199):
Using default value 209715199
Partition 2 of type Linux and of size 50 GiB is set
Command (m for help):
步驟 9 輸入“p”,按“Enter”,查看新建分區。
回顯類似如下信息:
Command (m for help): p
Disk /dev/sda: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x915ffe6a
Device Boot Start End Blocks Id System
/dev/sda1 2048 104857599 52427776 83 Linux
/dev/sda2 104857600 209715199 52428800 83 Linux
Command (m for help):
步驟 10 輸入“w”,按“Enter”,將分區結果寫入分區表中。
回顯類似如下信息:
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
Syncing disks.
說明如果之前分區操作有誤,請輸入“q”,則會退出fdisk分區工具,之前的分區結果將不會被保留。
步驟 11 執行以下命令,將新的分區表變更同步至操作系統。
partprobe
步驟 12 執行以下命令,為新建分區設置文件系統。
mkfs -t 文件系統 磁盤分區
- ext*文件系統命令示例:
mkfs -t ext4 /dev/sda2
回顯類似如下信息:
[root@ecs-scsi ~]# mkfs -t ext4 /dev/sda2
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
3276800 inodes, 13107200 blocks
655360 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2162163712
400 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000, 7962624, 11239424
Allocating group tables: done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
- xfs文件系統命名示例:
mkfs -t xfs /dev/sda2
回顯類似如下信息:
[root@ecs-scsi ~]# mkfs -t xfs /dev/sda2
meta-data=/dev/sda2 isize=512 agcount=4, agsize=3276800 blks
= sectsz=512 attr=2, projid32bit=1
= crc=1 finobt=0, sparse=0
data =bsize=4096 blocks=13107200, imaxpct=25
=sunit=0 swidth=0 blks
naming =version2 bsize=4096 ascii-ci=0 ftype=1
log =internal log bsize=4096 blocks=6400, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
格式化需要等待一段時間,請觀察系統運行狀態,若回顯中進程提示為done,則表示格式化完成。
步驟 13 (可選)執行以下命令,新建掛載目錄。
若需要掛載至新建目錄下,執行該操作。
mkdir 掛載目錄
以新建掛載目錄“/mnt/test”為例:
mkdir /mnt/test
步驟 14 執行以下命令,掛載新建分區。
mount 磁盤分區 掛載目錄
以掛載新建分區“/dev/sda2”至“/mnt/test”為例:
mount /dev/sda2 /mnt/test
說明新增加的分區掛載到不為空的目錄時,該目錄下原本的子目錄和文件會被隱藏,所以,新增的分區最好掛載到空目錄或者新建目錄。如確實要掛載到不為空的目錄,可將該目錄下的子目錄和文件臨時移動到其他目錄下,新分區掛載成功后,再將子目錄和文件移動回來。
步驟 15 執行以下命令,查看掛載結果。
df -TH
回顯類似如下信息:
[root@ecs-scsi ~]# df -TH
Filesystem Type Size Used Avail Use% Mounted on
/dev/vda1 ext4 43G 2.0G 39G 5% /
devtmpfs devtmpfs 509M 0 509M 0% /dev
tmpfs tmpfs 520M 0 520M 0% /dev/shm
tmpfs tmpfs 520M 7.2M 513M 2% /run
tmpfs tmpfs 520M 0 520M 0% /sys/fs/cgroup
tmpfs tmpfs 104M 0 104M 0% /run/user/0
/dev/sda1 ext4 53G 55M 50G 1% /mnt/sdc
/dev/sda2 ext4 53G 55M 50G 1% /mnt/test
說明云主機重啟后,掛載會失效。您可以修改“/etc/fstab”文件,將新建磁盤分區設置為開機自動掛載,請參見下文“設置開機自動掛載磁盤分區”。
擴大已有MBR分區
說明擴大已有分區不會刪除數據盤上的數據,但是需要通過umount命令先卸載已有分區,因此會影響線上業務運行。
SCSI數據盤“/dev/sda”原有容量100GB,有兩個分區“/dev/sda1 ”和“/dev/sda2”。將數據盤容量擴大至150GB,本示例將新增的50GB劃分至已有的MBR分區“/dev/sda2”內。
擴容后的新增存儲空間是添加在磁盤末尾的,對具有多個分區的的磁盤擴容時,只支持將新增容量劃分至排在末尾的分區。
步驟 1 執行以下命令,查看磁盤的分區信息。
fdisk -l
回顯類似如下信息:
[root@ecs-scsi ~]# fdisk -l
Disk /dev/vda: 42.9 GB, 42949672960 bytes, 83886080 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000bcb4e
Device Boot Start End Blocks Id System
/dev/vda1 * 2048 83886079 41942016 83 Linux
Disk /dev/sda: 161.1 GB, 161061273600 bytes, 314572800 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x915ffe6a
Device Boot Start End Blocks Id System
/dev/sda1 2048 104857599 52427776 83 Linux
/dev/sda2 104857600 209715199 52428800 83 Linux
記錄待擴大分區的起始磁柱值(Start)和截止磁柱值(End),本示例中待擴大分區“/dev/sda2”的起始磁柱值為104857600,截止磁柱值為209715199。
查看回顯中SCSI數據盤“/dev/sda”的容量,擴容的容量是否已經包含在容量總和中。
- 若擴容的容量未在數據盤容量總和中,請執行步驟2刷新系統內容量。
- 若擴容的容量已在數據盤容量總和中,請記錄待擴大分區的起始和截止磁柱值,這些值在后續重新創建分區時需要使用,記錄完成后執行步驟3。
步驟 2 (可選)執行以下步驟,刷新系統內SCSI數據盤的容量。
- 執行以下命令,刷新云主機內SCSI數據盤的容量。
echo 1 > /sys/class/scsi_device/%d:%d:%d:%d/device/rescan &
其中“%d:%d:%d:%d”為“/sys/class/scsi_device/”路徑下的文件夾,執行ll /sys/class/scsi_device/命令獲取。
回顯類似如下信息,“2:0:0:0”即為待獲取的文件夾。
cs-xen-02:/sys/class/scsi_device # ll /sys/class/scsi_device/
total 0
lrwxrwxrwx 1 root root 0 Sep 26 11:37 2:0:0:0 -> ../../devices/xen/vscsi-2064/host2/target2:0:0/2:0:0:0/scsi_device/2:0:0:0
命令示例:
echo 1 > /sys/class/scsi_device/2:0:0:0/device/rescan &
- 刷新完成后,執行以下命令,再次查看磁盤分區信息。
fdisk -l
若擴容的容量已在數據盤容量總和中,請記錄待擴大分區的起始和截止磁柱值,這些值在后續重新創建分區時需要使用,記錄完成后執行步驟3。
步驟 3 執行如下命令,卸載磁盤分區。
umount 磁盤分區
命令示例:
umount /dev/sda2
步驟 4 執行以下命令,進入fdisk分區工具。
fdisk 磁盤
命令示例:
fdisk /dev/sda
回顯類似如下信息:
[root@ecs-scsi ~]# fdisk /dev/sda
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help):
步驟 5 執行以下步驟,刪除待擴大的分區。
- 輸入“d”,按“Enter”,刪除磁盤分區。
回顯類似如下信息:
Command (m for help): d
Partition number (1,2, default 2):
- 輸入分區編號,此處以分區編號選擇“2”為例,按“Enter”,刪除磁盤分區。
回顯類似如下信息:
Partition number (1,2, default 2): 2
Partition 2 is deleted
Command (m for help):
說明
刪除分區后,請參考以下操作步驟擴大原有分區,則不會導致數據盤內數據的丟失。
步驟 6 輸入“n”,按“Enter”,開始新建分區。
回顯類似如下信息:
Command (m for help): n
Partition type:
p primary (1 primary, 0 extended, 3 free)
e extended
Select (default p):
表示磁盤有兩種分區類型:
- “p”表示主分區。
- “e”表示擴展分區。
說明
磁盤使用MBR分區形式,最多可以創建4個主分區,或者3個主分區加1個擴展分區,擴展分區不可以直接使用,需要劃分成若干個邏輯分區才可以使用。
磁盤使用GPT分區形式時,沒有主分區、擴展分區以及邏輯分區之分。
步驟 7 此處分區類型需要與原分區保持一致,以原分區類型是主要分區為例,輸入“p”,按“Enter”,開始重新創建一個主分區。
回顯類似如下信息:
Select (default p): p
Partition number (2-4, default 2):
“Partition number”表示主分區編號。
步驟 8 此處分區編號需要與原分區保持一致,以原分區編號是“2”為例,輸入分區編號“2”,按“Enter”。
回顯類似如下信息:
Partition number (2-4, default 2): 2
First sector (104857600-314572799, default 104857600):
“First sector”表示起始磁柱值。
說明
以下操作會導致數據丟失:
選擇的起始磁柱值與原分區的不一致。
選擇的截止磁柱值小于原分區的值。
步驟 9 此處必須與原分區保持一致,輸入步驟1或者步驟2記錄的起始磁柱值104857600,此處該值也為默認值,按“Enter”。
回顯類似如下信息:
“Last sector”表示截止磁柱值。
步驟 10 此處截止磁柱值應大于等于步驟1或者步驟2中記錄的截止磁柱值209715199,以選擇默認截止磁柱值314572799為例,按“Enter”。
回顯類似如下信息:
Last sector, +sectors or +size{K,M,G} (104857600-314572799, default 314572799):
Using default value 314572799
Partition 2 of type Linux and of size 100 GiB is set
Command (m for help):
表示分區完成。
步驟 11 輸入“p”,按“Enter”,查看分區的詳細信息。
回顯類似如下信息:
Command (mfor help): p
Disk /dev/sda: 161.1 GB, 161061273600 bytes, 314572800 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x915ffe6a
Device Boot Start End Blocks Id System
/dev/sda1 2048 104857599 52427776 83 Linux
/dev/sda2 104857600 314572799 104857600 83 Linux
Command (m for help):
步驟 12 輸入“w”,按“Enter”,將分區結果寫入分區表中。
回顯類似如下信息,表示分區創建完成。
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
Syncing disks.
說明
如果之前分區操作有誤,請輸入“q”,則會退出fdisk分區工具,之前的分區結果將不會被保留。
步驟 13 執行以下命令,將新的分區表變更同步至操作系統。
partprobe
步驟 14 根據磁盤的文件系統,分別執行以下操作。
- 若磁盤文件系統為ext*,請執行以下步驟。
a. 執行以下命令,檢查磁盤分區文件系統的正確性。
e2fsck -f 磁盤分區
命令示例:
e2fsck -f /dev/sda2
回顯類似如下信息:
[root@ecs-scsi ~]# e2fsck -f /dev/sda2
e2fsck 1.42.9 (28-Dec-2013)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/sda2: 11/3276800 files (0.0% non-contiguous), 251790/13107200 blocks
b. 執行以下命令,擴展磁盤分區文件系統的大小。
resize2fs 磁盤分區
命令示例:
resize2fs /dev/sda2
回顯類似如下信息:
[root@ecs-scsi ~]# resize2fs /dev/sda2
resize2fs 1.42.9 (28-Dec-2013)
Resizing the filesystem on /dev/sda2 to 26214400 (4k) blocks.
The filesystem on /dev/sda2 is now 26214400 blocks long.
c. (可選)執行以下命令,新建掛載目錄。
若需要掛載至新建目錄下,執行該操作。
mkdir 掛載目錄
以新建掛載目錄“/mnt/test”為例:
mkdir /mnt/test
d. 執行以下命令,掛載磁盤分區。
mount 磁盤分區 掛載目錄
以掛載分區“/dev/sda2”至“/mnt/test”為例:
mount /dev/sda2 /mnt/test
說明
新增加的分區掛載到不為空的目錄時,該目錄下原本的子目錄和文件會被隱藏,所以,新增的分區最好掛載到空目錄或者新建目錄。如確實要掛載到不為空的目錄,可將該目錄下的子目錄和文件臨時移動到其他目錄下,新分區掛載成功后,再將子目錄和文件移動回來。
若磁盤文件系統為xfs,請執行以下步驟。
a. (可選)執行以下命令,新建掛載目錄。
若需要掛載至新建目錄下,執行該操作。
mkdir 掛載目錄
以新建掛載目錄“/mnt/test”為例:
mkdir /mnt/test
b. 執行以下命令,掛載磁盤分區。
mount 磁盤分區 掛載目錄
以掛載分區“/dev/sda2”至“/mnt/test”為例:
mount /dev/sda2 /mnt/test
說明
新增加的分區掛載到不為空的目錄時,該目錄下原本的子目錄和文件會被隱藏,所以,新增的分區最好掛載到空目錄或者新建目錄。如確實要掛載到不為空的目錄,可將該目錄下的子目錄和文件臨時移動到其他目錄下,新分區掛載成功后,再將子目錄和文件移動回來。
c. 執行以下命令,擴展磁盤分區文件系統的大小。
sudo xfs_growfs 磁盤分區
命令示例:
sudo xfs_growfs /dev/sda2
回顯類似如下信息:
[root@ecs-scsi ~]# sudo xfs_growfs /dev/sda2
meta-data=/dev/sda2 isize=512 agcount=4, agsize=3276800 blks
= sectsz=512 attr=2, projid32bit=1
= crc=1 finobt=0, spinodes=0
data = bsize=4096 blocks=13107200, imaxpct=25
= sunit=0 swidth=0 blks
naming =version2 bsize=4096 ascii-ci=0 ftype=1
log =internal bsize=4096 blocks=6400, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
data blocks changed from 13107200 to 26214400df .
步驟 15 執行以下命令,查看掛載結果。
df -TH
回顯類似如下信息:
[root@ecs-scsi ~]# df -TH
Filesystem Type Size Used Avail Use% Mounted on
/dev/vda1 ext4 43G 2.0G 39G 5% /
devtmpfs devtmpfs 509M 0 509M 0% /dev
tmpfs tmpfs 520M 0 520M 0% /dev/shm
tmpfs tmpfs 520M 7.2M 513M 2% /run
tmpfs tmpfs 520M 0 520M 0% /sys/fs/cgroup
tmpfs tmpfs 104M 0 104M 0% /run/user/0
/dev/sda1 ext4 53G 55M 50G 1% /mnt/sdc
/dev/sda2 ext4 106G 63M 101G 1% /mnt/test
說明
云主機重啟后,掛載會失效。您可以修改“/etc/fstab”文件,將新建磁盤分區設置為開機自動掛載,請參見下文“設置開機自動掛載磁盤分區”。
設置開機自動掛載磁盤分區
您可以通過配置fstab文件,設置云主機系統啟動時自動掛載磁盤分區。已有數據的云主機也可以進行設置,該操作不會影響現有數據。
本文介紹如何在fstab文件中使用UUID來設置自動掛載磁盤分區。不建議采用在“/etc/fstab”直接指定設備名(比如/dev/vdb1)的方法,因為云中設備的順序編碼在關閉或者開啟云主機過程中可能發生改變,例如/dev/vdb1可能會變成/dev/vdb2,可能會導致云主機重啟后不能正常運行。
說明
?UUID(universally unique identifier)是Linux系統為磁盤分區提供的唯一的標識字符串。
步驟 1 執行如下命令,查詢磁盤分區的UUID。
blkid 磁盤分區
以查詢磁盤分區“/dev/vdb1”的UUID為例:
blkid /dev/vdb1
回顯類似如下信息:
[root@ecs-test-0001 ~]# blkid /dev/vdb1
/dev/vdb1: UUID="0b3040e2-1367-4abb-841d-ddb0b92693df" TYPE="ext4"
表示“/dev/vdb1”的UUID。
步驟 2 執行以下命令,使用VI編輯器打開“fstab”文件。
vi /etc/fstab
步驟 3 按“i”,進入編輯模式。
步驟 4 將光標移至文件末尾,按“Enter”,添加如下內容。
UUID=0b3040e2-1367-4abb-841d-ddb0b92693df /mnt/sdc ext4 defaults 0 2
步驟 5 按“ESC”后,輸入“:wq”,按“Enter”。
保存設置并退出編輯器。
步驟 6 執行以下步驟,驗證自動掛載功能。
- 執行如下命令,卸載已掛載的分區。
umount 磁盤分區
命令示例:
umount /dev/vdb1
- 執行如下命令,將“/etc/fstab”文件所有內容重新加載。
mount -a
- 執行如下命令,查詢文件系統掛載信息。
mount | grep 掛載目錄
命令示例:
mount | grep /mnt/sdc
回顯類似如下信息,說明自動掛載功能生效:
root@ecs-test-0001 ~]# mount | grep /mnt/sdc
/dev/vdb1 on /mnt/sdc type ext4 (rw,relatime,data=ordered)