-
I never thought I would stuck with a such basic question but here we are: a simple shell change inside the VM makes it fail to boot. I'm using the Alpine template and its default I do: sudo apk add zsh
sudo chsh -s /bin/zsh $USER
exit I get:
What's broken and how to change the shell properly? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You need to run your Lines 185 to 195 in b453ded Alpine is booted from an ISO and running from a RAM filesystem. Only a few directories like This will not redownload them; the apk package cache is also on the persisted volume. |
Beta Was this translation helpful? Give feedback.
You need to run your
apk add zsh
command in a system provisioning script:lima/examples/default.yaml
Lines 185 to 195 in b453ded
Alpine is booted from an ISO and running from a RAM filesystem. Only a few directories like
/etc
and/usr/local
are saved on a persistent volume. S…