Monday, November 30, 2009

the great Mark

Though this is not about linux/debian or anything like that. But here is the case:

You write a book, put it in GPL and somebody prints it and sells it and makes profit out of it. How will you feel ?

Read out to know how does the writer of dive-into-python thinks. After reading you will feel that the Title of this post is justified.

http://diveintomark.org/archives/2009/10/19/the-point

Wednesday, November 18, 2009

apt-get/aptitude

Many a times we mirror some iso-s of debian and put it on our laptops and/or local LAN to work as a repository. While installing it asks for authenicity of the packages.And we have to press/write 'Yes' all of the time. To get rid of this we can just write the following in /etc/apt/apt.conf

APT::Get::AllowUnauthenticated 1 ;

And please mind the spaces.

Monday, November 9, 2009

gnome-mount

Okay I agree that I dont use gnome/gnome-mount anymore. I have switched to halevt. But yesterday an acquaintance of mine (using gnome) ran into a problem. Her machine was not able to automount the usb thumb disks. I tried my hand for sometime making the normal user a member of some groups. But still it didn't work. Then I tried logging into root and mounting from there. But no fruits. At last I searched on net and found a command line for gnome-mount

$ gnome-mount -v -b -d <device point>

This device point information is available from the command dmesg. So i replaced <device point> with sdb1 and it gave a slight hint that some thing with media directory is creating a problem (dont remember the actual message). So I checked the /etc/fstab file and somebody has created an entry for /media and /media/sdb in fstab. I removed those and everything started fine. So just a piece of advice:
"Documenting the changes your are making to your system on a simple sheet of paper can come handy many-a-times."