View Single Post
Posts: 1,196 | Thanked: 1,413 times | Joined on Aug 2011
#1
Hello,

I want to follow this guide to format my microsd card 128 GB:

Code:
-- Formating the card as BTRFS as found in Answer to this question / via SSH.
[root@localhost nemo]# umount /dev/mmcblk1p1 - unmount the card
[root@localhost nemo]# mkfs.btrfs -f /dev/mmcblk1 - format the card (no need for partition)
[root@localhost nemo]# mount -o subvolid=0 /dev/mmcblk1 /media/sdcard - mount the card
[root@localhost sdcard]# btrfs subvolume create Jolla - create folder called Jolla
[root@localhost sdcard]# chown -R nemo:nemo /run/user/100000/media/sdcard/Jolla - set ownership
[root@localhost sdcard]# chmod -R 775 /run/user/100000/media/sdcard/Jolla - set permissions
you may have to manually mount the µSD card or use script (1.0.3.8 Naamankajärvi)
At this step i have an error:

mount -o subvolid=0 /dev/mmcblk1 /media/sdcard

It says:

mount wrong fs type bad option bad superblock on /dev/mmcblk1...

How to format card in btrfs and use it on SFOS?

Thanks