repo.binadarma.ac.id Repository Ubuntu

Repository lokal dimiliki Universitas Bina Darma Palembang, yang saat ini telah online dan dapat dipergunakan untuk update (apt-get).

Repository ini akan terus ditingkatkan untuk versi-versi linux lainnya “insyallah”  :toast

Saat ini anda dapat mengupdate/upgrade Ubuntu, berikut ini sourcces.list yang digunakan :

sources.list Dapper Drake 6.06 LTS (Desktop/Server)

deb http://repo.binadarma.ac.id/ubuntu dapper main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu dapper-updates main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu dapper-security main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu dapper-backports main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu dapper-proposed main restricted universe multiverse

sources.list Hardy Heron 8.04 LTS (Desktop/Server)

deb http://repo.binadarma.ac.id/ubuntu hardy main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu hardy-updates main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu hardy-security main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu hardy-backports main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu hardy-proposed main restricted universe multiverse

sources.list Jaunty Jackalope 9.04 LTS (Desktop/Server)

deb http://repo.binadarma.ac.id/ubuntu jaunty main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu jaunty-updates main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu jaunty-security main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu jaunty-backports main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu jaunty-proposed main restricted universe multiverse

sources.list Karmic Koala 9.10 (Desktop/Server)

deb http://repo.binadarma.ac.id/ubuntu karmic main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu karmic-updates main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu karmic-security main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu karmic-backports main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu karmic-proposed main restricted universe multiverse

sources.list Lucid Lynx 10.04 LTS (Desktop/Server)

deb http://repo.binadarma.ac.id/ubuntu lucid main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu lucid-updates main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu lucid-security main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu lucid-backports main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu lucid-proposed main restricted universe multiverse

sources.list Maverick Meerkat 10.10 (Desktop/Server)

deb http://repo.binadarma.ac.id/ubuntu maverick main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu maverick-updates main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu maverick-security main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu maverick-backports main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu maverick-proposed main restricted universe multiverse

sources.list Natty Narwhal 11.04 LTS (Desktop/Server)

deb http://repo.binadarma.ac.id/ubuntu natty main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu natty-updates main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu natty-security main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu natty-backports main restricted universe multiverse
deb http://repo.binadarma.ac.id/ubuntu natty-proposed main restricted universe multiverse

Semoga bermanfaat :sungkem

Install LAMP Linux Apache Mysql PHP dan PhpMyAdmin di Centos 5

sebelum melakukkan instalasi, download paket rpm berikut

wget http://packages.sw.be/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

kemudian install pake yg di download tadi

rpm -ivh rpmforge-release-0.3.6-1.el5.rf.i386.rpm

mari mulai install Apache Mysql PHP dan PhpMyAdmin dengan menggunakan yum

yum install httpd httpd-devel mysql mysql-server mysql-devel php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml phpmyadmin

lamanya proses instalasi tergantung koneksi internet, ikuti langkah install seperti biasa hingga muncul kata “Complete!”

restart apache dan mysql

/etc/init.d/httpd restart

/etc/init.d/mysqld restart

kemudian buat scrip php untuk melihat configurasi apache dan php yg telah terinstall

nano /var/www/html/phpinfo.php

<?

phpinfo();

?>

simpan ctrl + X kemudian Y

akses dari web browser http://ip_anda/phpinfo.php

terakhir yaitu lakukan konfigurasi untuk PhpMyAdmin

nano /usr/share/phpmyadmin/config.inc.php

$cfg[‘blowfish_secret’] = ”; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

edit menjadi

$cfg[‘blowfish_secret’] = ‘goopensources’; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

agar PhpMyAdmin bisa diakses dari komputer lain maka edit bagian

nano /etc/httpd/conf.d/phpmyadmin.conf

<Directory “/usr/share/phpmyadmin”>
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>

edit menjadi

<Directory “/usr/share/phpmyadmin”>
Order Deny,Allow
Deny from all
Allow from all
</Directory>

simpan konfigurasi, kemudian agar apache dan mysql berjalan saat komputer dinyalakan lakukan perintah

chkconfig httpd on

chkconfig mysqld on

restart komputer dengan perintah reboot

semoga sukses :toast