Hey, I have an Odroid XU-4 runnig archlinux ARM.
When I run hostname, I get
$this->bbcode_second_pass_code('', '
$ hostname
-bash: hostname: command not found
')
pacman -F shows that hostname is e.g. provided by gettext, which I have installed. I did even reinstall it.
$this->bbcode_second_pass_code('', '
$ pacman -F hostname
core/gettext 0.21.1-2 (base-devel) [installed: 0.21.1-5]
usr/lib/gettext/hostname
')
When I execute hostname with the full path (/usr/lib/gettext/hostname), it works.
I didn't change much in my setup except the basics. So no path modifications. Here is my current path variable:
$this->bbcode_second_pass_code('', '
$ echo "$PATH"
/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
')
Do you have any ideas what might be wrong with my setup and how I could fix it? Thanks!