This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
virtualization:xenserver:xenserver_storage_resize [2015/04/20 22:23] 127.0.0.1 external edit |
virtualization:xenserver:xenserver_storage_resize [2025/02/11 06:40] (current) gcooper |
||
---|---|---|---|
Line 24: | Line 24: | ||
==== Extend the Filesystem ==== | ==== Extend the Filesystem ==== | ||
+ | |||
+ | === Windows === | ||
**Windows Disk Manager -> Select Disk -> Extend** | **Windows Disk Manager -> Select Disk -> Extend** | ||
+ | |||
+ | === Linux === | ||
+ | |||
+ | In linux, we first extend the partition then the filesystem. | ||
+ | |||
+ | < | ||
+ | growpart /dev/sdx 3 | ||
+ | resize2fs /dev/sdx3 | ||
+ | </ | ||
+ | |||
+ | or another appropriate command for the used filesystem type. |