从现有分区创建新的挂载点(/备份)

从现有分区创建新的挂载点(/备份)

我在 cenos 6.4 的 SOFT RAID 1 中有 2 个分区。

我当前挂载的分区(df -h):

Filesystem            Size  Used Avail Use% Mountedon
/dev/md1               20G  5.4G   14G  29% /
/dev/md2              897G  680M  851G   1% /home

如何/backup裝入/dev/md2或者

如何创建新的挂载点/backup

答案1

另一个解决方案是进行绑定挂载,将两个目录“链接”在一起。

摘自手册mount页:

 Since Linux 2.4.0 it is possible to remount part of the file  hierarchy
 somewhere else. The call is
      mount --bind olddir newdir
 After this call the same contents is accessible in two places.

因此,请执行以下操作:

mount --bind /home/backup/ /backup/

接下来你要做的就是将相应的行添加到/etc/fstab

答案2

你可能只是想要一个符号链接

  1. 创建目录/home/backup
  2. /backup建立从到 的符号链接/home/backup,即ln -s /home/backup/ /backup

现在您可以将文件移至/移出/backup,并且它们将存储在/dev/md2

相关内容