Other How do I make a USB stick RW when it boots?

I'm booting from a USB created by dd if=FreeBSD-14.0-RELEASE-amd64-mini-memstick.img of=/dev/da0, and find that it boots as RO.
How do I enable it as RW?

I have removed /etc/fstab, but something flashes past when booting saying read-only filesystem. The msg does not appear in dmesg.


Originally /etc/fstab contained

dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1

Where is this label held? And can I smply change this to.

/dev/da0s2a / ufs rw 1 1

gpart show da0:-

Code:
=>        1  249644973  da0  MBR  (119G)
          1      66584    1  efi  (33M)
      66585    1007312    2  freebsd  [active]  (492M)
    1073897  248571077       - free -  (119G)
 
Back
Top