Tampilkan postingan dengan label Free to use. Tampilkan semua postingan
Tampilkan postingan dengan label Free to use. Tampilkan semua postingan

Rabu, 22 Februari 2012

Monit Aplikasi Linux Untuk Menjaga Service Server Tetap Jalan

Monit Aplikasi Linux Untuk Menjaga Service Server Tetap Jalan

Aplikasi monit yaitu aplikasi yang berfungsi untuk memonitor aplikasi yang jalan di server. Mengapa aplikasi diserver perlu dilakukan monitoring? ada beberapa alasan antara lain :


  1. Aplikasi diserver tidak 100% baik, sebagai misal aplikasi yang jalan 24 jam kemungkinan ada kelemahan manajemen memory (memory leak) selalu ada walaupun kecil. Apabila ini dibiarkan terus dapat menyebabkan sumberdaya (resource) server khususnya memory menjadi penuh an perlu dikosongkan, yaitu dengan cara paling mudah restart aplikasi atau restart servernya

  2. Aplikasi di server dalam beban kecil dapat berjalan dengan baik, akan tetapi ketika ada beban besar, misal yang akses tiba tiba datang dalam jumlah ribuan bersamaan dan menyebabkan aplikasi bahkan server menjadi hank


Aplikasi kecil monit ini mempunyai fungsi adalah memonitor aplikasi server yang kita daftarkan di monit, apabila terjadi sesuatu di aplikasi server berdasarkan pengecekan monit maka akan dilakukan sesuai oleh monit.

Pengecekan monit dapat dilakukan antara lain :

  1. Cek apakah port layanan server aktif

  2. Cek apakah file .pid ada atau tidak


Aksi yang dilakukan monit yang melakukan restart aplikasi ataupun restart server.

Dalam artikel ini saya menggunakan centos 5.4, dan tahapan instalasi yang dilakukan yaitu :

  1. Aktifkan repository rpmforge

  2. jalankan install monit
    # yum install monit –disablerepo=* –enablerepo=rpmforge

    Loaded plugins: fastestmirror

    Loading mirror speeds from cached hostfile

    * rpmforge: apt.sw.be

    rpmforge | 1.1 kB 00:00

    rpmforge/primary | 2.3 MB 01:16

    rpmforge 10725/10725

    Setting up Install Process

    Resolving Dependencies

    –> Running transaction check

    —> Package monit.i386 0:5.2.5-1.el5.rf set to be updated

    –> Finished Dependency Resolution

    Dependencies Resolved

    ================================================================================================================

    Package Arch Version Repository Size

    ================================================================================================================

    Updating:

    monit i386 5.2.5-1.el5.rf rpmforge 560 k

    Transaction Summary

    ================================================================================================================

    Install 0 Package(s)

    Upgrade 1 Package(s)

    Total download size: 560 k

    Is this ok [y/N]: y

    Downloading Packages:

    monit-5.2.5-1.el5.rf.i386.rpm | 560 kB 00:19

    Running rpm_check_debug

    Running Transaction Test

    Finished Transaction Test

    Transaction Test Succeeded

    Running Transaction

    Updating : monit 1/2

    Cleanup : monit 2/2

    Updated:

    monit.i386 0:5.2.5-1.el5.rf

    Complete!


  3. Hasil instalasi akan membuat file “/etc/monit.conf” yang berisi contoh file konfigurasi dan membuat sebuah folder “/etc/monit.d/” yang bisa kita isi dengan file konfigurasi kita.

  4. Tahap terakhir adalah menulis konfigurasi monit yang berisikan aplikasi a-plikasi server apa saja yang akan dimonitor.


Contoh konfigurasi :

1. Server, yaitu fungsi untuk remote akses monit melalui webserver. Untuk pembatasan akses bisa melalui alamat IP ataupun user dan password
set httpd port 2812

allow monit:monit

# use address localhost # only accept connection from localhost

# allow localhost # allow localhost to connect to the server and

# allow admin:monit # require user ‘admin’ with password ‘monit’

# allow @monit # allow users of group ‘monit’ to connect (rw)

# allow @users readonly # allow users of group ‘users’ to connect readonly

#

2. Apache webserver
check process httpd with pidfile /var/run/httpd.pid

start program = “/etc/init.d/httpd start” with timeout 60 seconds

stop program = “/etc/init.d/httpd stop”

if cpu > 60% for 2 cycles then alert

if cpu > 80% for 5 cycles then restart

if totalmem > 450.0 MB for 5 cycles then restart

if children > 250 then restart

 

if loadavg(5min) greater than 10 for 8 cycles then stop

if failed host 127.0.0.1 port 80 protocol http

then restart

if 3 restarts within 5 cycles then timeout

group server

Konfigurasi nomor 2 diatas apat dijelaskan sebagai berikut :

- Status apache webs server dimonitor melalui filepid /var/run/httpd.pid

- Proses restart aplikasi dilakukan melalui start dan stop program

- Apabila CPU 60% dalam 2 periode pengecekan maka akan memberikan alert

- Apabila CPU 80% dalam 5 periode pengecekan maka akan memberikan warning

- Apabila total memory yang terpakai lebih besar 450MB selama 5 periode maka restart

- Apabila jumlah proses apache mencapai 250, maka restart

- Apabila port 80 protokol http (tcp) gagal diakses, maka webserver akan di restart

- Apabila restart terjadi 5x, maka monitoring dihentikan

3. LDAP dengan openldap
check process ldap with pidfile /var/run/openldap/slapd.pid

start program = “/etc/init.d/ldap start” with timeout 60 seconds

stop program = “/etc/init.d/ldap stop”

if failed port 389 use type tcp

then restart

if 3 restarts within 5 cycles then timeout

group server

4. MySQL
check process mysqld with pidfile /var/run/mysqld/mysqld.pid

start program = “/etc/init.d/mysqld start” with timeout 60 seconds

stop program = “/etc/init.d/mysqld stop”

if cpu > 60% for 2 cycles then alert

if cpu > 80% for 5 cycles then restart

if totalmem > 300.0 MB for 5 cycles then restart

if loadavg(5min) greater than 10 for 8 cycles then stop

if failed host 127.0.0.1 port 3306

then restart

if failed unixsocket /var/lib/mysql/mysql.sock protocol mysql

then restart

group database

5. snmp
check process snmpd with pidfile /var/run/snmpd.pid

start program = “/etc/init.d/snmpd start” with timeout 60 seconds

stop program = “/etc/init.d/snmpd stop”

if failed port 161 use type udp

then restart

if 3 restarts within 5 cycles then timeout

group server

Langkah terakhir yaitu menjalankan monit. Pada setiap server perintah menjalankan monit saya masukkan dalam file “/etc/rc.local” yang dieksekusi setiap kali server start.

/usr/bin/monit -c /etc/monit.conf -l /var/log/monit.log -p /var/run/monit.pid -d 120 -v
monit: Debug: Adding credentials for user ‘monit’.

monit: Error opening the idfile ‘/var/monit/id’ — No such file or directory

——————————————————————————-

/usr/bin/monit [0x805442e]

/usr/bin/monit(LogError+0×22) [0x8054842]

/usr/bin/monit(Util_monitId+0×2da) [0x806149a]

/usr/bin/monit(File_init+0×3e) [0x80525fe]

/usr/bin/monit(main+0×545) [0x80570f5]

/lib/libc.so.6(__libc_start_main+0xdc) [0x383e9c]

/usr/bin/monit [0x804ee51]

——————————————————————————-

Runtime constants:

Control file = /etc/monit.conf

Log file = /var/log/monit.log

Pid file = /var/run/monit.pid

Debug = True

Log = True

Use syslog = False

Is Daemon = True

Use process engine = True

Poll time = 120 seconds with start delay 0 seconds

Expect buffer = 256 bytes

Mail from = (not defined)

Mail subject = (not defined)

Mail message = (not defined)

Start monit httpd = True

httpd bind address = Any/All

httpd portnumber = 2812

httpd signature = True

Use ssl encryption = False

httpd auth. style = Basic Authentication

The service list contains the following entries:

Process Name = snmpd

Group = server

Pid file = /var/run/snmpd.pid

Monitoring mode = active

Start program = ‘/etc/init.d/snmpd start’ timeout 60 second(s)

Stop program = ‘/etc/init.d/snmpd stop’ timeout 30 second(s)

Existence = if does not exist 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Pid = if changed 1 times within 1 cycle(s) then alert

Ppid = if changed 1 times within 1 cycle(s) then alert

Port = if failed localhost:161 [DEFAULT via UDP] with timeout 5 seconds 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Timeout = If restarted 3 times within 5 cycle(s) then unmonitor

Process Name = mysqld

Group = database

Pid file = /var/run/mysqld/mysqld.pid

Monitoring mode = active

Start program = ‘/etc/init.d/mysqld start’ timeout 60 second(s)

Stop program = ‘/etc/init.d/mysqld stop’ timeout 30 second(s)

Existence = if does not exist 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Pid = if changed 1 times within 1 cycle(s) then alert

Ppid = if changed 1 times within 1 cycle(s) then alert

Unix Socket = if failed /var/lib/mysql/mysql.sock [protocol MYSQL] with timeout 5 seconds 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Port = if failed 127.0.0.1:3306 [DEFAULT via TCP] with timeout 5 seconds 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Load avg. (5min) = if greater than 10.0 8 times within 8 cycle(s) then stop else if succeeded 1 times within 1 cycle(s) then alert

Children = if greater than 1000 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Memory amount limit (incl. children) = if greater than 307201 5 times within 5 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

CPU usage limit = if greater than 80.0% 5 times within 5 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

CPU usage limit = if greater than 60.0% 2 times within 2 cycle(s) then alert else if succeeded 1 times within 1 cycle(s) then alert

Process Name = ldap

Group = server

Pid file = /var/run/openldap/slapd.pid

Monitoring mode = active

Start program = ‘/etc/init.d/ldap start’ timeout 60 second(s)

Stop program = ‘/etc/init.d/ldap stop’ timeout 30 second(s)

Existence = if does not exist 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Pid = if changed 1 times within 1 cycle(s) then alert

Ppid = if changed 1 times within 1 cycle(s) then alert

Port = if failed localhost:389 [DEFAULT via TCP] with timeout 5 seconds 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Timeout = If restarted 3 times within 5 cycle(s) then unmonitor

Process Name = httpd

Group = server

Pid file = /var/run/httpd.pid

Monitoring mode = active

Start program = ‘/etc/init.d/httpd start’ timeout 60 second(s)

Stop program = ‘/etc/init.d/httpd stop’ timeout 30 second(s)

Existence = if does not exist 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Pid = if changed 1 times within 1 cycle(s) then alert

Ppid = if changed 1 times within 1 cycle(s) then alert

Port = if failed 127.0.0.1:80 [HTTP via TCP] with timeout 5 seconds 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

Load avg. (5min) = if greater than 10.0 8 times within 8 cycle(s) then stop else if succeeded 1 times within 1 cycle(s) then alert

Children = if greater than 250 1 times within 1 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

CPU usage limit = if greater than 80.0% 5 times within 5 cycle(s) then restart else if succeeded 1 times within 1 cycle(s) then alert

CPU usage limit = if greater than 60.0% 2 times within 2 cycle(s) then alert else if succeeded 1 times within 1 cycle(s) then alert

System Name = system_ldapdev

Monitoring mode = active

——————————————————————————-

monit: pidfile ‘/var/run/monit.pid’ does not exist

Starting monit daemon with http interface at [*:2812]

Semoga aplikasi monit dapat bermanfaat bagi anda semua. Amien

Lampiran :

htttp://www.stisitelkom.ac.id

monit-system

monit-snmp

monit-mainpage
http://kusprayitna.staff.uii.ac.id/

 

 

 

www.stisitelkom.ac.id www.di.stisitelkom.ac.id www.ktm.stisitelkom.ac.id

www.dkv.stisitelkom.ac.id www.dp.stisitelkom.ac.id www.srm.stisitelkom.ac.id

www.blog.stisitelkom.ac.id www.multimedia.stisitelkom.ac.id

www.elearning.stisitelkom.ac.id www.library.stisitelkom.ac.id

www.digilib.stisitelkom.ac.id www.mirror.stisitelkom.ac.id

www.sisfo.stisitelkom.ac.id www.hilfan.blog.stisitelkom.ac.id

www.hilfans.wordpress.com www.hilfan-s.blogspot.com www.askaf.co.id

Senin, 20 Februari 2012

Install BURG in Ubuntu Lucid


Install BURG in Ubuntu Lucid (10.04)





BURG if you didn’t notice is GRUB backwards and actually stands for “Brand-new Universal loadeR from GRUB” which was probably decided a while after picking the letters.. Basically though it’s a much nicer looking alternative to the very dated looking GRUB bootloader.

Installation

Until only recently it’s seemed far too much hassle of installing something which only gets displayed for a couple of seconds at boot and isn’t seen again unless something goes wrong, but now that a PPA has been created for it (for Lucid anyway) it seems like its worth the very little bother.

First add the PPA:
sudo add-apt-repository ppa:bean123ch/burg

Now type the following to install the loader, emulator and some themes:
sudo apt-get update && sudo apt-get install burg-pc burg-themes burg-emu

You’ll be prompted to do some configuration settings in order for it to install, for these I just hit enter for each with the default to options however make sure to double check!

Now that’s done try rebooting and you should now see a slightly different screen? If so you can get on to tweaking it to get it to look even nicer :)

Tweaking

Themes:

When on the new shiny bootloader hit the ‘T’ button to load a new popup menu which allows you to toggle between themes without the need to restart so pick a favourite (mine are Radiance and Sora Clean.)

Clean Up The Boot List:

If you’re like me and have a bunch of old kernels still cramming up your boot screen you might want to get rid of them, it’s easy enough just make sure to note down your current version and the older versions which you can see on the loader (the newest version will have the highest number). My versions were 2.6.32-22 and 2.6.32-21, so I wanted to remove the later and here’s how to do that:

Open Synaptic Package Manager (System-> Administration->Synaptic Package Manager)

search for the version you want to remove (eg mine was 2.6.32-21) right click on the checked ones and “Mark for Complete Removal”, if you are at all unsure about which version to remove it’s probably best you just leave it or ask someone to check.

Now in order to update BURG to notify changes have been made, run:
sudo update-burg

Set the BURG Screen Resolution:

Very simple to do, note down your screen resolution (you should be able to find that under System->Preferences->Monitors under Resolution) now you want to edit the following file and change the default size to the one that matches your screens.
sudo gedit /boot/burg/burg.cfg

Find the following line and replace the 640×480 with your resolution (for example I had to change mine to 1440×900)
set gfxmode=640×480

Save and close this file and you should be done.

If you want to try customising BURG more or if you’re having some problems you should check out their very useful help page:

https://help.ubuntu.com/community/Burg
Update:

Over at OMG! Ubuntu! they have found an even nice looking theme, so make sure to check that out: link

 
//
//

Install BURG in Ubuntu Lucid

Related posts:

  1. HowTo: Install Player/Stage in Ubuntu Karmic (9.10)

  2. HowTo: Fix “An error occurred while mounting” – Ubuntu Lucid (10.04)

  3. HowTo: Install OpenCV in Ubuntu Karmic (9.10)

  4. Howto: Reinstall Grub using Ubuntu Live CD

  5. HowTo: Switch the Window Menu Buttons Back to the Right – Ubuntu 10.04 / 10.10 / 11.04htttp://www.stisitelkom.ac.id

     

    www.stisitelkom.ac.id www.di.stisitelkom.ac.id www.ktm.stisitelkom.ac.id

     

    www.dkv.stisitelkom.ac.id www.dp.stisitelkom.ac.id www.srm.stisitelkom.ac.id

     

    www.blog.stisitelkom.ac.id www.multimedia.stisitelkom.ac.id

     

    www.elearning.stisitelkom.ac.id www.library.stisitelkom.ac.id

     

    www.digilib.stisitelkom.ac.id www.mirror.stisitelkom.ac.id

     

    www.sisfo.stisitelkom.ac.id www.hilfan.blog.stisitelkom.ac.id

     

    www.hilfans.wordpress.com www.hilfan-s.blogspot.com www.askaf.co.id

     


Jumat, 17 Februari 2012

Install Nagios from repo Fedora Centos SL

Install Nagios from repo Fedora/Centos/SL



How to install Nagios from repo Fedora/Centos/SL


Written by pirat9 on February 16, 2012. Posted in CentOS, Fedora, Linux tutorials





  • Nagios is one of the most powerful open source monitoring tool, its giving the opportunity for monitoring all OS and devices , in our previous posts, we did show you how to install Nagios from source in Fedora and CentOS, today we will see how to install it directly from yum in Fedora/Centos/SL(Scientific Linux) in easy steps.




Install Nagios
yum install nagios*


  • Now Start Nagios


 /etc/init.d/nagios start  


  • Start nagios on boot


chkconfig nagios on Start httpd apache



/etc/init.d/httpd start 
Start apache on boot chkconfig httpd on


  • Make Nagios admin password


htpasswd -c /etc/nagios/passwd nagiosadmin


  • check the nagios.conf file in the apache conf.d directory


/etc/httpd/conf.d/nagios.conf


  • Disable SELinux:


# vim /etc/selinux/config 
SELINUX=disabled
# reboot


  • Check if nagios users and groups are added


# groupadd nagios 
# adduser nagios -g nagios
# passwd nagios
# usermod -G nagios nagios
# usermod -G apache,nagios apache


  • Check nagios confif with


nagios -v /etc/nagios/nagios.cfg
Checking obsessive compulsive processor commands... Checking misc settings... Total Warnings: 0 Total Errors: 0

Now start nagios and report if worked for you.


http://ip/nagios and login with your nagiosadmin user already created





Related Posts



  1. How to install nagios in RHEL|Centos|Fedora

  2. How to Install and configure Nagios in Archlinux

  3. How to install Nagios 3.2.2 from source in Opensuse 11.3

  4. Install Nagios 3.2.3 in Fedora 14 from source

  5. Install BackupPC server in Centos|Rhel|Fedora


Install Nagios from repo Fedora Centos SL



Kamis, 16 Februari 2012

Twitter Bisa Menginformasikan Email Anda Kepada Spammer

Twitter Bisa Menginformasikan Email Anda Kepada Spammer





Rekan semua harus hati-hati saat ber-Twitter ria karena email anda bisa dicuri oleh pihak tidak bertanggung jawab.

 

Orang lain bisa mengetahui alamat email anda dan menggunakannya untuk kepentingan mereka cukup dengan “Find People”, cara menemukan email pengguna Twitter sangatlah mudah, ratusan bahkan mungkin ribuan email bisa dipanen, yakni dengan melakukan pencarian yaitu fitur “Find People”, kemudian cari dengan menggunakan email ini hasilnya:

 

tweeter paradise for spammers..

 

Find People Twitter

 

Seperti rekan semua lihat saya cukup mengetik @yahoo.com di “Find People” Twitter menampilkan semua alamat email, saya juga bisa mencari @gmail.com disitu atau apapun layanan email.

 

Setelah alamat-alamat email tersebut muncul, si pencari dapat mengumpulkannya dan menyimpannya di HD, lalu mengirimkan email-email junk ke Inbox anda.

 

Oleh karena itu jangan tampilkan email anda di Twitter atau pergunakan email sembarangan yang tidak pernah anda gunakan.



Twitter Bisa Menginformasikan Email Anda Kepada Spammer

 

 

http://www.stisitelkom.ac.id

http://hilfan.blog.stisitelkom.ac.id

Messenger Chat multi account

Messenger-an / Chat multi account





Untuk para chatter mania yang mempunyai beberapa account chat misalnya ym, fb, twitter. googletalk, hotmail....

Dari pada repot menggunakan beberapa program, ini ada solusi (all in one solution),

ataupun untuk para pegawai yang browsernya diblock dikantornya anda masih bisa chat fb dengan ini.

 

menggunakan pidgin (program free alias gratis jadi halal)

Plus no worry about spy-ware and Pop-Up issues like with AOL's AIM.

 

download di:

http://www.pidgin.im/

kalau bisa download versi offlinenya.

 

groups:

http://www.facebook.com/pages/Pidgin/32214755236?ref=ts&v=wall#!/group.php?gid=45947608652

 

Tampilan setelah instalasi: menambahkan data user (user account)

 

Menambahkan User Account

 

Account Manager:

 

Account Manager

 

Memilih Account Protocol (YM, FB, Tweeter, GoogleTalk, dan lainnya):

 

Memilih Account Protocol (YM, FB, Tweeter, GoogleTalk, dan lainnya)

 

Untuk plugin facebook download dulu disini:

http://code.google.com/p/pidgin-facebookchat/downloads/list

pilih sesuai OS anda apakah microsoft windows (exe) atau linux (deb dan lainnya)

 

Untuk plugin tweeter download dulu disini:

http://code.google.com/p/microblog-purple/downloads/detail?name=pidgin-microblog-0.3.0.exe

 

protocol apapun yang anda butuhkan cari di google dengan keyword contoh: facebook plugin for pidgin

 

 

 

Instalasi facebook di pidgin tanpa plugin menggunakan XMPP (sudah tersedia di Pidgin sebagai aplikasi default):

 

* Protokol: XMPP

* Username: [ username Anda saat ini ] (lihat langkah 1)

* Domain: chat.facebook.com

 

1. Saat ini, Anda akan memerlukan Username Facebook (yaitu, facebook.com / contohnama). Jika Anda belum menetapkannya, klik di sini untuk melakukannya: http://www.facebook.com/username

 

2. Buka Pidgin, Klik Account, lalu Manage Accounts. Sekarang klik Add / Tambah.

 

3. Isi tab Basic dengan rincian sebagai berikut:

 

* Resource: [tidak terpakai, Anda dapat meninggalkan kosong]

* Password: [saat ini Anda dapat password]

 

Setting XMPP facebook

 

4. Pada tab Advanced, pastikan semua pilihan SSL tidak dicentang.

 

Setting XMPP advanced

 

 

5. Klik Add / Tambah. Anda selesai!



Messenger Chat multi account

 

 

http://www.stisitelkom.ac.id

http://hilfan.blog.stisitelkom.ac.id

IGOS berbasis Fedora edit setelah instalasi IGOS

IGOS berbasis Fedora, edit setelah instalasi IGOS





IGOS Nusantara 2010 atau IGN2010 adalah distro IGOS generasi ke 5 setelah IGN2009 yang berbasis Fedora 11. IGN2010 berbasis Fedora 13. Proses instalasi yang saya lakukan di laptop Lenovo 3000v100 hanya memakan waktu kurang dari 1 jam. Setelah instalasi IGN2010 selesai, menunggu pekerjaan lain. Misalnya instalasi Java Runtime Enviroment (JRE), k3b, dan juga setting repositori agar diarahkan ke IGN2010. IGN2010 juga memiliki password default untuk root. Sementara user default tidak dilengkapi password. Ini demi kemudahan pengguna awam. Namun jika ingin diubah menjadi sedikit aman, sangatlah mudah. Easy cake. Bagi yang dulu menggunakan IGN2009, proses instalasi IGN2010 akan menghapus sistem yang lama.

Edit Konfigurasi Repositori Server

 

Secara default, IGN2010 mengarahkan repositori-nya ke media atau DVD-Installer. Jika kita punya akses Internet, tidak ada salahnya untuk memanfaatkan repositori IGN2010. Untuk mengubah arah repositori, edit file-file /etc/yum.repos.d/. File-file tersebut adalah :

  1. ign2010-all.repo

  2. ign2010-other.repo

  3. ign2010-extra.repo

  4. ign2010-updates.repo


Pada dasarnya, ubah baris "enabled=0" menjadi "enabled=1". Namun pada file media.repo, diubah sebaliknya, dari "enabled=1" menjadi "enabled=0". Selengkapnya untuk file ign2010-all.repo adalah sbb :

 

[ign2010-all]

name=ign2010-all

baseurl=

http://repo.informatika.lipi.go.id/2010/all/

http://repo.igos-nusantara.or.id/2010/all/

failovermethod=priority

enabled=1

gpgcheck=0

 

Lakukan pengubahan seperti ini untuk ketiga file lainnya.

 

K3b - CD dan DVD Kreator

# yum install k3b

Paket yang terinstalasi : k3b-2.0.0-2.fc13.i686 (28 M)

 

Editor Diagram Dia

# yum install dia

Paket : dia-0.97-4.ign5.i686 (5,3 M)

 

Lame untuk Ripping CD Audio

# yum install lame

Paket : lame-3.98.3-1.ign5.i686 (11o k)

 

YM yang mendukung Video

# yum install gyachi

Paket : gyachi-1.2.9-2.ign5.i686 (1,9 M)

 

SIP Phone atau Softphone

# yum install ekiga

Paket : ekiga-3.2.7-3.ign5.i686 (12 M)

 

FTP Client

# yum install gftp

Paket : gftp-2.0.19-4.ign5.i686 (678 k)

 

File video AVI, WMV, FLV, MOV, ASF, MPG -> OK, OGG dan OGV -> belum

 

Lihat juga :

http://msmunir-ina.blogspot.com/2010/02/igos-nusantara-2009.html

 

MP3Info Fedora 14

Download file mp3info-0.8.5a-1.i386.rpm dari http://www.ibiblio.org/mp3info/ lalu jalankan di terminal :

[root@localhost Unduhan]# rpm -ivh mp3info-0.8.5a-1.i386.rpm

Preparing... ########################################### [100%]

1:mp3info ########################################### [100%]

[root@localhost Unduhan]#

 

 

http://msmunir-ina.blogspot.com/2010/10/setelah-instalasi-igos-nusantara-2010.html



· · · Share · Delete
















IGOS berbasis Fedora edit setelah instalasi IGOS

 

 

http://www.stisitelkom.ac.id

http://hilfan.blog.stisitelkom.ac.id

the best free and opensource games of the Linux land

the best free and opensource games of the Linux land

inside Sabayon Linux 5.4

 

the best free and open-source games of the Linux land, including 0ad, Alien Arena 2011, Battle of Wesnoth, FooBillard, Freeciv, Frozen Bubble, GNOME Games, M.A.R.S. a ridiculous shooter, Micropolis, NeverBall, Nexuiz, OpenArena, Pingus, PyChess, Scorched 3D, Simutrans, Spring, Stepmania, Torcs, Tremulous, Warsow, Warzone 2100 and Wormux

 

http://spins.fedoraproject.org/games/

 

http://supergamer.org/

 

 

http://www.stisitelkom.ac.id

http://hilfan.blog.stisitelkom.ac.id

Linux dengan tampilan windows xp berjalan sangat mulus di ubuntu 11 dan Fedora Fusion 14

Linux dengan tampilan windows xp berjalan sangat mulus di ubuntu 11.04 dan Fedora Fusion 14.1





Just download the tar.gz file http://ubuntu.online02.com/files/XpGnome.tar.gz

 

Right-click it and select "Extract Here", then run the "InstallXpGnome.sh" by double-clicking it and choosing "Run"!

 

Changes: Icons, GTK, Metacity, Splash, GDM Theme, Mouse Cursor, Panel Background, Desktop Background, Visible Desktop Icons, Nautilus Tree View, Toolbar to Icons only. Deletes all GNOME Panels and adds a new one at bottom with Start Menu, Show Desktop, Window Switcher, Notification Area, Volume Control and Clock.

 

Settings are saved and can be reverted by running the Restore_Settings.sh script in the restore folder

 

 

I don't see the START button! This happens. I don't know why. Run the script again, it should appear.

Linking: Please link to this page, instead of direct download, as the script may update - http://ubuntu.online02.com/xpgnome

GNOME Login Theme: The GDM in Ubuntu 9.10 is not themable, so you won't be able to theme the login screen as of now

How to remove certain Desktop Icons: Open a run window (alt+F2) and type "gconf-editor" it will bring up a window where you can change all these settings. If you browse to Apps->Nautilus->Desktop you can check which icons you want to show

What about a Windows 7 theme?: http://ubuntu.sun.ac.za/index.php?title=W7_Theme

 

http://ubuntu.online02.com/node/14

 

 

or use over all OS http://www.oslike.se/xp-like

 

jangan lupa untuk menambahkan nautilus-image-converter-0.0.9-1.fc7 agar bisa image resize seperti xp power toys.

 

Scrip yang paling atas berjalan sangat mulus di ubuntu 11.04 dan Fedora Fusion 14.1

 

List untuk opensource program List Of Open-source Programs (LOOP) for Microsoft Windows Operating Systems https://help.ubuntu.com/community/ListOfOpenSourcePrograms

 

Untuk memudahkan suatu file dibuka sebagai administrator : http://www.watchingthenet.com/ubuntu-tips-for-windows-users-add-open-as-administrator-to-nautilus-right-click-menu.html

 

Install Gnome Global Menu + Docky Di Fusion Linux

Masuk ke terminal

1. yum install gnome-globalmenu-common gnome-applet-globalmenu

 

Setelah selesai log-out dari dekstop GNOME dan log-in kembali

kita intip dulu agar terlihat perbedaan setelah Applet Global Menu dipasang

Caranya klik kanan pada panel, klik add to panel dan pilih global menu applet

Pada panel akan muncul gnome global menu.

 

Untuk Memperindah biar kaya mac install docky

Masuk ke terminal

2. yum install docky

 

Setelah selesai instalasi docky diaktifkan melalui menu Applications - Accesories - Docky

Langkah terakhir adalah mengakifkan desktop effects agar Docky tidak terlihat jelek dan mengganggu tampilan desktop, caranya adalah klik menu System - Preferences - Look and Feel - Desktop Effects, klik Compiz dan klik tombol close.

 

http://linuxappfinder.com/alternatives

padanan program win di linux

 

http://blog.cyber4rt.com/linux/mengembalikan-grub-ubuntu-yang-hilang-setelah-install-windows/

merestore grub

 

http://rpm.pbone.net/index.php3/stat/4/idpl/14939084/dir/fedora_14/com/gimagereader-0.8-1.fc14.noarch.rpm.html

OCR convert, pdf & image to teks



Linux dengan tampilan windows xp berjalan sangat mulus di ubuntu 11 dan Fedora Fusion 14

Setting grub fedora agar kembali ke ubuntu

Setting grub fedora agar kembali ke ubuntu


Saat masuk grub fedora tekan esc , kemudian tekan c ini akan masuk grub dalam modus text ketikan find /boot/grub/core.img , kemudian akan tampil posisi dari partisi ubuntu , ketik lagi root (hd0,X) ,lanjutkan dengan kernel /boot/grub/core.img dan terakhir ketik boot , ini akan boot dan login ke ubuntu , dari ubuntu tinggal instal ulang grub --> sudo grub-install /dev/sda

Setting grub fedora agar kembali ke ubuntu

Install Cinnamon On Fedora

Install Cinnamon On Fedora





 

Tampilan desktop Gnome Cinnamon

 

Cinnamon, merupakan salah satu tampilan desktop GNOME yang dibuat untuk Linux Mint (Ubuntu) oleh Clement Lefebvre, tersedia untuk openSUSE dan Fedora.

 

Untuk Fedora 16, Cinnamon dapat diinstal melalui repositori yang dibuat oleh pengguna Fedora - tambahkan repositori dan instal Cinnamon, gunakan perintah di bawah ini:

 

Gunakan super user

 

*******

$su

 

#curl http://repos.fedorapeople.org/repos/leigh123linux/cinnamon/fedora-cinnamon.repo -o /etc/yum.repos.d/fedora-cinnamon.repo

 

#yum install cinnamon

*******

 

Biarkan proses install sampai selesai.

 

Kemudian log out dan pilih Cinnamon di layar login GDM:

 



Pilih menu tampilan Cinnamon di GDM (Gnome Desktop Manager)



Install Cinnamon On Fedora

FOSS ELearning Authoring Toolkit

FOSS E-Learning Authoring Toolkit


Search on SE :

https://www.google.com/search?q=opensource+E-Learning+Toolkit+Authoring&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:unofficial&client=firefox-a

 

Result :

  1. http://blog.efrontlearning.net/2010/10/open-source-authoring-tools-for-e.html

  2. http://www.what2learn.com/

  3. http://xical.org/

  4. http://classtools.net/

  5. http://exelearning.org/wiki

  6. http://www.debugmode.com/wink/

  7. http://www.learningtools.arts.ubc.ca/mloat.htm

  8. http://www.courselab.com/

  9. http://www.courselab.com/db/cle/reviews.html

  10. http://www.slideshare.net/CPappasOnline/free-open-source-authoring-tools-for-elearning


FOSS ELearning Authoring Toolkit

Kamis, 26 Januari 2012

Simpan Data Gratis di Internet

Simpan Data Gratis di Internet


Tempat penyimpanan data di Internet bukanlah hal yang baru. Zaman sekarang sudah banyak yang menawarkan puluhan/ratusan giga byte (Gb) atau bahkan terra byte (Tb)!

Adrive, Simpan Data Gratis di Internet

Kali ini saya membahas ADrive, nama yang mungkin untuk beberapa orang akan mengingatkan pada Xdrive (sesama penyedia jasa penyimpanan data online) yang kini sudah tutup. ADrive menawarkan tike jenis akun Basic (50 GB, gratis), Signature (50 GB dengan berbagai fitur extra, $6.5 per bulan), Premium (>100GB, tergantung pihan anda & mulai dari $13.95).

Proses sign-up jika anda belum punya akun relatif sederhana & cepat. Satu hal yang saya pikir sangat bagus adalah ketika membuat password ADrive meminta anda membuat password yang cukup kuat: minimal 8 huruf & harus berisikan kombinasi hurug besar/kecil/angka. Ini menunjukkan kalau ADrive cukup memperhatikan masalah keamanan. Sayang koneksi SSL (Secure Socket Layer; dimana file dienkripsi ketika diupload/download) tidak tersedia untuk akun gratis.

Adrive mengandalkan Java Applet untuk mengupload file berbabasiskan web dan desktop software. Sayangnya cara kedua hanya dapat digunkan bagi pengguna akun non-gratis. Namun versi Java Applet ini cukup mudah digunakan, walau tampilannya yang biru glossy mungkin agak berbeda bagi pengguna awam.

tmpA145

Ketika proses upload, terdapat bar indicator proses upload.

tmpDF7E

Setelah proses upload selesai, muncul layar utama ADrive dimana anda dapat mengatur semua dokumen yang ada.

tmp4553

Satu hal lagi yang menarik, ADrive sudah melakukan kerja sama dengan Zoho. Jadi untuk dokumen office anda dapat langsung mengeditnya online (jika anda memiliki akun di Zoho). Caranya, cukup klik gambar kaca pembesar di bagian kanan nama file dan pilih Edit in Zoho.

Jika anda punya file yang ingin diberikan/dilihat orang lain, cukup klik Share & otomatis file tersebut dipindahkan ke folder My Shared Files. Dari dalam folder ini dengan mengklik icon kaca pembesar disamping nama file, anda dapat melihat URL file tersebut termasuk pilihan untuk mengirimkan file tersebut via Email.

Secara keseluruhan ADrive mudah digunakan, relatif cepat & memberikan ruang yang cukup lega untuk penyimpanan dokumen.

Alternatif lain yang saya gunakan: