Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 |
Open Source @ Consolidated Braincells Inc.
This is a weblog I'm keeping about my work on Debian and any other useful Debian related info I come across. It is not meant to compete with other news sources like Debian Weekly News or Debian Planet. Mostly it is just a way for me to classify and remember all the random bits of information that I have floating around me. I thought maybe by using a blog it could be of some use to others too. Btw. "I" refers to Jaldhar H. Vyas, Debian developer for over 5 years. If you want to know more about me, my home page is here.
The name? Debain is a very common misspelling of Debian and la salle de bains means bathroom in French.
If you have a comment to make on something you read here, feel free to write to me at jaldhar@debian.org.
You can get an rss 0.91 feed of any page in the
blog by appending ?flav=rss
to the end of the URL.
Recently on my laptop I switched over to udev which is kernel 2.6's replacement for devfs. Things mostly went smoothly except I kept having to reinstall vmware everytime I rebooted. That's because the current version doesn't support sysfs so the device nodes aren't automatically created by udev. vmware then thinks it is unconfigured makes you do the install again. Until a new version comes out, the following workaround may help.
for a in `seq 0 9`; do
mknod /dev/vmnet$a c 119 $a > /dev/null 2>&1
done
mknod /dev/vmmon c 10 165 > /dev/null 2>&1
People on the Debian-User mailing list have posted two howtos recently. Using OpenLDAP on Debian Woody to serve Linux and Samba users by Markus Amersdorfer and Configuring SSH2 for Public Key authentication from Jadev.
This is an introductory book with a Debian focus and lots of useful information for desktop users.
Some programs in the windows world such as Nero store CD images as a big .bin file and a smaller .cue file. To convert these files into an .iso suitable for burning with e.g. xcdroast, apt-get install bchunk and read its' man page.
Emma Jane Hogbin has written a HOWTO on building a multilingual search engine.
In debian-user, Jean-Marc Liotier offers the following recipe for logging in to a remote host via SSH without having to give a password.
# Local end :
cd ~/.ssh
# Enter an empty password when prompted by the following command
ssh-keygen -t dsa -f id_dsa
scp id_dsa.pub user@remote.end.net:~/.ssh
# Repeat last command for all remote ends
# Remote end
test -d .ssh || mkdir .ssh
chmod 700 ~/.ssh
cd ~/.ssh
touch authorized_keys2
cat id_dsa.pub >> authorized_keys2
chmod 640 authorized_keys2
rm -f id_dsa.pub
# Local end :
ssh -l user remote.end.net
# Look ma, no password !
To use the chroot environments set up on the Debian machines run the dchroot program. In each chroot, there is a file /etc/debian_chroot, the contents of which will tell you which chroot you are in (see /etc/profile for an example of how to add this to your prompt).