Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 834 Bytes

kubuntu-kde-20.04.3-custom-changes.md

File metadata and controls

32 lines (27 loc) · 834 Bytes

Changed logout time

Had to repartion the VM to get more space, first increase size using Fusion when VM is not running

  107  sudo umount /boot/efi
  108  resize2fs /dev/sda2
  109  growpart -v /dev/sda 2
  110  resize2fs /dev/sda2
  111  mount
  112  df -h
  113  resize2fs /dev/sda5
  114  growpart -v /dev/sda 5
  115  resize2fs /dev/sda5
  116  df -h
  117  history

Had to unmount /dev/sda2 then I was able to growpart and resize2fs /dev/sda2 and /dev/sda5

  # To install growpart utility
  sudo apt-get install -y cloud-utils

Had to install 'ifconfig', it was missing from system

sudo apt install net-tools