< >
Home » ROS入门教程 » ROS1入门教程-利用脚本update_ros1source.sh更新ROS1软件源

ROS1入门教程-利用脚本update_ros1source.sh更新ROS1软件源

ROS1入门教程-利用脚本update_ros1source.sh更新ROS1软件源

说明:

  • 介绍如何利用脚本方便变更ROS1软件源

背景:

  • ROS1的官方源在国内网络环境更新软件速度很慢,可以使用国内的软件源替代,速度更快

镜像支持:

  • 支持的ros1源
- ROS官方
http://packages.ros.org/ros/
- 中国科学技术大学
http://mirrors.ustc.edu.cn/ros/
- 清华大学
http://mirrors.tuna.tsinghua.edu.cn/ros/
- 北京外国语大学
http://mirrors.bfsu.edu.cn/ros/
- 上海交通大学
http://mirrors.sjtug.sjtu.edu.cn/ros/
- 阿里
http://mirrors.aliyun.com/ros/

使用介绍: 

  • 使用方法
Script Usage:
-----------------------------
sudo ./update_ros1source.sh
###set sources from packages.ros.org####
-----------------------------
sudo ./update_ros1source.sh ustc
###set sources from mirrors.ustc.edu.cn####
-----------------------------
sudo ./update_ros1source.sh sjtu
###set sources from mirrors.sjtug.sjtu.edu.cn####
-----------------------------
sudo ./update_ros1source.sh aliyun
###set sources from mirrors.aliyun.com####
-----------------------------
sudo ./update_ros1source.sh tsinghua
###set sources from mirrors.tuna.tsinghua.edu.cn####
-----------------------------
sudo ./update_ros1source.sh bfsu
###set sources from mirrors.bfsu.edu.cn####
-----------------------------
sudo ./update_ros1source.sh restore
###restore sources from backup file####

使用: 

  • 使用官方源(推荐)
rm update_ros1source.sh ; wget https://gitee.com/ncnynl/ros-scripts/raw/master/update_ros1source.sh ; sudo chmod +x ./update_ros1source.sh; sudo ./update_ros1source.sh
  • 使用阿里源(推荐)
rm update_ros1source.sh ; wget https://gitee.com/ncnynl/ros-scripts/raw/master/update_ros1source.sh ; sudo chmod +x ./update_ros1source.sh; sudo ./update_ros1source.sh aliyun
  • 使用清华大学源
rm update_ros1source.sh ; wget https://gitee.com/ncnynl/ros-scripts/raw/master/update_ros1source.sh ; sudo chmod +x ./update_ros1source.sh; sudo ./update_ros1source.sh tsinghua
  • 使用北京外国语大学源
rm update_ros1source.sh ; wget https://gitee.com/ncnynl/ros-scripts/raw/master/update_ros1source.sh ; sudo chmod +x ./update_ros1source.sh; sudo ./update_ros1source.sh bfsu
  • 使用中国科学技术大学源
rm update_ros1source.sh ; wget https://gitee.com/ncnynl/ros-scripts/raw/master/update_ros1source.sh ; sudo chmod +x ./update_ros1source.sh; sudo ./update_ros1source.sh ustc
  • 使用上海交通大学源
rm update_ros1source.sh ; wget https://gitee.com/ncnynl/ros-scripts/raw/master/update_ros1source.sh ; sudo chmod +x ./update_ros1source.sh; sudo ./update_ros1source.sh sjtu

恢复:

 - 恢复使用原来的源

rm update_ros1source.sh ; wget https://gitee.com/ncnynl/ros-scripts/raw/master/update_ros1source.sh ; sudo chmod +x ./update_ros1source.sh; sudo ./update_ros1source.sh restore

纠错,疑问,交流: 请进入讨论区点击加入Q群

获取最新文章: 扫一扫右上角的二维码加入“创客智造”公众号


标签: ros1入门教程