-->

English Soccer News gives you the latest news about soccer match in Europe and UK. Enjoy!

cara memperbaiki repository ubuntu yang crash

1. Silahkan anda buka terminal dan ketikkan perintah dibawah ini
 root@localhost:~# apt-get install python-software-properties
 
permasalahan yang umum terjadi  "E: Package 'python-software-properties' has no installation candidate" jika terjadi seperti gambar diatas silahkan ketikkan perintah di bawah ini
root@localhost:~# apt-get install software-properties-common 
 tunggu proses instalasinya selesai
2. Masuk ke directory repository ketikkan diterminal
 root@localhost:~# cd /usr/sbin
3. Buka repository menggunakan leafpad editor
root@localhost:/usr/sbin# leafpad add-apt-repository
setelah leafpad terbuka silahkan anda copy dan paste script dibawah ini, jika belum terinstal leafpad harap install dulu :D


#!/bin/bash
if [ $# -eq 1 ]
NM=`uname -a && date`
NAME=`echo $NM | md5sum | cut -f1 -d" "`
then
  ppa_name=`echo "$1" | cut -d":" -f2 -s`
  if [ -z "$ppa_name" ]
  then
    echo "PPA name not found"
    echo "Utility to add PPA repositories in your debian machine"
    echo "$0 ppa:user/ppa-name"
  else
    echo "$ppa_name"
    echo "deb http://ppa.launchpad.net/$ppa_name/ubuntu oneiric main" >> /etc/apt/sources.list
    apt-get update >> /dev/null 2> /tmp/${NAME}_apt_add_key.txt
    key=`cat /tmp/${NAME}_apt_add_key.txt | cut -d":" -f6 | cut -d" " -f3`
    apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $key
    rm -rf /tmp/${NAME}_apt_add_key.txt
  fi
else
  echo "Utility to add PPA repositories in your debian machine"
  echo "$0 ppa:user/ppa-name"
fi

 kemudian silahkan anda Save (ctrl+S)
 
4. Mengubah permissionnya, ketikkan diterminal



 root@localhost:/usr/sbin# chmod o+x /usr/sbin/add-apt-repository
5. Memberikan permission root, ketikkan diterminal anda
 root@localhost:/usr/sbin# chown root:root /usr/sbin/add-apt-repository 

0 Comment: