Cant not install ROS on Kubunto 14 02 [closed]

asked 2015-02-28 11:29:23 -0500

Luis_Neves_555 gravatar image

updated 2015-03-01 03:05:18 -0500

gvdhoorn gravatar image

I am trying to install ROS on Kubunto 14.02 using this script:

#!/bin/sh

echo "Installing ROS Indigo on Ubuntu 14.04 Trusty"
## This commands were taken from http://www.ros.org/wiki/hydro/Installation/Ubuntu
## This script must run using sudo

# Check if this script is being run as root
if [ `whoami` != "root" ]
then
  echo "This script must be ran as root. Use: sudo ./install_ROS.sh"
  exit 1
fi

# Add the ROS sources to apt
echo "deb http://packages.ros.org/ros/ubuntu trusty main" > /etc/apt/sources.list.d/ros-latest.list

# Add ROS keys
wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -O - | apt-key add -

# Update the APT sources
apt-get update

# Perform full ROS installation
# In systems with low memory, installing everything simultaneously can lead to 
#problems. To prevent this, we should first install texlive, then proceed with ROS.
apt-get -y install ros-indigo-desktop-full
# Install additional ros packages
apt-get -y install ros-indigo-hector-quadrotor ros-indigo-turtlebot-simulator ros-indigo-ros-control ros-indigo-effort-controllers ros-indigo-joint-state-controller

rosdep init

When i run this script on the terminal i get this errors:

:~$ sudo sh install_ROS.sh                                           
Installing ROS Indigo on Ubuntu 14.04 Trusty
--2015-02-28 16:56:01--  https://raw.githubusercontent.com/ros/rosdistro/master/ros.key
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.31.18.133
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.31.18.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1162 (1,1K) [application/octet-stream]
Saving to: ‘STDOUT’

100%[====================================================================================>] 1.162       --.-K/s   in 0,002s  

2015-02-28 16:56:01 (719 KB/s) - written to stdout [1162/1162]

OK
Ign http://extras.ubuntu.com trusty InRelease
Hit http://extras.ubuntu.com trusty Release.gpg                                
Hit http://extras.ubuntu.com trusty Release                                    
Hit http://extras.ubuntu.com trusty/main Sources                               
Hit http://extras.ubuntu.com trusty/main amd64 Packages                        
Hit http://packages.ros.org trusty InRelease                                   
Hit http://extras.ubuntu.com trusty/main i386 Packages                         
Hit http://packages.ros.org trusty/main amd64 Packages                         
Hit http://packages.ros.org trusty/main i386 Packages                          
Ign http://extras.ubuntu.com trusty/main Translation-pt_PT                     
Ign http://extras.ubuntu.com trusty/main Translation-pt                        
Ign http://extras.ubuntu.com trusty/main Translation-pt_BR                     
Ign http://extras.ubuntu.com trusty/main Translation-en                        
Ign http://packages.ros.org trusty/main Translation-pt_PT                      
Ign http://packages.ros.org trusty/main Translation-pt                         
Ign http://packages.ros.org trusty/main Translation-pt_BR                      
Ign http://packages.ros.org trusty/main Translation-en                         
Ign http://security.ubuntu.com trusty-security InRelease                       
Hit http://security.ubuntu.com trusty-security Release.gpg                     
Hit http://security.ubuntu.com trusty-security Release  
Hit http://security.ubuntu.com trusty-security/main Sources                    
Hit http://security.ubuntu.com trusty-security/restricted Sources              
Hit http://security.ubuntu.com trusty-security/universe Sources                
Hit http://security.ubuntu.com trusty-security/multiverse Sources              
Hit http://security.ubuntu.com trusty-security/main amd64 Packages             
Hit http://security.ubuntu.com trusty-security/restricted amd64 Packages       
Hit http://security.ubuntu.com trusty-security/universe amd64 Packages         
Hit http://security.ubuntu.com trusty-security/multiverse amd64 Packages       
Hit http://security.ubuntu.com trusty-security/main i386 Packages              
Hit http://security ...
(more)
edit retag flag offensive reopen merge delete

Closed for the following reason question is not relevant or outdated by tfoote
close date 2015-04-05 15:41:36.709659

Comments

Can you verify that the error still happens today? Maybe there was just some deb package server down??

Wolf gravatar image Wolf  ( 2015-03-01 07:44:03 -0500 )edit