Re: Fwd: Linux-gpib driver install fails to complete

"Christian Grosz" <[email protected]> Tue, 10 Mar 2026 19:38:29 -0000
Newsgroups gmane.linux.hardware.gpib.general
Message-ID <[email protected]>
On Tue, March 10, 2026 12:33 pm, John wrote:
> Just on another general note, having to remember to run 'sudo
> gpib_config' to load the device from the config file every time the
> computer is rebooted is rather tedious. Can this command be added to a
> startup script somewhere so that it runs automatically at root level when
> linux starts?

I solved that with an udev entry:

/etc/udev/rules.d/98-gpib-generic.rules
----
SUBSYSTEM=="module", ACTION=="add", DEVPATH=="/module/gpib_common",
RUN+="/usr/local/sbin/gpib_config"
----

Christian