From 4fca679717d9c47c3f1ca469ac4e0f023a3351b8 Mon Sep 17 00:00:00 2001 From: Owen W. Taylor Date: Aug 30 2017 19:38:21 +0000 Subject: Existing install: document copying over locale.conf /etc/locale.conf also needs to be copied over into the generated root or the resulting system ends up with LANG unset, which keeps, for example, gnome-terminal from working. --- diff --git a/README.md b/README.md index bc8da24..1735a52 100644 --- a/README.md +++ b/README.md @@ -92,9 +92,9 @@ Deploy; we use `enforcing=0` to avoid SELinux issues for now. ostree admin deploy --os=fedora --karg-proc-cmdline --karg=enforcing=0 fedora-ws-rawhide:fedora/rawhide/x86_64/workstation ``` -To initialize this root, you'll need to copy over your `/etc/fstab`, `/etc/default/grub` at least, along with the ostree remote that we added: +To initialize this root, you'll need to copy over your `/etc/fstab`, `/etc/locale.conf`, `/etc/default/grub` at least, along with the ostree remote that we added: ``` -for i in /etc/fstab /etc/default/grub /etc/ostree/remotes.d/fedora-ws-rawhide.conf ; do cp $i /ostree/deploy/fedora/deploy/$checksum.0/$i; done +for i in /etc/fstab /etc/default/grub /etc/locale.conf /etc/ostree/remotes.d/fedora-ws-rawhide.conf ; do cp $i /ostree/deploy/fedora/deploy/$checksum.0/$i; done ``` If you have a separate `/home` mount point, you'll need to change that `fstab` copy to refer to `/var/home`.