Este artigo tem como objetivo resolver o mesmo problema que passei para iniciar a utilizar o Kile, interface gráfica para edição de textos em Latex.
O Ubuntu tem a filosofia de atualização da distro através de downloads a partir de "sudo apt-get" ou para funcionar junto a um gerenciador de pacotes (no caso o apt), mas fazendo "apt-get install kile" para instalar o Kile, aparecia um erro dizendo que o pacote não foi encontrado.
Então, se você está nesa situação, siga os passos abaixo que você terá sucesso:
1º passo: modificar sources.list:
Para fazer a modificação do sources.list, faça:
No shell, entre como root:
$ su root
No shell faça:
# cd /etc/apt
Digite:
# ls
Abra o arquivo sources.list com:
# vi sources.list
Obs: você pode usar qualquer editor de texto kate, emacs etc.
No sources.list, remova o # antes de todas as linhas que iniciam com deb, para ficar assim:
deb cdrom:[Kubuntu 5.10 _Breezy Badger_ - Release i386 (20051012)]/ breezy main restricted
deb http://br.archive.ubuntu.com/ubuntu breezy main restricted
deb-src http://br.archive.ubuntu.com/ubuntu breezy main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://br.archive.ubuntu.com/ubuntu breezy-updates main restricted
deb-src http://br.archive.ubuntu.com/ubuntu breezy-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://br.archive.ubuntu.com/ubuntu breezy universe
deb-src http://br.archive.ubuntu.com/ubuntu breezy universe
## Uncomment the following two lines to add software from the 'backports'
## repository.
## 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://br.archive.ubuntu.com/ubuntu breezy-backports main restricted universe multiverse
deb-src http://br.archive.ubuntu.com/ubuntu breezy-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu breezy-security main restricted
deb-src http://security.ubuntu.com/ubuntu breezy-security main restricted
deb http://security.ubuntu.com/ubuntu breezy-security universe
deb-src http://security.ubuntu.com/ubuntu breezy-security universe
deb http://archive.ubuntu.com/ubuntu/ breezy universe
Salve o sources.list digitando Esc + :wq.
Obs: faça este comando apena se você usou o vi.
2º passo: atualizar o Ubuntu:
Para atualizar o Ubuntu, faça:
$ sudo apt-get update
3º passo: instalar o Latex:
$ sudo aptitude install tetex-base (pacote básico do LaTeX)
$ sudo aptitude install tetex-bin (pacotes complementares)
$ sudo aptitude install tetex-nonfree (pacotes complementares)
$ sudo aptitude install tetex-extra (pacotes complementares)
Outros pacotes você pode encontrar em:
3º passo: instalar o Kile:
Faça:
$ sudo apt-get install kile
Pronto.