1

Can't install Ruby via

sudo apt-get install ruby-full

The following packages have unmet dependencies : Ruby, ruby-dev, libtcltk-ruby, ri

E: Unable to correct problems, you have held broken packages.

## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://am.archive.ubuntu.com/ubuntu/ xenial universe
# deb-src http://am.archive.ubuntu.com/ubuntu/ xenial universe
deb http://am.archive.ubuntu.com/ubuntu/ xenial-updates universe
# deb-src http://am.archive.ubuntu.com/ubuntu/ xenial-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://am.archive.ubuntu.com/ubuntu/ xenial multiverse
# deb-src http://am.archive.ubuntu.com/ubuntu/ xenial multiverse
deb http://am.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
# deb-src http://am.archive.ubuntu.com/ubuntu/ xenial-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://am.archive.ubuntu.com/ubuntu/ xenial-backports restricted universe multiverse
# deb-src http://am.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu xenial partner
# deb-src http://archive.canonical.com/ubuntu xenial partner

deb http://security.ubuntu.com/ubuntu xenial-security restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
deb http://security.ubuntu.com/ubuntu xenial-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe
deb http://security.ubuntu.com/ubuntu xenial-security multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse
~          
Zhirayr
  • 125

2 Answers2

1

It looks like you're missing the first lines from your /etc/apt/sources.list file. Put them in manually at the start of your file:

# deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/main/binary-i386/

# deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ dists/precise/restricted/binary-i386/
# deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release amd64 (20120425)]/ precise main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://am.archive.ubuntu.com/ubuntu/ xenial main restricted
deb-src http://am.archive.ubuntu.com/ubuntu/ xenial main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://am.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
deb-src http://am.archive.ubuntu.com/ubuntu/ xenial-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://am.archive.ubuntu.com/ubuntu/ xenial universe
deb-src http://am.archive.ubuntu.com/ubuntu/ xenial universe
deb http://am.archive.ubuntu.com/ubuntu/ xenial-updates universe
deb-src http://am.archive.ubuntu.com/ubuntu/ xenial-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 

I know this looks a little funny, but I'd say that's what's lacking in your file. Copy and paste these to the top of /etc/apt/sources.list and run sudo apt-get update and then try your install.

anonymous2
  • 4,298
  • 1
    Well, the "am" version instead of the "ca" version of the above to match the poster's other archives. – ubfan1 May 25 '16 at 16:16
  • anonymous2, ubfan1, Terrance, Ray Thank you very much. It worked, I've installed ubuntu from scratch, and didn't change anything, I don't even know why these sources have been missing. Thank you for help. – Zhirayr May 25 '16 at 22:23
-1

Using rbenv with ruby-build plugin typing:

$ rbenv install 2.x.x

For installing rbenv, see instructions at GitHub Project's page.

See also the ruby-build project page.

Eliah Kagan
  • 117,780