Problem Instalando fontes MS para o Libre Office @ Ubuntu 14.04 codename Trusty

0

MEU PRIMEIRO PASSO NO TERMINAL:

aivinor@mcph:~$ sudo apt-get install ttf-mscorefonts-installer
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  imagemagick-common liblqr-1-0 libmagickcore5 libmagickcore5-extra
  libmagickwand5 libnetpbm10 linux-headers-3.13.0-32
  linux-headers-3.13.0-32-generic linux-image-3.13.0-32-generic
  linux-image-extra-3.13.0-32-generic netpbm
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  cabextract
The following NEW packages will be installed:
  cabextract ttf-mscorefonts-installer
0 upgraded, 2 newly installed, 0 to remove and 32 not upgraded.
Need to get 70.6 kB of archives.
After this operation, 282 kB of additional disk space will be used.
Do you want to continue? [Y/n] y

MEU SEGUNDO PASSO:

 WARNING: The following packages cannot be authenticated!
          cabextract ttf-mscorefonts-installer
   Install these packages without verification? [y/N] y
   0% [Connecting to 172.16.19.10 (172.16.19.10)]
   Err http://in.archive.ubuntu.com/ubuntu/ trusty/universe cabextract amd64 1.4-4

NESTE PONTO, ENCONTRE UM NÚMERO DE ERROS QUE REIVINDICAM A INCAPACIDADE DE CONECTAR A 172.16.19.10 COMO A CONEXÃO TERMINOU - NÃO TENHO PROBLEMAS NA INTERNET DIZ QUE NÃO FOI FEDIDO E TEM LINKS COMO

in.archive.ubuntu.com/ubuntu/ trusty/multiverse ttf-mscorefonts-installer all 3.4+nmu1ubuntu1
in.archive.ubuntu.com/ubuntu/pool/universe/c/cabextract/cabextract_1.4-4_amd64.deb

in.archive.ubuntu.com/ubuntu/pool/multiverse/m/msttcorefonts/ttf-mscorefonts-installer_3.4+nmu1ubuntu1_all.deb

A ÚLTIMA LINHA É:

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
    
por Ambat Aivinor 19.04.2016 / 16:40

2 respostas

0

O problema parece estar relacionado com a conexão de rede.

Primeiro, verifique se o seu PC está conectado ao seu roteador:

ifconfig

O comando acima mostrará as interfaces de rede do seu PC. Agora observe a saída do comando e pesquise o inet addr . Deve estar na segunda linha de uma das suas interfaces conectadas (abaixo de algo como eth0 ou wlan0 dependendo se você está conectado via cabo ou por WI-FI). Se o valor de seu inet addr for semelhante a 172.16.x.x , seu PC estará na mesma rede do seu roteador.

Se não for assim você tem que se reconectar ao seu roteador . Você pode fazer isso com o Network Manager.

Agora você pode verificar a conexão entre seu PC e seu roteador com este comando:

ping 172.16.19.10

Se funcionar, você pode verificar a conectividade com a internet:

ping www.google.com -c 8

Se isso também funcionar, você pode instalar fontes conforme sugerido por @mikeymop:

sudo apt-get update
sudo apt-get install ubuntu-restricted-extras

Se o comando ping não funcionou, significa duas coisas:

  1. Os pacotes ICMP não podem ser enviados pela rede ou fora dela.
  2. Você não pode acessar seu roteador ou servidor externo (por exemplo, www.google.com.br)

No primeiro caso, você pode tentar verificar sua conectividade executando diretamente

 apt-get update

No outro caso, você pode tentar reiniciar o roteador e esperar que tudo funcione depois.

Espero que isso possa ajudar você.

    
por Danibix 19.04.2016 / 18:26
-1

Você já tentou

$sudo apt-get update && sudo apt-get install ubuntu-restricted-extras

Este pacote , inclui as fontes da Microsoft

    
por mikeymop 19.04.2016 / 17:08