Linux For Your Life

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg
Showing posts with label Server. Show all posts
Showing posts with label Server. Show all posts

Saturday, 20 February 2010

installation and configuration of the dhcp server

Posted on 07:17 by Unknown


       If you have a simple network at home, you can configure one of your PC into a DHCP server. Dynamic Host Configuration Protocol (DHCP) is a network protocol used by the DHCP client for automatic IP configuration of the network is required, with this if you have many client PCs, each PC is just the set of DHCP for network configuration / IP is automatically from a DHCP server. 
      Creating a DHCP server service on ubuntu you can do with ease. Dhcp3-server package is needed to make these services have also been in ubuntu.Untuk install a DHCP server package in ubuntu ubuntu 9.04 or 9.10, you can run the following command: 

$ sudo apt-get install dhcp3-server 


      Before starting the DHCP server configuration, we will make IP network design that will be made on the DHCP server, following the design of DHCP server will be made: 


DHCP Client IP          : 192.168.0.100 - 192.168.0.200 
GATEWAY IP             : 192.168.0.85 
Subnet Mask             : 255.255.255.0 
Broadcast Address     : 192.168.0.255 
IP DNS Server 1        : 203.3.210.11 
DNS Server 2 IP        : 203.3.208.11 


     After creating the design for a DHCP IP network such as the above, we will begin the process of configuring a DHCP server, for the first backup configuration file /etc/dhcp3/dhcpd.conf be / etc/dhcp3/dhcpd.conf_default 


$ sudo cp / etc/dhcp3/dhcpd.conf / etc/dhcp3/dhcpd.conf_default 


Next edit the file /etc/dhcp3/dhcpd.conf be as follows: 


$ gksu gedit / etc/dhcp3/dhcpd.conf 


# Sample dhcpd.conf file 
default-lease-time 600; 
max-lease-time 7200; 


option subnet-mask 255.255.255.0; 
option broadcast-address 192.168.0.255; 
option routers 192.168.0.85; 
option domain-name-servers 203.3.210.11, 203.3.208.11; 


# This is a very basic subnet declaration. 
Subnet 192.168.0.0 netmask 255.255.255.0 ( 
range 192.168.0.100 192.168.0.200 ' 
) 






Save the file changes / etc/dhcp3/dhcp.conf it. 
DHCP server configuration process service selesai.Restart DHCP server to activate the changes: 


$ sudo / etc/init.d/dhcp3-server restart 


Thank's
By:Mr.Gm

Read More
Posted in Server | No comments

Instalasi dan Konfigurasi DHCP Server

Posted on 06:34 by Unknown


Jika anda memiliki jaringan sederhana di rumah,Anda dapat mengkonfigurasi salah satu PC anda menjadi DHCP server.
Dynamic Host Configuration Protocol(DHCP) adalah protocol jaringan yang di gunakan oleh DHCP client untuk mendapatkan secara otomatis konfigurasi IP jaringan yang dibutuhkan.Dengan ini jika anda memiliki banyak PC client,maka setiap PC ini cukup di set DHCP untuk mendapatkan konfigurasi jaringan/IP secara otomatis dari DHCP server.
Membuat layanan DHCP server di ubuntu dapat anda lakukan dengan mudah.Paket dhcp3-server yang di butuhkan untuk membuat layanan ini juga sudah terdapat di ubuntu.Untuk menginstalasikan paket DHCP server di ubuntu 9.04 atau ubuntu 9.10,Anda dapat menjalankan perintah berikut :

$ sudo apt-get install dhcp3-server


Sebelum memulai konfigurasi DHCP server, kita akan membuat rancangan IP jaringan yang akan dibuat pada DHCP server,Berikut ini rancangan DHCP server yang akan di buat :


IP Client DHCP :192.168.0.100 – 192.168.0.200
IP GATEWAY :192.168.0.85
Subnet Mask :255.255.255.0
Broadcast Address :192.168.0.255
IP DNS Server 1 :203.3.210.11
IP DNS Server 2 :203.3.208.11


Setelah membuat rancangan IP jaringan untuk DHCP seperti diatas,kita akan memulai proses konfigurasi DHCP server.untuk iti backup dahulu file konfigurasi /etc/dhcp3/dhcpd.conf menjadi /etc/dhcp3/dhcpd.conf_default


$ sudo cp /etc/dhcp3/dhcpd.conf /etc/dhcp3/dhcpd.conf_default


Berikutnya edit file /etc/dhcp3/dhcpd.conf menjadi seperti berikut :


$ gksu gedit /etc/dhcp3/dhcpd.conf


# sample file dhcpd.conf
default-lease-time 600;
max-lease-time 7200;


option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option routers 192.168.0.85;
option domain-name-servers 203.3.210.11, 203.3.208.11;


# This is a very basic subnet declaration.
Subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.100 192.168.0.200'
}




Simpan hasil perubahan file /etc/dhcp3/dhcp.conf tersebut .
Proses konfigurasi DHCP server selesai.Restart service DHCP server untuk mengaktifkan perubahan :


$ sudo /etc/init.d/dhcp3-server restart


Thank's
By:Mr.Gm
 
Read More
Posted in Server | No comments

Friday, 19 February 2010

installation XAMPP

Posted on 07:38 by Unknown


If you want the integration of the Apache web server, MySQL database server, and PHP / Perl in one package, you can install XAMPP


XAMPP is a web application server package that is free and cross-platfrom in the package which consists of the Apache HTTP server package, MySGL database, and packages to inteprenter script written in PHP or PERL.


To install XAMPP on ubuntu 9.14 or 9.10, make sure that service Apache and MySQL database server, is not working.or if Apache and MySQL packages are installed, you can turn off once the Apache and MySQL service using the following command:


$ sudo /etc/init.d/apache2 stop


$ sudo /etc/init.d/mysql stop


XAMPP installer to download the latest version of linux.download XAMPP in (http://www.apachefriends.org/en/xampp-linux)
After the download was logged in as root, move to the directory where you save the XAMPP installer, then exstrak file to the directory / opt.


$ sudo tar xzvf xampp-linux-1.7.3a.tar.gz-C /opt


After XAMPP files exstracted to a directory /opt, you can immediately start using the service XAMPP following command:


$ sudo-l
# /opt / lampp / lampp start


XAMPP service in order to run automatically, you can copy files to the service XAMPP /etc/init.d, then create a symbolic link to the service so that the default run level:


$ sudo-l
# cp /opt/lampp/ lampp /etc/init.d/lampp
# ln -s /etc/init.d/lampp /etc/rc2.d/s86lampp
# ln -s /etc/init.d/lampp /etc/rc3.d/s86lampp


After the service XAMPP running well, you can see if XAMPP is running well with carry web browser, and then on her page typed url http://localhost




source: paper edition of PC-MILD / 7 / 2009


Thank's
By:Mr.Gm
Read More
Posted in Server | No comments

Instalasi XAMPP

Posted on 06:32 by Unknown
http://www.apachefriends.org/en/xampp-linux

Jika menginginkan integrasi Apache web server,MySQL database server ,dan PHP/PERL dalam satu paket,anda dapat menginstalasikan XAMPP.

XAMPP merupakan paket aplikasi web server yang bersifat free dan lintas platfrom dimana di dalam paketnya terdiri atas paket Apache HTTP Server,database MySGL,dan paket inteprenter untuk skrip yang ditulis dalam bahasa PHP atau PERL.

Untuk menginstalasikan XAMPP di ubuntu 9.14 atau 9.10 ,pastikan kalau service apache dan database server MySQL,sudah tidak berjalan.Atau jika paket Apache dan MySQL sudah terinstalasi,Anda dapat mematikan dahulu service Apache dan MySQL dengan menggunakan perintah berikut :


$ sudo /etc/init.d/apache2 stop


$ sudo /etc/init.d/mysql stop


Download installer XAMPP untuk linux.download versi terbaru dari XAMPP di (http://www.apachefriends.org/en/xampp-linux).


Setelah ter-download login sebagai root ,pindah ke direktori tempat anda menyimpan installer XAMPP,lalu exstrak file tersebut ke direktory /opt .


$ sudo tar xzvf xampp-linux-1.7.3a.tar.gz -C /opt


Setelah file XAMPP terekstrak ke direktori /opt,Anda dapat segera menjalankan service XAMPP dengan menggunakan perintah berikut :


$ sudo -l
# /opt/lampp/lampp start


Agar service XAMPP dapat berjalan secara otomatis,Anda dapat mengcopy file service XAMPP ke /etc/init.d,lalu buat simbolik link untuk service tersebut agar di default run level 

$ sudo -l
# cp /opt/lampp/lampp /etc/init.d/lampp
# ln -s /etc/init.d/lampp /etc/rc2.d/s86lampp
# ln -s /etc/init.d/lampp /etc/rc3.d/s86lampp


Setelah service XAMPP berjalan baik,Anda dapat memastikan apakah XAMPP sudah berjalan dengan baik dengan mejalankan web browser,lalu pada halaman url-nya ketikan http://localhost .




sumber : koran PC-MILD edisi /7/2009


Thank's
By.Mr.Gm



Read More
Posted in Server | No comments
Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • Changing OpenOffice Splash Screen Images
    when we run openoffice will come openoffice splash screen image that was used we see, we may feel bored with the splash screen and want to r...
  • Subject-verb agreement
             Subject-verb agreement is a grammatical rule that states that the verb must agree in number with its subject.  In English,  prese...
  • Copy Seluruh Isi Website Dengan WebHTTrack
    S aat menyulusuri suatu website yang terdapat di internet,misalnya situs berisikan lyric lagu atau situs berisikan cerita komik,terkad...
  • Mengembalikan GRUB bootloader yang hilang pada Ubuntu Linux
        Tutorial ini akan menjelaskan bagaimana mengembalikan grub setelah menginstal Windows 7/Vista/Xp. Jika anda menggunakan dual boot PC de...
  • Make Repository local in Ubuntu and Debian
          The first step we doing when we will make the local Repository is download the complete package Repository. To download the complet...
  • Malin Kundang Story From Padang Indonesia
    Long time ago, in a small village near the beach in West Sumatera, lived a woman and her son, Malin Kundang. Malin Kundang's father ha...
  • Switch to Kubuntu, Xubuntu, or Edubuntu
            To switch to Kubuntu, Xubuntu, or Edubuntu , use Synaptic to search for and install kubuntu-desktop , xubuntu-desktop , or edubuntu...
  • Tangkuban Perahu Part 1
                  Once upon a time in west Java, Indonesia lived a wise king who had a beautiful daughter.   Her name was Dayang Sumbi.  She lik...
  • Grand Thief Auto V
        Grand Thief Auto atau yang sering ita dengar dengan GTA akan muncul dengan seri terbarunya yaitu Grand thief Auto V seri terbaru ini aka...
  • Tugas FPGA (Seven Segment Display)
        Seven segment adalah alat tampilan elektronik yang bisa menampilkan penomoran decimal. Seven segment biasanya diidentifikasi dalam indus...

Categories

  • Applications
  • cairo-dock
  • convert Rpm to Deb
  • Desktop
  • Distro
  • Download Manager
  • Fix Crash GUI
  • Format USB
  • game
  • hardware
  • Install Linux
  • internet and Web
  • Linux Intro
  • LiveUSB
  • Local Repository
  • nautilus
  • Optimize Linux system
  • Programming Language
  • Robot
  • Server
  • so
  • Terminal
  • Tips and Trick OpenOffice
  • Tugas Manajemen Proyek dan Risiko
  • Tugas SoftSkill
  • wifi

Blog Archive

  • ▼  2012 (5)
    • ▼  June (2)
      • Tangkuban Perahu Part 1
      • Malin Kundang Story From Padang Indonesia
    • ►  May (1)
    • ►  April (1)
    • ►  March (1)
  • ►  2011 (29)
    • ►  December (10)
    • ►  November (2)
    • ►  October (2)
    • ►  May (11)
    • ►  March (2)
    • ►  February (2)
  • ►  2010 (74)
    • ►  December (13)
    • ►  October (4)
    • ►  June (12)
    • ►  May (10)
    • ►  April (6)
    • ►  March (8)
    • ►  February (18)
    • ►  January (3)
  • ►  2009 (42)
    • ►  October (6)
    • ►  September (13)
    • ►  August (13)
    • ►  July (10)
Powered by Blogger.

About Me

Unknown
View my complete profile