Estimated read time: 1 minutes
ok, let's write here something usefull. imho you know the problem with sudo + */sbin:
$ sudo modprobe
sudo: modprobe: command not found
the workaround is trivial:
alias sudo="PATH=$PATH:/sbin:/usr/sbin sudo"
:)