On Mon, Mar 14, 2016, at 06:00 PM, Charlie Drage wrote: > Any way to mount /usr/lib to read-write? I can't seem to find the fstab > entry for /usr nor my google-fu helps.
mount -o remount,rw /usr Also, while this isn't yet in a stable release, see: https://github.com/GNOME/ostree/pull/182 which makes live-editing the fs safe. In the meantime, be careful to e.g. use `install` over `cp` to replace files. The latter will truncate-in-place (open(..., O_TRUNC)) and corrupt hardlinks. I'll try at some point to put together some "hacking atomic host" docs.