This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Expand Linux boot partition ====== * First of all, download SystemRescue Cd: [[https://www.system-rescue.org/Download/]] * Write image in cd or USB. * Start it, when console loaded, type in <code>startx</code> * Run gparted to free up some space. Enough for your needs, 2gb, 3gb. Up to You. For example shrink root partition. * When that's done, create new partition, same like existing boot partition (ext2,ext4, fat32, e.t.c.). * Then open terminal, and clone old boot partition to new partition. Example: <code>dd if=/dev/sda1 of=/dev/sdb1 bs=512 conv=noerror,sync</code> * When that's done, make directory and mount root filesystem's partition. Again just example: <code>mkdir /temp_root</code> <code>mount /dev/sda4 /temp_root</code> * Then You need edit fstab file, changing boot partition from old to new. Example: <code> nano /temp_root/etc/fstab</code> Example: from: <code>/dev/sda1 /boot ext2 defaults,noatime 0 2</code> to: <code>/dev/sdb1 /boot ext2 defaults,noatime 0 2</code> * Save file and exit. * Reboot system, finger crossed everything should work.