怎样调整XenServer下面Linux虚拟机的磁盘大小

  1. 登录到XenServer。
  2. 修改虚拟机磁盘大小
    修改storage 磁盘大小
  3. 启动虚拟机
  4. 修改分区大小
    fdisk /dev/xvda

    The number of cylinders for this disk is set to 5221.
    There is nothing wrong with that, but this is larger than 1024,
    and could in certain setups cause problems with:
    1) software that runs at boot time (e.g., old versions of LILO)
    2) booting and partitioning software from other OSs
       (e.g., DOS FDISK, OS/2 FDISK)

    Command (m for help): p

    Disk /dev/xvda: 42.9 GB, 42949672960 bytes
    255 heads, 63 sectors/track, 5221 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes

    Device Boot      Start         End      Blocks   Id  System
    /dev/xvda1   *           1          13      104391   83  Linux
    /dev/xvda2              14        2610   20860402+  8e  Linux LVM

    Command (m for help): Command (m for help): p
    DOS Compatibility flag is not set

    Command (m for help): d
    Partition number (1-4): 2

    Command (m for help): n
    Command action
       e   extended
       p   primary partition (1-4)
    p
    Partition number (1-4): 2
    First cylinder (14-5221, default 14):
    Using default value 14
    Last cylinder or +size or +sizeM or +sizeK (14-5221, default 5221):
    Using default value 5221

    Command (m for help): t
    Partition number (1-4): 2
    Hex code (type L to list codes): 8e
    Changed system type of partition 2 to 8e (Linux LVM)

    Command (m for help): p

    Disk /dev/xvda: 42.9 GB, 42949672960 bytes
    255 heads, 63 sectors/track, 5221 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes

    Device Boot      Start         End      Blocks   Id  System
    /dev/xvda1   *           1          13      104391   83  Linux
    /dev/xvda2              14        5221   41833260   8e  Linux LVM

    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.
    Syncing disks.

  5. 重启虚拟机:reboot
  6. 调整PV大小
    pvs
      PV         VG         Fmt  Attr PSize  PFree
      /dev/xvda2 VolGroup00 lvm2 a-  19.88G    0

    pvresize -v /dev/xvda2
        Using physical volume(s) on command line
        Archiving volume group "VolGroup00" metadata (seqno 3).
        Resizing physical volume /dev/xvda2 from 636 to 1276 extents.
        Resizing volume "/dev/xvda2" to 83666136 sectors.
        Updating physical volume "/dev/xvda2"
        Creating volume group backup "/etc/lvm/backup/VolGroup00" (seqno 4).
      Physical volume "/dev/xvda2" changed
      1 physical volume(s) resized / 0 physical volume(s) not resized

    pvs
      PV         VG         Fmt  Attr PSize  PFree
      /dev/xvda2 VolGroup00 lvm2 a-  39.88G 20.00G

  7. 调整LV大小
    lvs
      LV       VG         Attr   LSize  Origin Snap%  Move Log Copy%  Convert
      LogVol00 VolGroup00 -wi-ao 17.84G
      LogVol01 VolGroup00 -wi-ao  2.03G

    lvextend -l +100%FREE /dev/VolGroup00/LogVol00
      Extending logical volume LogVol00 to 37.84 GB
      Logical volume LogVol00 successfully resized

    lvs
      LV       VG         Attr   LSize  Origin Snap%  Move Log Copy%  Convert
      LogVol00 VolGroup00 -wi-ao 37.84G
      LogVol01 VolGroup00 -wi-ao  2.03G

  8. 调整分区大小
    df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/mapper/VolGroup00-LogVol00
                         5.7G  4.5G  950M  83% /
    /dev/xvda1             99M   22M   73M  24% /boot
    tmpfs                 2.0G     0  2.0G   0% /dev/shm

    resize2fs /dev/mapper/VolGroup00-LogVol00
    resize2fs 1.39 (29-May-2006)
    Filesystem at /dev/mapper/VolGroup00-LogVol00 is mounted on /; on-line resizing required
    Performing an on-line resize of /dev/mapper/VolGroup00-LogVol00 to 9920512 (4k) blocks.
    The filesystem on /dev/mapper/VolGroup00-LogVol00 is now 9920512 blocks long.

    df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/mapper/VolGroup00-LogVol00
                           37G  4.5G   31G  13% /
    /dev/xvda1             99M   22M   73M  24% /boot
    tmpfs                 2.0G     0  2.0G   0% /dev/shm
    任务完成

  9. 遇到的问题
    linux系统为centos7 时, 用 resize2fs 命令出现报错 resize2fs: Bad magic number in super-block while trying to open
    xfs_growfs /dev/root_vg/root 用 xfs_growfs 代替命令 resize2fs

原文地址:https://www.cnblogs.com/weifeng1463/p/8421773.html

时间: 2024-10-09 08:05:48

怎样调整XenServer下面Linux虚拟机的磁盘大小的相关文章

调整Azure 虚拟机操作系统磁盘大小

用户在资源组中通过从 Azure Marketplace 部署映像来创建新的虚拟机 (VM) 时,默认的 OS 驱动器通常为 127 GB(默认情况下,某些映像的 OS 磁盘大小更小). 尽管用户可以将数据磁盘添加到 VM(数量取决于所选择的 SKU),并且我们建议将应用程序和需要大量 CPU 的工作负荷安装在这些附加的磁盘上,但客户有时候还是必须扩展 OS 驱动器以支持特定的方案,例如: 支持将组件安装在 OS 驱动器上的传统应用程序. 从本地迁移具有较大 OS 驱动器的物理电脑或虚拟机. 在

Linux虚拟机添加磁盘

1.虚拟机添加磁盘 2.查看添加完成磁盘 3.创建分区 4.对分区进行格式化 5.挂载 创建挂载目录mkdir /mnt/sdb1 (目录自定义)mount -t auto /dev/sdb1 /mnt/sdb1 设置自动挂载 备注:1.本文针对虚拟进系统进行测试实验,如有问题,请及时反馈. 原文地址:http://blog.51cto.com/sirstma/2113308

物理机异常断电,linux虚拟机系统磁盘mount失败,导致无法启动

(1).报错如下(2)进入/run/initramfs查看详细的报错日志rdsosreport.txt 发现执行mount /dev/mapper/centos-root /sysroot命令的时候,挂载失败了3).手动执行mount /dev/mapper/centos-root /sysroot命令,发现提示Structureneeds cleaning.需要清除结构(4)当mount硬盘出现"mount:Structure needs cleaning"报错, 遇到这种情况时,可

关于Azure中虚拟机数据磁盘大小

首先,在Azure中关于数据存储的付费规则中规定,只要你使用的不是Azure的XIO高级存储提供的I/O密集型的高吞吐低延迟的服务,那么得益于Azure存储设计中采用的稀疏文件方式存储,存储虚拟机VHD的存储只会按照实际的写入数据的使用量进行付费,因此最佳实践就是建立VHD磁盘文件的时候就最好设置为1023GB,也就是Azure订阅所支持的最大值 1TB大小.当然这里讨论的是使用单个磁盘的问题,不包括出于性能或者容量限制等问题采用多个VHD数据磁盘到Azure虚拟机中,并在上面构建软RAID解决

Linux 虚拟机扩充磁盘容量

引言: 参考链接:http://junrei.dip.jp/wordpress/vmware/vmware%E3%81%AE%E3%82%B2%E3%82%B9%E3%83%88os%EF%BC%88centos6-4%EF%BC%89%E3%81%AE%E3%83%87%E3%82%A3%E3%82%B9%E3%82%AF%E5%AE%B9%E9%87%8F%E3%82%92%E5%A2%97%E3%82%84%E3%81%99%E6%96%B9%E6%B3%95/ 遇到问题: 1. 执行:v

linux lvm扩容磁盘大小

关闭需要扩容的虚拟机,并通过管理虚拟机界面添加磁盘空间,本次调整50G 注意,本次写入为增加容量的大小,并非增加完硬盘的大小 硬盘添加后可以用fdisk -l 查看磁盘容量大小,可以看到硬盘增加了50G ,但是由于没有分区,所以并没有在下面显示 1.创建分区: > 输入n,新建分区Command (m for help): n > 输入P,主分区 目前是sda已经有2个分区,所以本次输入3,按照以有的磁盘顺序来提示是否使用未分配的所有空间,敲回车,默认就行了 输入t 此处需要输入和之前对应的分

Linux中查看磁盘大小、文件大小、排序方法小结

一,查看磁盘空间大小的命令:dfdf命令用于查看磁盘分区上的磁盘空间,包括使用了多少,还剩多少,默认单位是KB 比如以下命令: df -hl执行结果如下: 执行的结果每列的含义: 第一列Filesystem,磁盘分区 第二列Size,磁盘分区的大小 第三列Used,已使用的空间 第四列Avail,可用的空间 第五列Use%,已使用的百分比 第六列Mounted on,挂载点 解释一下后面的h和l参数,h是把显示的单位改成容易辨认的单位,不再是默认的KB了,而l参数表示只显示本地磁盘分区,不包含的

kvm上的Linux虚拟机使用virtio磁盘

kvm上的Linux虚拟机使用virtio磁盘 系统:centos6.6  64位 网上的文章比较少,怎麽将Linux虚拟机的磁盘改为使用virtio磁盘 因为centos6或以上系统已经包含了virtio驱动,所以不需要再执行下面语句加载内核模块 modprobe virtio virtio_pci virtio_blk virtio_net mkinitrd --with virtio --with virtio_pci --with virtio_blk --with virtio_net

虚拟机ubuntu磁盘扩容

1.虚拟机把磁盘大小进行改动 2.sudo apt-get install gparted 3.打开安装好的应用 4.进行分区改动 5.理论删除sda2和sda5重整后边即可,但此时sda2和sda5可能会处在启用交互的状态: 6.右键禁止后依次删除sda5和sda2,重新分配sda1后,把预留的位置再次按照如果所示的方式进行分配即可. 都操作完成之后,选择应用全部操作. 原文地址:https://www.cnblogs.com/lawliet-y/p/8580348.html