The package management for Debian-based distributions like Ubuntu is very powerful and saves a lot of effort that could be wasted finding the latest packages and tracking down dependencies. Automated tools like apt-get, Synaptic, and Adept should serve most users’ needs almost all of the time, and you should stick to those tools whenever possible. However, there are some circumstances when you need to install a .deb package directly.

Install a .deb

Whatever the reason, when you find yourself with a .deb to install, it’s time to turn to dpkg. dpkg is the tool that Debian-based distributions like Ubuntu use to install .deb files. (Even when you use an automated package-management tool, dpkg is used behind the scenes to actually install the packages to the system.) If you are familiar with the rpm tool for RPM-based distributions, you’ll find dpkg has similar syntax. To install an ordinary .deb from the command line, type:

whiprush@ubuntu:~$ sudo dpkg -i packagename.deb

Replace packagename .deb with the .deb file you wish to install. If you have multiple files you want to install at the same time, you can either list them one after another on the command line:

whiprush@ubuntu:~$ sudo dpkg -i package1.deb package2.deb package3.deb                  

or use a file glob to install all .deb files in the current directory:

whiprush@ubuntu:~$ sudo dpkg - *.deb

dpkg also has a recursive option (-R). If you have a directory full of debs you want to install, type:

whiprush@ubuntu:~$ sudo dpkg -i -R /path/to/directory
               

and dpkg will recursively find and install all .deb files within that directory and its subdirectories.

Read the rest of this entry »

Dua orang dapat komunikasi secara efektif ketika mereka setuju untuk menggunakan satu bahasa yang umum. Mereka bisa berbicara bahasa Inggris, Spanyol, Perancis, atau bahkan bahasa isyarat, tetapi mereka harus menggunakan bahasa yang sama, caiillee..

Komputer berkomunikasi dengan cara yang sama . Transmission Control Protocol/Internet Protocol (TCP/IP) seperti sebuah bahasa dimana komputer berbicara. Secara rinci, TCP/IP adalah satu set aturan yang menggambarkan bagaimana dua komputer menunjuk alamat satu sama lain dan mengirim data satu sama lain. Aturan ini disebut protokol. Berbagai protokol yang dikelompokkan bersama-sama membentuk suatu deretan protokol dan dapat bekerja sama biasa disebut protocol stack :)

TCP/IP sangat kuat, cepat, handal, dan efisien . Protokol ini menjadi pilihan utama komunikasi Internet. Ketika tukar menukar informasi via Internet menjadi lebih luas, perusahaan maupun individu perlu juga memahami apa itu TCP/IP.

Binatang apa TCP/IP ?

Bukan binatang bos! TCP/IP adalah satu set protokol yang memungkinkan komunikasi antar komputer[1] .

Ada suatu saat ketika komputer tidak perlu untuk berkomunikasi . Tidak ada kebutuhan untuk sebuah protokol. Tetapi ketika komputer telah terhubung ke jaringan, kebutuhan akan protokol muncul untuk komputer yang ingin berkomunikasi.

Saat ini, Network Administrator[2] dapat memilih banyak protokol, tetapi TCP/IP menjadi pilihan paling umum. Alasan lainnya adalah TCP/IP menjadi protokol pilihan Internet. Jika anda ingin komputer dapat berkomunikasi dengan Internet, TCP/IP adalah pilihan de facto .

Alasan yang lain kenapa TCP/IP begitu tenar adalah kompatibelitas dengan hampir setiap jenis komputer di dunia. TCP/IP didukung oleh semua sistem operasi , Windows 95/98, Windows NT, Windows 2000, Windows XP, Windows 2003, Linux, Unix, Netware dst…..

Read the rest of this entry »