Selamat Datang...
Pada situs ini anda bisa menyimak beberapa informasi seputar buku "Panduan Praktis Belajar Komputer", karya Haer Talib, penerbit Elex Media Komputindo, 2005.
Buku ini ditujukan untuk mereka yang ingin belajar komputer secara mandiri, sebagai modul kursus komputer, serta sebagai buku materi kuliah komputer.
Kesederhanaan dan kelengkapan pembahasan menjadikan buku ini cocok juga sebagai pemacu belajar siswa SMP dan SMA, sehingga mereka cepat mahir menggunakan komputer dengan cara yang baik dan benar.
Untuk mengetahui apa yang dibahas dalam buku dan bagaimana pembahasan disajikan, silahkan klik link yang tersedia di sebelah kiri.
Secara singkat, penggunaan buku ini cocok untuk:
- Pemula yang ingin belajar sendiri
- Sebagai Modul Kursus
(pengganti diktat sederhana buatan sendiri yang kurang lengkap, tidak standar, tidak sistematis, dan tidak dicetak dengan baik)
- Sebagai Materi Kuliah
(karena bahan latihan dan petunjuk/pengenalan telah tersedia lengkap)
- Sebagai Bahan Referensi
(bagi mereka yang sudah biasa menggunakan komputer, karena dalam buku ini terdapat banyak sekali tip & trik pemakaian yang efisien dan efektif).
Judul |
: |
Panduan Praktis Belajar Komputer |
Pengarang |
: |
Haer Talib |
Penerbit |
: |
Elex Media Komputindo |
Tahun |
: |
2005 |
Harga |
: |
Rp 57.000,- |
Buku dapat diperoleh pada toko-toko buku Gramedia, Harisma, Gunung Agung, dan lain-lain, atau bisa juga dipesan langsung pada:
Ikatlah Ilmu dengan Menuliskannya
Meskipun pemilihan browser sangat bergantung minat perseorangan, ada beberapa hal/fitur yang dapat menjadikan browser yang satu lebih baik daripada browser yang lainnya. Dengan mengetahui fitur yang dimiliki/didukung oleh browser kita dapat melihat seberapa baik satu browser jika dibandingkan dengan yang lainnya.
NTOP adalah tool untuk melihat traffic di network dan menampilkannya untuk kita dalam bentuk yang luar biasa hebat. NTOP sendiri diklaim sebagai tool network probing open source paling handal, setidaknya menurut saya . Berbeda dengan program sejenis seperti cacti, MRTG, nagios, dan lainnya, NTOP lebih
URL Redirect sering digunakan untuk menyembunyikan link Reseller yang biasanya cukup panjang. Dan bila seseorang mengakses URL redirect, akan diteruskan langsung ke URL asli sesuai pilihan Anda. Contoh Link Reseller atau Affiliate Anda
http://BlogBisnisInternet.com/?id=angelina0880
Apabila menggunakan URL Redirect menjadi: http://blogbisnisinternet.cjb.net/
Dimana:
- blogbisnisinternet adalah nama pilihan Anda.
- .cjb.net
Google Adwords merupakan program pemasangan iklan di Google.com melalui search engine Google.com. Google Adwords merupakan salah satu cara mempromosikan Website atau Blog Bisnis Anda yang cepat dan mudah untuk memberikan “traffic” atau kunjungan yang “targeted” kepada Website atau Blog Bisnis Anda.
10 Informasi Penting
10 Artikel Terbaru
10 Artikel Terbanyak Dibaca
Modules | Directives | FAQ | Glossary | Sitemap
Apache HTTP Server Version 2.0
Apache > HTTP Server > Documentation > Version 2.0
Starting Apache
On Windows, Apache is normally run as a service on Windows NT, 2000 and XP, or as a console application on Windows 9x and ME. For details, see Running Apache as a Service and Running Apache as a Console Application.
On Unix, the httpd program is run as a daemon that executes continuously in the background to handle requests. This document describes how to invoke httpd.
How Apache Starts
Errors During Start-up
Starting at Boot-Time
Additional Information
See also
Stopping and Restarting
httpd
apachectl
How Apache Starts
If the Listen specified in the configuration file is default of 80 (or any other port below 1024), then it is necessary to have root privileges in order to start apache, so that it can bind to this privileged port. Once the server has started and performed a few preliminary activities such as opening its log files, it will launch several child processes which do the work of listening for and answering requests from clients. The main httpd process continues to run as the root user, but the child processes run as a less privileged user. This is controlled by the selected Multi-Processing Module.
The recommended method of invoking the httpd executable is to use the apachectl control script. This script sets certain environment variables that are necessary for httpd to function correctly under some operating systems, and then invokes the httpd binary. apachectl will pass through any command line arguments, so any httpd options may also be used with apachectl. You may also directly edit the apachectl script by changing the HTTPD variable near the top to specify the correct location of the httpd binary and any command-line arguments that you wish to be always present.
The first thing that httpd does when it is invoked is to locate and read the configuration file httpd.conf. The location of this file is set at compile-time, but it is possible to specify its location at run time using the -f command-line option as in
/usr/local/apache2/bin/apachectl -f /usr/local/apache2/conf/httpd.conf
If all goes well during startup, the server will detach from the terminal and the command prompt will return almost immediately. This indicates that the server is up and running. You can then use your browser to connect to the server and view the test page in the DocumentRoot directory and the local copy of the documentation linked from that page.
Errors During Start-up
If Apache suffers a fatal problem during startup, it will write a message describing the problem either to the console or to the ErrorLog before exiting. One of the most common error messages is "Unable to bind to Port ...". This message is usually caused by either:
Trying to start the server on a privileged port when not logged in as the root user; or
Trying to start the server when there is another instance of Apache or some other web server already bound to the same Port.
For further trouble-shooting instructions, consult the Apache FAQ.
Starting at Boot-Time
If you want your server to continue running after a system reboot, you should add a call to apachectl to your system startup files (typically rc.local or a file in an rc.N directory). This will start Apache as root. Before doing this ensure that your server is properly configured for security and access restrictions.
The apachectl script is designed to act like a standard SysV init script; it can take the arguments start, restart, and stop and translate them into the appropriate signals to httpd. So you can often simply link apachectl into the appropriate init directory. But be sure to check the exact requirements of your system.
Additional Information
Additional information about the command-line options of httpd and apachectl as well as other support programs included with the server is available on the Server and Supporting Programs page. There is also documentation on all the modules included with the Apache distribution and the directives that they provide.