Fedora 27 Filesystem root full
-
@stacksofplates said in Fedora 27 Filesystem root full:
How did you install this? Every time I’ve installed it / gets 50GB and /home takes the rest.
I could have sworn it's 15 GiB by default on Fedora Workstation... which is still too low on a desktop.
-
You can do it in Cockpit so easily:
/home: shrink it
Then add it to your
/
partition -
@stacksofplates said in Fedora 27 Filesystem root full:
How did you install this? Every time I’ve installed it / gets 50GB and /home takes the rest.
I do not recall changing this. I would assume that I click custom and then let it create it in the advanced screen.
I agree with you and @Tim_G that this seems odd form my normal experiences.
-
I cannot unmount
/home
because it is busy. even after a reboot and not logging in. -
@jaredbusch said in Fedora 27 Filesystem root full:
I cannot unmount
/home
because it is busy. even after a reboot and not logging in.You will have to use a live bootable OS to unmount /home.
-
@jaredbusch said in Fedora 27 Filesystem root full:
I cannot unmount
/home
because it is busy. even after a reboot and not logging in.Why can't you do it live in Cockpit?
I never had to unmount.
-
For the record, my laptop is setup this way.
-
@tim_g said in Fedora 27 Filesystem root full:
@jaredbusch said in Fedora 27 Filesystem root full:
I cannot unmount
/home
because it is busy. even after a reboot and not logging in.Why can't you do it live in Cockpit?
I never had to unmount.
-
@jaredbusch that likely means that you have a shell session that is currently "cd'd" into the /home somewhere and/or some process that is running out of it.
-
What filesystem?
-
-
@scottalanmiller said in Fedora 27 Filesystem root full:
@tim_g said in Fedora 27 Filesystem root full:
What filesystem?
/home
As in XFS, ext4
-
@tim_g said in Fedora 27 Filesystem root full:
@scottalanmiller said in Fedora 27 Filesystem root full:
@tim_g said in Fedora 27 Filesystem root full:
What filesystem?
/home
As in XFS, ext4
Both
/home
and/
are ext4. -
@scottalanmiller said in Fedora 27 Filesystem root full:
@jaredbusch that likely means that you have a shell session that is currently "cd'd" into the /home somewhere and/or some process that is running out of it.
It has to be some process then, because it gives this right after a reboot
-
Try this...
ps aux | grep /home
-
@scottalanmiller said in Fedora 27 Filesystem root full:
ps aux | grep /home
System is not logged in. Doing it from the cockpit terminal resulted in this
-
-
Unount /home
umount /home
-
Shrink the /home filesystem
fsck -f /dev/mapper/fedora-home
resize2fs /dev/mapper/fedora-home 190G
-
Shrink the /home logical volume
lvreduce -L -24G /dev/mapper/fedora-home
-
Resize the /home partition to the size of the LV
resize2fs /dev/mapper/fedora-home
-
Extend the /root logical volume
lvextend -L +24G /dev/mapper/fedora-root
-
Extend the /root filesystem
fsck -f /dev/mapper/fedora-root
resize2fs /dev/mapper/fedora-root
-
Mount /home
mount /home
-
-
damned desktop system has something forcing this...
-
Ah, maybe this?
-
@jaredbusch said in Fedora 27 Filesystem root full:
damned desktop system has something forcing this...
Does the -f switch help?