之前安装不成功是因为校园网无法访问源的问题。

Ubuntu ARM install of ROS Indigo

There are currently builds of ROS for Ubuntu Trusty armhf. These builds include most but not all packages, and save a considerable amount of time compared to doing a full source-based installation.

Supported/Tested Platforms

If this install works for your platform, please list it here:

  • Inforce IFC6410 (Qualcomm Snapdragon 600 Processor)

  • eInfochips Eragon600 (Qualcomm Snapdragon 600 Processor)

  • Nvidia Jetson TK1

  • Odroid C1, X, U2, U3, and XU3 (Ubuntu 14.04)
  • SolidRun CuBox-i Pro with Ubuntu 14.04 LTS (tested; works)

  • BeagleBone Black (Ubuntu 14.04)

  • Parallella http://www.parallella.org (note default shell is not bash)

  • RadxaRock http://radxa.com/ (Ubuntu 14.04)

  • Pandaboard ES (Ubuntu 14.04)
  • Gumstix Overo Fire with Ubuntu Core 14.04 rootfs

  • Wandboard Quad (with Robert Nelson's kernel and Ubuntu 14.04) http://wandboard.org

  • Raspberry Pi 2 (with Ubuntu 14.04 2015-03-02 https://wiki.ubuntu.com/ARM/RaspberryPi)

  • Google Nexus 5 (with Ubuntu Touch)

Installation

Configure your Ubuntu repositories

Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guidefor instructions on doing this.

Set your Locale

Boost and some of the ROS tools require that the system locale be set. You can set it with:

  • sudo update-locale LANG=C LANGUAGE=C LC_ALL=C LC_MESSAGES=POSIX

Setup your sources.list

Setup your computer to accept software from the ARM mirror on packages.ros.org.

Due to limited resources, there are only active builds for Trusty armhf (14.04), since this is the stable, long-term Ubuntu release and is the most-requested distribution in conjunction with ROS Indigo.

  • Ubuntu 14.04 (Trusty armhf)

    • sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu trusty main" > /etc/apt/sources.list.d/ros-latest.list'

Set up your keys

  • wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -O - | sudo apt-key add -

Installation

First, make sure your Debian package index is up-to-date:

  • sudo apt-get update

There are many different libraries and tools in ROS - not all compile fully on ARM. You can also install ROS packages individually.

  • ROS-Base: (Bare Bones) ROS package, build, and communication libraries. No GUI tools.

    • sudo apt-get install ros-indigo-ros-base

Add Individual Packages

  • You can install a specific ROS package (replace underscores with dashes of the package name):

    • sudo apt-get install ros-indigo-PACKAGE
      • e.g.
      sudo apt-get install ros-indigo-navigation

To find available packages, use:

apt-cache search ros-indigo

The Ubuntu ARM package status is available here

Install Sizes

Base Package

Total Install Size

407 MB

572 MB

Initialize rosdep

Before you can use ROS, you will need to install and initialize rosdeprosdep enables you to easily install system dependencies for source you want to compile and is required to run some core components in ROS.

sudo apt-get install python-rosdep
sudo rosdep init
rosdep update

Environment setup

It's convenient if the ROS environment variables are automatically added to your bash session every time a new shell is launched:

echo "source /opt/ros/indigo/setup.bash" >> ~/.bashrc
source ~/.bashrc

If you have more than one ROS distribution installed, ~/.bashrc must only source the setup.bash for the version you are currently using.

If you just want to change the environment of your current shell, you can type:

source /opt/ros/indigo/setup.bash

If you use zsh instead of bash you need to run the following commands to set up your shell:

echo "source /opt/ros/indigo/setup.zsh" >> ~/.zshrc
source ~/.zshrc

Getting rosinstall

rosinstall is a frequently used command-line tool in ROS that is distributed separately. It enables you to easily download many source trees for ROS packages with one command.

To install this tool on Ubuntu, run:

sudo apt-get install python-rosinstall

Verifying OS name

Make sure your OS name defined at /etc/lsb-release is as the following. Since ros does not recognize Linaro as an OS, this is necessary. The following is for Ubuntu 14.04, trusty. Modify the release number and name as per your target.

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04"

Build farm status

The packages that you installed were built by ROS build farm. You can check the status of individual packages here.

Tutorials

Now, to test your installation, please proceed to the ROS Tutorials.

Obtain source code of the installed packages

If you know the location of the repository of each package, you know you can obtain all the code there. But it's often hard even for experienced developers to reach the correct maintained repository of certain packages. Also, in some situations you just want to get the source of the released, installed version of a package. The methods described here the best for these cases.

  • In earlier days of ROS (supposedly electric or earlier) you can obtain by the way noted in this question.

  • Now just apt-get source (sudo not needed) as following. You don't even need to explicitly specify deb-src entry etc. This downloads from the server all the files in the released version of the package (i.e. things not installed in the installation rule (e.g. CMakeLists.txt) are also included).

    $ apt-get source ros-hydro-laser-pipeline

    Drawback might be that you have to specifify a single, exact package name (asterisk doesn't work).

Using RVIZ

It is not recommended to run rviz on most ARM-based CPUs. They're generally too slow, and the version of OpenGL that is provided by the software (mesa) libraries it not new enough to start rviz.

'IF' you have a powerful board with a GPU and vendor-supplied OpenGL libraries, it might be possible to run rviz. The IFC6410 and the NVidia Jetson TK1 are two such boards where rviz will run, although neither is fast enough for graphics-heavy tasks such as displaying pointclouds.

Note that rviz will segfault if you have the GTK_IM_MODULE environment variable set, so it's best to unset it in your ~/.bashrc:

 

转载于:https://www.cnblogs.com/CZM-/p/5939607.html

ARM TK1 安装ROS- indigo相关推荐

  1. 笔记本/TK1安装ROS Indigo教程

    TK1(远程主机)系统环境: ubuntu14.04 + ros-indigo-desktop 笔记本电脑(主机)系统环境: ubuntu14.04 + ros-indigo-desktop-full ...

  2. TX1 安装 ROS Indigo

    该教程适用于32位的系统 Ubuntu ARM install of ROS Indigo There are currently builds of ROS for Ubuntu Trusty ar ...

  3. Armhf 中安装 ROS Indigo 的方法

    Ubuntu ARM install of ROS Indigo 溪西创客小屋 There are currently builds of ROS for Ubuntu Trusty armhf. T ...

  4. 机器人操作系统ROS Indigo 入门学习(1)——安装ROS Indigo【转】

    转自:http://blog.csdn.net/bobsweetie/article/details/43638761 Ubuntu14.04安装ROS Indigo 一.安装ROS 1.1配置Ubu ...

  5. 学习使用turtlebot2——安装ROS Indigo系统

    最近在学习使用turtlebot2,特此做一些学习记录. 安装ROS前要先决定自己电脑的Ubuntu(乌班图)系统.现在学习ROS常使用的Ubuntu系统有Ubuntu 16.04 和Ubuntu14 ...

  6. ubuntu安装ros indigo

    版本是14.04.1 一.先配置 1.点击新立得软件包管理器,输入密码exbot123, 2,点击最上面一栏的设置,选择软件源,前四个打勾,后一个不打,把sevice america改成mainsev ...

  7. ARM TK1 安装kinect驱动

    首先安装usb库 $ git clone https://github.com/libusb/libusb.git 编译libusb需要的工具 $ sudo apt-get install autoc ...

  8. Ubuntu14.04中安装ROS Indigo(亲测)

    1)配置Ubuntu软件更新选项: System Settings -> Software & Updates 选项勾选如下所示 main universe restricted mul ...

  9. linux怎么安装ros系统,ubuntu14.04安装ROS indigo的详细图解步骤

    ROS(RobotOperating System)为开源的机器人操作系统,Ubuntu版本中的ROS的安装步骤如下: 1.配置Ubuntu知识库 安装ROS前要先进行Ubuntu知识库的配置,按照& ...

最新文章

  1. oracle的乐观锁和悲观锁
  2. 【08】Effective Java - 异常
  3. css dl图片布局,经典图文列表以及CSS布局切换
  4. 计算机网络按信号频带占用方式分为,《计算机网络及组网技术》第2阶段测试题....
  5. 使用百度云加速防apache的ab测试
  6. Linux系统启动过程,grub重装。
  7. ssh -CT -o BatchMode=yes 用户名@主机名
  8. Zerotier Moon服务器配置
  9. getdate() java_JAVA获得当前时间的几种方法
  10. 酷q服务器未响应,酷Q怎么了,停运后,其他机器框架,该怎么版
  11. 如何高效填写软件测试缺陷报告?(送缺陷报告模板)
  12. [人工智能-综述-9]:科学计算、大数据分析、人工智能、机器学习、深度学习全面比较
  13. “校内网”将不存在,“校内网”更名为“人人网”
  14. UML-类 图 (2)
  15. Ubuntu下软件包的清理与删除
  16. 2023年西安Java培训机构十强榜单出炉,快来看看哪家榜上有名~
  17. 清华计算机徐华简介,徐华
  18. H5 Handlebars的简单使用
  19. windows rid劫持
  20. 哪些行业可以申请高新技术企业?

热门文章

  1. 公司电脑监控软件如何管控员工上网行为?
  2. Zuul网关的安全策略
  3. mysql 没有 advisor_MySQL之安装美团点评的SQLAdvisor
  4. 智慧水站送水票桶装水v1.0.26
  5. 小丑2019_“小丑规则”
  6. 百度校招面试经历及总结(已发offer)
  7. 基于emWin的WAV,MP3软解软件播放器,带类似千千静听频谱,含uCOS-III和FreeRTOS两个版本...
  8. 我是如何失去团队掌控的?
  9. 使用AccessibilityService带你自动安装软件以及自动添加微信好友
  10. win10更改计算机名无法连接网络,Win10宽带无法连接提示调制解调器报告了一个错误原因及解决方法...