Mendisable IPv6 di Ubuntu

23 01 2009

Ipv6 dibuat untuk melengkapi Ipv4, namun pada beberapa jaringan yang belum mendukung Ipv6 dapat mengakibatkan “kegiatan” kita menjadi sedikit terganggu, karena akses menjadi lebih lambat. Berikut adalah cara untuk menon-aktifkan Ipv6 di Ubuntu.

$ sudo nano /etc/modprobe.d/aliases

ganti baris alias net-pf-10 ipv6 menjadi alias net-pf-10 off dan simpan file

$ sudo nano /etc/hosts

beri pagar semua baris di bawah # The following lines are desirable for IPv6 capable hosts

Bila Anda menggunakan Firefox atau Swiftfox,

jangan lupa untuk mendisable Ipv6 lewat about:config, lalu cari Ipv6 dan disable menjadi true.

Terima Kasih,





Mengaktifkan applet CPU freq di Ubuntu

23 01 2009

Beberapa hari yang lalu, setelah mencoba globalmenu dan mengacak-acak source panel (gara-gara ga bisa dipaksain :p) CPU frequency scaling monitor saya tidak berfungsi dengan baik. Pilihan Ondemand, Performance dll kini tidak muncul ketika applet diklik kiri.

Setelah melakukan sedikit analisa, karena applet ini merupakan bagian dari paket software gnome-applets, maka saya mereconfigure paket tersebut:

$ sudo dpkg-reconfigure gnome-applets

maka akan muncul dialog seperti berikut


pilih ok lalu yes, maka CPU scaling akan berfungsi kembali dengan baik

ctt: bila tidak berhasil, coba logout dan login kembali, atau ketik killall gnome-panel pada terminal

Terima Kasih,





Setting SVN through Proxy Server

23 01 2009

OVERVIEW

Subversion is a version control system, which allows you to keep old

versions of files and directories (usually source code), keep a log of

who, when, and why changes occurred, etc., like CVS, RCS or SCCS. Sub‐

version keeps a single copy of the master sources. This copy is called

the source ‘‘repository’’; it contains all the information to permit

extracting previous versions of those files at any time.

(copied from svn man pages)

To install svn just type this in terminal:

$ sudo apt-get intall subversion

To some setting svn through proxy server:

$ nano ~/.subversion/servers

And add this following lines:

http-proxy-host = your.proxy

http-proxy-port = 8080 #your proxy port

http-proxy-exceptions = localhost #etc

http-proxy-username = your_user

http-proxy-password = your_password

Save the file. Now your SVN will worked through your proxy server.

The other setting can be tweaked manually, just edit servers and config in the ~/.subversion directory

Thx