Kirya [.net]

Julien Valroff's weblog and personal homepage

RSS Feeds

  • Home
  • Articles
  • Tips & tricks
  • Projects
  • Contact
lennybanner_indexed

Lenny…

Feb 15th

Posted by Julien in Weblog

3 comments

lennybanner_indexedWell, I am sure all of you have already read the announcement: Lenny (aka Debian 5.0) is out!

I have been using Debian on all my machines since at least mid 2003, when Woody was stable. Sarge was then released in 2005, then Etch the year after.

I have updated my personal repository of unofficial packages for this new stable release. I have let etch packages available (under oldstable), but will remove them in a while. This repository is mainly mainly composed of backported or patched packages for my own use, but can be used by anyone (but I do not guarantee anything ;-) ).

Well, I am sure all of you have already read the announcement: Lenny (aka Debian 5.0) is out! I have been using Debian on all my machines since at least mid 2003, when Woody was stable. Sarge was then released in 2005, then Etch the year after. I have updated my personal repository of unofficial packages for this new stable release. I have let etch packages available (under oldstable), but will remove them in a while. This repository is mainly mainly composed of backported or patched packages for my own use, but can be used by anyone (but I do not guarantee anything ;-)).
Debian, Planet Debian

My new xorg.conf

Feb 7th

Posted by Julien in Weblog

12 comments

~$ [ -s /etc/X11/xorg.conf ] ; echo $?
1

Yes, it is an empty file! I have just upgraded xorg to the experimental packages. hal does its job, and all devices are automatically detected and configured.
This is actually a great improvement, especially for those who had to fight against the XFree86 configuration file just to get a graphical session working, back in the late 90′s.
More >

~$ [ -s /etc/X11/xorg.conf ] ; echo $? 1 Yes, it is an empty file! I have just upgraded xorg to the experimental packages. hal does its job, and all devices are automatically detected and configured. This is actually a great improvement, especially for those who had to fight against the XFree86 configuration file just to get a graphical session working, back in the late 90's. The only thing I had to do is creating an /etc/hal/fdi/policy/10-keymap.fdi file with the following contents, so that GDM has a correct keyboard layout (French in my case): hal-setup-keymap base
Debian, Planet Debian

Counting Debian source packages #2

Jan 17th

Posted by Julien in Weblog

1 comment

Thanks to Joerg for pointing out pkg-nums.

I was pretty sure such a tool already existed but could not find it.

At least, my script (with Thomas’ amendments) allow distinctions between sections (free, contrib, non-free) ;-) And thanks to pkg-nums, I was able to check the results.

Thanks to Joerg for pointing out pkg-nums. I was pretty sure such a tool already existed but could not find it. At least, my script (with Thomas' amendments) allow distinctions between sections (free, contrib, non-free) ;-) And thanks to pkg-nums, I was able to check the results.
Debian, Planet Debian

IPv6: Miredo link to HE Tunnel endpoint

Jan 17th

Posted by Julien in Weblog

6 comments

As announced a few weeks ago, my website should now be accessible through IPv6. The connectivity is made thanks to Hurricane Electric IPv6 tunnel service as recommended on Linode wiki.

At home, I use Miredo, an open-source Teredo IPv6 tunneling software for GNU/Linux and BSD. This works great with many websites. I can ping6 servers I know, like ipv6.google.com or www.debian-administration.org.
However, I cannot ping6 my Linode server until I have established a link from the linode to home. But after a while (a quarter or so), the link is dead, and I have to ping my home address again from the linode to make it alive.
More >

As announced a few weeks ago, my website should now be accessible through IPv6. The connectivity is made thanks to Hurricane Electric IPv6 tunnel service as recommended on Linode wiki. At home, I use Miredo, an open-source Teredo IPv6 tunneling software for GNU/Linux and BSD. This works great with many websites. I can ping6 servers I know, like ipv6.google.com or www.debian-administration.org. However, I cannot ping6 my Linode server until I have established a link from the linode to home. But after a while (a quarter or so), the link is dead, and I have to ping my home address again from the linode to make it alive. Here are some results which might help: From home to linode when not working: $ traceroute6 2001:470:1f06:ccf::2 traceroute to 2001:470:1f06:ccf::2 (2001:470:1f06:ccf::2), 30 hops max, 80 byte packets 1 2001:0:53aa:64c:2c29:6807:a37d:37e2 (2001:0:53aa:64c:2c29:6807:a37d:37e2) 0.066 ms !H 0.060 ms !H 0.059 ms !H From Linode to home: $ traceroute6 2001:0:53aa:64c:2c29:6807:a37
IPv6, Planet Debian, Weblog

Counting Debian source packages

Jan 17th

Posted by Julien in Weblog

12 comments

Following to Kushal’s post about counting total number of Debian packages, he concluded that sid currently has more than 30,000 binary packages (free, contrib & non-free).

IMHO it is more relevant to count source packages. I couldn’t find any existing way of doing it, I have hence written a short bash script.

More >

Following to Kushal's post about counting total number of Debian packages, he concluded that sid currently has more than 30,000 binary packages (free, contrib & non-free). IMHO it is more relevant to count source packages. I couldn't find any existing way of doing it, I have hence written a short bash script. Script updated thanks to Thomas' advice - now checking source packages directly from the mirror's Sources.gz file #!/bin/sh if [ $# -lt 1 ]; then echo "Please add at least one distribution as argument" echo "Exiting" exit 1 fi for arg in $* do echo "Number of source packages in $arg: " for dist in main contrib non-free; do echo -n " $dist: " wget -q -O - ftp://ftp.debian.org/debian/dists/$arg/$dist/source/Sources.gz | zgrep -c '^Package: ' done done The results as of today: Number of source packages in etch: main: 10221 contrib: 126 non-free: 211 Number of source packages in lenny: main: 12176 contrib: 180 non-free: 241
Debian, Development, Planet Debian

DSPAM-Community – first RC: call for testing

Jan 6th

Posted by Julien in Weblog

3 comments

I was happy to receive Dov Zamir’s email announcing the creation of a fork of the DSPAM anti-spam filter, called dspam-community.

I have been using DSPAM for a while now, and am very happy with it, but was quite anxious that the project is left out by Sensory Networks (the company took over DSPAM in May 2007).

I give all my confidence in the fork as the original author, Jonathan Zdziarski, is part of the new development team!

I have prepared EXPERIMENTAL packages of the first RC of DSPAM-Community.
More >

I was happy to receive Dov Zamir's email announcing the creation of a fork of the DSPAM anti-spam filter, called dspam-community. I have been using DSPAM for a while now, and am very happy with it, but was quite anxious that the project is left out by Sensory Networks (the company took over DSPAM in May 2007). I give all my confidence in the fork as the original author, Jonathan Zdziarski, is part of the new development team! I have prepared EXPERIMENTAL packages of the first RC of DSPAM-Community. These are only meant for testing and should not be used in a production environment! I haven't tested these packages in depth (only tested installation or upgrade from previous official/unofficial packages). There might still be problems due to the new names. I have built packages for i386 and amd64 architectures. They are built against current unstable distribution. They might be used on Ubuntu, but I haven't tested this yet. I have setup a quick page for these packages. All the applied pa
Community, Development, Planet Debian
« First...«34567»1020...Last »
  • Did you know you can also browse this website using IPv6?

    • Recent comments
    • Popular posts
    • Archives
    • Tags
    Book reviews Community Debian Development Diaspora Dspam facebook Free Software French Geek GNOME Gnu identi.ca IPv6 Java Life Linode microblogging News Planet Debian Social networking Tech Ubuntu Weblog
    • July 2010 (1)
    • June 2010 (2)
    • January 2010 (1)
    • December 2009 (3)
    • November 2009 (2)
    • October 2009 (1)
    • September 2009 (1)
    • July 2009 (3)
    • May 2009 (4)
    • April 2009 (2)
    • March 2009 (3)
    • February 2009 (3)
    • January 2009 (4)
    • December 2008 (2)
    • November 2008 (4)
    • October 2008 (2)
    • September 2008 (1)
    • August 2008 (1)
    • June 2008 (1)
    • May 2008 (4)
    • December 2007 (5)
    • November 2007 (2)
    • October 2007 (2)
    • September 2007 (2)
    • July 2007 (4)
    • June 2007 (2)
    • May 2007 (6)
    • April 2007 (5)
    • March 2007 (5)
    • February 2007 (7)
    • January 2007 (8)
    • December 2006 (4)
    • November 2006 (2)
    • October 2006 (7)
    • September 2006 (1)
    • August 2006 (4)
    • July 2006 (6)
    • June 2006 (6)
    • May 2006 (3)
    • April 2006 (5)
    • March 2006 (7)
    • February 2006 (10)
    • January 2006 (7)
    • December 2005 (11)
    • Things I like in Ubuntu (13)
    • Counting Debian source packages (12)
    • My new xorg.conf (12)
    • Back to Adobe® Flash™ Player (12)
    • OOoCalc limitations (11)
    • Laptop as desktop computer replacement (10)
    • My experience without Adobe® Flash™ Player (10)
    • Switched to Pulseaudio (9)
    • Ubuntu 8.10 as a guest in VirtualBox (8)
    • IPv6: Miredo link to HE Tunnel endpoint (6)
    • risca: There is a smart way to use both Gnash and Adobe Flash Player on this page:...
    • Leonardo Fontenelle: I have an amd64 system and a i686 one. I simply uninstalled Flash from the first one.
    • ssam: some sites have a non flash version if they detect that you dont have it installed. my method is...
    • Your mom: Flash videos aren't a human right, get over it. Do something useful instead. And stuff that...
    • Tweets that mention Back to Adobe® Flash™ Player @ Kirya [.net] -- Topsy.com: [...] This post was mentioned on Twitter by toorghezi. toorghezi said: Julien Valroff: Back to...
    • Martin: The only improvement I hope for in this area is the death of Flash. The whole concept of plugins in...
    • LGB: Surely it is, just it dies too slowly :) I dont' expect that it will die within even 1-2 years, and...
    • Julien: That's what I thought, but there are still a lot of websites designed in Flash, especially in the...
  • Identi.ca Feed

    I use TinyFeed
  • Meta

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org
Mystique theme by digitalnature | Powered by WordPress
RSS Feeds XHTML 1.1 CSS 3.0 Top