简体   繁体   English

增加Xen Server的本地存储

[英]Increase local storage of xen server

I have configured xen server and marathon ever run. 我已经配置了xen服务器和马拉松曾经运行过。 Dell systems that we have purchased has 1200 GB hard disk. 我们已购买的Dell系统具有1200 GB硬盘。 After installation of xen server, it shows 270 GB as local storage on xe server 1. How to add remaining 900 GB as local storage on xen server 1? 安装xen服务器后,它显示270 GB作为xe服务器1上的本地存储。如何添加剩余的900 GB作为xen服务器1上的本地存储?

If your xen server has linux installed on it , then can you check output of "cat /proc/partitions" ? 如果您的xen服务器上安装了linux,那么您可以检查“ cat / proc / partitions”的输出吗? This should give you the current disk partitions. 这应该给您当前的磁盘分区。

Example : In my case it is something like this :- 例子:就我而言,是这样的:

# cat /proc/partitions 
major minor  #blocks  name

   8        0  143339962 sda
   8        1     104391 sda1
   8        2   16386300 sda2
   8        3    1052257 sda3

This gives you the disk name being recognized (/dev/sda) here. 这使您可以在此处识别磁盘名称(/ dev / sda)。 Further check the output of fdisk -l . 进一步检查fdisk -l的输出。

Example: In my case it is something like this :- 示例:在我的情况下,是这样的:-

fdisk  -l /dev/sda

Disk /dev/sda: 146.7 GB, 146780121600 bytes
255 heads, 63 sectors/track, 17845 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          13      104391   83  Linux
/dev/sda2              14        2053    16386300   83  Linux
/dev/sda3            2054        2184     1052257+  82  Linux swap / Solaris

This indicates i have all the space after cylinder 2184 as empty/unused. 这表明我在圆柱2184之后的所有空间都为空/未使用。

If similar is the case , you can use fdisk and partprobe to create extended partition on the remaining unused portion of your disk and mount it on your machine (after creating filesystem on it). 如果是类似的情况,则可以使用fdisk和partprobe在磁盘的剩余未使用部分上创建扩展分区,并将其安装在计算机上(在其上创建文件系统之后)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何获得Xen Server的系统序列号? - How do I get the system-serial-number for Xen Server? 如何使用PowerShell在Xen Server虚拟机中创建/添加iso的DVD驱动器 - How to create/add dvd drive of iso in Xen Server virtual machine using powershell Xenserver API-使用本地存储创建VM? - Xenserver API - Create VM's with local storage? Xen Hypervisor和XenServer之间的主要区别是什么 - What is the main difference between Xen Hypervisor and XenServer 使用ScriptBlock的Invoke-Command在本地服务器上有效-远程结果集为空 - Invoke-Command with ScriptBlock Works on Local Server - Remotely Resultset is Empty 从本地Excel 2010复制并将公式粘贴到远程(Citrix服务器)Excel 2013无法正常工作 - Copy from local Excel 2010 and paste formula to remote (Citrix server) Excel 2013 not working 我可以在服务器的共享驱动器上显示本地计算机时区吗? - Can I display local machine time zone on a server's shared drive? 如何将大量的excel文件从虚拟机服务器复制粘贴到本地计算机? - How do I copy-paste a massive excel file from a virtual machine server to my local machine? 在Server 2016上删除“ Windows Server”固定的应用程序 - Remove “Windows Server” pinned apps on Server 2016 XenServer外部存储 - XenServer External Storage
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM