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.
This commit is contained in:
parent
9bc42fadf7
commit
4fca679717
1 changed files with 2 additions and 2 deletions
|
@ -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`.
|
||||
|
|
Loading…
Reference in a new issue