Formulir Workshop

Dalam Rangka Memperingati Software Freedom Day 2011 BALUNG mengadakan workshop Instalasi dan Pengenalan Dekstop Linux.

Ingin Berpartisipasi dalam Wokshop, Silahkan Isi Form Di bawah ini :

Maaf Karena Kuota Sudah Penuh Maka Pendaftaran Workshop Kami TUTUP.

Pendaftaran Ditutup pukul 15-00 WIB perharinya
Untuk Melihat kuota Perharinya Klikdisini

Fasilitas Workshop :
Modul Workshop
Tentor Langsung dari BALUNG

Contact Person :
Adit “TIF 10″ (085648956007)
Bagus ” TIF 09″ (085746423562)

Formulir Seminar SFD 2011

Brawijaya linux User Group kali ini menyelenggarakan event Software freedom day (SFD) 2011 sebuah event yang diadakan secara internasional.

Silahkan Isi Formulir Dibawah ini untuk mengikuti Seminar Dalam Rangka Software Freedom Day 2011

Fasilitas :
-100 Pendatang Pertama Free Marchandise
-Door Prize

Contact Person :
Adit “TIF 10″ (085648956007)
Bagus ” TIF 09″ (085746423562)

Off

:: Play Nethack ::

By Francisco Rangel
(To the tune of Paint It Black by The Rolling Stones)

I see a red D and I want to play nethack
Go down to Gehennom and bring the trinket back
I see the grid bugs bite, the Kop runs with a hose
I light my magic lamp and so the darkness goes

Drop stuff on altars but they’re cursed so they glow black
I stash my scrolls and potions in an oilskin sack
I see corpses all around, I’ll eat them right away
Hope I get intrinsics, hope my god will let me pray

Sit on a throne and get to genocide some L’s
The Oracle will speak, and the shopkeeper sells
Get a prize from Sokoban and then on to clear the quest
Kill Medusa, find the castle, open up that chest

The Valley of the Dead, and David’s Treasure Zoo
I’ll visit Vlad and get the Candelabrum too
If I look hard enough for the vibrating square
I’ll kill the wizard, get the Book, and I’ll be there

I’ll get the amulet and make a run for it
With demons on my tail, I hope I don’t get hit
Go through the planes and reach the altars at the end
I’ll sacrifice the amulet and I’ll ascend

I wanna beat this game, it’s so hard, cannot save, can’t restart
I’ll go to Gehennom, with my pet by my side
Don’t eat the food that’s tainted, tainted, tainted, or you’ll die, yeah!

linkscolor = "000000"; highlightscolor = "888888"; backgroundcolor = "FFFFFF"; channel = "none";
Off

Mengubah DNS secara manual di LINUX


Untuk mengubah alamat DNS secara manual di Linux adalah :

  1. Pastikan anda memiliki root privilege. Anda bisa menggunakan perintah su - di Fedora atau sudo su - di Ubuntu
  2. Buka file /etc/resolv.conf menggunakan teks editor (misal vim). Contoh : vi /etc/resolv.conf
  3. tambahkan baris nameserver [alamat DNS] (ganti [alamat DNS] dengan alamat DNS yang anda inginkan). Contoh : nameserver dns.web.id
di Fedora
Off

Membangun FTP Server di LINUX


Untuk membuat FTP server di LINUX (dalam tutorial ini kita menggunakan Linux CentOS) bisa menggunakan beberapa aplikasi ftp server. Salah satunya adalah VSFTPD (Very Secure FTP Daemon). Cara membuat ftp server menggunkaan vsftpd adalah sebagai berikut :

  1. Buka senjata canggih linux, yaitu terminal ^-^
  2. Pastikan anda memiliki root privilege. Ketikkan su - , lalu masukkan password root anda.
  3. Install vsftpd, ketikkan yum install vsftpd
  4. Setelah terinstall, nyalakan service vsftpd. Ketikkan /etc/init.d/vsftpd start
  5. Pastikan vsftpd berjalan secara otomatis tiap kali komputer direstart. Ketikkan chkconfig vsftpd on

Konfigurasi vsftpd ada di /etc/vsftpd/vsftpd.conf.

Off

Mengubah Konfigurasi VSFTPD


Pada artiket sebelumnya kita hanya membahas cara membangun FTP server menggunakan VSFTPD. Nah ada artikel ini akan dibahas beberapa konfigurasi dari vsftpd dan cara mengubahnya :

  • Seperti biasa, kita buka senjata andalan linux yaitu terminal.
  • Gunakan teks editor favorit anda (saya menggunakan vim) untuk mengedit file /etc/vsftpd/vsftpd.conf
  • Bila anda ingin user anonymous dapat menggunakan ftp, tambahkan atau edit baris ini :
    • anonymous_enable=YES
  • Sebaliknya bila anda tidak ingin user anonymous dapat menggunakan ftp, ubah nilai baris diatas menjadi NO seperti di bawah ini :
    • anonymous_enable=NO
  • Bila anda ingin lokal user (user pengguna komputer namun bukan root user) dapat login menggunakan ftp protokol, tambahkan atau edit baris ini :
    • local_enable=YES
  • Sebaliknya bila anda ingin lokal user (user pengguna komputer namun bukan root user) tidak dapat login menggunakan ftp protokol ubah nilai baris diatas menjadi NO.
  • Bila anda ingin mengubah root directory dari user anonymous (default root directorynya ada d /var/ftp), tambahkan atau edit baris ini :
    • anon_root=<anonymous user root directory yang anda inginkan>
  • Terakhir jangan lupa untuk mensave konfigurasi tersebut ^-^
Off

Mengunci FTP user di dalam direktori home


Pada tutorial kali ini kita menggunakan sistem operasi CentOS Linux dan program VSFTPD. Secara default direktori root untuk setiap local user ftp (non anonymous) ada di / . Namun jika kita ingin memindah root direktori dari local user ke dalam direktori home mereka masing-masing kita bisa mengubah konfigurasi vsftpd (/etc/vsftpd/vsftpd.conf). Langkah-langkahnya adalah sebagai berikut :

  1. buka terminal.
  2. pastikan anda memiliki root privilege, contoh : su -
  3. buka file /etc/vsftpd/vsftpd.conf menggunakan editor, misal : vim /etc/vsftpd/vsftpd.conf
  4. Ubah atau tambah atau uncomment baris-baris ini :
    1. chroot_local_user=YES
    2. chroot_list_enable=YES
    3. chroot_list_file=/etc/vsftpd/chroot_list
  5. restart service vsftpd, contoh : /etc/init.d/vsftpd restart

Dengan cara diatas semua ftp root directory tiap local user ada di home directory masing-masing user. Jika anda ingin membuat pengecualian untuk user tertentu agar root directorynya tetap berada di / anda dapat menuliskan nama user tersebut di file /etc/vsftpd/chroot_list.

Namun jika anda ingin agar hanya user tertentu saja yang ftp root direktorinya pindah ke home direktori masing-masing anda dapat mengubah paramater baris chroot_local_user menjadi NO seperti ini chroot_local_user=NO lalu menuliskan user yang ingin dipindah root direktorinya ke dalam file /etc/vsftpd/chroot_list.

Off

Halal Bi Halal Kolam 1430H

Komunitas Linux Arek Malang (Kolam – KPLI Malang) akan mengadakan kopi darat sekaligus halal bi halal yang akan diselenggarakan pada Hari: Jumat, 9 Oktober 2009 Jam: 15.00 WIB (ba’da Ashar) Tempat: Jl Genukwatu Barat 2 No. 42 Kel. Purwantoro, Kec. Blimbing, Malang (daerah Bantaran, lihat peta) Kepada seluruh pengurus, anggota atau pun komunitas linux lainnya diharapkan dapat meluangkan waktu untuk [...]
Off

Halal Bi Halal Kolam 1430H

Komunitas Linux Arek Malang (Kolam – KPLI Malang) akan mengadakan kopi darat sekaligus halal bi halal yang akan diselenggarakan pada Hari: Jumat, 9 Oktober 2009 Jam: 15.00 WIB (ba’da Ashar) Tempat: Jl Genukwatu Barat 2 No. 42 Kel. Purwantoro, Kec. Blimbing, Malang (daerah Bantaran, lihat peta) Kepada seluruh pengurus, anggota atau pun komunitas linux lainnya diharapkan dapat meluangkan waktu untuk [...]
Off

:: Check your Laptop Battery Status From the Terminal ::

0×01. Introduction

Sometimes, we have no graphical user interface installed on our laptop, but we have to check out the laptop battery status. Using ‘acpi’ command, we can check the laptop battery status instantly.


0.02. ACPI command line

We can check our laptop battery status from the terminal or console, using ‘acpi’ command. With Ubuntu, we have to install ‘acpi’ first by type command in your terminal :

$ sudo apt-get install acpi

Here are few basic command that frequently use to check laptop battery status.

1. Command to check the state of the charge of battery:
$ acpi

The output could be something like this:
Battery 1: discharging, 90%, 02:00:09 remaining

We can compare the percentage and the remaining time. If you have big number for the percentage, but you only have few minutes for the remaining time, that’s mean you have to find another new battery.

2. Command to check the battery temperature:
$ acpi -t

represent the battery temperature in Fahrenheit:
$ acpi -t -f

3. Command to check the AC Power Status
$ acpi -a

4. Command to check all status (verbose all) :
$ acpi -V

Another command tool that we can use is ‘acpitool’. Make sure that we have ‘acpitool’ installed. We can install ‘acpitool’ by command:

$ sudo apt-get install acpitool

Commands that we can use to check laptop battery status:

1. Command to show information about the laptop battery status
$ acpitool

2. Command to show detailed information about the laptop battery status
$ acpitool -B

We can combine with verbose option ‘v’ for show more verbose output when something is not found.

3. Command to show information about AC Power.
$ acpitool -a

or we can use command below for simple check laptop battery status:

$ cat /proc/acpi/battery/BAT0/state

and for detailed information about battery

$ cat /proc/acpi/battery/BAT0/info

0×03. Conclution
By using ‘acpi’ command line, or ‘acpitool’, or open ‘/proc/acpi/battery/BAT0/info’, we can check the laptop battery status. I hope this can useful or solve your problem, need your suggestion for the future work for this website.

0×04. References

1. http://www.go2linux.org/laptop-battery-status-with-linux-console-command-acpi
2. http://www.columbia.edu/~ariel/acpi/acpi_howto.txt
3. http://ubuntuforums.org/archive/index.php/t-475801.html

0×05. Best Regards
Tabik,

Ari Mogi
==============================================
Teknik Informatika [Information Engineering]
Jurusan Ilmu Komputer [Computer Science Dept.]
Fakultas MIPA [Faculty of Mathematics and Natural Sciences]
Universitas Udayana [Udayana University]
==============================================

linkscolor = "000000"; highlightscolor = "888888"; backgroundcolor = "FFFFFF"; channel = "none";