流浪者在设备

时间:2015-07-31 13:04:23

标签: vagrant virtualbox

今天我开始在简单操作上遇到错误,比如在vim中创建小文件,bash完成也开始抱怨。

以下是df -h的结果:

vagrant@machine:/vagrant$ df -h
Filesystem                           Size  Used Avail Use% Mounted on
/dev/sda1                             40G   38G  249M 100% /
none                                 4.0K     0  4.0K   0% /sys/fs/cgroup
udev                                 2.0G   12K  2.0G   1% /dev
tmpfs                                396M  396K  395M   1% /run
none                                 5.0M     0  5.0M   0% /run/lock
none                                 2.0G     0  2.0G   0% /run/shm
none                                 100M     0  100M   0% /run/user
overflow                             1.0M  148K  876K  15% /tmp
192.168.50.1:/Users/nha/repo/assets  233G  141G   93G  61% /var/www/assets
vagrant                              233G  141G   93G  61% /vagrant

显然/不再有空间了吗?因为我在其他文件系统中有空间(或者我误读了某些东西),这不是很奇怪吗?

如何在我的虚拟机上获得更多空间?

4 个答案:

答案 0 :(得分:17)

即使您的Guest OS上有空间,VM也是有​​限的。为了增加磁盘大小,还需要几个步骤:

首先,vagrant halt关闭您的虚拟机

调整磁盘大小

VBoxManage clonehd box-disk1.vmdk box-disk1.vdi --format vdi
VBoxManage modifyhd box-disk1.vdi --resize 50000

启动虚拟框并更改VM的配置以关联新磁盘

使用fdisk调整磁盘大小

您需要使用新空间创建一个新分区并进行分配,因此首先启动VM并以超级用户身份登录

vagrant up && vagrant ssh
su -

命令(如我的实例所示)是

[root@oracle ~]# fdisk /dev/sda

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
         switch off the mode (command 'c') and change display units to
         sectors (command 'u').

Command (m for help): p

Disk /dev/sda: 52.4 GB, 52428800000 bytes
255 heads, 63 sectors/track, 6374 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00041a53

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          39      307200   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2              39        2611    20663296   8e  Linux LVM

Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 3
First cylinder (2611-6374, default 2611):
Using default value 2611
Last cylinder, +cylinders or +size{K,M,G} (2611-6374, default 6374):
Using default value 6374

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
Syncing disks.
[root@oracle ~]#

注意您可能需要更改/ dev / sda与您的配置进行比较

创建新分区(再次以超级用户su -身份登录)

su -
[root@oracle ~]# pvs
  PV         VG    Fmt  Attr PSize  PFree
  /dev/sda2  linux lvm2 a--  19.70g    0
[root@oracle ~]# pvcreate /dev/sda3
  Physical volume "/dev/sda3" successfully created
[root@oracle ~]# pvs
  PV         VG    Fmt  Attr PSize  PFree
  /dev/sda2  linux lvm2 a--  19.70g     0
  /dev/sda3        lvm2 a--  28.83g 28.83g

[root@oracle ~]# vgextend linux /dev/sda3
  Volume group "linux" successfully extended
[root@oracle ~]# lvextend -l +100%FREE /dev/linux/root
[root@oracle ~]# resize2fs /dev/linux/home
resize2fs 1.41.12 (17-May-2010)
Filesystem at /dev/linux/home is mounted on /home; on-line resizing required
old desc_blocks = 1, new_desc_blocks = 2
Performing an on-line resize of /dev/linux/home to 7347200 (4k) blocks.
The filesystem on /dev/linux/home is now 7347200 blocks long.

答案 1 :(得分:4)

您可以增加框中的空间,而不会丢失数据或创建新分区。

  1. 暂停您的虚拟机;

  2. 转到/home_dir/VirtualBox VMs

  3. 将文件格式从.vmdk更改为.vdi。然后使用上面答案中的命令增加空间。

  4. 更改文件扩展名并更改文件名。

  5. 将扩展磁盘附加到VM。

    VBoxManage storageattach <your_box_name> --storagectl "IDE Controller" --
    port 0 --device 0 --type hdd --medium new_extended_file.vmdk
    
  6. 在您的VirtualBox应用程序中,转到Your_VM - &gt;设置 - &gt;存储。点击控制器,然后选择&#39; 添加新磁盘&#39;下面。从现有磁盘中选择刚刚扩展的磁盘。

  7. Here's a step by step instruction how to expand the space in your vagrant box or virtual machine.

答案 2 :(得分:3)

增加 vagrant box 大小的最简单方法是使用 vagrant-disksize 插件。

在你的 vagrant 根文件夹中,运行 vagrant plugin install vagrant-disksize

然后将新大小添加到 Vagrantfile:

Vagrant.configure('2') do |config|
  ...
  config.disksize.size = '60GB'
end

然后是 vagrant haltvagrant up
vagrant reload 不起作用。

我已经读到,如果您超调,该插件会出现缩小磁盘大小的问题。

答案 3 :(得分:0)

就我而言,没有任何回应:

   vagrant halt 

   vagrant destroy

最终可以使用virtualbox ui删除磁盘,只是添加额外的信息,如果其他所有操作都没有帮助。