无法安全地用该源进行更新,所以默认禁用该源 E: 无法定位软件包

我们安装软件的时候经常会出现无法安全地用该源进行更新,所以默认禁用该源 以及 E: 无法定位软件包

sudo apt install ros-noetic-gmapping

在这里插入图片描述
后面才发现是我把 noetic 拼写错了!
无法安全地用该源进行更新,所以默认禁用该源 E: 无法定位软件包_第1张图片

2.设置安装源

官方默认安装源:

sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'

或来自国内清华的安装源

sudo sh -c '. /etc/lsb-release && echo "deb http://mirrors.tuna.tsinghua.edu.cn/ros/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/ros-latest.list'

或来自国内中科大的安装源

sudo sh -c '. /etc/lsb-release && echo "deb http://mirrors.ustc.edu.cn/ros/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/ros-latest.list'

PS:

回车后,可能需要输入管理员密码
建议使用国内资源,安装速度更快。

3.设置key

sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654

4.安装

首先需要更新 apt(以前是 apt-get, 官方建议使用 apt 而非 apt-get),apt 是用于从互联网仓库搜索、安装、升级、卸载软件或操作系统的工具。

sudo apt update

首先需要更新 apt(以前是 apt-get, 官方建议使用 apt 而非 apt-get),apt 是用于从互联网仓库搜索、安装、升级、卸载软件或操作系统的工具。
无法安全地用该源进行更新,所以默认禁用该源 E: 无法定位软件包_第2张图片
无法安全地用该源进行更新,所以默认禁用该源 E: 无法定位软件包_第3张图片
无法安全地用该源进行更新,所以默认禁用该源 E: 无法定位软件包_第4张图片

rosdep update

解决rosdep update一直timeout的问题
改域名服务器

如果出现类似如下错误的话。


reading in sources list data from /etc/ros/rosdep/sources.list.d
ERROR: unable to process source [https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/osx-homebrew.yaml]:
    <urlopen error [Errno 111] Connection refused> (https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/osx-homebrew.yaml)
ERROR: unable to process source [https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/base.yaml]:
    <urlopen error [Errno 111] Connection refused> (https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/base.yaml)

打开终端(Ctrl+Alt+T)

**`sudo gedit /etc/resolv.conf`**

将原有的nameserver这一行注释,并添加以下两行:

nameserver 8.8.8.8 # google域名服务器
nameserver 8.8.4.4 # google域名服务器

无法安全地用该源进行更新,所以默认禁用该源 E: 无法定位软件包_第5张图片

还不行的话,试试下面的!
删除源
cd /etc/apt/sources.list.d
ls
在这里插入图片描述
sudo rm ros-latest.list
ls
在这里插入图片描述
无法安全地用该源进行更新,所以默认禁用该源 E: 无法定位软件包_第6张图片

你可能感兴趣的:(Linux系统设置,经验分享)