punten,,, dah lama nih ga nge-blog,, hehe, kali ini ane mau ngepost tentang cara biar ubuntu kita bisa ngedetect ethernet card dengan chipset atheros ar8151,,,,

sebernernya tadi sore ane mw instalin router, cuma ane kesulitan ketika install ubuntu nya,, ternyata mainboardnya itu keluaran baru, dan c ubuntu ga bisa detect ethernet onboardnya yang setelah saya cari tau chipset eternet card nya itu atheros ar8151,, thanks buat ubuntuforums yang udah kasih cara buat nyelesein masalah ini..

cara nya ini nih,,,

1. download source tarbal driver atheros nya..  AR81Family-linux-v1.0.1.14.tar.gz

2. upload file .tar.gz tadi ke ubuntu nya,

3. pastikan paket build-essential dan linux-headers-generic , kalau belum, install aja, caranya

#sudo apt-get install build-essential linux-headers-generic

4.  #sudo lshw -C network

 

*-network UNCLAIMED
       description: Ethernet controller
       product: AR8151 v1.0 Gigabit Ethernet
       vendor: Atheros Communications
       physical id: 0
       bus info: pci@0000:03:00.0
       version: c0
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress vpd bus_master cap_list
       configuration: latency=0
       resources: memory:f0400000-f043ffff ioport:3000(size=128)

5. misal driver atheros nya sudah di simpan di /home/imam .

#mkdir ateros

#mv AR81Family-Linux-v1.0.1.9.tar.gz /home/imam/ateros

#cd /home/imam/ateros
#tar -zxvf AR81Family-Linux-v1.0.1.9.tar.gz

#sudo su
#make install
#modprobe atl1e
#reboot

6. setelah reboot, cek kembali apakah interface sudah terdetek oleh ubuntu?? ifconfig -a atau ip a s atau mii-tool
nanti bakalan keliatan kalo interfacenya sudah terdetek,,,

saya coba di lucid lynx 64bit dan berhasil alhamdulillah,,,
silahkan mencoba, semoga bermanfaat :) 

Web Site atau Situs

Posted: November 5, 2010 in tugas kuliah

Sejarah World Wide Web

Sejarah Web bermula di European Laboratory for Particle Physics (lebih dikenal dengan nama CERN), di kota Geneva dekat perbatasan Perancis dan Swiss. CERN merupakan suatu organisasi yang didirikan oleh 18 negara di Eropa. Dibulan Maret 1989, Tim Berners dan peneliti lainnya dari CERN mengusulkan suatu protokol sistem distribusi informasi di Internet yang memungkinkan para anggotanya yang tersebar di seluruh dunia saling membagi informasi dan bahkan untuk menampilkan informasi tersebut dalam bentuk grafik.

Read the rest of this entry »

INTERNET

Posted: November 5, 2010 in tugas kuliah

1. Pengertian Internet

Internet dapat diartikan sebagai jaringan komputer luas dan besar yang mendunia, yaitu menghubungkan pemakai komputer dari suatu negara ke negara lain di seluruh dunia, dimana di dalamnya terdapat berbagai sumber daya informasi dari mulai yang statis hingga yang dinamis dan interaktif.

2. Sejarah internet

Berikut sejarah kemunculan dan perkembangan internet.

Sejarah internet dimulai pada 1969 ketika Departemen Pertahanan Amerika, U.S. Defense Advanced Research Projects Agency (DARPA) memutuskan untuk mengadakan riset tentang bagaimana caranya menghubungkan sejumlah komputer sehingga membentuk jaringan organik. Program riset ini dikenal dengan nama ARPANET. Pada 1970, sudah lebih dari 10 komputer yang berhasil dihubungkan satu sama lain sehingga mereka bisa saling berkomunikasi dan membentuk sebuah jaringan.

Read the rest of this entry »

hehe, permisi permisi,,,, mau ngiklan dikit ah,,,

buat yang bertempat di Kota Bandung dan Sekitarnya, kalo mau buka warnet , online games atau memerlukan koneksi internet yang stabil untuk office atau vpn antar kota, bisa kirim e-mail ke imamrahadian@gmail.com atau YM juga gpp.

- koneksi stabil ga putus2 memakai perangkat wireless, dengan backbone fiber optic bdg-jkt.

-perangkat wireless dipinjamkan,

-jika hasil survey memerlukan tower maka biaya tower ditanggung calon pelanggan.

- ping time ga putus-putus, IIX <15ms dan int , misal fb <300ms (tergantung alamat tujuan)

- bandwidth IIX only, dedicated, sharing atau customized dari 128k sampai 5mbps atau lebih tergantung kebutuhan.

- speed download dan upload setara, misal download 256k, maka upload 256k.

-support 7x24jam.

-real time monitoring.

-banyaknya ip publik sesuai kebutuhan.

Step 1:

Download and install WAMP server (WampServer), default installation is c:\wamp. Installing WampServer is not in the scope of this, “how to”. You can read my article on WAMP vs. IIS for a better understanding of WAMP.

Step 2:

Download and install Active Perl from http://www.activestate.com/activeperl/downloads/ ; based on this tutorial, download the Windows Installer (MSI). Run the installer;

  • Click Next on the first screen, “Using ActivePerl at work?”.
  • Read and accept license agreement, hit next.
  • Custom setup screen, choose browse and install it in c:\wamp\bin\Perl\. click next, and keep all the following defaults, and finally install it. It will take some time to install depending on your computer.
  • And finally once installed, uncheck, Display the release notes, and click finish.

I chose the installation directory c:\wamp\bin\Perl\, to keep consistency for all apache related applications.

Step 3:

Verify the installer actually wrote the PATH variable in your system. This will save you a lot of headaches. Right click on “My Computer”, select properties, select Advanced Properties, click on Environmental Variables and under System variables scroll down and double click on PATH and verify c:\wamp\bin\Perl\site\bin; is in the Variable value.

Or simply open a command prompt, start> run> cmd> and type:

prompt>perl -v

It should spit out the version of the perl your running.

Step 4:

Configure httpd.conf on WAMP server (WampServer) for perl. Open C:\wamp\bin\apache\Apache2.2.11\conf\httpd.conf, file which is your apache configuration file.

  • Look for, Directory “c:/wamp/www/”, and under this line look for and replace:
    Options Indexes FollowSymLinks

    with:

    Options Indexes FollowSymLinks Includes ExecCGI

    This will activate Perl for your WAMP server (WampServer), so you can run Perl scripts.

  • Look for and replace:
    #AddHandler cgi-script .cgi

    with:

    AddHandler cgi-script .cgi
    AddHandler cgi-script .pl

    This will activate the AddHandler for cgi and pl. These are common, so enable them.

  • Look for and replace:
    DirectoryIndex index.php index.php3 index.html index.htm

    with:

    DirectoryIndex index.php index.php3 index.html index.htm index.cgi index.pl

    Apache executes these in the respective order; if it doesn’t find index.php it will look for index.php3 than index.html and so on.

Step 5:

Restart WAMP server (WampServer) apache service. Wampserver > Apache > Service > Restart Service. Your server is ready to run, Perl. You can test by downloading this file and placing into one of your development site, c:/wamp/www/dev-site.com/perl-stuff, and executing it via browser, i.e. http://dev-site.com/perl-stuff.

source