Changes between Version 1 and Version 2 of Hand/282/SoftwareSetup/Linux
- Timestamp:
- Jun 2, 2015, 8:27:31 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hand/282/SoftwareSetup/Linux
v1 v2 2 2 3 3 If you are using Ubuntu 14.04 (Trusty) in VirtualBox: 4 {{{ 4 5 sudo apt-get install virtualbox-guest-dkms 6 }}} 5 7 6 For all users of Ubuntu 14.04: 8 For all users of Ubuntu 14.04, install the dependencies: 9 {{{ 7 10 sudo apt-get install codeblocks build-essential wxgtk2.8-dev freeglut3-dev libpopt-dev libpoco-dev 11 }}} 12 13 Install the CTB serial port library: 14 {{{ 8 15 cd 9 wget https://iftools.com/download/ dtb/0.14/libctb-0.14.tar.gz16 wget https://iftools.com/download/ctb/0.14/libctb-0.14.tar.gz 10 17 tar xvf libctb-0.14.tar.gz 11 18 cd libctb-0.14/build … … 14 21 sudo cp ../include/ctb-0.14/*.h /usr/local/include/ctb-0.14/ 15 22 ldconfig 23 }}} 24 25 Install the Peak CAN driver: 26 {{{ 16 27 wget http://www.peak-system.com/fileadmin/media/linux/files/peak-linux-driver-7.14.tar.gz 17 28 tar xvf peak-linux-driver-7.14.tar.gz … … 20 31 sudo make install 21 32 sudo modprobe pcan 33 }}} 34 35 Install the BHand API and BHControl GUI source code: 36 {{{ 22 37 wget http://web.barrett.com/support/BarrettHand_Installer/bhand2015-06-02.tar.bz2 23 38 tar xvjf bhand2015-06-02.tar.bz2 39 }}} 24 40 41 Build the API and GUI: 42 {{{ 25 43 Launch Code::Blocks 26 44 Open the ~/BHand/API/BHand/BHand.cpb project file … … 30 48 Open the ~/Bhand/bhcontrol/bhcontrol.cpb project file 31 49 Build the project 50 }}}