Saturday 20 February 2010

Tutorial Pemula Ubuntu

Sesuai janjiQ waktu ngumpul di UII-Synaptic : Open Source Study and Research Center, aq bakal posting tutorial wad pemula, neh silakan di download..


#Tutorial Repositori lokal dari dvd
Click Here

#Dekstop Guide
Click Here

#Panduan Ubuntu
Click Here

#Tutorial Repositori Lokal
Click Here


Jangan lupa kasi komen! hehehehe...

Open Source for Learning!

Tuesday 2 February 2010

How to Setup Broadcom Wireless BCM4312 (rev 02) for Ubuntu

#Step 1 (run in terminal)

echo 'blacklist bcm43xx' | sudo tee -a /etc/modprobe.d/blacklist

sudo apt-get install ndiswrapper-utils-1.9


mkdir ~/bcm43xx; cd ~/bcm43xx

For Step 2, You can check your Broadcom wireless version with this command in terminal : "lspci | grep Broadcom\ Corporation",if your wireless device is different from BCM4312 (rev 02), please refer here for this step and you can continue again with step 3 onwards:

#Step 2 (run in terminal)

sudo apt-get install cabextract

wget ftp://ftp.compaq.com/pub/softpaq/sp34001-34500/sp34152.exe

cabextract sp34152.exe

#Step 3 (run in terminal)

sudo ndiswrapper -i bcmwl5.inf

ndiswrapper -l

sudo depmod -a

sudo modprobe ndiswrapper

sudo cp /etc/network/interfaces /etc/network/interfaces.orig

echo -e 'auto lo\niface lo inet loopback\n' | sudo tee /etc/network/interfaces

sudo ndiswrapper -m

echo 'ndiswrapper' | sudo tee -a /etc/modules

echo 'ENABLED=0' | sudo tee -a /etc/default/wpasupplicant

#Step 4 (run in terminal)

sudo aptitude remove b43-fwcutter

#Step 5 (run in terminal)

sudo gedit /etc/init.d/wirelessfix.sh

#Step 6

Paste the followings in the opened file(wirelessfix.sh)and make sure you save it before continuing Step 7

#!/bin/bash
modprobe -r b44
modprobe -r b43
modprobe -r b43legacy
modprobe -r ssb
modprobe -r ndiswrapper
modprobe ndiswrapper
modprobe b44

#Step 7 (run in terminal)

Run this :

cd /etc/init.d/ && sudo chmod 755 wirelessfix.sh

#Step 8 (run in terminal)

finally run this:

sudo update-rc.d wirelessfix.sh defaults

#Step 9

Restart your machine and that's it.


Resource : onlyubuntu.blogspot.com

Membuat SquidNT (squid for windows)

Proxy server adalah suatu server yang melayani penyimpanan sementara content suatu website yang diakses oleh jaringan tersebut, sehingga apabila ada client lain yang mengakses situs yang sama maka client tersebut tidak perlu mengambil dari websitenya langsung tetapi dari proxy server tersebut. Dengan adanya ini akan mempercepat akses ke suatu situs, mengamankan akses web dari user yang tidak berhak dan bisa memblokir situs yang tidak diinginkan.
Instalasi Server
Supported OS : Windows NT, 2000, XP dan 2003. Sudah di uji coba pada XP dan 2003

1. Pertama kali anda download di sini
2. Ekstrak file squid-2.5.STABLE14-NT-bin.zip ke direktori C:\

3. Copy file cachemgr.conf.default, mime.conf.default dan squid.conf.default di direktori yang sama dan ubah menjadi cachemgr.conf, mime.conf dan squid.conf
4. Edit isi file C:\squid\etc\squid.conf
* http_port 3128 ==> untuk mengedit port yang digunakan oleh proxy.
* cache_mem 32 MB
* maximum_object_size 4096 KB
* maximum_object_size_in_memory 32 KB
* cache_dir ufs D:/cache 500 16 256 ==> cache di direktori berbeda dan direktori cache 500MB
* acl net src 192.168.1.0/255.255.255.0 ==> Asumsi jaringan anda adalah 192.168.1.0/24
* http_access allow localhost ==> Memperbolehkan localhost hanya untuk test
* http_access allow net ==> Memperbolehkan jaringan anda
* cache_mgr toto@nurulfikri.com ==> email admin proxy komputer anda
* visible_hostname totoserver.com
5. Buat direktori D:\cache
6. Install squid :
* Buka Console. Start --> Run --> Ketik cmd [enter]
* cd \
* cd squid\sbin
* squid -z ==> Membuat direktori dari cache
* squid -i -n Proxy_Server ==> Menginstall service squid
* squid -O servicecommandline -n Proxy_Server
7. Sekarang anda bisa menyalakan service squid anda. Start --> Run --> Ketik services.msc [enter]. Untuk menjalankan squid Cari Service Proxy_Server klik kanan start. Untuk ini anda sebaiknya dalam keadaan online terlebih dahulu.
8. Supaya dapat digunakan orang lain anda harus membuka port yang tertulis pada http_port dari contoh di atas berarti port 3128 harus terbuka, kepada client.

Pengaturan Client
Mozilla Firefox (Used 2.0.0.4)

1. Klik Tools --> Options --> Klik Menu Advanced --> Klik Tab Network --> Klik Tombol Settings
2. Klik Manual Proxy Configuration, kemudian pada HTTP Proxy isi IP address server anda, sedangkan pada Port isi dengan port pada http_port di server, dari contoh di atas berarti 3128.
3. Klik OK


Internet Explorer

1. Klik Tools --> Internet Options --> Klik Tab Connections --> Klik Tombol LAN Settings
2. Klik pada Use proxy server for your LAN, pada Address isi IP address server anda, sedangkan pada Port isi dengan port pada http_port di server, dari contoh di atas berarti 3128.
3. Klik OK


source : totohar.multiply.com