Install Barrett System with Ubuntu 12.04 LTS Precise Pangolin and Xenomai 2.6.1 - 32-Bit External PC
Download and Install 32-bit Ubuntu 12.04 LTS Precise Pangolin from official image:
http://web.barrett.com/support/WAM_Installer/ubuntu-12.04-desktop-i386.iso
With Username: robot
Password: WAM
All other options default.
Install your new kernel from debian
Log in to your new system, open a terminal, and get new kernel
cd /usr/src sudo wget http://web.barrett.com/support/WAM_Installer/linux-image-3.2.21-xenomai-2.6.1.barrett_i386.deb sudo wget http://web.barrett.com/support/WAM_Installer/linux-headers-3.2.21-xenomai-2.6.1.barrett_i386.deb #Install from Debian sudo dpkg -i linux-image-3.2.21-xenomai-2.6.1.barrett_i386.deb sudo dpkg -i linux-headers-3.2.21-xenomai-2.6.1.barrett_i386.deb #Cleanup sudo rm *.barrett_i386.deb #Install Xenomai sudo wget http://download.gna.org/xenomai/stable/xenomai-2.6.1.tar.bz2 sudo tar -xjf xenomai-2.6.1.tar.bz2 sudo rm xenomai-2.6.1.tar.bz2 #Some updating for GRUB sudo update-initramfs -c -k "3.2.21-xenomai-2.6.1"
Set up Xenomai Group Permissions and GRUB 2
sudo addgroup xenomai sudo usermod -aG xenomai robot # now use the following command to identify the xenomai group id number egrep -i "^xenomai" /etc/group #find the group number that corresponds to the xenomai group. Usually: 1001 - will be referred to as <gid> #Update rc.local sudo gedit /etc/rc.local #Copy the following as the last command before exit 0 /usr/xenomai/sbin/rtcanconfig rtcan0 -b 1000000 -c none start /usr/xenomai/sbin/rtcanconfig rtcan1 -b 1000000 -c none start #Save and close the updated file # Open the Grub2 file for editing gksudo gedit /etc/default/grub # Find the line of text that looks similar to below. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" # Add the kernel option "xeno_nucleus.xenomai_gid=<gid>". Make sure the use the correct groud id number! # The modified entry should look similar to: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash xeno_nucleus.xenomai_gid=1001" # Save and close the updated menu file # Update your grub2 to reflect recent changes sudo update-grub #Install Grub Customizer to graphically make our new kernel the default sudo add-apt-repository ppa:danielrichter2007/grub-customizer sudo apt-get update sudo apt-get install grub-customizer #Open the Grub 2 GUI grub-customizer #Click on entry Ubuntu, with Linux 3.2.21-xenomai-2.6.1 #Use the up arrow to move the entry as high as possible #Save and Exit
Build the Xenomai userspace libs
cd /usr/src/xenomai-2.6.1 sudo ./configure --enable-dlopen-skins sudo make sudo make install sudo chgrp xenomai /dev/rtheap sudo chgrp xenomai /dev/rtp* sudo ldconfig
Restart and Boot Your New RT Kernel
sudo shutdown -r now
Test Your RT Kernel
/usr/xenomai/bin/xeno-test
Install Barrett Technology Software
sudo apt-get update sudo apt-get install g++ cmake libncurses5-dev spell subversion ssh python-dev python-argparse sudo apt-get install libeigen2-dev libboost1.46-all-dev libgsl0-dev libxenomai-dev sudo apt-get install libboost-thread-dev libboost-python-dev wget http://web.barrett.com/support/WAM_Installer/libconfig-barrett_1.4.5-1_i386.deb sudo dpkg -i libconfig-barrett_1.4.5-1_i386.deb rm libconfig-barrett_1.4.5-1_i386.deb wget http://web.barrett.com/support/WAM_Installer/libbarrett-1.2.1_i686.deb sudo dpkg -i libbarrett-1.2.1_i686.deb rm libbarrett-1.2.1_i686.deb sudo bash echo /usr/xenomai/lib/ | cat > /etc/ld.so.conf.d/xenomai.conf ldconfig exit
That's it!! Enjoy your new 12.04 32-Bit PC!!
Last modified 11 years ago
Last modified on Sep 24, 2013, 6:20:43 PM