我正在尝试调整 ubuntu 16.04 上的活动/已安装卷的大小。例如(在命令行上运行时)-
sudo parted /dev/sdb resizepart 2 Yes 275GB
它向我发出警告并要求修复/忽略
Warning: Not all of the space available to /dev/sdb appears to be used, you can fix the GPT to use all of the space
(an extra 104857600 blocks) or continue with the current setting?
parted: invalid token: 2
Fix/Ignore?
Partition number?
我尝试了下面所有带有 -s 选项的命令,但收到了警告并出现了修复/忽略问题
1. sudo parted -s /dev/sdb resizepart 2 100%
2. sudo parted -s /dev/sdb resizepart 2 275GB
3. sudo parted -s /dev/sdb resizepart 2 F 2 Y 275GB
4. sudo parted -s /dev/sdb resizepart 2 Y 275GB
上述所有命令都给了我“修复/忽略?”。我在脚本中使用了它,但它无法更新大小。我该如何在 shell 脚本中使用“-s”来避免这种情况。
有没有什么简单的方法可以在命令行中发送参数?