有許多步驟在線手動增加流浪漢磁盤大小,例如:link如何自動調整Linux客人的流浪磁盤映像大小?
這將是巨大的,如果調整大小可以在Vagrantfile
自動完成的,這樣的事情:
config.vm.provider :virtualbox do |vb|
if first_up # only run on the first 'up' command
disk_uuid = ? # how to get the disk_uuid?
vb.customize ["modifyhd", disk_uuid, "--resize", "15360"]
config.vm.provision "shell", path: "resize2fs -p -F /dev/sda"
end
end
問題:如何以跨平臺方式找出磁盤uuid?
問題:這是調整客人磁盤大小所需的全部嗎?