[SOLVED] Festplattenvergrößerung Synology VM

Negalein

Member
Sep 13, 2022
11
0
6
Hallo

Ich bitte euch um Hilfe bei der Festplattenvergrößerung einer Synology VM.

Ich hab im VMM die Festplatte auf 100 GB vergrößert.
1701532481608.png

lsblk --ascii zeigt die 100G an.

Code:
nega@ubuntu:~$ lsblk --ascii
NAME                      MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
loop0                       7:0    0 55.7M  1 loop /snap/core18/2790
loop1                       7:1    0 55.7M  1 loop /snap/core18/2796
loop2                       7:2    0 63.5M  1 loop /snap/core20/1974
loop3                       7:3    0 63.5M  1 loop /snap/core20/2015
loop4                       7:4    0 91.8M  1 loop /snap/lxd/23991
loop5                       7:5    0 91.9M  1 loop /snap/lxd/24061
loop6                       7:6    0 40.9M  1 loop /snap/snapd/20092
loop7                       7:7    0 40.9M  1 loop /snap/snapd/20290
sda                         8:0    0  100G  0 disk
|-sda1                      8:1    0    1M  0 part
|-sda2                      8:2    0    1G  0 part /boot
`-sda3                      8:3    0    9G  0 part
  `-ubuntu--vg-ubuntu--lv 253:0    0    9G  0 lvm  /
sr0                        11:0    1 1024M  0 rom
sr1                        11:1    1 1024M  0 rom

nach sudo pvresize /dev/sda3 kommt

Code:
nega@ubuntu:~$ sudo pvresize /dev/sda3
[sudo] password for nega:
  Physical volume "/dev/sda3" changed
  1 physical volume(s) resized or updated / 0 physical volume(s) not resized

jetzt reboot und dann
sudo lvresize -l +100%FREE /dev/ubuntu-vg/ubuntu-lv und sudo resize2fs /dev/ubuntu-vg/ubuntu-lv.

Da kommt aber nur

Code:
nega@ubuntu:~$ sudo lvresize -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
[sudo] password for nega:
  New size (2303 extents) matches existing size (2303 extents).
nega@ubuntu:~$ sudo resize2fs /dev/ubuntu-vg/ubuntu-lv
resize2fs 1.45.5 (07-Jan-2020)
The filesystem is already 2358272 (4k) blocks long.  Nothing to do!

Was mach ich da noch falsch?

Danke

PS: @sterzy sorry für das damalige kappern des anderen Threads.
 
Last edited:
Du müsstest die Partition auch noch vergrößern. Es gibt hier z. B. eine Anleitung https://pve.proxmox.com/wiki/Resize_disks

Ist das Punkt 3?
pvresize /dev/sda3

weiteres check ich nicht. Könntest du mir da weiterhelfen? Ich versteh da Bahnhof (als Windows-User) und möchte nichts kaputt machen.

Ich dachte mit sudo lvresize -l +100%FREE /dev/ubuntu-vg/ubuntu-lv und sudo resize2fs /dev/ubuntu-vg/ubuntu-lv passt das.
 
Ist das Punkt 3?
Nein Punkt 2.

weiteres check ich nicht. Könntest du mir da weiterhelfen?
Im Grunde genau das, was in der Anleitung steht. Nur hast du eben /dev/sda und nicht /dev/vda.

Beispiel aus der Anleitung für nicht UEFI-Systeme:
Code:
parted /dev/sda
(parted) print
Number  Start   End     Size    Type      File system  Flags
1       1049kB  538MB   537MB   primary   fat32        boot
2       539MB   21.5GB  20.9GB  extended
3       539MB   21.5GB  20.9GB  logical                lvm

Yoy will want to resize the 2nd partition first (extended):

Code:
(parted) resizepart 2 100%
(parted) resizepart 3 100%

Check the new partition table

Code:
(parted) print

Number  Start   End     Size    Type      File system  Flags
1       1049kB  538MB   537MB   primary   fat32        boot
2       539MB   26.8GB  26.3GB  extended
3       539MB   26.8GB  26.3GB  logical                lvm

(parted) quit

Ich dachte mit sudo lvresize -l +100%FREE /dev/ubuntu-vg/ubuntu-lv und sudo resize2fs /dev/ubuntu-vg/ubuntu-lv passt das.
Erst jetzt kommen diese Befehle. Wobei aber zuerst auch noch pvresize /dev/sda3 kommt. Und das resize2fs brauchst du normal nur, wenn du kein LVM hast.

Ich versteh da Bahnhof (als Windows-User) und möchte nichts kaputt machen.
Partitionen gibt es auch unter Windows, ist also nichts Linux-spezifisches ;)
 
Im Grunde genau das, was in der Anleitung steht. Nur hast du eben /dev/sda und nicht /dev/vda.

Danke

also folgende Reihenfolge?

Code:
nega@ubuntu:~$ sudo fdisk -l /dev/sda | grep ^/dev
[sudo] password for nega:
GPT PMBR size mismatch (20971519 != 209715199) will be corrected by write.
The backup GPT table is not on the end of the device. This problem will be corrected by write.
/dev/sda1     2048     4095     2048   1M BIOS boot
/dev/sda2     4096  2101247  2097152   1G Linux filesystem
/dev/sda3  2101248 20969471 18868224   9G Linux filesystem

dann
parted /dev/sda

da komm ich nicht weiter

Code:
nega@ubuntu:~$ parted /dev/sda
WARNING: You are not superuser.  Watch out for permissions.
Error: Error opening /dev/sda: Permission denied
Retry/Cancel? C

Partitionen gibt es auch unter Windows, ist also nichts Linux-spezifisches ;)

Ja, aber da gibt es GUI-Tools ;)
 
WARNING: You are not superuser. Watch out for permissions.
Da wird dir sudo weiterhelfen oder als root in die Konsole wechseln. Das ist ja eine Systemaktion welche du hier durchführen willst, die sollte ein unprivilegierter Benutzer auch nicht durchführen dürfen.
 
Da wird dir sudo weiterhelfen oder als root in die Konsole wechseln

ah, stimmt. Hätt ich selber merken sollen.

Code:
nega@ubuntu:~$ sudo parted /dev/sda
[sudo] password for nega:
GNU Parted 3.3
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print
Warning: Not all of the space available to /dev/sda appears to be used, you can fix the GPT to use all of the space (an extra 188743680 blocks) or continue with the current setting?
Fix/Ignore?

Hier jetzt Fix?
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!