Ubuntu和ROS一起愉快玩耍
Ubuntu和ROS重要的两个中文网址:
Ubuntu:http://cn.ubuntu.com/
ROS:http://wiki.ros.org/cn
Robots and drones on Ubuntu(ROS)
1 https://www.ubuntu.com/internet-of-things/robotics
2 http://wiki.ros.org/ROS/Installation
Latest news
Tunnel Drones — Aerolion and Ubuntu make anything possible.
Introducing S.L.A.M.dunk, the new drone development kit from Parrot.
ROScon — the robotics conference for developers.
Robots that can see, hear and think
ROS (Robotic Operating System) is built on Ubuntu. With powerful computer vision and AI libraries and a wide choice of supported sensors, it’s the most popular robotic development environment for everything from autonomous drones to self-driving cars.
A path to production
Commercialise your robotics projects with Ubuntu Core. Leverage a large community and standard, open source solutions for a faster route to market. Continuously improve your robots and drones wherever they are in the field, with a fail-safe remote upgrade system.
Built-in security
Ubuntu Core delivers application containment, restricted file accessibility and read-only files, to ensure the integrity of the software running on your robots. The result is guaranteed security, from the drivers to the apps that run on your robots.
New software revenues
Offer an appstore for your drones and robots and you can generate revenue from updates, add-on functionality, support services or complete reconfigurations.
Will your next robot run on Ubuntu?
Ubuntu loves robotics
The most widely adopted platform for ROS, Ubuntu ran on an estimated 80% of robots at the last DARPA Robotics Challenge. In fact, it offers a wealth of libraries and hardware options, from smart IoT and robotics to AI development.
Learn more about developing robotics projects with Ubuntu — and deploying them with Ubuntu Core.
Want to learn more about developing with Ubuntu core?
Learn how to build or port apps for the next generation of Ubuntu.
![]() |
About | Support | Status | answers.ros.org![]() |
Search:
|
ROS Kinetic installation instructions
These instructions will install the ROS Kinetic Kame distribution, which is available for Ubuntu Wily (15.10) and Ubuntu Xenial (16.04 LTS), among other platform options.
To install our previous release, ROS Jade Turtle, please see the Jade installation instructions.
The previous long-term support release, ROS Indigo Igloo, is available for Ubuntu Trusty (14.04 LTS) and many other platforms. Please refer to the Indigo installation instructions if you need to use this version due to robot or platform compatibility reasons.
The links below contain instructions for installing ROS Kinetic Kame on various operating systems. You may also wish to look at robot-specific installation options instead.
Select Your PlatformSupported: Experimental: |
Wiki: ROS/Installation (last edited 2016-05-23 18:12:18 by jkay)
Creative Commons Attribution 3.0 | Find us on Google+
Ubuntu和ROS一起愉快玩耍的更多相关文章
- Ubuntu虚拟机+ROS+Android开发环境配置笔记
Ubuntu虚拟机+ROS+Android开发环境配置笔记 虚拟机设置: 1.本地环境:Windows 7:VMWare:联网 2.虚拟环境 :Ubuntu 14.04. 比較稳定,且支持非常多ROS ...
- ubuntu下ROS安装时sudo rosdep init和rosdep update的解决方法
问题: 在ubuntu上多次安装matlab选择合适的版本来调用摄像头,终于把系统搞坏了,重装系统后,ROS无法安装,每次安装到sudo rosdep init和rosdep update报错的问题, ...
- [转]Ubuntu下ROS开发环境搭建(QT+ros_qtc_plugin)
ROS与C++入门教程-搭建开发环境(QT+ros_qtc_plugin) PS : 在“安装ros_qtc_plugin插件”这一步中,原文提到“ Ubuntu 14.04使用apt-get方式安装 ...
- Ubuntu与ROS的Docker桌面系统与ROS在线练习课程(在线Linux虚拟机)
ROS在线练习课程正在逐步完善中,目前以ROS官网中文资料制作,可参考: https://www.shiyanlou.com/courses/854 邀请码 U23ERF8H 安装Ubuntu+RO ...
- Ubuntu 下 ROS Kinetic 的安装
安装环境为 Ubuntu 16.04 配置 Ubuntu 软件仓库 打开“设置”中的“软件和更新” 把 “restricted”.“universe” 和 “multiverse” 这三项勾上 勾完后 ...
- ubuntu安装ros indigo
版本是14.04.1 一.先配置 1.点击新立得软件包管理器,输入密码exbot123, 2,点击最上面一栏的设置,选择软件源,前四个打勾,后一个不打,把sevice america改成mainsev ...
- Ubuntu利用ROS搭建手机移动网络摄像头(Android)
所需设备 PC -> Ubuntu 16.04 - > ROS Kinetic Android系统手机 1.Android移动端APP下载安装 配置手机端:(一般默认即可RTSP) 2.源 ...
- 这些孩子在 Ubuntu 的 Linux 终端下玩耍
导读 我发现了一个孩子们在他们的计算机教室里玩得很开心的视频.我不知道他们在哪里,但我猜测是在印度尼西亚或者马来西亚.视频请自行搭梯子: https://youtu.be/z8taQPomp0Y 在L ...
- Ubuntu 16.04 ROS环境配置
最近新入职一家公司,是搞智能无人驾驶的,用的操作系统是Ubuntu和ros,之前没接触过ros系统,既然公司用那就必须的学习啊,话不多说先装它一个ros玩玩... 1. Ubuntu 安装 ROS K ...
随机推荐
- 九,微信小程序开发浅谈
最近在帮朋友做一款微信小程序(后面统称为小程序),有简单的交互,以及分享和支付功能.下面就简单的对小程序开发做一个简单的介绍,希望可以帮助大家!!! 当前的小程序我们是在windows系统里开发的,如 ...
- Markdown 编辑器使用指南
Markdown 编辑器使用指南 1.快捷键 加粗: Ctrl/Cmd + B 标题: Ctrl/Cmd + H 插入链接: Ctrl/Cmd + K 插入代码: Ctrl/Cmd + Shift + ...
- Mysql之库表操作(胖胖老师)
SQL概念:结构化查询语言(SQL = Structured Query Language),也是一种编程语言(数据库查询和程序设计语言),可以用于数据的存取及查询,更新,管理关系型数据库系统ps: ...
- vim 去除代码行号并正常缩进代码
先命令模式下输入 :%s/[ \t]*\d\{1,4\}/ 即使用正则表达式替换 后命令模式下输入 gg 调到行首 v 进入可视化 G 调到行尾 = 所有代码正常缩进
- vue中自定义组件(插件)
vue中自定义组件(插件) 原创 2017年01月04日 22:46:43 标签: 插件 在vue项目中,可以自定义组件像vue-resource一样使用Vue.use()方法来使用,具体实现方法: ...
- [HNOI2012]集合选数
题目描述 <集合论与图论>这门课程有一道作业题,要求同学们求出{1, 2, 3, 4, 5}的所有满足以 下条件的子集:若 x 在该子集中,则 2x 和 3x 不能在该子集中. 同学们不喜 ...
- [POI2006]ORK-Ploughing
Description Byteasar想耕种他那块矩形的田,他每次能耕种矩形的一边(上下左右都行),在他每次耕完后,剩下的田也一定是矩形,每块小区域边长为1,耕地的长宽分别为m和n,不幸的是Byte ...
- ●BZOJ 2752 [HAOI2012]高速公路(road)
题链: http://www.lydsy.com/JudgeOnline/problem.php?id=2752题解: 期望,线段树. 把每个路段看成一个点,那么对于l~R的操作,就可以转化为对l~r ...
- 在QEMU中调试ARM程序【转】
转自:http://linuxeden.com/html/develop/20100820/104409.html 最近我想调试一个运行在QEMU模拟ARM系统中的Linux程序.我碰到过一些麻烦,因 ...
- lombok安装与简易教程(一)
lombok简单的来讲就是在编译的时候,可以帮助我们生成getter与setter等方法,减少代码量.这可是一个好东西啊 1.eclipse安装lombok java -jar lombok.jar ...












