New comment by ayoubelmhamdi on void-packages repository https://github.com/void-linux/void-packages/pull/50133#issuecomment-2106240826 Comment: what's about this problem: https://github.com/void-linux/void-packages/blob/ef03c533334a4500e76daf0d8a7fc4df789a05d0/srcpkgs/ollama/files/ollama/run#L4 ``` 2024-05-12T13:03:36.79374 daemon.notice: May 12 14:03:36 ollama: chpst: fatal: unknown user/group: ollama:ollama ``` in [ollama.sh](https://ollama.com/install.sh) script: ```bash configure_systemd() { if ! id ollama >/dev/null 2>&1; then status "Creating ollama user..." sudo useradd -r -s /bin/false -U -m -d /usr/share/ollama ollama fi if getent group render >/dev/null 2>&1; then sudo usermod -a -G render ollama fi if getent group video >/dev/null 2>&1; then status "Adding ollama user to video group..." sudo usermod -a -G video ollama fi status "Adding current user to ollama group..." sudo usermod -a -G ollama $(whoami) # .... } ```