























这鬼天气!前几天气温都快升到30℃,要穿短袖了,结果今天降温,下起了鹅毛大雪!!
春节最后一天,待在家里出不去,打算把Nextcloud重装下,用的是GreecloudVPS,需要挂载1T的硬盘,记录下过程。
df -h
fdisk -l
Looking at the output in the screenshot above, we have two hard disks added to the test system and we will mount the disk. /dev/vdb
To determine the filesystem type of the disk or partition.
blkid /dev/vdb
mkdir -p /data
mkfs.ext4 /dev/vdb
If you want to use XFS, run: mkfs.xfs /dev/vdb
echo '/dev/vdb /data ext4 defaults 0 0' >> /etc/fstab
Or xfs:
echo '/dev/vdb /data xfs defaults 0 0' >> /etc/fstab
mount -a
df -h
我也就不翻译了,很简单。
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。