apx
apx copied to clipboard
[v1] Ubuntu default container asks for inexistant password
When using the ubuntu container in apx version 1, it will ask for the password of user "ubuntu". This prevents the user from installing anything using this container.
Possibly related to the "Installing basic packages" step failing when creating the container.
same problem here, how does vanilla install ubuntu packages? is it with podman?
apx uses distrobox which uses podman in the case of vanilla, yeah.
Same problem here too. Does anyone know that password?
The ubuntu user cannot be logged into. It doesn't have a password. The container is currently not usable. You have to use a different container, for example fedora with "apx --dnf"
When will this problem be fixed?
I have the same problem too.
I found a temporary solution to this issue.
- Open Vanilla Os Control Center
- Click on the "Sub System" tab.
- type
suthis will log you into the container as root. - type
passwd ubuntuand enter the password you want for the ubuntu user. - you'll next need to edit the sudoers file, so type
apt-get install nano(or vi if you prefer) - type
nano /etc/sudoersbelow this line:
# User privilege specification
root ALL=(ALL:ALL) ALL
add this:
ubuntu ALL=(ALL:ALL) ALL
7. Save the file, and close the container.
8. Test the results, it should work.