If that's the case, maybe try using the full path: /sbin/modprobe i915
Please remember that since you're accessing the kernel, you need root privileges, so you'll likely need to pass the command through sudo, so you're looking at something more like:
# /sbin/modprobe i915
or
$ sudo /sbin/modprobe i915
(Note: the leading # or $ is to denote the shell prompt, with # implying a root shell, and $ representing the shell prompt of a non-root user.)



