Ubuntu’da Google Earth Çöküyor mu?

Google’ın vebsitesinden Google Earth’ü indirip (http://earth.google.com/download-earth.html) bilgisayarıma (Ubuntu 9.04) kurdum. Sıra çalıştırmaya gelince önce çalışacakmış gibi yapıp açılış logosunu gösterdi ama sonra çöktü. Sorunun çaresini http://tombuntu.com/index.php/2009/03/20/how-to-install-google-earth-5-on-ubuntu/ adresinde buldum. Google Earth’ün kurulu olduğu klasörde (benim durumumda /home/kullanıcıadım/google-earth/) “libcrypto.so.0.9.8″ dosyasını bulup adını değiştirdim. Sorun çözüldü.

Ubuntu – Roll up title bar with mouse wheel

I wanted to roll up window title bars with mouse wheel under Ubuntu. After lots of googling I found nothing. Luckily I installed Ubuntu Tweak (www.ubuntu-tweak.com) which does many nice things to Ubuntu, including adding a window title bar roll up action to your mouse wheel.

Ubuntu’da görüntü dosyalarını birleştirme

Önce mplayer ve mencoder programlarını bilgisayarınıza kurun:

sudo apt-get install mencoder mplayer

Sonra birleştirmek istediğiniz vidyoların olduğu dizine gidip şu komutu verin

mencoder -forceidx -oac copy -ovc copy video01.avi video02.avi video03.avi -o birlestirilmis-video.avi

Kaynak: http://www.lynchconsulting.com.au/blog/index.cfm/2008/1/12/Joining-video-files-in-Ubuntu

Ubuntu 8.10/8.04 – GPG key hatası

Ubuntunuzu güncellerken şöyle bir hata ile mi karşılaşıyorsunuz:

sudo apt-get update
Hit http://ubuntu.gnu.gen.tr intrepid Release.gpg

Fetched 4292B in 3s (1081B/s)
Reading package lists… Done
W: GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 978228591BD3A65C
W: You may want to run apt-get update to correct these problems

Sorun, Ubuntu Launchpad PPA depo bilgilerini güncellemeye çalışmanız, ancak bu depoların GPG anahtarlarının sisteminizde bulunmamasından kaynaklanıyor.

Bu sorunu çözmek için yapmanız gereken şu:

gpg – -keyserver keyserver.ubuntu.com – -recv 978228591BD3A65C (Elbette “978228591BD3A65C” yerine “apt-get update” komutunu yazdığınızda karşınıza çıkan hatalı (sistemde bulunmayan) anahtar numarasını yazmalısınız. )

gpg – -export – -armor 978228591BD3A65C | sudo apt-key add -

Alternatif olarak http://ubuntuforums.org/showthread.php?t=1056099 adresinde yer alan “script”i kullanabilrsiniz.