I used KDE's partition manager tool from the Manjaro live CD to shrink my existing Linux Mint partition and create another one to install Manjaro.
This went fine, however, it looks like my Linux Mint partition got corrupted in the process. Trying to boot into it sends me to initramfs.
Here's the output of e2fsck
:
$ e2fsck -fy /dev/nvme0n1p6
e2fsck 1.45.5 (07-Jan-2020)
The filesystem size (according to the superblock) is 32907264 blocks
The physical size of the device is 22641408 blocks
Either the superblock or the partition table is likely to be corrupt!
Abort? yes
Here is the output of lsblk
:
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
nvme0n1 259:0 0 238,5G 0 disk
├─nvme0n1p1 259:1 0 260M 0 part /boot/efi
├─nvme0n1p2 259:2 0 16M 0 part
├─nvme0n1p3 259:3 0 93,5G 0 part
├─nvme0n1p4 259:4 0 980M 0 part
├─nvme0n1p5 259:5 0 13,1G 0 part
├─nvme0n1p6 259:6 0 86,4G 0 part # Linux Mint partition
├─nvme0n1p7 259:7 0 5,2G 0 part [SWAP]
└─nvme0n1p8 259:8 0 39,2G 0 part / # New Manjaro partition
e2fsck
and the filesystem should be fine again. Then resize the filesystem first (maybe there is a command that can decrease the partition and the filesystem in one go). – goulashsoup Jun 05 '22 at 16:33