Kamis, 09 Juni 2011

Instal Webmin

Webmin adalah suatu sistem administrasi web base untuk sistem Linux/Unix, dimana untuk menjalankannya dengan menggunakan web browser. Dengan webmin kita bisa menambahkan akun user, setup apache, DNS, sharing file dsb.



webmin

Proses installasi

1.Sebelum menginstall webmin, terlebih dulu kita install dependency-nya

sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl

Kemudian kita install paket libmd5-perl, caranya :

download filenya :

wget http://ftp.debian.org/pool/main/libm/libmd5-perl/libmd5-perl_2.03-1_all.deb

Install

sudo dpkg -i libmd5-perl_2.03-1_all.deb


2.Download webmin

wget -c http://prdownloads.sourceforge.net/webadmin/webmin_1.550_all.deb

Install

sudo dpkg -i webmin_1.550_all.deb

Tunggu sampai prosesnya selesai. Bila dalam prosesnya terdapat pesan error maka ketikkan perintah berikut :

sudo apt-get -f install

Dari semua proses tersebut maka webmin telah terinstall, tapi apabila kita tidak bisa login dengan akun root, maka coba dengan perintah berikut untuk bisa login ke panel :

sudo passwd root

Oke, untuk mencoba hasil dari yang telah kita lakukan tadi, maka bukalah webmin dari address bar web browser, https://namaserver:10000 atau https://ip-server:10000

Sabtu, 04 Juni 2011

Cara Partisi Ubuntu Server

1. Check ubuntu telah mengenali harddrive baru

sudo lshw -C disk

2. Mulai mempartisi hardisk baru dengan perintah fdisk

a) Initiate fdisk with the following command:

· sudo fdisk /dev/sdb

b) Fdisk will display the following menu:

· Command (m for help): m
· Command action
· a toggle a bootable flag
· b edit bsd disklabel
· c toggle the dos compatibility flag
· d delete a partition
· l list known partition types
· m print this menu
· n add a new partition
· o create a new empty DOS partition table
· p print the partition table
· q quit without saving changes
· s create a new empty Sun disklabel
· t change a partition's system id
· u change display/entry units
· v verify the partition table
· w write table to disk and exit
· x extra functionality (experts only)
·
· Command (m for help):

c) We want to add a new partition. Type “n” and press enter.

Command action
e extended
p primary partition (1-4)

d) We want a primary partition. Enter “p” and enter.

Partition number (1-4):

e) Since this will be the only partition on the drive, number 1. Enter “1″ and enter.

Command (m for help):

If it asks about the first cylinder, just type “1″ and enter. (We are making 1 partition to use the whole disk, so it should start at the beginning.)

f) Now that the partition is entered, choose option “w” to write the partition table to the disk. Type “w” and enter.

The partition table has been altered!

g) If all went well, you now have a properly partitioned hard drive that’s ready to be formatted. Since this is the first partition, Linux will recognize it as /dev/sdb1, while the disk that the partition is on is still /dev/sdb.
Command Line Formatting

To format the new partition as ext3 file system (best for use under Ubuntu):

· sudo mkfs -t ext3 /dev/sdb1

3. Membuat mount poin.
mkdir /media/mynewdrive

4. Memaunting hardisk baru.
a. Automatic
- edit line fstab : vim etc/fstab
- masukan line text berikut didalam fstab
/dev/sdb1 /media/mynewdrive ext3 defaults 0 2

b. Manual
- Untuk memount hardisk : mount /dev/sdb1 /media/mynewdrive
- Untuk meunmount hadisk: umount /dev/sdb1 /media/mynewdrive