Advertisement
Guest User

Ativar a possibilidade de instalar pacotes de terceiros via synaptic

a guest
May 11th, 2010
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.64 KB | None | 0 0
  1. # ativar repositórios extras
  2.  
  3. # retira os comentários dos repositórios universe e multiverse no sources.list
  4. sudo sed -i.backup '/^#\s\?deb\( http\| ftp\|-src\)/s/^#\s\?//g' /etc/apt/sources.list
  5.  
  6. # como adicionar o repositório mediabuntu
  7. # fonte: https://help.ubuntu.com/community/Medibuntu
  8. sudo wget http://www.medibuntu.org/sources.list.d/`lsb_release -cs`.list --output-document=/etc/apt/sources.list.d/medibuntu.list; apt-get -q update; apt-get --yes -q --allow-unauthenticated install medibuntu-keyring; apt-get -q update
  9.  
  10. #Ativar a possibilidade de instalar pacotes de repositórios não oficiais via synaptic
  11. sudo update-apt-xapian-index
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement