Topic: Computers It's the little things
(link)

4:19pm, Wednesday 8 November 2006

What's the point of providing debug output if it doesn't contain useful information? This afternoon I have done:

#define DH3HACK 1
#ifdef DH3HACK
  {
    struct sockaddr_in sin;
    socklen_t len = sizeof(sin);

    if (getpeername(fd, (struct sockaddr *) &sin, &len) == 0) {
      syslog(LOG_DEBUG, "accepted connection from %s", inet_ntoa(sin.sin_addr));
    } else {
      syslog(LOG_DEBUG, "accepted connection");
    }
  }
#else
  syslog(LOG_DEBUG, "accepted connection");
#endif
and similar, because Cyrus says "ooh yes, new connection" without bothering to tell you where the data is coming from...
Topic: Computers Spam of the day
(link)

11:15am, Monday 9 October 2006

Junk body text:

Ugly as a mud fence. Shall I compare thee to a summer's day.

Nice juxtaposition.

Topic: Computers NFS, how I love thee...
(link)

12:06pm, Tuesday 26 September 2006

Let me count the ways... hint, it's not 16.

Topic: Computers Spam of the day
(link)

10:28am, Tuesday 22 August 2006

Subject: perceptible burp
OK, it amused me...
Topic: Computers resize2fs woe
(link)

10:26am, Friday 4 August 2006 (Updated 4:05pm, Friday 4 August 2006)

Aug 4 10:20:24 cachesrv1b kernel: EXT3-fs warning (device cciss/c0d0p1): ext3_group_add: No reserved GDT blocks, can't resize

Grr. And Google has nothing useful to suggest. The filesystem in question refuses to grow beyond 32GB, which is a slightly suspicious number. Anyone?

Update: I just tried to grow a different filesystem from 10GB to 20GB and it got stuck at 16GB. The plot thickens. /usr/src/linux/fs/ext3/resize.c, here I come...

Update 2: Right, it appears that ext2/3 filesystems can be resized on-the-fly up to the next multiple of 16GB. To go beyond that you need to unmount the filesystem... which is mildly tricky if it's the root filesystem. Bah!

<-
 Topic:    
->

Powered by Personal Weblog.

April 2024
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        
Mar   May

[RSS]

 


 


Dave Holland <dave@biff.org.uk>
$Id: index.php,v 1.75 2010-07-09 22:15:04 dave Exp $