Android Tutorial

Belajar Android Tutorial, lengkap, mudah di pahami, dilengkapi dengan video tutorial Newbie pun Bisa!

Administrasi Server

Belajar Administasi Server buat SMK TKJ dkk, Web Server, Gateaway Server, DNS Server, Squerrel Mail Server, Router Server, dll

Belajar Website

Belajar Website step by step, untuk pemula bisa, untuk yang sudah mahir juga ok. . mulai dari HTML, CSS, PHP, SQL, JavaScript, dkk

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Apr 15, 2010

Proxy Server Debian

Introduction

Squid is a proxy server. It separates the internal network from the Internet for HTTP and FTP access. This way no user can access the Internet directly.

The official web site is not www.squid.org as may be expected, but http://www.squid-cache.org.

Squid Installation

#apt-get install squid

Configuration

The squid configuration can be found in /etc/squid/squid.conf

Configuration Sections Explained Below

General

http_port 3128
icp_port 3130
htcp_port 4827
 
cache_mem 16 MB
refresh_pattern . 0 20% 8640
 
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
 
# snews 563
# gopher 70
# wais 210
acl www_ports 80 443
acl ftp_ports 21
acl localhost src 127.0.0.1/32
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl CONNECT method CONNECT
acl PURGE method PURGE
 
http_access allow manager localhost
http_access deny manager
http_access allow PURGE localhost
http_access deny PURGE

Specials

acl executables url_regex [.]exe$
http_access deny executables
 
authenticate_program /usr/lib/squid/smb_auth -W DOMEIN -U SERVER
acl network proxy_auth REQUIRED
http_access allow users network
 
cache_peer proxy1.test.net parent 3128 7 no-query default

HTTP

acl wwwusers src 192.168.2.0/24
http_access allow wwwusers www_ports

FTP

ftp_user Squid@domain1.com
ftp_passive off
acl ftpusers src 192.168.2.0/24
http_access allow ftpusers ftp_ports

Deny all

never_direct allow all
always_direct deny all
http_access deny all
icp_access allow all
miss_access allow all 

Reference links

http://learnlinux.tsf.org.za/courses/build/electives/ch03s03.html

http://www.debian-administration.org/articles/71

http://www.debianhelp.co.uk

Mail Server Debian (SquirrelMAIL)

Installing SquirrelMail in Debain

#apt-get install squirrelmail

You'll see that it depends on squirrelmail-locales, the translations package. If you're using etch or sid, the squirrelmail-locales package is only recommended, so you can remove it if you have English speaking users exclusively.

Configuring Squirrelmail in Debian

#squirrelmail-configure

This will start an interactive menu where all possible aspects of SquirrelMail can be configured. Start with the bottom option, D. Set pre-defined settings for specific IMAP servers. This preloads some settings specifically for your IMAP server package.

Menu 1

Organisation Preferences, enables you to brand SquirrelMail with your own system name and logo

Menu 2

Server Settings is for configuring the backends of your webmail. The option "Domain" is the domain that is appended to your outgoing email. By default this is read from /etc/mailname.

Press A to configure your IMAP server. Changing the options "Authentication Type" and "TLS" will make the connection with your IMAP server more secure. However, this only makes sense when your IMAP server is not on localhost; encrypting traffic over the local interface is wasting processor cycles. The option Server Software should already be set to to your IMAP server package when you loaded the predefined settings. Option B, SMTP settings, should not have to be changed in most cases.

Menu 3

Folder Defaults can safely be left untouched. Under 4, General Options, you can make some tweaks. Be sure to set option 11, allow server-side sorting. This greatly improves SquirrelMail performance and works with nearly all IMAP servers. Feel free to look around the configuration options. I'd advise not to enable any plugins until you've verified that your current setup actually works. Once it does, you can add plugins. If something breaks, you'll know which plugin to blame.

Press S to save and Q to quit. Under /etc/squirrelmail you'll also find some configuration files for plugins and the file default_pref where you can set default preferences for new users.

Now to make the install web-accessible. With the configuration files you'll find an Apache configuration snippet you can edit and add to your Apache config. It's wise to add it to the configuration of Apache-SSL aswell, so your users can access their mailbox over a secure connection. After that, reload Apache.

Apache Configuration For webmail

If you want to check apache installation click here

If you want to check apache virtual hosts configuration click here

Edit the /etc/apache2/sites-available/configfile.conf (this file name may vary from person to person) Apache configuration file and add the following block:

1.2.3.4:80>
ServerName mail.youydomain.com
ServerAlias mail.*
ServerAdmin
postmaster@yourdomain.com
DocumentRoot
/home/www/webmail

Here's a breakdown of what's above:

- This indicates I'm setting up my mail interface as a virtual host, rather than IP based. Obviously, you're going to want to replace 1.2.3.4 with the IP address of your web server. Additionally, what you have here may vary from server to server and is dependent on how you have your Apache configured. Be cautious!

ServerName mail.yourdomain.com - The official name of the webmail server virtual host.

ServerAlias mail.* - This line establishes a wildcard serveralias called mail.*. With this setup, any domain that is pointed to your server and that has an A record called "mail", will be able to get to the webmail interface by simply going to http://mail.whateverdomain.com. This is a pretty cool little feature and makes accessing the webmail interface easy for all of your users.

ServerAdmin postmaster@yourdomain.com - The server administrative contact. This is not required, but I like to include it.

DocumentRoot /home/www/webmail - The document root of your webmail interface. This will vary, depending on where you chose to install Squirrelmai. In this example, you can see that I installed it at /home/www/webmail

- The closing tag to the virtualhost.

Make sure you restart Apache after making the above changes.

Now go to https://webmail.test.com/src/configtest.php (if you configured SquirrelMail at the webmail.example.com virtual host). If this configuration test doesn't turn up any errors, proceed to https://webmail.test.com. You will be presented with a login screen. Enter your username and password (the same as your system login). If all went fine you should see your mailbox.

If it does not work, check whether your browser has cookies enabled. Also verify whether your IMAP server is working correctly (in its logs, and/or with a regular IMAP mail client). You can also check your webserver logs for any error messages.

References

http://www.squirrelmail.org/wiki/SquirrelMail

More Webmail Software

http://openwebmail.org/

http://eaccelerator.net

ftp Server Debian (proftp)

Langsung saja >>

  • install ftp server :

#apt-get install proftpd

  • browsing IP komputer server (192.168.1.1 ) pada mozila atau IE
  • Install file zilla client masukan IP dan user/password

Web Server Debian



LangkahMembuat Web server cukup mudah dengan 2 langkah saja

1. Install Web servernya (apache2) :

#apt-get install apache2

2. Install PHP (PHP5)

#apt-get install libapache2-mod-php5 php5-cli php5-common php5-cgi

kemudian taruh server web di /var/www


semoga bermanfaat!!!

Langkah Membuat Desain Website


Langkah Membuat Desain Web...pasti sudah penasaran...he :) langsung aja

cara 1 adalah kita harus tau softwares2 untuk membuat web desain yang lebih simple dan mudah yang lebih kita kenal dengan sebutan software web authoring seperti dreamweaver, microsoft font pages dan yang pengen gratisan pilih KompoZer, dsb

setelah kita memilih software authoring web, kita juga harus memilih gambar pernak pernik yang bagus, tetapi sangat disayangkan softwares authoring web tidak bisa melakukan ini kita juga membutuhkan software tambahan untuk membuat pernak pernik gambar tersebut seperti adobe photoshop, tetapi bagi yang pengen gratisan pilih saja GIMP, walaupun GIMP jauh berbeda dengan adobe yang lebih lengkap tetapi GIMP juga sangat cukup untuk pemula...

kemudian pada umumnya dalam Membuat web yang di perhatikan adalah :

  1. Membuat Desain Tempelate Web / (Pilih Gambar, Potong, dsb) dengan GIMP/Adobe
  2. Memotong gambar desain tempelate sesuai latar dan daerahnya (pada head, Body, dsb)
  3. Menyusun Gambar desain dengan KompoZer
  4. Mengembangkan dengan bahasa pemrograman agar perkembangan dapat dinamis
Langkah Tersebut adalah langkah dimana kita akan memulai membuat WebSite...

smoga Bermanfaat

Mengenal Arti Domain ?



Seputar Nama Domain

Apa itu nama Domain?

Nama Domain adalah nama unik yang diberikan untuk mengidentifikasi nama server komputer seperti web server atau email server di internet. Nama Domain memberikan kemudahkan pengguna di internet untuk melakukan akses ke server dan mengingat server yang dikunjungi dibandingan harus mengenal deretan nomor atau yang dikenal IP.

Apa itu Top Level Domain?

Top Level Domain Name adalah deretan kata dibelakang nama domain seperti .com (dotcommercial), .net (dotnetwork), .org(dotorganization), .edu(doteducation), .gov(dotgoverment), dan .mil(dotmilitary).

Ada dua macam Top Level Domain, yaitu Global Top Level Domain (gTLD) dan Country Code Top Level Domain (ccTLD). gTLD adalah seperti yang diungkapkan diatas dan ccTLD adalah TLD yang diperuntukkan untuk masing-masing negara, seperti Indonesia dengan kode ID (co.id, net.id, or.id) atau Singapura dengan kode SG (com.sg, net.sg, dsb).

Apa itu Second Level Domain (SLD)?

Second Level Domain Name (SLD) adalah nama domain yang anda daftarkan. Misalnya nama domain yang anda daftarkan adalah domainku.com, maka domainku adalah SLD dan .comnya adalah TLD.

Apa itu Third Level Domain?

Third Level Domain adalah nama sebelum Second Level Domain dan Top Level Domain. Misalnya nama domain yang anda miliki adalah domainku.com, maka anda dapat menambahkan nama lain sebelum domainku, yaitu mail.domainku.com atau search.domainku.com.

Top Level Domain apa saja yang bisa didaftarkankan oleh NamaDomain.Com?

Saat ini NamaDomain.com hanya dapat memregistrasikan gTLD seperti dotcom, dotnet dan dotorg. Namun tidak menutup kemungkinan di kemudian hari, NamaDomain.comdapat mendaftarkan gTLD terbaru yang sedang dirancang oleh ICANN.

Dapatkah saya mendaftarkan nama domain selain .com, .net, .org?

Ya dapat. NamaDomain.com selain menyediakan nama domain .com, .net, dan .org juga menyediakan nama domain .biz, .info , .tv serta domain Indonesia (.id) seperti co.id, net.id, .web.id.

Berapa biaya registrasi nama domain di NamaDomain.Com?

Biaya registrasi nama domain di NamaDomain.com tidaklah terlalu mahal. Untuk satu domain cukup dengan Rp. 150.000 saja. Selain itu untuk mempermudah pendaftaran domain, NamaDomain.com memberikan fasilitas voucher dengan potongan harga yang cukup menarik yaitu 45% keatas.

Memilih Nama Domain dan Web Hosting

Website pasti semua yg lagi liar browsing ini udah nggak aneh lagi sama yang nama nya Website...

Website/situs web adalah sebutan bagi sekelompok halaman web(web page), yang umumnya merupakan bagian dari suatu nama domain (domain name) atau subdomain di World Wide Web (WWW) di Internet. WWW terdiri dari seluruh situs web yang tersedia kepada publik. Halaman-halaman sebuah situs web diakses dari sebuah URL yang menjadi "akar" (root), yang disebut homepage (halaman induk; sering diterjemahkan menjadi "beranda", "halaman muka"), dan biasanya disimpan dalam server yang sama. Tidak semua situsweb dapat diakses dengan gratis. Beberapa situs web memerlukan pembayaran agar dapat menjadi pelanggan, misalnya situs-situs yang menampilkan pornografi, situs-situs berita, layanan surat elektronik (e-mail), dan lain-lain.

nah sekarang saya akan memberikan info hal pertama dalam membuat website adalah :

1. Memilih Nama Domain dan Web Hosting : ??

Nama Domain ?? pasti sudah tidak asing lagi nama domain adalah Nama Domain adalah nama unik yang diberikan untuk mengidentifikasi nama server komputer seperti web server atau email server di internet. Nama Domain memberikan kemudahkan pengguna di internet untuk melakukan akses ke server dan mengingat server yang dikunjungi dibandingan harus mengenal deretan nomor atau yang dikenal IP. contohnya : erickiso.webs.com, erickiso.blogspot.com (nama sebuah web)...

*) memperlajari lebih lanjut tentang Nama Domain dan Istilah klik [disini]

Web Hosting adalah Web Hosting adalah salah satu bentuk layanan jasa penyewaan tempat di Internet yang memungkinkan perorangan ataupun organisasi menampilkan layanan jasa atau produknya di web / situs Internet. Tempat dapat juga diartikan sebagai tempat penyimpanan data berupa megabytes (mb) hingga terabytes (tb) yang memiliki koneksi ke internet sehingga data tersebut dapat direquest atau diakses oleh user dari semua tempat secara simultan. Inilah yang menyebabkan sebuah website dapat diakses bersamaan dalam satu waktu oleh multi user

semoga bermanfaat...

Dasar Membuat WebSite






|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

Dasar Membuat Web
  1. Memilih Nama Domain dan Web Hosting
  2. Langkah Membuat Desain Web
  3. Membuat Website Sederhana
  4. Latihan Membuat Website sendiri
  5. Membuat Website dan Hosting Web

Apr 1, 2010

VirtualBox pengganti VMWARE

VirtualBox

News Flash

  • New March 25, 2010
    VirtualBox 3.1.6 released!

    Oracle today released VirtualBox3.1.6, a maintenance release ofVirtualBox 3.1 which improves stability and fixes regressions. See the ChangeLog for details.
  • New November 30, 2009
    VirtualBox 3.1.0 released!

    Sun today released VirtualBox3.1.0, a major update introducing teleportation, branched snapshots, 2D video acceleration for Windows guests, more flexible storage management and much more. See the ChangeLog for details.
  • New November 17, 2009
    VirtualBox 3.0.12 released!

    Sun today released VirtualBox3.0.12, a maintenance release ofVirtualBox 3.0 which improves stability and performance. See theChangeLog for details.
More information...

VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. Not only isVirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL). See "About VirtualBox" for an introduction.

Presently, VirtualBox runs on Windows, Linux, Macintosh and OpenSolaris hosts and supports a large number of guest operating systems including but not limited to Windows (NT 4.0, 2000, XP, Server 2003, Vista, Windows 7), DOS/Windows 3.x, Linux (2.4 and 2.6), Solaris and OpenSolaris, and OpenBSD.

VirtualBox is being actively developed with frequent releases and has an ever growing list of features, supported guest operating systems and platforms it runs on. VirtualBox is a community effort backed by a dedicated company: everyone is encouraged to contribute while Sun ensures the product always meets professional quality criteria.

Hot picks:

Google Crome Extension


googlechromeGoogle Chrome ExtensionsGoogle Chrome untuk versi final 4.0 , google crome telah menambah fitur untuk lebih baik dan bagus bersaing dengan browser yang lainnya....yaitu Google Extension

terdapat 1.500 Extensions, salah satunya adalah bentuk themes,, fitur tambahan yang lainnya seperti youtube downloader, dan sebagainya

googlechrome extensions manager menuGoogle Chrome Extensions

untuk menambahkan extension pada google silahkan langsung ke situsnya :https://chrome.google.com/extensions

Download Google Crome Offline


googlechromeGoogle Chrome 4.0.249.78 Final   Offline Installerseperti yang pernah saya posting sebelum nya google crome adalah browser yang paling cepat menurut pengalaman saya sendiri...


Browser Chrome untuk versi barunya yaitu : Google Chrome 4.0.249.78 Final. banyak sekali fitur-fitur yang lain yang ada di google crome yang tak kalah dengan browser yang lainnya yaitu opera dan mozilla, bagus juga untuk koneksi warnet...browser ini jarang kena masalah, selamat mencoba...

googlechromeGoogle Chrome 4.0.249.78 Final   Offline Installer

update yang di perbaiki untuk update 4.0.249.78 adalah :

  • Extensions
  • Bookmark sync
  • Enhanced developer tools
  • HTML5: Notifications, Web Database, Local Storage, WebSockets, Ruby support
  • v8 performance improvements
  • Skia performance improvements
  • Full ACID3 pass, due to re-enabled remote font support (with added defense against bugs in operating system font libraries)
  • HTTP byte range support
  • New security feature: “Strict Transport Security” support
  • Experimental new anti-reflected-XSS feature called “XSS Auditor”

digunakan pula untuk XP, MAC, dan Juga LINUX...

Download FULL dan Offline Disini

Twitter Delicious Facebook Digg Stumbleupon Favorites More