Difference between revisions of "WiFi: HotSpot - CoovaChilli Kebutuhan Hardware dan Software"

From OnnoWiki
Jump to navigation Jump to search
Line 23: Line 23:
  
  
 +
==Root==
  
Root
+
Untuk memudahkan proses instalasi akan lebih mudah untuk membuat user root. Banyak file yang hanya dapat diubah oleh user root. Cara membuat user root
  
To make the installation easier create a root user. Many files can only be changed with root user.
+
# sudo passwd root
 +
Enter new UNIX password:
 +
Retype new UNIX password:
  
Login user, then enter command:
+
# su root
 +
Password:
  
#sudo passwd root
 
Enter new UNIX password:
 
Retype new UNIX password:
 
#su root
 
Password:
 
  
SSH
+
==Konfigurasi Repository==
  
So we can cut and paste commands to make life easier
+
sudo apt-get update
 +
sudo apt-get upgrade
  
Install putty on you windows machine
 
  
Assuming that your ubuntu box is connected to your ADSL router/DHCP server you will need to find your IP address of your ubuntu box so you can connect with putty
+
==Setup Network==
  
ifconfig
+
Edit /etc/network/interfaces
  
Type in your ip address and connect
+
nano -w /etc/network/interfaces
  
Repository
+
Pastikan ada isi
  
Use default repository or better
+
auto lo
 
+
iface lo inet loopback
Update Ubuntu
+
 
+
auto eth0
sudo apt-get update
+
iface eth0 inet dhcp
 
+
sudo apt-get upgrade
+
auto eth1
 
 
Network setup
 
 
 
Setup up your network hardware/software
 
 
 
Interfaces
 
 
 
nano -w /etc/network/interfaces
 
 
 
auto lo
 
iface lo inet loopback
 
 
 
auto eth0
 
iface eth0 inet dhcp
 
 
 
auto eth1
 
  
  

Revision as of 10:54, 7 April 2010

Kebutuhan Hardware

  • Komputer dengan dua network Interface / NIC

Versi Software

Software yang digunakan

Instalasi Software

Pastikan kita menginstalasi

Kalau mau gampang dapat juga menggunakan perintah

# tasksel


Root

Untuk memudahkan proses instalasi akan lebih mudah untuk membuat user root. Banyak file yang hanya dapat diubah oleh user root. Cara membuat user root

# sudo passwd root
Enter new UNIX password:
Retype new UNIX password:
# su root
Password:


Konfigurasi Repository

sudo apt-get update
sudo apt-get upgrade


Setup Network

Edit /etc/network/interfaces

nano -w /etc/network/interfaces

Pastikan ada isi

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto eth1


Pranala Menarik