Refresh Ubuntu Repository

Sometime whenever you update your Ubuntu (12.x up) and found error message below

Reading package lists… Error!
or like :
W: GPG error: http://archive.ubuntu.com jaunty Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key

etc…

May be your repository configuration in you PC/laptop/server was dirty, and off course you can clean them up using this steps below :

sudo -i
apt-get clean
cd /var/lib/apt
mv lists lists.old
mkdir -p lists/partial
apt-get clean
apt-get update

Hope it will work with You, have a nice try.

E: Could not get lock /var/lib/aptitude/lock – open …

Error ini diperoleh pada saat sedang melakukan Upgrade paket-paket Ubuntu dengan menggunakan aptitude .

Pada saat aptitude sedang berproses melakukan upgrade, sayat tertidur dan membiarkan laptop hidup hingga akhrinya jaringan putus sendiri seiring dengan matinya laptop saya. Ternyata proses yang belum tuntas tadi meninggalkan sampah ‘lock’ . Karena itu ketika koneksi kembali lalu mencoba menghidupkan  masuk ke aptitude lagi, maka muncullah pesan :

E: Could not get lock /var/lib/aptitude/lock – open (11: Resource temporarily unavailable)” error

Untuk memperbaiki hal ini saya lakukan beberapa hal sebagai berikut :

  1. apt-get update
  2. killall -9 apt-get aptitude
  3. rm -f /var/lib/aptitude/lock

Semoga berguna, terimakasih.

 

Apakah UUID itu ?

UUID singkatan dari Universally Unique IDentifier.

UUIDs digunakan untuk tujuan identifikasi dalam beberapa bidang pada industri komputer.

UUIDs pada dasarnya adalah angka 128 bit, yang disajikan dalam bentuk pengelompokan hexadesimal, misalnya :
58e0a7d7-eebc-11d8-9669-0800200c9a66

Salah satu bagian di linux  yang menggunakan UUID adalah pada file /etc/fstab.  Perhatikan contoh berikut :

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda7 during installation
UUID=7b75efd0-b7fc-42d4-9334-4903bb9d4ce6 /               ext3    errors=remount-ro 0       1
# swap was on /dev/sda6 during installation
UUID=66d0d5ce-90df-4210-9867-7f7b3bfdb690 none            swap    sw              0       0
/dev/sda5 /media/data   ext3 rw 0 0
/etc/fstab (END)

 

File /etc/fstab berisi konfigurasi static dari device-device file system yang ada di komputer kita, untuk penjelasan lebih jauh, silahkan anda baca dengan perintah #man fstab

Untuk mengetahui UUID dari device-device yang ada kita dapat menggunakan perintah blkid , contoh :

toosa@toosa-pc13:~$ blkid
/dev/sda1: UUID="6435408e-5100-4d49-902b-350c5819ff7e" TYPE="ext3"
/dev/sda5: LABEL="data13" UUID="9e3bb08c-97fe-4631-a3e4-c27c88ab41c1" TYPE="ext3"
/dev/sda6: UUID="66d0d5ce-90df-4210-9867-7f7b3bfdb690" TYPE="swap"
/dev/sda7: UUID="7b75efd0-b7fc-42d4-9334-4903bb9d4ce6" TYPE="ext3"

nb: perintah ini sudah saya gunakan di Ubuntu versi 10.x hingga 11.x

 

Memfungsikan PHP di userdir Apache Ubuntu 10.10

Ketika apache dan php di install di Linux Ubuntu 10.10, php memang sudah bisa dijalankan di /var/www, tetapi ketika kita mengaktifkan modul userdir agar /home/username/public_html bisa digunakan, ternyata baru .html yang bisa diaktifkan, sedangkan *.php belum bisa berjalan. ini karena secara default php5.conf belum mengaktifkan php di public_html.

Bukalah file /etc/apache2/mods-enabled/php5.conf :

<IfModule mod_php5.c>
    <FilesMatch "\.ph(p3?|tml)$">
        SetHandler application/x-httpd-php
    </FilesMatch>
    <FilesMatch "\.phps$">
        SetHandler application/x-httpd-php-source
    </FilesMatch>
    # To re-enable php in user directories comment the following lines
    # (from <IfModule …> to </IfModule>.) Do NOT set it to On as it
    # prevents .htaccess files from disabling it.
    <IfModule mod_userdir.c>
         <Directory /home/*/public_html>
             php_admin_value engine Off
         </Directory>
    </IfModule>
</IfModule>
 

Anda harus memberikan remark (#) seperti di bawah ini :

<IfModule mod_php5.c>
    <FilesMatch "\.ph(p3?|tml)$">
        SetHandler application/x-httpd-php
    </FilesMatch>
    <FilesMatch "\.phps$">
        SetHandler application/x-httpd-php-source
    </FilesMatch>
    # To re-enable php in user directories comment the following lines
    # (from <IfModule …> to </IfModule>.) Do NOT set it to On as it
    # prevents .htaccess files from disabling it.
   # <IfModule mod_userdir.c>
   #     <Directory /home/*/public_html>
   #          php_admin_value engine Off
   #     </Directory>
   # </IfModule>

</IfModule>

Terakhir jangan lupa merestart Apache nya :

$ /etc.init.d/apache2 restart

1 2