Pantek Library
Hosting Provided By
CybrHost
High Speed Hosting

debian-user-digest Digest V2007 #2483

From: <debian-user-digest-request(at)lists.debian.org>
Date: Wed Sep 26 2007 - 23:15:16 EDT


Content-Type: text/plain

debian-user-digest Digest Volume 2007 : Issue 2483

Today's Topics:

  Newbie help with simple C program, U  [ Nick Lidakis  ]
  Re: xmodmap again - not solved after  [ "s. keeling"  ]
  Re: How to reply in the mailing list  [ Kumar Appaiah  ]
  Re: Debian may lose a user            [ "s. keeling"  ]
  Re: Debian may lose a user            [ "s. keeling"  ]
  Re: Repost of some earlier described  [ "Douglas A. Tutty"  ]
  Re: Tool for document management      [ "Douglas A. Tutty"  ]
  Re: Repost of some earlier described  [ Charlie  ]
  Re: How to reply in the mailing list  [ Sid Arth  ]
  Re: Network settings don't stick aft  [ Wayne Topa  ]
  Re: Repost of some earlier described  [ "Douglas A. Tutty"  ]
  More intelligent `pdftotext`? (Re: m  [ Oleg Verych  ]
  Re: Repost of some earlier described  [ Charlie  ]
  Re: Network settings don't stick aft  [ Logan Five  ]
  Re: Network settings don't stick aft  [ "Mumia W.." 

Date: Wed, 26 Sep 2007 20:10:09 -0400
From: Nick Lidakis <nlidakis@verizon.net> To: debian-user@lists.debian.org
Subject: Newbie help with simple C program, USB device under Debian

Message-id: <46FAF4E1.3020908@verizon.net>
Content-type: text/plain; charset=ISO-8859-1; format=flowed
Do you need help?X
Content-transfer-encoding: 7bit

Sending this again as it did not seem to get to the list when I first sent it this morning.

I am need of some help with a USB device under Debian; trying last night multiple times to no avail.

I have a Dallas Semiconductor Thermochron temperature data logger that I am trying to set. The data logger (DS1921G-F5) is attached to a USB bridge (DS1921G-F5). I downloaded their linux utilities which consist of two simple C programs: One to set a "mission" and the other to download the datat logged:

Do you need more help?X

thermo21.c thermo21.h thermodl.c thermoms.c

The readme states:

/These utilities are used to download (thermodl) and
mission (thermoms) a DS1921G Thermochron iButton. The DS1921Z/DS1921H are not supported with this application.

THERMODL: usage: thermodl 1wire_net_name <output_filename> </Fahrenheit>

  • Thermochron download on the 1-Wire Net port
  • 1-wire_net_port required port name example: "COM1" (Win32 DS2480B),"/dev/cua0" (Linux DS2480B),"1" (Win32 TMEX)
  • <output_filename> optional output filename
  • </Fahrenheit> optional Fahrenheit mode (default Celsius)
  • version 1.03

Required on the command line is the 1-Wire port name:

example:  "COM1"                (Win32 DS2480B)
          "/dev/cua0"           (Linux DS2480B)
          "1"                   (Win32 TMEX)
          "\\.\DS2490-1"        (Win32 USB DS2490)
          "{1,5}"               (Win32 DS2480B multi build)
          "{1,6}"               (Win32 USB DS2490 multi build)
          "{1,2}"               (Win32 DS1410E multi build)

/When the device is plugged in dmesg shows:

usb 1-10: new full speed USB device using ohci_hcd and address 6 PM: Adding info for usb:1-10
PM: Adding info for No Bus:usbdev1.6_ep00 usb 1-10: configuration #1 chosen from 1 choice

PM: Adding info for usb:1-10:1.0
PM: Adding info for No Bus:usbdev1.6_ep81
PM: Adding info for No Bus:usbdev1.6_ep02
PM: Adding info for No Bus:usbdev1.6_ep83

In /dev I have:

usbdev1.1_ep81
usbdev1.6_ep83
usbdev1.6_ep02
Can we help you?X

Trying something like: /sh thermodl /dev/usbdev1.1_ep81 t.txt /results in an error.

/thermodl.c: line 1:
//------------------------------------------------------------------: No
such file or directory
thermodl.c: line 2: syntax error near unexpected token `(' thermodl.c: line 2: `// Copyright (C) 2000 Dallas Semiconductor Corporation, All Rights 'eserved.

/Any hints on how to call the device?

Date: Thu, 27 Sep 2007 03:08:08 +0200 (CEST) From: "s. keeling" <keeling@nucleus.com> To: debian-user@lists.debian.org
Subject: Re: xmodmap again - not solved after all Message-ID: <slrnffm0jo.3nm.keeling@heretic.nucleus.com>

Mumia W.. <paduille.4061.mumia.w+nospam@earthlink.net>:

>  On 09/25/2007 09:25 AM, Anthony Campbell wrote:
> > I've twice thought I'd solved this one but no. To recap: my .xinitrc
> > contains the line: "xmodmap ~/.Xmodmap". which has worked for many
> > months or even years. In the last couple of weeks the command is not
> > being run.
> 
>  Try this in your .bashrc:
> 
>  if [ -n "$DISPLAY" ]; then
>       if (which xmodmap); then
>           xmodmap ~/.Xmodmap
>       fi
>  fi > /dev/null
> 
>  I've never seen it, but I don't assume that xmodmap will automatically 
>  be called.
> 
>  Note, the code I wrote has a problem. You need to find a way to test 
>  that xmodmap hasn't already been invoked for the X server. To do this, 
>  you might test if your key mappings are already in xmodmap before 

 if [ "$XMODMAP" != "Done" ]; then
   if [ -n "$DISPLAY" ]; then

        if (which xmodmap); then
            xmodmap ~/.Xmodmap
            export XMODMAP=DONE
        fi

   fi > /dev/null
 fi

I just have:

Can't find what you're looking for?X

   usermodmap=$HOME/.Xmodmap
   if [ -f $usermodmap ]; then
     /usr/bin/xmodmap $usermodmap
   else

     # fix the mouse at the least.
     #
     /usr/bin/xmodmap -e "pointer = 3 2 1"
   fi

in my ~/.xinitrc (I'm a southpaw, btw).

-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)    
http://blinkynet.net/comp/uip5.html      Linux Counter #80292
- -    
http://www.faqs.org/rfcs/rfc1855.html    Please, don't Cc: me.

Date: Thu, 27 Sep 2007 06:54:32 +0530 From: Kumar Appaiah <akumar@iitm.ac.in> To: debian-user@lists.debian.org Subject: Re: How to reply in the mailing lists Message-ID: <20070927012432.GC4916@localhost> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ghzN8eJ9Qlbqn3iT" Content-Disposition: inline --ghzN8eJ9Qlbqn3iT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Sep 26, 2007 at 05:59:12PM -0500, Sid Arth wrote: > Ahh you will have to excuse me, but what exactly is top posting and > what do you mean by trimming? > Ill try to fix it myself if I can. It's easy to get over it. Just look at the top posted and bottom posted messages here and see for yourself which makes more sense: http://en.wikipedia.org/wiki/Top_Posting GMail users can scroll up and see the previous contents. But more conventional mail client users will get _really_ pained if they see untrimmed top postes stuff because they can't scroll up and search. Besides, it is always better to trim replies and quote only the things related to context. HTH. Kumar --=20 Kumar Appaiah, 458, Jamuna Hostel, Indian Institute of Technology Madras, Chennai - 600 036 --ghzN8eJ9Qlbqn3iT Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFG+wZQSd75awtatOcRAts1AJ9SPiJ5OONVhErXlJ3uYfG9mL17GwCfUop7 wIUFKMmQj6pkPdK1kKTIDxM= =mL1w -----END PGP SIGNATURE----- --ghzN8eJ9Qlbqn3iT--

Date: Thu, 27 Sep 2007 03:25:58 +0200 (CEST) From: "s. keeling" <keeling@nucleus.com> To: debian-user@lists.debian.org Subject: Re: Debian may lose a user Message-ID: <slrnffm1l6.3nm.keeling@heretic.nucleus.com> Nate Bargmann <n0nb@networksplus.net>: > * s. keeling <keeling@nucleus.com> [2007 Sep 26 04:27 -0500]: > > > > Btw, THIS IS ALL VOLUNTEER WORK HERE. fyi. > > Yup. And I for one appreciate our Debian Volunteer Overlords. ;-) Ah geez. You made me laugh. I even considered typing "LOL" ... Crap! -- Any technology distinguishable from magic is insufficiently advanced. (*) http://blinkynet.net/comp/uip5.html Linux Counter #80292 - - http://www.faqs.org/rfcs/rfc1855.html Please, don't Cc: me.

Date: Thu, 27 Sep 2007 03:19:53 +0200 (CEST) From: "s. keeling" <keeling@nucleus.com> To: debian-user@lists.debian.org Subject: Re: Debian may lose a user Message-ID: <slrnffm19o.3nm.keeling@heretic.nucleus.com> Mike McCarty <Mike.McCarty@sbcglobal.net>: > Nate Bargmann wrote: > >keeling: > >> Plenty of stuff, lots of replies and multipost threads. Can't see any > >> bug reports. Guess it's off to the BTS to search there. Drat. > >> > >> How 'bout that? Search of the BTS for submitter reports no reports > >> found. Huh? What address did you submit them from? > > > > Hmmmm, methinks the emperor has no clothes. ;-) > > Hey, that's pretty pejorative. I TOLD you I don't use Debian. I > didn't submit from my machine. So it isn't in my name, is it? Ah. I guess that might be an overly broad assumption on my part these days. I don't think you're a troll. > No. It seems likely that she will blast Debian, and I just didn't > want to "disappear" off the list with no explanation, and thought > that some explanation might aid the group. Okay. My Mom just went from an iMac to Vista. I feel your pain. Still, I'd rather the perceived problems got fixed. -- Any technology distinguishable from magic is insufficiently advanced. (*) http://blinkynet.net/comp/uip5.html Linux Counter #80292 - - http://www.faqs.org/rfcs/rfc1855.html Please, don't Cc: me.

Date: Wed, 26 Sep 2007 21:19:09 -0400 From: "Douglas A. Tutty" <dtutty@porchlight.ca> To: debian-user@lists.debian.org Subject: Re: Repost of some earlier described "challenges" Message-ID: <20070927011909.GB8923@titan.hooton> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Mike, Right now you're at Sarge. If you do an upgrade, consider: One of the first steps is to upgrade your Sarge. That will likely be a big download with the chance of breakage. One of the later steps is to upgrade from latest sarge to latest-etch. Etch is now at r1. The tested upgrade path is r0. Since so much changed between r0 and r1, there may be problems; I don't know. Since in the process of upgrading you'll end up replacing everything anyway, it may end up easier and faster to just do a reinstall. IIRC, the big problem is the keyboard/mouse combo. A basic install from the netinst.iso should let you test if Etch will fix that problem without you needing to totally reinstall all your packages. If it works, go ahead and finish installing. If it doesn't, go ahead with Windoes. The test itself should only take about 30 minutes once you have Etch's netinst.iso burned. Actually, I just thought of something. I've never used it, but the installer has a GUI version. I think it may be on netinst but I don't know. If it is, boot that and you can test the mouse/keyboard problem without touching the existing install. If it works, great, if not... Doug.

Date: Wed, 26 Sep 2007 21:22:18 -0400 From: "Douglas A. Tutty" <dtutty@porchlight.ca> To: debian-user@lists.debian.org Subject: Re: GNOME: Associate multiple queues with one printer: HOW? Message-ID: <20070927012218.GC8923@titan.hooton> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Sep 26, 2007 at 12:22:19PM -0500, Mike McCarty wrote: > Wayne Topa wrote: > >Mike McCarty(Mike.McCarty@sbcglobal.net) is reported to have said: > >BTW, I had more luck with the web interface then the CLI. And I use > >the CLI for 98% of my work. > Or try the foomatic-GUI Doug.

Date: Wed, 26 Sep 2007 21:24:36 -0400 From: "Douglas A. Tutty" <dtutty@porchlight.ca> To: debian-user@lists.debian.org Subject: Re: GNOME: Associate multiple queues with one printer: HOW? Message-ID: <20070927012436.GD8923@titan.hooton> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Sep 26, 2007 at 01:06:06PM -0500, Mike McCarty wrote: > As I said, I'm going to try using the direct CUPS I/F tonight > when I go over there. At present, I'm about 15 miles from > the computer, so it's problematic to try stuff out :-) > Have you considered a dial-up modem and setting up mgetty with auto-ppp? Then you can dial-in to get a CLI or ppp in and do ssh -X and run her X apps. Doug.

Don't know where to look next?X

Date: Wed, 26 Sep 2007 20:27:55 -0500 From: Kent West <westk@acu.edu> To: debian-user@lists.debian.org Subject: Re: Repost of some earlier described "challenges" Message-ID: <46FB071B.7010907@acu.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Douglas A. Tutty wrote: > Since in the process of upgrading you'll end up replacing everything > anyway, it may end up easier and faster to just do a reinstall. > Since the gf is likely to install Windows anyway, you might try persuading her to leave a goodly chunk of drive space unpartitioned, and then after Windows is installed, you can go to http://goodbye-microsoft.com/ and install Debian from there on the unpartitioned space, without downloading/burning a CD image. Then she can dual-boot and have the best of both worlds, and not actually leave Debian behind completely. If she's the geek she seems to be, she might just enjoy the process for the nerdiness of it. -- Kent

Date: Wed, 26 Sep 2007 21:31:32 -0400 From: "Douglas A. Tutty" <dtutty@porchlight.ca> To: debian-user@lists.debian.org Subject: Re: Tool for document management Message-ID: <20070927013132.GE8923@titan.hooton> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Sep 26, 2007 at 10:39:55AM -0700, David Brodbeck wrote: > On Sep 25, 2007, at 7:17 PM, John Hasler wrote: > > >David Brodbeck writes: > >>TeX is awesome for writing books and scientific papers. If you're > >>writing a letter to Grandma, though, OpenOffice is better suited. > > > >Now _that_ sounds like driving a semi truck to the supermarket to > >pick up a > >bottle of milk. > > Depends on your perspective, I guess. It just feels like by the time > I get all the preliminary verbiage TeX needs typed out, I could have > written the whole letter in OO. Also, looking at my copy of 'The Not > So Short Introduction To LaTeX,' it's not clear to me what document > class I'd use. They're all going to be a bit clumsy and > inappropriate. It's not an "article", it's not a "report", and it's > certainly not a "book"... > Here's my personal letter template. I copy it to the correct file name, edit it, then latex it. The letter text itself is just plain text. Doug. --- \documentclass[letterpaper,12pt]{article} %preamble here \begin{document} % no page number on this first page \thispagestyle{empty} \begin{flushleft} Douglas A. Tutty\\ xxx xxxxxxxxx, RR. x\\ xxxxxx, ON xxx xxx\\ Ph: (xxx) xxx--xxxx\\ Email: dtutty@porchlight.ca\\ \end{flushleft} \noindent \today \bigskip \noindent Dear: \bigskip \begin{flushleft} Yours truly, \vspace{2cm} Douglas A. Tutty. \end{flushleft} \end{document}

Date: Thu, 27 Sep 2007 03:48:20 +0200 (CEST) From: "s. keeling" <keeling@nucleus.com> To: debian-user@lists.debian.org Subject: Re: Debian may lose a user Message-ID: <slrnffm2v4.3nm.keeling@heretic.nucleus.com> Mike McCarty <Mike.McCarty@sbcglobal.net>: > Roger B.A. Klorese wrote: > > > > a lot of time working on non-goals; the question at hand is > > whether adoption by the level of user in question is or is not a > > goal. I'm satisfied to leave that up to the individual. It's none of my business. Caveat emptor applies in all situations. If they want to use it, _good for them_. If they want crapware from Redmond instead, _good for them_. Irrelevant to me. I've got what I want. > I'm sure Debian doesn't depend on any one user. I'm also sure that > she's not the only one like her. > > Anyway, I think this thread has probably already gone on too long. Andrew Sackville-Jones(sp?) has the multiple queues thing working. What else is a problem? -- Any technology distinguishable from magic is insufficiently advanced. (*) http://blinkynet.net/comp/uip5.html Linux Counter #80292 - - http://www.faqs.org/rfcs/rfc1855.html Please, don't Cc: me.

Date: Thu, 27 Sep 2007 11:35:04 +1000 From: Charlie <ariestao@clearmail.com.au> To: debian-user@lists.debian.org Subject: Re: Repost of some earlier described "challenges" Message-Id: <200709271135.04539.ariestao@clearmail.com.au> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thu, 27 Sep 2007, Douglas A. Tutty shared this with us all: >--} One of the later steps is to upgrade from latest sarge to latest-etch. >--} Etch is now at r1. =A0The tested upgrade path is r0. =A0Since so much >--} changed between r0 and r1, there may be problems; I don't know. >--} I have installed several machines with the first netistall etch CD since th= e=20 above change and have found no breakages. Update and then upgrade have work= ed=20 a treat. Just watch the prompts. I'll wish you no luck, because it's not required. Be well, Charlie =2D-=20 Registered Linux User:- 329524 +++++++++++++++++++++++++++++++++++ A trout leaps; clouds are moving in the bed of the=20 stream. ------------------------- ONITSURA <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Debian - Just the best way to do magic.

Date: Wed, 26 Sep 2007 20:36:50 -0500 From: Sid Arth <sidster802@gmail.com> To: debian-user@lists.debian.org Subject: Re: How to reply in the mailing lists Message-ID: <46FB0932.7030903@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Kumar Appaiah wrote: > On Wed, Sep 26, 2007 at 05:59:12PM -0500, Sid Arth wrote: > >> Ahh you will have to excuse me, but what exactly is top posting and >> what do you mean by trimming? >> Ill try to fix it myself if I can. >> > > It's easy to get over it. Just look at the top posted and bottom > posted messages here and see for yourself which makes more sense: > http://en.wikipedia.org/wiki/Top_Posting > > GMail users can scroll up and see the previous contents. But more > conventional mail client users will get _really_ pained if they see > untrimmed top postes stuff because they can't scroll up and > search. Besides, it is always better to trim replies and quote only > the things related to context. > > HTH. > > Kumar > I see, thank you. I think I might try out thunderbird then heh.

Date: Wed, 26 Sep 2007 21:39:39 -0400 From: Wayne Topa <linuxone@intergate.com> To: debian-user@lists.debian.org Subject: Re: Network settings don't stick after reboot Message-ID: <20070927013939.GD17390@buddy.mtntop.home> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Logan Five(logan5@pobox.com) is reported to have said: > I have the latest version of Debian running on Linksys NSLU. I have it set for > a static IP and I've added a correct default gateway to my config and everything > works ok. How/where did you set the static IP? > However, when I reboot, it goes back to DHCP and the gateway route > doesn't stick. Have you configured the DHCP server with the slugs IP. If not, DHCP will not know that the slug's IP has been set. man 5 dhcpd.conf see the examples for static leases. > All the correct settings in the correct files but those settings > don't get read on reboot apparently. On the Slug or server? If the dhcpd.conf setting are correct on the server then it should assing the slug the IP you set it at > > And if I do a restart of networking, the > correct settings get applied. What gives? Thanks. What correct setting on what, the slug? You might want to take a deep breath and try giving us a better idea of what you mean. Wayne -- Information Center, n.: A room staffed by professional computer people whose job it is to tell you why you cannot have the information you require. _______________________________________________________

Date: Wed, 26 Sep 2007 21:40:00 -0400 From: "Douglas A. Tutty" <dtutty@porchlight.ca> To: debian-user@lists.debian.org Subject: Re: Repost of some earlier described "challenges" Message-ID: <20070927014000.GF8923@titan.hooton> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Sep 27, 2007 at 11:35:04AM +1000, Charlie wrote: > On Thu, 27 Sep 2007, Douglas A. Tutty shared this with us all: > >--} One of the later steps is to upgrade from latest sarge to latest-etch. > >--} Etch is now at r1. ?The tested upgrade path is r0. ?Since so much > >--} changed between r0 and r1, there may be problems; I don't know. > >--} > > I have installed several machines with the first netistall etch CD since the > above change and have found no breakages. Update and then upgrade have worked > a treat. Just watch the prompts. > You saying that you successfully installed Etch r0 and upgraded to Etch-r1. I should hope that works. I was commenting on upgrading straight from Sarge to Etch-r1. Doug.

Date: Thu, 27 Sep 2007 03:50:47 +0200 (CEST) From: "s. keeling" <keeling@nucleus.com> To: debian-user@lists.debian.org Subject: Re: Debian may lose a user Message-ID: <slrnffm33n.3nm.keeling@heretic.nucleus.com> s/Jones/West/g You gotta change your name to Steve. -- Any technology distinguishable from magic is insufficiently advanced. (*) http://blinkynet.net/comp/uip5.html Linux Counter #80292 - - http://www.faqs.org/rfcs/rfc1855.html Please, don't Cc: me.

Confused? Frustrated?X

Date: Thu, 27 Sep 2007 02:19:27 +0000 (UTC) From: Oleg Verych <!gmane?olecom.ENOMSG@flower.upol.cz> To: debian-user@lists.debian.org Subject: More intelligent `pdftotext`? (Re: more of that sed "editing") Message-ID: <slrnffm5n3.d4n.!gmane?olecom.ENOMSG@flower.upol.cz> > Main usage was to read defprogramming.pdf by Ulrich Drepper in my hackish > non-X environment. But such docs, with silly 2 columns text, are coming out > very broken. But some formatting for C in sed, is rather useful. Just happened to look at "const volatile" semantics in C99 standard. It's more interesting, than plain `fmt` :) Is it really so hard to have text-only pdfs in the same formatting as in pdf? pdftotext outputs a table there, constructed by whitespace indentation, all in one paragraph. #v+ olecom@flower:/tmp$ olecom@flower:/tmp$ grep 'const vola' < C_STANDARD-ISOIEC9899-1999.txt | sh sed-craziness EXAMPLE The common type that results when the second and third operands are pointers is determined in two independent stages. The appropriate qualifiers, for example, do not depend on whether the two pointers have compatible types. Given the declarations const void *c_vp; void *vp; const int *c_ip; volatile int *v_ip; int *ip; const char *c_cp; the third column in the following table is the common type that is the result of a conditional expression in which the first two columns are the second and third operands (in either order): c_vp v_ip c_ip vp ip vp c_ip 0 v_ip c_cp c_ip ip const void * volatile int * const volatile int * const void * const int * void * EXAMPLE 1 An object declared extern const volatile int real_time_clock; may be modifiable by hardware, but cannot be assigned to, incremented, or decremented. olecom@flower:/tmp$ #v- For those, who saw (or will see) script. It is optimized for looong paragraphs in one line, with partial output "P", to have working string as small as possible (it is part of justification thing). On the start, line is checked to be long, before actual processing. But i think, it's possible to understand all that after some playing :) _____

Date: Thu, 27 Sep 2007 04:32:24 +0200 (CEST) From: "s. keeling" <keeling@nucleus.com> To: debian-user@lists.debian.org Subject: Re: Repost of some earlier described "challenges" Message-ID: <slrnffm5ho.3nm.keeling@heretic.nucleus.com> Ron Johnson <ron.l.johnson@cox.net>: > > You need a more compliant girlfriend. Lucy Liu-bot comes to mind. > http://en.wikipedia.org/wiki/I_Dated_a_Robot wtf did I just waste fifteen minutes reading? You do not point at wikipedia articles citing toons. Geez. It may have been an enjoyable episode *seen*, but read? Ick. -- Any technology distinguishable from magic is insufficiently advanced. (*) http://blinkynet.net/comp/uip5.html Linux Counter #80292 - - http://www.faqs.org/rfcs/rfc1855.html Please, don't Cc: me.

Date: Thu, 27 Sep 2007 12:47:40 +1000 From: Charlie <ariestao@clearmail.com.au> To: debian-user@lists.debian.org Subject: Re: Repost of some earlier described "challenges" Message-Id: <200709271247.40396.ariestao@clearmail.com.au> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Thu, 27 Sep 2007, Douglas A. Tutty shared this with us all: >--} On Thu, Sep 27, 2007 at 11:35:04AM +1000, Charlie wrote: >--} > On Thu, 27 Sep 2007, Douglas A. Tutty shared this with us all: >--} > >--} One of the later steps is to upgrade from latest sarge to > latest-etch. --} > >--} Etch is now at r1. ?The tested upgrade path is r0. > ?Since so much --} > >--} changed between r0 and r1, there may be problems; > I don't know. --} > >--} >--} > >--} > I have installed several machines with the first netistall etch CD > since the --} > above change and have found no breakages. Update and then > upgrade have worked --} > a treat. Just watch the prompts. >--} > >--} >--} You saying that you successfully installed Etch r0 and upgraded to >--} Etch-r1. I should hope that works. I was commenting on upgrading >--} straight from Sarge to Etch-r1. >--} >--} Doug. Apologies sorry in fact I read it as:- "Since so much changed between r0 and r1, there may be problems; I don't know." Thinking that was a sentence in its own right. Wrong reading obviously. Sorry again. Charlie -- Registered Linux User:- 329524 +++++++++++++++++++++++++++++++++++ No one is injured but by himself. -------- MICHEL DE MONTAIGNE <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Debian - Just the best way to do magic.

Date: Thu, 27 Sep 2007 02:46:39 +0000 (UTC) From: Logan Five <logan5@pobox.com> To: debian-user@lists.debian.org Subject: Re: Network settings don't stick after reboot Message-ID: <loom.20070927T023621-998@post.gmane.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Wayne Topa <linuxone <at> intergate.com> writes: > What correct setting on what, the slug? > The static IP settings are in /etc/network/interfaces. The slug actually is my DHCP server and is running DNSMASQ for that. The IP that it comes up with is within range, but is an old one I used to have assigned to it which makes me curious. I don't see why I would have to reserve an address for it. Shouldn't Debian boot with the settings I specify regardless of what the DHCP server says (in this case itself)? There are no conflicts with other devices on the network. And when I check the leases file during the time that the erroneous settings are applied, there is no listing for the address the slug got. This tells me that it may be reverting to its old static settings and not getting it from DHCP. The interfaces setup is here: # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1 broadcast 192.168.1.255

Date: Wed, 26 Sep 2007 19:27:49 -0500 From: "Mumia W.." <paduille.4061.mumia.w+nospam@earthlink.net> To: Debian User List <debian-user@lists.debian.org> Subject: Re: Network settings don't stick after reboot Message-ID: <46FAF905.2080507@earthlink.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit On 09/26/2007 06:51 PM, Logan Five wrote: > I have the latest version of Debian running on Linksys NSLU. I have it set for > a static IP and I've added a correct default gateway to my config and everything > works ok. However, when I reboot, it goes back to DHCP and the gateway route > doesn't stick. All the correct settings in the correct files but those settings > don't get read on reboot apparently. And if I do a restart of networking, the > correct settings get applied. What gives? Thanks. > > Please post /etc/network/interfaces End of debian-user-digest Digest V2007 Issue #2483 ************************************************** Received on Wed Sep 26 23:15:25 2007

This archive was generated by hypermail 2.1.8 : Sun Oct 07 2007 - 07:55:15 EDT


Contact Us  Legal Notices  Order Services Online 
Pantek Home  Privacy Policy  IT news  Site Map  Pantek Library