Client Warnet Neutron
– Linuxmint 13 / ubuntu 12.04 LTS 64bit
– Billing mkhawa
hp deskjet 1000 j110a di Ubuntu 10.04
Agar hp deskjet 1000 j110a dapat berjalan di ubuntu 10.04 minimal harus terinstall hplip 3.10.9 . tambahkan ppa:hplip-isv/ppa, update apt kemudian upgrade hplip :
add-apt-repository ppa:hplip-isv/ppa
apt-get update
apt-get install hplip
install yfi hotspot di ClearOS 5.2
requirement :
pc dengan 3 LAN Card
1 untuk external access (internet) (eth0)
1 untuk lan (eth1) 192.168.1.1
1 untuk hotspot (eth2)
installasi ClearOS
– gateway mode
– modules :
– DHCP and LOcal DNS Servers
– VPN – PPTP Server
– Bandwidth Manager
– Protocol Filter
– Web Proxy
– Content Filter
– Mail Server
– Web Server
– Database Server / MySQL
Install Moodle
wget http://downloads.sourceforge.net/project/moodle/Moodle/stable21/moodle-latest-21.tgz?r&ts=1321687486&use_mirror=nchc
tar -zxf moodle-latest-21.tgz
… mv moodle elearning
chown -R www-data elearning/
mkdir /var/www/moodledata
chown www-data /var/www/moodledata
apt-get install php5-curl php5-xmlrpc php5-intl
/etc/init.d/apache2 reload
start installation through web xxx/elearning
daftar di xpango
My Referral Link: http://www.xpango.com?ref=92569736
Desktop Client Warnet Neutron
OS : Linuxmint 9 XFCE
Billing : ccl billing
Browser : Firefox, Opera, Google Chrome
Chat : Pidgin, Xchat IRC, skype
Multimedia : qmmp (mp3 player) , gmplayer (video player ), mmc (mobile media converter )
Office : Openoffice, acrobat reader 9
lain-lain : gimp, games, movies and musics
Screenshot :
Tampilan Billing ccl
Desktop
menu
file manager
Firefox
qmmp (winamp like)
mmc (buat convert ke 3gp)
My Desktop Today
You are not privileged to mount the volume
usb flash tidak bisa automatis mount, setiap kali dibuka muncul error ‘You are not privileged to mount the volume’
ketemu caranya di https://bugs.launchpad.net/ubuntu/+source/gnome-volume-manager/+bug/132349
Error di sebabkan oleh gparted yang membuat file : /usr/share/hal/fdi/policy/gparted-disable-automount.fdi
yang menyebabkan semua drive tidak bisa automotis mount.
hapus file tersebut kemudian reboot.
$ sudo -i # rm /usr/share/hal/fdi/policy/gparted-disable-automount.fdi # reboot
usb flash bisa automatis mount kembali 😀
menghapus kernel lama di ubuntu
Setelah melakukan update kernel, ubuntu tidak menghapus kernel lama untuk berjaga-jaga jika kernel yang baru tidak berkerja.Tapi jika kernel yang baru berjalan dengan baik menghapus yang lama bisa mengurangi space harddisk yang lumayan, juga mengurangi tampilan grub menu yang panjang 😀 .
jadi root
$ sudo -i
lihat kernel yang dipakai saat ini
# uname -r 2.6.31-16-generic
lihat kernel yang terinstall, gunakan hasil uname -r diatas untuk filter (‘2.6.31’)
# dpkg --get-selections | grep '2.6.31' linux-headers-2.6.31-14 install linux-headers-2.6.31-14-generic install linux-headers-2.6.31-15 install linux-headers-2.6.31-15-generic install linux-headers-2.6.31-16 install linux-headers-2.6.31-16-generic install linux-image-2.6.31-14-generic install linux-image-2.6.31-15-generic install linux-image-2.6.31-16-generic install
masih ada 2 kernel lama yang terinstall 2.6.31-14 dan 2.6.31-15, menghapus keduanya bisa menghemat 2 x 172MB space hardisk. hapus dengan perintah :
# apt-get remove --purge 2.6.31-14-* # apt-get remove --purge 2.6.31-15-*
selesai