Client Warnet Neutron
– Linuxmint 13 / ubuntu 12.04 LTS 64bit
– Billing mkhawa
Category Linux
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
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
ngurutkan kembali tabel partisi
$ sudo -i # fdisk /dev/sda press x to enter expert mode press f to fix partition order press w to write the partition table changes to disk
My Desktop Today – Ubuntu 9.10 Netbook Remix
One or more of the mounts listed in /etc/fstab/ cannot yet be mounted
Ubuntu 9.10 booting luamaaa banget, muncul error “One or more of the mounts listed in /etc/fstab/ cannot yet be mounted”.
I solve it by edit /etc/fstab:
– Disable fsck on vfat, like mentioned in here
– and change UUID by /dev/sdxx
hurai 😀