Linux For Your Life

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Wednesday, 24 February 2010

Sistem Interaktif

Posted on 01:17 by Unknown
Menurut saya sistem interaktif yang mempunyai daya tinggi bagi pemakainya adalah suatu sistem yang mudah di mengerti bagi user/pemakai sehingga sistem tersebut dapat di jalankan dengan mudah tanpa harus bersusah payah dalam menggunakan sistem tersebut.Sistem tersebut juga harus dperkenalkan terlebih dahulu kepada user agar user dapat mengerti maksud dan tujuan dari sistem interaktif tersebut.
Dalam Hal ini saya mengambil Handphone sebagai contohnya,sebelum handphone muncul sudah ada pejer yang memungknkan kita mengirim pesan dari user 1 ke user yang lain dari manapun tanpa harus bertatap muka ,sistem tersebut sudah mempunyai daya guna yang tinggi bagi user/pemakai.Seiring berjalan-nya waktu munculah handphone sebagai sebuah teknologi sistem interaktif dimana kita dapat saling berbicara dan mengirim pesan dari user 1 ke user yang lain.



Dengan Handphone bukan hanya untuk sms dan berbicara bahkan saat ini handphone dapat di pakai untuk kebutuhan internet seperti mengirim email ,update status facebook ,update blog ,download lagu dll.Jadi sudah jelas sekali bahwa handphone termasuk sistem interaktif yang sangat mempunyai daya guna yang tinggi dan berguna bagi pemakai.


Read More
Posted in Tugas SoftSkill | No comments

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

Download Video Youtube From Terminal

Posted on 02:07 by Unknown


      If you've seen a video film, music or cartoon of one of the largest video site in the world of YOUTUBE maybe one day you want to download and view videos offline.
     For those windows users accustomed to using orbit downloader application to download video files, for ubuntu users do not worry because the ubuntu repositories package already there that can be used to download video files from youtube, the package is youtube-dl, for the first install package using the following command:

$ sudo apt-get install youtube-dl


Once installed you can immediately download the video you want to type the following command:


$ youtube-dl link to the video that you download


Example:


$ youtube-dl http://www.youtube.com/watch?v=MmNzxFsNlNE





Thank's
By:Mr.Gm

Read More
Posted in Terminal | No comments

DOWNLOAD VIDEO YOUTUBE DARI TERMINAL

Posted on 01:57 by Unknown


Jika anda sering melihat video film ,music atau kartun dari salah satu situs video terbesar di dunia yaitu YOUTUBE mungkin suatu ketika anda ingin untuk mendownload video tersebut dan melihatnya secara offline.

Bagi pengguna windows mereka biasa menggunakan aplikasi orbit downloader untuk mendownload file video tersebut,bagi pengguna ubuntu jangan khawatir karana di repository ubuntu sudah terdapat package yang dapat di gunakan untuk mendownload file video dari youtube ,package tersebut adalah youtube-dl ,untuk itu install terlebih dahulu package tersebut dengan menggunakan perintah di bawa ini :


$ sudo apt-get install youtube-dl


Setelah Terinstall anda dapat langsung mendownload video yang anda inginkan dengan mengetikan perintah dibawah ini :


$ youtube-dl link video yang ingin kau download


Contoh :


$ youtube-dl http://www.youtube.com/watch?v=MmNzxFsNlNE






Thank's
By:Mr.Gm



Read More
Posted in Terminal | No comments

Friday, 19 February 2010

Desktop Wallpaper Changer

Posted on 09:43 by Unknown


        Maybe you feel tired and bored with the look wallapper you use on your desktop that is always monotonous, there are solutions to this is by using the application wally.wally automatic wallpaper changer with a wally you can specify a folder that contains images you want to use as wallpaper.


        By wally you can determine the time interval you want for each change of image, you can also use the images found on photobucket, yahoo, flickr, pike, etc.


To Obtain Wally Please Download Here. Files are shaped Deb .* package, so just stay in the install.


Installation wally :


$ sudo dpkg -i wally_2.0.0-1_i386.deb


Screenshot :



Thank's
By:Mr.Gm



Read More
Posted in Desktop | No comments

Perubah desktop wallpaper secara otomatis

Posted on 09:32 by Unknown

Mungkin anda merasa bosan dan jenuh dengan tampilan wallapper yang anda gunakan di desktop anda yang selalu monoton,terdapat Solusi untuk hal tersebut yaitu dengan menggunakan wally.wally adalah aplikasi pengubah wallpaper otomatis dengan wally anda dapat menentukan sebuah folder yang berisi gambar yang anda ingin gunakan sebagai wallpaper.

Dengan wally anda dapat menentukan interval waktu yang anda inginkan untuk setiap pergantian gambar.Anda juga dapat menggunakan gambar-gambar yang terdapat di photobucket ,yahoo,flickr,pike,etc.
Untuk Mendapatkan Wally Silahkan Download Disini .File sudah Berbentuk package .*Deb.Sehingga tinggal di install saja.


instalasi wally :

$ sudo dpkg -i wally_2.0.0-1_i386.deb


Tampilan Gambar :




                                      

Thank's
By:Mr.Gm

Read More
Posted in Desktop | No comments
Newer Posts 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