como instalar flex e bison: erro não pode localizar o arquivo [duplicado]

1

eu tentei instalar o flex e o bison mas recebi este erro: não consigo localizar o arquivo & amp; Também uso o centro de software para fazer isso, mas erro de autenticação ocorre.

não sei qual recurso devo escolher. quando eu executo este comando no terminal:

sudo apt-get update

este é o resultado:

Failed to fetch http://archive.canonical.com/dists/lucid/Release.gpg  Unable to connect to 127.0.0.1:8080:

Meu ambiente:

$ cat /etc/environment
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"
http_proxy="http://127.0.0.1:8080/"
https_proxy="https://127.0.0.1:8080/"
ftp_proxy="ftp://127.0.0.1:8080/"
socks_proxy="socks://127.0.0.1:8080/"

$ /etc/apt/apt.conf
Acquire::http::proxy "http://127.0.0.1:8080/";
Acquire::https::proxy "https://127.0.0.1:8080/";
Acquire::ftp::proxy "ftp://127.0.0.1:8080/";
Acquire::socks::proxy "socks://127.0.0.1:8080/";
    
por zara-T 07.12.2014 / 08:51

2 respostas

2

Se a sua distribuição for Ubuntu Lucid.

Teste isso:

Abra um terminal

Pressione Ctrl + Alt + T

Execute:

sudo -i
nano /etc/apt/sources.list

No arquivo aberto, exclua o conteúdo e cole isso:

## Uncomment the following two lines to fetch updated software from the network
deb http://old-releases.ubuntu.com/ubuntu lucid main restricted
deb-src http://old-releases.ubuntu.com/ubuntu lucid main restricted

## Uncomment the following two lines to fetch major bug fix updates produced
## after the final release of the distribution.
deb http://old-releases.ubuntu.com/ubuntu lucid-updates main restricted
deb-src http://old-releases.ubuntu.com/ubuntu lucid-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## 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
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://old-releases.ubuntu.com/ubuntu lucid universe
deb-src http://old-releases.ubuntu.com/ubuntu lucid universe

deb http://old-releases.ubuntu.com/ubuntu lucid-security main restricted
deb-src http://old-releases.ubuntu.com/ubuntu lucid-security main restricted

deb http://old-releases.ubuntu.com/ubuntu lucid-security universe
deb-src http://old-releases.ubuntu.com/ubuntu lucid-security universe

deb http://old-releases.ubuntu.com/ubuntu lucid multiverse
deb-src http://old-releases.ubuntu.com/ubuntu lucid multiverse

deb http://old-releases.ubuntu.com/ubuntu lucid-backports main restricted universe multiverse
Ctrl + O , salve o arquivo. Ctrl + X , perto do nano.

Continue a execução em um terminal:

sudo -i
apt-get update
apt-get dist-upgrade
apt-get install flex bison
apt-get clean

Se a sua distribuição não for Ubuntu Lucid, altere o Lucid para o nome apropriado.

Se nada disso funcionar

Download de pacotes (Lucid):

link (32 bits) link (64 bits) link (32 bits) link (64 bits)

E instale-os com:

sudo -i
cd /home/user/Downloads
dpkg -i *.deb
    
por kyodake 07.12.2014 / 16:49
0

Por algum motivo, você tem configurações de proxy configuradas. Supondo que você não precise deles, abra Configurações do sistema, vá para a seção Rede, defina Configurações de proxy como Nenhum e clique em Aplicar todo o sistema :

    
por muru 07.12.2014 / 15:21