Siduction Forum

Siduction Forum => Installation - Support => Topic started by: kiwix on 2022/02/14, 22:41:25

Title: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: kiwix on 2022/02/14, 22:41:25
Hello,

some days ago I tried to install siduction for the first time. I only changed the file system to btrfs.

Installation seams to work, but after a restart it ended up on the console. After some time i recognized that the root file system was mounted read only. I tried this several times on a phyiscal notebook and in a qemu/kvm virtual machine.

After leaving the default file system to ext4 anything works fine.

Any idea or is this a (known) bug?

Regards
Kiwix
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: devil on 2022/02/15, 04:03:25
Not a known bug to my knowledge. I will try to replicate the behavior.
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: devil on 2022/02/15, 04:36:39
Confirmed, For me, it hangs on reboot right after graphical target was reached. A quick glance at auntie google showed no known bugs in that direction. Right now, I don't have time to look further into this.
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: towo on 2022/02/15, 07:54:36
Its sure known.
Calamares is making wrong options in fstab of the installed System. It mount's the subvolume read only.
Change that from a live medium and it is working.
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: devil on 2022/02/15, 11:32:35
Oh right, we even talked about that some time ago. I forgot.
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: rikudou on 2022/02/17, 23:18:53
Is there workaround for this?
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: towo on 2022/02/18, 07:56:32
Sure, boot from Live, mount the partition and just remove the ro entry in the corresponding line of fstab.
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: rikudou on 2022/02/18, 16:14:52
thanks. Let me try


Ithink eveything looks fine in my fstab but still same error
Code: [Select]

UUID=ad1ee115-f3d0-4a52-bb3a-2d785cde1980 /              btrfs   subvol=/@,defaults,noatime,space_cache,autodefrag 0 0
UUID=f9f45338-3295-4dc5-9165-e20a12a53b48 /tmp           btrfs   defaults,noatime,space_cache,autodefrag 0 0
UUID=0c05e513-8dd7-41e8-9868-ac2653a2abe3 /opt           btrfs   defaults,noatime,space_cache,autodefrag 0 0
UUID=4B9A-087C                            /boot/efi      vfat    umask=0077 0 2
UUID=f4e6c3ee-fe4e-4119-83fd-742279c72f23 /home          btrfs   defaults,noatime,space_cache,autodefrag 0 0
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: towo on 2022/02/18, 17:53:00
You have to change

Code: [Select]
space_cache
to

Code: [Select]
space_cache=v2
Then it should work.
Title: Re: Fresh install siduction-21.3.0-wintersky-kde-amd64 with btrfs fails
Post by: rikudou on 2022/02/18, 20:30:43
Yeah that worked. Thanks!