Social Icons

Tuesday, October 22, 2013

Monitoring Jaringan Di Ubuntu

buka terminal ketik

root@agasvcn:/home/agasvcn# apt-get install iftop

untuk menjalankannya

root@agasvcn:/home/agasvcn# iftop

Monday, October 14, 2013

Setting DNS Di Linux

buka terminal ketik :

root@agasvcn:/home/agasvcn# nano /etc/resolv.conf

akan muncul

nameserver 10.17.3.246
nameserver 10.17.125.235

saya akan menganti dns saya dengan dns google

nameserver 8.8.8.8
nameserver 8.8.4.4

selesai ctrl+x kemudian y

Sunday, October 13, 2013

How To Repository Backtrack

root@agasvcn:/home/agasvcn# nano /etc/apt/sources.list

deb http://all.repository.backtrack-linux.org revolution main microverse non-free testing
deb http://32.repository.backtrack-linux.org revolution main microverse non-free testing
#deb http://source.repository.backtrack-linux.org revolution main microverse non-free testing
deb http://updates.repository.backtrack-linux.org revolution main microverse non-free testing

Saturday, October 12, 2013

How To Install hping3 In Ubuntu 10.10

hping is a free packet generator and analyzer for the TCP/IP protocol distributed by Salvatore Sanfilippo. Hping is one of the de facto tools for security auditing and testing of firewalls and networks, and was used to exploit the idle scan scanning technique (also invented by the hping author), and now implemented in the Nmap.

open terminal command :

root@agasvcn:/home/agasvcn# sudo apt-get update

root@agasvcn:/home/agasvcn# sudo apt-get install hping3

Friday, October 11, 2013

How To Repository Ubuntu 10.10

root@agasvcn:~# nano /etc/apt/sources.list

deb cdrom:[Ubuntu 11.10 _Oneiric Ocelot_ - Release i386 (20111012)]/ oneiric main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://id.archive.ubuntu.com/ubuntu/ oneiric main restricted
deb-src http://id.archive.ubuntu.com/ubuntu/ oneiric main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://id.archive.ubuntu.com/ubuntu/ oneiric-updates main restricted
deb-src http://id.archive.ubuntu.com/ubuntu/ oneiric-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://id.archive.ubuntu.com/ubuntu/ oneiric universe
deb-src http://id.archive.ubuntu.com/ubuntu/ oneiric universe
deb http://id.archive.ubuntu.com/ubuntu/ oneiric-updates universe
deb-src http://id.archive.ubuntu.com/ubuntu/ oneiric-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://id.archive.ubuntu.com/ubuntu/ oneiric multiverse
deb-src http://id.archive.ubuntu.com/ubuntu/ oneiric multiverse
deb http://id.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse
deb-src http://id.archive.ubuntu.com/ubuntu/ oneiric-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://id.archive.ubuntu.com/ubuntu/ oneiric-backports main restricted universe multiverse
deb-src http://id.archive.ubuntu.com/ubuntu/ oneiric-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu oneiric-security main restricted
deb-src http://security.ubuntu.com/ubuntu oneiric-security main restricted
deb http://security.ubuntu.com/ubuntu oneiric-security universe
deb-src http://security.ubuntu.com/ubuntu oneiric-security universe
deb http://security.ubuntu.com/ubuntu oneiric-security multiverse
deb-src http://security.ubuntu.com/ubuntu oneiric-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu oneiric partner
# deb-src http://archive.canonical.com/ubuntu oneiric partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu oneiric main
deb-src http://extras.ubuntu.com/ubuntu oneiric main

How To Install Nmap Ubuntu 10.10

step one open terminal

command

root@agasvcn:~# apt-get update

root@agasvcn:~# apt-get install nmap

Instalasi Apache Web Server Di Linux

hello guys kali ini saya akan menjelaskan tentang sedikit cara untuk membangun sebuah web server di linux
untuk yang pertama menambahkan reponya dahulu

ketik di terminal nano /etc/apt/sources.list
silahkan copas repositroy debian di bawah ini

deb http://http.debian.net/debian wheezy main
deb-src http://http.debian.net/debian wheezy main

deb http://http.debian.net/debian wheezy-updates main
deb-src http://http.debian.net/debian wheezy-updates main

deb http://security.debian.org/ wheezy/updates main
deb-src http://security.debian.org/ wheezy/updates main


jika sudah kemudian save CTRL + X kemudian Y enter

- apt-get update (untuk update repository)

- apt-get install apache2 (instal apache)

jika sudah selesai, kemudian restart apache

# /etc/init.d/apache2 restart

lalu periksa apakah sudah berhasil atau tidak caranya cek dengan masukkan ip 127.0.0.1 (locallhost) di browser jika ada tulisan it's work berarti apache sudah berhasil terinstal

letak directory untuk edit indexnya

root@agasvcn:~# cd /var/www
root@agasvcn:/var/www# ls
index.html

# /etc/init.d/apache2 start (untuk menjalankan service apache)


# /etc/init.d/apache2 stop (untuk menghentikan service apache)

# /etc/init.d/apache restart (untuk restart service apache)