Issue: last time i faced a problem in my ubuntu to increase the / file system, even this is a part of LVM. When I tried lvextend and resizefs also the / file system not expanding. Solution: Using the growpart package 1.Install growpart: apt install -y cloud-guest-utils 2.Run: growpart <disk name> <partition name> example: growpart /dev/vda 3 3.Extend LV: lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv 4.Extend FS: resize2fs /dev/ubuntu-vg/ubuntu-lv
The problem I faced is that When I already a two NIC on my ubuntu server and i have an existing netplan like this: bond1: addresses: - 192.168.0.7/16 interfaces: - ens52 - ens53 nameservers: addresses: [] search: [] parameters: lacp-rate: fast mode: 802.3ad transmit-hash-policy: layer3+4 Later i have added a new bridge on top of this with name: #ovs-vsctl show Bridge datantwk Port bond1 Interface bond1 Port datantwk Interface datantwk type: internal Then problem started as IPs in ...