Changes between Version 1 and Version 2 of Hand/282/SoftwareSetup/Linux


Ignore:
Timestamp:
Jun 2, 2015, 8:27:31 PM (9 years ago)
Author:
bz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Hand/282/SoftwareSetup/Linux

    v1 v2  
    22
    33If you are using Ubuntu 14.04 (Trusty) in VirtualBox:
     4{{{
    45sudo apt-get install virtualbox-guest-dkms
     6}}}
    57
    6 For all users of Ubuntu 14.04:
     8For all users of Ubuntu 14.04, install the dependencies:
     9{{{
    710sudo apt-get install codeblocks build-essential wxgtk2.8-dev freeglut3-dev libpopt-dev libpoco-dev
     11}}}
     12
     13Install the CTB serial port library:
     14{{{
    815cd
    9 wget https://iftools.com/download/dtb/0.14/libctb-0.14.tar.gz
     16wget https://iftools.com/download/ctb/0.14/libctb-0.14.tar.gz
    1017tar xvf libctb-0.14.tar.gz
    1118cd libctb-0.14/build
     
    1421sudo cp ../include/ctb-0.14/*.h /usr/local/include/ctb-0.14/
    1522ldconfig
     23}}}
     24
     25Install the Peak CAN driver:
     26{{{
    1627wget http://www.peak-system.com/fileadmin/media/linux/files/peak-linux-driver-7.14.tar.gz
    1728tar xvf peak-linux-driver-7.14.tar.gz
     
    2031sudo make install
    2132sudo modprobe pcan
     33}}}
     34
     35Install the BHand API and BHControl GUI source code:
     36{{{
    2237wget http://web.barrett.com/support/BarrettHand_Installer/bhand2015-06-02.tar.bz2
    2338tar xvjf bhand2015-06-02.tar.bz2
     39}}}
    2440
     41Build the API and GUI:
     42{{{
    2543Launch Code::Blocks
    2644Open the ~/BHand/API/BHand/BHand.cpb project file
     
    3048Open the ~/Bhand/bhcontrol/bhcontrol.cpb project file
    3149Build the project
     50}}}