You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fstransform resolves which to the alias output (which which) instead of it's actual filesystem location (/usr/bin/which) and fails to run.
Overriding this path in the fstransform startup script fixes the problem. Setting --cmd-which=/usr/bin/which, as per the error output, did not have an effect.
# fstransform /dev/vdb1 ext4 [1755/1810]
fstransform: starting version 0.9.4, checking environment
fstransform: checking for which... found 'which (){ ( alias; eval ${which_declare} ) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@}', but is NOT executable by you!
fstransform: checking for expr... '/bin/expr'
fstransform: checking for id... '/bin/id'
ERROR! fstransform: environment check failed.
Please install the commands 'which' before running fstransform
If these commands are already installed, add them to your $PATH
or tell their location with the option --cmd-COMMAND=/path/to/your/command
# which whichwhich ()
{
( alias;eval${which_declare} ) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@
}
The text was updated successfully, but these errors were encountered:
fstransform resolves which to the alias output (
which which
) instead of it's actual filesystem location (/usr/bin/which) and fails to run.Overriding this path in the fstransform startup script fixes the problem. Setting --cmd-which=/usr/bin/which, as per the error output, did not have an effect.
The text was updated successfully, but these errors were encountered: