There are times when you want to do funky things to your computer. Sometimes, it messed up your zen. Well, when that happens, just do the Debian way. Oh, btw, it also means you could do it in Ubuntu.
#1 Regenerate your settings
$ sudo update-grub
#2 Reinstall GRUB on MBR
$ sudo dpkg-reconfigure grub-pc
ADVANCE:
#2a Adding kernel options to […]
03.01Bukan Sekedar
Sering kali terjadi salah sangka tentang manfaat FOSS (Free/Open Source Software). Kebanyakan melulu berpikir tentang memerangi pembajakan perangkat lunak dengan menyediakan alternatif bagi perangkat lunak berbayar.Tetapi, mari kita evaluasi sejenak. Ya, Anda yang telah memakai FOSS selama ini secara aktif. Tidakkah Anda merasa mendapatkan sesuatu yang Anda tidak pernah duga bisa Anda kuasai? Tidakkah Anda […]
Now, you could pinged the network router, yet, you couldn’t access google.com. It’s because the way internet runs is by using IP, not names. So, when you type google.com, actually your system is trying to translate it into IP.
There are two ways of setting it.
#1 Using /etc/hosts
This is an ARPANET legacy and still holds true. […]
There are several reasons why this basic skill is important:
Your network is failing because of your experimentation.
You want to be an l33t and impress your GF.
You are stranded on an Debian/Ubuntu server.
To configure a basic networking, usually we use “/etc/network/interfaces“. Every network interface (e.g. ethernet card) can be brought up and down by using command
[…]
What scenarios does this would likely involved you in? Well, for instance:
Creating an Ubuntu system on your USB stick because your lack of faith to trust all of your system to GNU/Linux.
Creating new system from your Ubuntu stick because you have become the enlightened.
Creating a customized *buntu flavour because you have become one.
Killing time because […]
If you are experiencing:
Caused by: java.net.SocketException: Network is unreachable
This is most likely because of the Debian bug to force all system using IPv6. According to the reference, you should do:
$ sudo sed -i ’s/net.ipv6.bindv6only\ =\ 1/net.ipv6.bindv6only\ =\ 0/’ \
/etc/sysctl.d/bindv6only.conf && sudo invoke-rc.d procps restart
REFERENCE:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560044
02.11Using JSR 268
JSR268 is a Java specification for accessing Smart Card device (ISO 7816 specification). It is included in Java6 SE specification. To enable it into Debian, don’t forget to install :
# sudo apt-get install libpcsclite-dev
PCSC-lite development package.
Tested on Sun J2SE 6 and OpenJDK 6.
I’m trying to use Bespin from SVN but the build failed at configuring. According to [BUG], there are two ways of solving it:
Reinstalling libqt4-phonon-dev
$ sudo aptitute reinstall libqt4-phonon-dev
Create a symlink (symbolic link/shortcut) from /usr/include/qt4/phonon to /usr/include/phonon
$ sudo ln -s /usr/include/qt4/phonon /usr/include/phonon
With my current Lucid, I get the second one successful.The complete error message when installing:$ cmake .– Found […]
01.21Plymouth on Lucid
WARNING: Lucid is still on alpha version, don’t whine on me if it burns your house and destroy your future.
I’m installing from debootstrap, if you want to tell me that it’s already installed on Lucid installer. Furthermore, this may be a helpful hint for you on other version or other distro that may want to […]
01.11A Neat Thing
I know there are many shorter ways. But, this is my way to delete things. To delete a directory:
$ find . -type d -print | grep ecchi | xargs rm -rf
Change the “-type d” with “-type f” for printing files. In my example, I’m using “ecchi” for keyword. “xargs” is a neat utility that […]
