bingo600 - I believe your howto needs several bits added to work with the 82357B
A couple notes from my attempt:
Cleanup old kernel headers to make room for the new ones.
----------------------------------------------------------
sudo rm -fR /root/*
The above command does not work but it won't give you any indication of that because of the -f
If you remove the -f you'll find the command won't work with sudo. If you switch to true root login(sudo su) it will work fine.
If you don't get this command to work properly you will run out of space when you proceed to the next step.
When everything is complete the module will load but it won't work by default.
We need to install fxload:
sudo apt-get install fxload
Then we need to get the Agilent 82357 firmware:
cd /opt
sudo wget
http://linux-gpib.sourceforge.net/firmware/gpib_firmware-2008-08-10.tar.gzsudo tar xvzf gpib_firmware-2008-08-10.tar.gz
Then we need to copy the firmware to /usr/share/usb/agilent
cd /opt/gpib_firmware-2008-08-10/agilent_82357a
sudo cp measat_releaseX1.8.hex /usr/share/usb/agilent_82357a/
I believe /etc/gpib.conf should also be modified to support the 82357:
board_type = "agilent_82357a" /* type of interface board being used */
At this point the 82357 will work great and load at boot.