EBS卷已在>> fitting_data(x1,x2,y)
myfittype =
General model:
myfittype(a,b,alpha,x1,x2) = a + b * log10(x1 - cosd(alpha - x2))
Warning: Start point not provided, choosing random start point.
> In curvefit.attention.Warning/throw (line 30)
In fit>iFit (line 299)
In fit (line 108)
In fitting_data (line 7)
General model:
myfit(x1,x2) = a + b * log10(x1 - cosd(alpha - x2))
Coefficients (with 95% confidence bounds):
a = 3 (3, 3)
b = 5 (5, 5)
alpha = 120 (120, 120)
General model:
ans(x1,x2) = a + b * log10(x1 - cosd(alpha - x2))
Coefficients (with 95% confidence bounds):
a = 3 (3, 3)
b = 5 (5, 5)
alpha = 120 (120, 120)
上附加ext4
。目前没有相关数据。如何将文件系统类型更改为/opt/apps
并将新挂载点分配给xfs
?
/data
答案 0 :(得分:1)
看到你有两种选择来实现你的用例。
您可以将根卷转换为XFS或创建第二个卷。就个人而言,我赞成后者,因为它提供了更大的灵活性。
选项1:将根卷转换为XFS
xfsprogs
完成)rsync -aHAXxSP /source /target
)将根卷附加到另一个实例的原因是为了获得一致性,这在使用卷时会很困难。
选项2:将数据移至第二个EBS卷
lsof | grep /path/to/dir
检查剩余的写锁mount -o bind
/mnt/path/to/dir /orig/path/to/dir
)/etc/fstab
文件以使挂载点永久存在;例如:/mnt/path/to/dir /orig/path/to/dir bind defaults,noatime,bind 0 0
重新启动以确保一切都持续存在并按预期运行。您可能还想考虑缩小根音量,因为希望它不会随着从中删除所有数据而增长(或改变)。
(作为一个提及,可以使用fsfreeze
中包含的util-linux-ng
来冻结ext4文件系统。
答案 1 :(得分:0)
这不是AWS EBS特有的。亚马逊为您提供了一个名为EBS的“磁盘”,附加到/ dev / xvdb。然后,随意将它安装在任何地方(/ opt / apps或/ data),并使用您想要的文件系统对其进行格式化。
此页面可以为您提供帮助 http://ask.xmodulo.com/create-mount-xfs-file-system-linux.html