confusion regarding kernel-source and ibcs source
Recently, I grabbed the newest ibcs source (ibcs_970513-2) and compiled it sucessfully on my machine (running hamm and kernel 2.0.29). I then proceeded to try the same thing on two other debian machines (running 1.3) using the same source for ibcs. It choked because /usr/src/linux/include/linux/modversions.h was missing. I realized that I did not install the kernel source on these machines and did so and tried again. Still choked due to that missing file. So I decided to look at if modversion.h was included in the kernel source. It isn't. Doing a search using dpkg --search, I found out that file only exists in modutils: /usr/doc/modules/examples/Stacking/modversions.h So my question is, does kernel-package put that file into the source tree? Or, more generally, how did it get into my source tree? Also, should there be some documentation in the ibcs package warning of this? Cheers. -- Colin R. Telmer, Institute of Intergovernmental Relations School of Policy Studies, Queen's University Kingston, Ontario, Canada, K7L-3N6 (613)545-6000x4219 [EMAIL PROTECTED] PGP Fingerprint = 09 E9 DA 66 9C EE 33 DC B8 3B 97 0E 01 BC EC 0B PGP Public Key at http://terrapin.econ.queensu.ca> -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: login installation weirdness?
-BEGIN PGP SIGNED MESSAGE- On Wed, 21 May 1997, Bruce Perens wrote: > There's something like /etc/inittab.real, diff it against inittab. > This is a result of a failure in an installation script that should > have moved inittab.real to inittab . Probably you control-C-ed out of > the root-password-setting process at the end of installation or something > similar. Thanks for the info, although the exact file you list does not exist. However, /etc/init.d/inittab exists which is seems like a spare. If I diff the two, I get: frisch# diff inittab init.d/inittab 48,51c48 < # This line is special for the Debian installation system. < # This file will be replaced when installation completes. < 1:2345:respawn:/bin/login root /dev/tty1 2>&1 < # 1:23:respawn:/sbin/getty 38400 tty1 - --- > 1:2345:respawn:/sbin/getty 38400 tty1 frisch# I was just going to overwrite /etc/inittab with /etc/init.d/inittab, but I thought I would be overly cautious and ask it this is the correct thing to do. Cheers, Colin. - -- Colin R. Telmer, Institute of Intergovernmental Relations School of Policy Studies, Queen's University Kingston, Ontario, Canada, K7L-3N6 (613)545-6000x4219 [EMAIL PROTECTED] PGP Fingerprint = 09 E9 DA 66 9C EE 33 DC B8 3B 97 0E 01 BC EC 0B PGP Public Key at http://terrapin.econ.queensu.ca> -BEGIN PGP SIGNATURE- Version: 2.6.3ia Charset: noconv iQCVAwUBM4MctRhhzOJJktw1AQHhnAQAt7ds8OWWLSPxg5S6256VcdHh9w3vEC6U cOhiQGjo3TJ9LxAqIIvIQ5pTfO/jU5VjSNymloeuTms5I0KzEdZ9WKVa0Ei49nfJ zpGNlq/hEs3W1kV2UWwk+bf1byoU3TBv8eSIqQrxHIJWsVW7Ah3bGCE0tKeWqaTt eWNDjqahbTs= =vwIQ -END PGP SIGNATURE- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
trn and inews
-BEGIN PGP SIGNED MESSAGE- When installing trn, the dependency screen pops up and suggests (ie. puts an asterisk beside) both cnews and inews. Shouldn't this only select one of the two? I don't know what package to report a bug against, so I thought I would ask here first. Cheers, Colin. - -- Colin R. Telmer, Institute of Intergovernmental Relations School of Policy Studies, Queen's University Kingston, Ontario, Canada, K7L-3N6 (613)545-6000x4219 [EMAIL PROTECTED] PGP Fingerprint = 09 E9 DA 66 9C EE 33 DC B8 3B 97 0E 01 BC EC 0B PGP Public Key at http://terrapin.econ.queensu.ca> -BEGIN PGP SIGNATURE- Version: 2.6.3ia Charset: noconv iQCVAwUBM4XhgRhhzOJJktw1AQEnSgP/cDTrr757i89oaCyI7JNvugRv/GAM+Big F2ge/g0wqm87Q+Li99rZHdIPpP1cFb4+zXy4Q2oYMvxiUsgRJ2GIPEP8d1UaXPLT qlYuA9dzngwH/StXlao4NYR+OnIsEBqwSXeaOM2Onjzs13RHlegCJetBatC3MZgu BJ3qunY12cc= =xwXW -END PGP SIGNATURE- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Need some help determining which package owns a perl bug
A perl script called sync-plan included in pilot-link calls both MD5.pm (from the libmd5-perl package) and and PDA/Pilot.pm (from the pilot-link-perl package). Both of these live in /usr/lib/perl. However, when sync-plan is executed, the following error message appears: Can't locate PDA/Pilot.pm in @INC (@INC contains: /usr/lib/perl5/i386-linux/5.005 /usr/lib/perl5/5.005 /usr/local/lib/site_perl/i386-linux /usr/local/lib/site_perl .) at /usr/bin/sync-plan line 6. BEGIN failed--compilation aborted at /usr/bin/sync-plan line 6. the top few lines of sync-plan are: #!/usr/bin/perl use IO::Socket; use IO::Select; use Time::Local; use PDA::Pilot; use MD5; I've switched the two last lines and the same sort of error message appears for MD5.pm. It seems to me that there are two possible solutions - either perl itself is not looking all the places it should (i.e. @INC should include /usr/lib/perl) or libmd5-perl and pilot-link-perl installed their respective perl files in the wrong spot (i.e. they should have installed them somewhere in @INC). Please let me know which and I will file what ever bug reports are necessary. Cheers. -- Colin Telmer, Ottawa, Ontario, Canada <mailto:[EMAIL PROTECTED]> <http://www.telmer.com>
IGNORE Re: Need some help determining which package owns a perl bug
I quickly realized that this is an artifact of per5.005 - I'll downgrade. Cheers. On Mon, 12 Oct 1998, Colin Telmer wrote: > A perl script called sync-plan included in pilot-link calls both MD5.pm > (from the libmd5-perl package) and and PDA/Pilot.pm (from the > pilot-link-perl package). Both of these live in /usr/lib/perl. However, > when sync-plan is executed, the following error message appears: > > Can't locate PDA/Pilot.pm in @INC (@INC contains: > /usr/lib/perl5/i386-linux/5.005 /usr/lib/perl5/5.005 > /usr/local/lib/site_perl/i386-linux /usr/local/lib/site_perl .) at > /usr/bin/sync-plan line 6. > BEGIN failed--compilation aborted at /usr/bin/sync-plan line 6. > > the top few lines of sync-plan are: > > #!/usr/bin/perl > > use IO::Socket; > use IO::Select; > use Time::Local; > use PDA::Pilot; > use MD5; > > I've switched the two last lines and the same sort of error message > appears for MD5.pm. > > It seems to me that there are two possible solutions - either perl itself > is not looking all the places it should (i.e. @INC should include > /usr/lib/perl) or libmd5-perl and pilot-link-perl installed their > respective perl files in the wrong spot (i.e. they should have installed > them somewhere in @INC). Please let me know which and I will file what > ever bug reports are necessary. Cheers. > > -- > Colin Telmer, Ottawa, Ontario, Canada > <mailto:[EMAIL PROTECTED]> > <http://www.telmer.com> > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > -- Colin Telmer, Ottawa, Ontario, Canada <mailto:[EMAIL PROTECTED]> <http://www.telmer.com>
Alarming Pine/remote netscape problem
(Perhaps I shouldn't post this to -devel, but I find this problem quite alarming and thought others should be aware of it) I have recently discovered that if I send mail from my work computer (SunStation) using Netscape 4.05 to my home computer (Debian slink) that if I reply to the message, the original message is sent back _instead_ of my reply. This _only_ happens if "Send HTML as default" is turned on in Netscape and I select "Send both Plain Text and HTML" when prompted sending the original note in Netscape. If I just send a plain text note, this doesn't happen. I always send plain text, but I have received and replied to notes from others that don't and now suddenly am quite concerned if the original sender received my reply. Anyway, it seems that somehow either pine and/or smail sees the html as an attachment and then sends that back instead. Has anyone else experienced this? Is there anything I can do about it? One more thing: the only difference I can see in the headers of each note is the "Content-type" (below). From the first note, all I received back at work is the original note. Alternatively, perhaps some mime program I have installed is causing this - any ideas? Any help is very much appreciated. Cheers, Colin. header from message with both text and html >From [EMAIL PROTECTED] Tue Oct 13 16:03:43 1998 Return-Path: <[EMAIL PROTECTED]> Received: from bank-banque-canada.ca (really [140.80.199.51]) by telmer.com via in.smtpd with esmtp id <[EMAIL PROTECTED]> (Debian Smail3.2.0.101) for <[EMAIL PROTECTED]>; Tue, 13 Oct 1998 15:56:58 -0400 (EDT) Received: by mailgate.bank-banque-canada.ca id <13448>; Tue, 13 Oct 1998 16:07:54 -0400 Sender: [EMAIL PROTECTED] Message-Id: <[EMAIL PROTECTED]> Date: Tue, 13 Oct 1998 15:56:25 -0400 From: "Colin Telmer (DoF)" <[EMAIL PROTECTED]> X-Mailer: Mozilla 4.05 [en] (X11; U; SunOS 5.6 sun4u) MIME-Version: 1.0 To: Colin Telmer <[EMAIL PROTECTED]> Subject: [Fwd: test with html] Content-Type: multipart/mixed; boundary="221473FEDC0D4053D64BE2DD" -- Colin Telmer Debt Management Section, Department of Finance Phone: (613)992-9107 Visiting at the Risk Management Unit, Financial Markets Department, Bank of Canada Phone: (613)782-8662 [Part 1.2, Text/HTML 10 lines] [Unable to print this part] [ Part 2: "Included Message" ] Date: Tue, 13 Oct 1998 15:54:03 -0400 From: Colin Telmer <[EMAIL PROTECTED]> To: "Colin Telmer (DoF)" <[EMAIL PROTECTED]> Subject: Re: test with html reply to test On Tue, 13 Oct 1998, Colin Telmer (DoF) wrote: > test with html > > -- > Colin Telmer > Debt Management Section, Department of Finance > Phone: (613)992-9107 > Visiting at the Risk Management Unit, > Financial Markets Department, Bank of Canada > Phone: (613)782-8662 > > > -- Colin Telmer, Ottawa, Ontario, Canada <mailto:[EMAIL PROTECTED]> <http://www.telmer.com> [Part 2.2, "" Text/HTML 10 lines] [Unable to print this part] --- Header with just plain text >From [EMAIL PROTECTED] Tue Oct 13 16:03:17 1998 Return-Path: <[EMAIL PROTECTED]> Received: from bank-banque-canada.ca (really [140.80.199.51]) by telmer.com via in.smtpd with esmtp id <[EMAIL PROTECTED]> (Debian Smail3.2.0.101) for <[EMAIL PROTECTED]>; Tue, 13 Oct 1998 15:57:18 -0400 (EDT) Received: by mailgate.bank-banque-canada.ca id <13451>; Tue, 13 Oct 1998 16:08:11 -0400 Sender: [EMAIL PROTECTED] Message-Id: <[EMAIL PROTECTED]> Date: Tue, 13 Oct 1998 15:56:48 -0400 From: "Colin Telmer (DoF)" <[EMAIL PROTECTED]> X-Mailer: Mozilla 4.05 [en] (X11; U; SunOS 5.6 sun4u) MIME-Version: 1.0 To: Colin Telmer <[EMAIL PROTECTED]> Subject: second test Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit second test -- Colin Telmer Debt Management Section, Department of Finance Phone: (613)992-9107 Visiting at the Risk Management Unit, Financial Markets Department, Bank of Canada Phone: (613)782-8662 -- Colin Telmer, Ottawa, Ontario, Canada <mailto:[EMAIL PROTECTED]> <http://www.telmer.com>