Tutorial

Install Skype on Ubuntu

About Skype

Skype is proprietary software that allows you to make calls over the Internet using your computer. Skype uses decentralized peer-to-peer technologies, so your calls do not go through a central server, but through distributed servers and other users. It uses its own proprietary communication protocol to achieve this. In addition, all communications are encrypted from end to end so that others cannot listen in. The Skype software is free to use, but it is not free software; the source code is proprietary and not available for modification.

Install Skype

Skype is not available in any Ubuntu software repository, and therefore cannot be installed with Ubuntu's package management software such as Synaptic or apt-get without adding a repository containing Skype. There are two options - the Skype repository, or the Medibuntu repository.

1. Medibuntu Repository

Google Adsense Code in Drupal 6

I have another sites, www.erakomputer.com, and it was build using Drupal 6.2. I thought Drupal 6 must be better than the previous versions so I decided to use it. But that's wrong -- perhaps until right now,  we can't find contributed modules in Drupal 6 as much as in Drupal 5. For example adsense modules. Until today in Drupal site, adsense modules only available for drupal 4 and 5.

So, I decided to use a block and put manually my adsense code there.

Administrator >> Site building >> Blocks >> Add Block

Then activate the block. But it not working. The adsense code show as a text in a block.

Mengenal File Permissions (Perizinan File) di Linux

Belum mengerti tentang file permissions atau perizinan suatu file di Linux ? Saya akan memberikan sedikit penjelasan tentang itu dan semoga bisa berguna.

Perizinan suatu file di Linux bisa dalam read/baca=r, write/tulis=w dan execute/eksekusi=x. Di Linux terdapat 3 kategori kepemilikan untuk file dan direktori:

Membersihkan Registry Windows Vista

Registry pada dasarnya adalah kumpulan database yang besar  yang berisi ratusan setting baik untuk Windows itu sendiri maupun untuk software lainnya. Ketika kita menginstall atau menggunakan sebuah program, maka itu akan merubah Registry tapi jika kita uninstall sesuatu maka itu akan meninggalkan sampah nantinya sehingga mengakibatkan Registry penuh dengan sampah.

Untungnya, terdapat banyak program pembersih Registry yang cukup bagus diluar sana yang akan mencari dan menghapus sampah-sampah yang tak berguna.

Reinstall Grub di Ubuntu

Saya akan membagi pengalaman saya ketika menghadapi masalah dengan Grub. Ini terjadi di salah satu komputer server perusahaan. PC server tersebut digunakan sebagai database mirror dan untungnya PC tersebut tidak berpengaruh langsung terhadap sistem yang lainnya. Dibawah ini nanti akan saya tulis apa saja yang saya sudah coba lakukan untuk mengatasi masalah Grub ini.

Reinstall Grub in Ubuntu

I want to share my experience when I had problem with Grub error. It was in one of my company PC server. The PC use as Database mirror and fortunatelly for me the PC it self dont have direct impact to the other systems. Here are some actions when I am trying to fix the problem.

File Init Script di Ubuntu

Seumpama kita membuat sebuah file yang nantinya bisa dieksekusi, contoh nama filenya : /usr/local/bin/mirror . Dapatkah kita menjadikan file ini berjalan sebagai skrip init yang mana bisa aktif saat startup dan selalu dicek seiring sistem berjalan? Tentu saja untuk menjadikannya file yang rutin bisa berjalan bisa dilakukan melalui cron, tapi saya akan mencoba cara lain.

Berikut ini pengalaman saya ketika mencoba membuat skrip init :

Pertama-tama chmod 755 /usr/local/bin/mirror :

[email protected]:$ sudo chmod 755 /usr/local/bin/mirror

[email protected]:$ sudo vi /etc/init.d/mirror

#! /bin/sh

/usr/local/bin/mirror >/dev/null 2>&1 &