MPBM Installation on Linux
Download MPBM from Github.
Install pyusb. On Ubuntu, this can be done by running:
sudo apt-get install python-usbCreate a udev file for the X6500 by creating a new file at
/etc/udev/rules.d/90-x6500.rulescontaining:SUBSYSTEM=="usb", ATTR{idVendor}=="0403", ATTR{idProduct}=="6001", MODE="0660", GROUP="plugdev"This file should be created with root permissions, e.g., by running:
sudo nano /etc/udev/rules.d/90-x6500.rulesCreate a blacklist for the
ftdi_siomodule by addingblacklist ftdi_sioto the last line of/etc/modprobe.d/blacklist.conf. Root permissions are needed for this as well.Remove the ftdi_sio module in case it is loaded:
sudo rmmod ftdi_sioYou may need to add your user to the
plugdevgroup. To find out if you are in the group, run:cat /etc/group | grep plugdevYou should see something like:
plugdev:x:46:usernamewhere
usernameis your user name. If you don't see your user name there, run:sudo usermod -a -G plugdev usernamereplacing
usernamewith your user name.
