Last active
December 9, 2024 00:49
-
-
Save rbreaves/293d72e162e9d5e8c5e40d5263dc6d28 to your computer and use it in GitHub Desktop.
Firefox AUR global menu fix for any distro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok I figured it out, my issue is that the latest version of arch doesn't ship with inetutils, which prevents the solution proposed by distrobox dev from working. I'm not sure if this is the best way to do it, but using this as the command to create the container fixed my issues.
distrobox-create --name arch --image docker.io/library/archlinux:latest --init-hooks 'sudo pacman -S inetutils --noconfirm && hostname ryzen-tower'
of course replace
ryzen-tower
with whatever your computer's hostname is ( the output ofuname -n
from host system)I tried replaceing hostname with a variable but distrobox just spat errors at me. (somthing like this:)
distrobox-create --name arch --image docker.io/library/archlinux:latest --init-hooks 'sudo pacman -S inetutils --noconfirm && hostname $(uname -n)'