Selamat Datang Orang Gila !!! .:: Welcome Lunatic ::.

Install Eggdrop dan source

Tutorial ini ada cara gimana kita install eggdrop dari sourcenya

1. Download file eggdropnya di www.egghelp.org dibagian eggdrop filenya

eggdrop@love [~]# wget ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/eggdrop1.6.10.tar.gz
–06:16:05– ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/eggdrop1.6.10.tar.gz
=> `eggdrop1.6.10.tar.gz’
Resolving ftp.eggheads.org… done.
Connecting to ftp.eggheads.org[207.195.39.240]:21… connected.
Logging in as anonymous … Logged in!
==> SYST … done. ==> PWD … done.
==> TYPE I … done. ==> CWD /pub/eggdrop/source/1.6 … done.
==> PORT … done. ==> RETR eggdrop1.6.10.tar.gz … done.
Length: 893,527 (unauthoritative)

100%[=====================================================>]
893,527 470.65K/s ETA 00:00

06:16:07 (470.65 KB/s) - `eggdrop1.6.10.tar.gz’ saved [893527]

eggdrop@love [~]#

2. Setelah itu anda ekstrak filenya dengan menggunakan perintah tar

eggdrop@love [~]# tar -zxvf eggdrop1.6.10.tar.gz
….
eggdrop1.6.10/src/mod/woobie.mod/woobie.c
eggdrop1.6.10/text/
eggdrop1.6.10/text/CONTENTS
eggdrop1.6.10/text/banner
eggdrop1.6.10/text/motd
eggdrop1.6.10/configure
eggdrop1.6.10/configure.in
eggdrop@love [~]#

3. Masuk ke folder hasil extraknya

eggdrop@love [~]# cd eggdrop1.6.10
eggdrop@love [~/eggdrop1.6.10]#

4. Lalu configure sesuai sistemnya

eggdrop@love [~/eggdrop1.6.10]# ./configure

This is Eggdrop’s GNU configure script.
It’s going to run a bunch of strange tests to hopefully
make your compile work without much twiddling.

checking for gcc… gcc
checking for C compiler default output… a.out
checking whether the C compiler works… yes


onfig.status: creating src/mod/Makefile
config.status: creating config.h
creating lush.h

Configure is done.

Type ‘make config’ to configure the modules, or type ‘make iconfig’
to interactively choose which modules to compile.

After that, type ‘make’ to create the bot.

eggdrop@love [~/eggdrop1.6.10]#

5.Lalu buat confignya dengan make config

eggdrop@love [~/eggdrop1.6.10]# make config
detecting modules……………….. done.
calculating dependencies………………. done.
building ./src/mod/Makefile… done.
make[1]: Entering directory `/home/eggdrop/eggdrop1.6.10/src/mod’

Configuring module compress …

running in eggdrop mode.
creating cache ../../../config.cache
….
….
creating ./config.status
creating Makefile

make[1]: Leaving directory `/home/eggdrop/eggdrop1.6.10/src/mod’
building ./src/mod/Makefile… done.

You can now compile the bot, using “make”.

eggdrop@love [~/eggdrop1.6.10]#

6. Lalu di make supaya menghasil file binary

eggdrop@love [~/eggdrop1.6.10]# make
make[1]: Entering directory `/home/eggdrop/eggdrop1.6.10/src’
(This may take a while. Go get some runts.)
gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H -c bg.c
gcc -pipe -g -O2 -Wall -I.. -I.. -DHAVE_CONFIG_H -c botcmd.c


make[1]: Leaving directory `/home/eggdrop/eggdrop1.6.10/src/mod’

modules made:
-rwxr-xr-x 1 eggdrop eggdrop 8112 Apr 17 06:23 assoc.so
-rwxr-xr-x 1 eggdrop eggdrop 13852 Apr 17 06:23 blowfish.so
-rwxr-xr-x 1 eggdrop eggdrop 97756 Apr 17 06:23 channels.so
-rwxr-xr-x 1 eggdrop eggdrop 9808 Apr 17 06:23 compress.so
-rwxr-xr-x 1 eggdrop eggdrop 8704 Apr 17 06:23 console.so
-rwxr-xr-x 1 eggdrop eggdrop 7612 Apr 17 06:23 ctcp.so
-rwxr-xr-x 1 eggdrop eggdrop 13724 Apr 17 06:23 dns.so
-rwxr-xr-x 1 eggdrop eggdrop 93092 Apr 17 06:23 filesys.so
-rwxr-xr-x 1 eggdrop eggdrop 118620 Apr 17 06:23 irc.so
-rwxr-xr-x 1 eggdrop eggdrop 25212 Apr 17 06:23 notes.so
-rwxr-xr-x 1 eggdrop eggdrop 12188 Apr 17 06:23 seen.so
-rwxr-xr-x 1 eggdrop eggdrop 57052 Apr 17 06:24 server.so
-rwxr-xr-x 1 eggdrop eggdrop 42972 Apr 17 06:24 share.so
-rwxr-xr-x 1 eggdrop eggdrop 32980 Apr 17 06:24 transfer.so
-rwxr-xr-x 1 eggdrop eggdrop 6748 Apr 17 06:24 uptime.so
-rwxr-xr-x 1 eggdrop eggdrop 12312 Apr 17 06:24 wire.so

Now run “make install” to install your bot.

eggdrop@love [~/eggdrop1.6.10]#

7.Sekarang tinggal kita make install untuk membuat file eggdrop binarynya
ada dua cara yaitu make install atau make install DEST=/path/tempat/install
kalau make install maka langsun di tarok di /home/usernamenya/eggdrop

eggdrop@love [~/eggdrop1.6.10]# make install

Eggdrop v1.6.10 (C) 1997 Robey Pointer (C) 2002 Eggheads

Installing in directory: ‘/home/eggdrop/eggdrop’.

Creating directory: /home/eggdrop/eggdrop.
mkdir /home/eggdrop/eggdrop



make[1]: Leaving directory `/home/eggdrop/eggdrop1.6.10/scripts’

Installation completed.

You MUST ensure that you edit/verify your configuration file.
Use one of the three configuration files (eggdrop.simple.conf,
eggdrop.advanced.conf and eggdrop.complete.conf) distributed
with your bot.

Remember to change directory to /home/eggdrop/eggdrop before you proceed.

eggdrop@love [~/eggdrop1.6.10]#

Selesai sudah install eggdropnya
Sekarang tinggal configurasi botnya
Tunggu kelanjutannya di bagian configurasi bot :)

Semoga bermanfaat buat anda !!!

Menurut anda tentang blog ini?