Não é possível instalar as caixas do GNOME

1

Não consigo instalar as caixas do GNOME:

$ sudo apt-get install gnome-boxes
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package gnome-boxes is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'gnome-boxes' has no installation candidate

Eu tentei compilar as caixas do GNOME:

$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
[...]
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.22... yes
checking whether NLS is requested... yes
checking for intltool >= 0.40.0... 0.50.2 found
checking for intltool-update... /usr/bin/intltool-update
checking for intltool-merge... /usr/bin/intltool-merge
checking for intltool-extract... /usr/bin/intltool-extract
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for perl... /usr/bin/perl
checking for perl >= 5.8.1... 5.14.2
checking for XML::Parser... ok
checking for gobject-introspection... configure: error: gobject-introspection-1.0 is not installed

Mas o gobject-introspection já está instalado:

$ sudo apt-get install gobject-introspection 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
gobject-introspection is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Por que não consigo instalar as caixas do GNOME?

    
por Simon 09.11.2012 / 13:28

3 respostas

2

Eu tenho o GNOME Boxes instalado e rodando no Ubuntu 12.10 Quantal Quetzal (na verdade Ubuntu Gnome Remix com o GNOME3 PPA ativado).

De acordo com a barra de lançamento , você pode encontrar o pacote gnome-boxes no universo repository que é ativado por padrão. Verifique se ainda é o caso, ressincronize os arquivos de índice de pacotes, atualize e tente instalar as caixas do GNOME novamente:

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install gnome-boxes

Se não funcionar, talvez você possa adicionar o PPA do GNOME3 e tentar instalá-lo novamente, já que parece ser a única diferença entre nossas configurações:

sudo add-apt-repository ppa:gnome3-team/gnome3

Este PPA oferece pacotes que não foram incluídos por padrão no Ubuntu. Tenha cuidado para não atualizar e removê-lo depois, se você não quiser.

Rémi.

    
por remjg 10.11.2012 / 12:22
1

Isso provavelmente é porque você está executando a versão de 32 bits do Ubuntu. De acordo com a entrada do Launchpad para o GNOME Boxes, ela está disponível apenas para a versão de 64 bits do Ubuntu 12.10 (Uma postagem em webupd8.org diz isso é devido a um bug).

Felizmente, isso parece que será corrigido no Ubuntu 13.04, porque o Launchpad diz que o pacote estará disponível para as arquiteturas i386 e amd64.

    
por iBelieve 01.02.2013 / 17:27
0

Para citar outro, isso corrigiu meu problema ao executar ./configure

  

Você instalou o pacote libgirepository1.0-dev ? Eu acho que é o pacote que contém o arquivo gobject-introspection-1.0.pc necessário quando o script de configuração é executado. Eu não sei como é o nome do Linux Mint12 (esse nome é para o Ubuntu).

    
por user135061 24.02.2013 / 00:36