泰康人寿保险官方网站,免费申请做网站平台,西安大兴医院网站建设,房地产网站建设方案书1.当操作系统根分区空间不够时(有大量的日志写入或应用部署在根分区)#xff0c;可以将单个或多个目录进行同步出来#xff0c;源目录是磁盘较大的分区#xff0c;目标目录是在根分区下#xff0c;实际文件写入在较大的分区。[rootmysql01 ~]# mkdir /home/123 /123 …1.当操作系统根分区空间不够时(有大量的日志写入或应用部署在根分区)可以将单个或多个目录进行同步出来源目录是磁盘较大的分区目标目录是在根分区下实际文件写入在较大的分区。[rootmysql01 ~]# mkdir /home/123 /123 --创建两个需要同步的目录[rootmysql01 ~]# vim /etc/fstab --添加以下行/home/123 /123 none bind 0 0[rootmysql01 ~]# mount -a[rootmysql01 ~]# touch /home/123/1.txt --在源目录写入文件直接同步到目标目录[rootmysql01 ~]# ll /home/123/total 0-rw-r--r-- 1 root root 0 Mar 20 17:21 1.txt[rootmysql01 ~]# ll /123/total 0-rw-r--r-- 1 root root 0 Mar 20 17:21 1.txt[rootmysql01 ~]# touch /123/2.txt --在目标目录写入文件直接同步到源目录[rootmysql01 ~]# ll /home/123/total 0-rw-r--r-- 1 root root 0 Mar 20 17:21 1.txt-rw-r--r-- 1 root root 0 Mar 20 17:21 2.txt[rootmysql01 ~]# ll /123/total 0-rw-r--r-- 1 root root 0 Mar 20 17:21 1.txt-rw-r--r-- 1 root root 0 Mar 20 17:21 2.txt[rootmysql01 ~]#