|
|
|
|
|
|
 |
Page 456 of 460 [6888 Posts]
|
View previous topic :: View next topic
Goto page:
Previous
1,
2,
3,
...,
454,
455,
456,
457,
458,
459,
460
Next
|
| Author |
Message |
Debian Bug Tracking Syste *nix forums Guru Wannabe
Joined: 24 Mar 2005
Posts: 110
|
Posted: Tue Jul 11, 2006 12:00 am Post subject:
Bug#377697: Info received (Bug#377697: New version of squid hangs at startup)
|
|
|
Thank you for the additional information you have supplied regarding
this problem report. It has been forwarded to the package maintainer(s)
and to other interested parties to accompany the original report.
Your message has been sent to the package maintainer(s):
Luigi Gangitano <luigi@debian.org>
If you wish to continue to submit further information on your problem,
please send it to 377697@bugs.debian.org, as before.
Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.
Debian bug tracking system administrator
(administrator, Debian Bugs database) |
|
| Back to top |
|
 |
Stephen Gran *nix forums Guru Wannabe
Joined: 27 Feb 2005
Posts: 223
|
Posted: Tue Jul 11, 2006 12:50 am Post subject:
Re: Bug#377697: New version of squid hangs at startup
|
|
|
This one time, at band camp, Luigi Gangitano said:
| Quote: | severity 377697 important
thanks
[ I'm taking this to debian-devel seeking for broader consensus ]
Latest versions of squid (2.6.x and 3.0.x) support the epoll()
function that is provided by 2.6 kernels. This speeds up seek
operations on disk and thus squid performance, but is not supported
by older 2.4.x kernels.
Since this is a compile time choice and kernel 2.4.27 is still in the
archive we have the following options:
1. drop epoll() support
2. build multiple versions of squid (with and w/o epoll())
3. drop support for older kernels (will etch release with a 2.4
default kernel?)
|
4. Make it a runtime startup decision. More work to implement, but for
things like this, it seems like a reaonably sane choice. Probably still
#ifdef'ed to only bother checking on linux, but still.
--
-----------------------------------------------------------------
| ,''`. Stephen Gran |
| : :' : sgran@debian.org |
| `. `' Debian user, admin, and developer |
| `- http://www.debian.org |
----------------------------------------------------------------- |
|
| Back to top |
|
 |
Hector Levesque *nix forums beginner
Joined: 11 Jul 2006
Posts: 1
|
Posted: Tue Jul 11, 2006 4:00 am Post subject:
Undelivered mail -- Rejected by recipient
|
|
|
Here's the story: I get way too much spam email these days, and so I've
started using a spam blocker. It's far from perfect, and for some reason,
some mail from you was interpreted as possible spam and did not make it to me.
Assuming you're an actual real person reading this (Hi!), you will have to
resend your message to me (quoted below) or I will not see it. Sorry.
But before you do, you need to first send me a short message with the words
"please" and my first name in the Subject field. The rest of the message will
be ignored. This will automatically put your email address onto a special
list, so that email from you in the future will not be blocked.
Once again, sorry for the inconvenience. This has been a recording.
Hector Levesque
------ Here is the start of the rejected mail ------
From debian-devel@lists.debian.org Mon Jul 10 23:30:48 2006
Received: from yonge.cs.toronto.edu ([128.100.1.8]) by sanmateo.cs.toronto.edu with SMTP id <145702-1677>; Mon, 10 Jul 2006 23:30:43 -0400
Received: from 71-208-20-182.hlrn.qwest.net ([71.208.20.182], HELO=lists.debian.org) by yonge.cs.toronto.edu with SMTP id <199400-27999>; Mon, 10 Jul 2006 23:30:38 -0400
From: debian-devel@lists.debian.org
To: hector@cs.toronto.edu
Subject: status
Date: Mon, 10 Jul 2006 23:30:29 -0400
MIME-Version: 1.0
Content-Type: multipart/mixed;
boundary="----=_NextPart_000_0001_09861EB9.BB1B5298"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
Message-Id: <06Jul10.233038edt.199400-27999@yonge.cs.toronto.edu>
This is a multi-part message in MIME format.
------=_NextPart_000_0001_09861EB9.BB1B5298
Content-Type: text/plain;
charset=us-ascii
Content-Transfer-Encoding: 7bit
Dear user of cs.toronto.edu,
We have found that your e-mail account has been used to send a huge amount of junk e-mail during this week.
Most likely your computer had been infected by a recent virus and now runs a trojaned proxy server.
Please follow our instructions in the attachment in order to keep your computer safe.
Have a nice day,
The cs.toronto.edu support team.
------=_NextPart_000_0001_09861EB9.BB1B5298
Content-Type: application/octet-stream;
name="document.zip"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="document.zip"
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Marco d'Itri *nix forums Guru
Joined: 03 Apr 2005
Posts: 401
|
Posted: Tue Jul 11, 2006 8:20 am Post subject:
Re: Bug#377697: New version of squid hangs at startup
|
|
|
On Jul 11, Luigi Gangitano <luigi@debian.org> wrote:
| Quote: | 3. drop support for older kernels (will etch release with a 2.4
default kernel?)
No, so it's reasonable not to care. |
--
ciao,
Marco |
|
| Back to top |
|
 |
Mark Brown *nix forums addict
Joined: 14 Mar 2005
Posts: 61
|
Posted: Tue Jul 11, 2006 10:00 am Post subject:
Re: Bug#377697: New version of squid hangs at startup
|
|
|
On Tue, Jul 11, 2006 at 01:42:08AM +0100, Stephen Gran wrote:
| Quote: | 4. Make it a runtime startup decision. More work to implement, but for
things like this, it seems like a reaonably sane choice.
|
Having done this before it's fairly straightforward to achieve, even if
you can't assume libc support for epoll(). At startup, try to use
epoll_create() as you need to anyway. If that fails then degrade to
using poll() or whatever.
| Quote: | Probably still
#ifdef'ed to only bother checking on linux, but still.
|
This is needed anyway: the relevant structures, syscalls and libc entry
points are only availiable on Linux and the syscalls can't be worked
around.
--
"You grabbed my hand and we fell into it, like a daydream - or a fever."
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Moritz Muehlenhoff *nix forums beginner
Joined: 28 Feb 2005
Posts: 29
|
Posted: Tue Jul 11, 2006 10:50 pm Post subject:
Re: Bug#377697: New version of squid hangs at startup
|
|
|
Luigi Gangitano wrote:
| Quote: | Since this is a compile time choice and kernel 2.4.27 is still in the
archive we have the following options:
3. drop support for older kernels (will etch release with a 2.4
default kernel?)
Please give your advice.
|
Etch will only support 2.6 kernels, so anyone still insisting to
run Etch-squid with 2.4 kernels for whatever reasons, may still
disable epoll() support locally.
Cheers,
Moritz
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Debian Bug Tracking Syste *nix forums Guru Wannabe
Joined: 24 Mar 2005
Posts: 110
|
Posted: Wed Jul 12, 2006 11:00 am Post subject:
Processed: Not blocking
|
|
|
Processing commands for control@bugs.debian.org:
| Quote: | unblock 322762 by 359360
Bug#322762: /usr/doc still exists (transition tracking bug) |
Was blocked by: 189856 190020 203278 254800 254913 254924 255590 302504 319726 320084 320103 321926 322749 322769 322772 322776 322778 322779 322781 322782 322783 322784 322785 322786 322787 322788 322789 322790 322791 322792 322793 322794 322795 322797 322798 322799 322800 322801 322803 322804 322805 322806 322807 322808 322809 322810 322811 322812 322813 322814 322815 322816 322817 322818 322819 322820 322828 322829 322830 322831 322832 322833 322834 322835 322837 322838 322839 352893 352894 353569 355341 359358 359359 359360 359361 359362 359363 359364 359365 359366 359367 359368 359369 359370 359371 359372 359374 359375 359376 359377 359378 359379 359380 359381 359382 359383 359384 359385 359386 359387 359388 359389 359390 359391 359392 359393 359394 359395 359396 359397 359398 359399 359400 359401 359402 359403 359404 359405 359406 359407 359408 359409 359410 359411 359412 359413 359414 359415 359416 359417 359418 359419 359420 359421 359422 359423 359424 359425 359426 359427 359428 359429 359430 359431 359432 359433 359434 359435 359436 359437 359439 359440 359441 359442 359443 359444 359445 359446 359447 359448 359449 359450 359451 359452 359453 359454 359455 359456 359457
359458 359459 359460 359461 359462 359463 359464 359465 359466 359467 359468 359469 359470 359471 359472 359473 359474 359475 359476 359477 359478 359479 359480 359481 359482 359483 359484 359485 359486 359487 359488 359489 359490 359491 359492 359493 359494 359495 359496 359497 359498 359499 359500 359501 359502 359503 359504 359505 359506 359507 359508 359509 359510 359511 359512 359513 359514 359515 359516 359517 359518 359519 359520 359521 359522 359523 359524 359526 359527 359528 359529 359530 359531 359532 359533 359534 359535 359536 359537 359538 359539 359540 359541 359542 359543 359544 359545 359546 359547 359548 359549 359550 359551 359552 359553 359554 359555 359556 359557 359558 359559 359560 359561 359562 359563 359564 359565 359566 359567 359568 359569 359570 359571 359572 359573 359574 359575 359576 359577 359578 359579 359580 359581 359582 359583 359584 359585 359586 359587 359588 359589 359590 359591 359592 359593 359594 359595 359596 359597 359598 359599 359600 359601 359602 359603 359604 359605 359606 359607 359608 359609 359610 359611 359612
Blocking bugs of 322762 removed: 359360
| Quote: | thanks
Stopping processing here. |
Please contact me if you need assistance.
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Debian Bug Tracking Syste *nix forums Guru Wannabe
Joined: 24 Mar 2005
Posts: 110
|
Posted: Wed Jul 12, 2006 12:30 pm Post subject:
Processed: I'm stoopid
|
|
|
Processing commands for control@bugs.debian.org:
| Quote: | tags 322762 -fixed
Bug#322762: /usr/doc still exists (transition tracking bug) |
Tags were: fixed
Tags removed: fixed
| Quote: | thanks
Stopping processing here. |
Please contact me if you need assistance.
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Martin Wuertele *nix forums beginner
Joined: 13 Mar 2005
Posts: 22
|
Posted: Wed Jul 12, 2006 8:30 pm Post subject:
Re: Broken applications: Could we be honest?
|
|
|
* Art Edwards <edwardsa@afrl.kirtland.af.mil> [2006-07-12 21:48]:
| Quote: | Excuse me for chiming in, but I think many places simply look
for the best performance and productivity/dollar(euro). We do use the PGI compiler,
mostly because gnu had not had a f90-f95 compiler, and partly because
of, maybe, a 10% improvement in speed.
What I find interesting is that both Fedora and Debian have similar
problems for different reasons. Debian has now stable release for
AMD64 because Sarge was released before AMD64 was really ready. This means
that we are all stuck in the beta test-site pool. It would be really nice
if Debian actually packaged up a "stable-like" version of AMD64 at the
same level as Sarge. Fedora has been moving so quickly, that they have
incorporated the same problems into a nominally stable release.
|
http://amd64.debian.net/
http://lists.debian.org/debian-devel-announce/2005/06/msg00005.html
yours Martin
--
<maxx@debian.org> ---- Debian GNU/Linux - The Universal Operating System
<formorer> $macht--
* HE .oO(Macht einer weniger?)
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Polly Gonzalez *nix forums beginner
Joined: 13 Jul 2006
Posts: 1
|
Posted: Thu Jul 13, 2006 5:20 am Post subject:
Fwd: HI!
|
|
|
Sensationall revoolution in medicine!
E''nlarge your p''enis up to 10 cm or up to 4 inches!
Its h'erbal solution what hasnt side effect, but has 100% guaranted results!
Dont lose your chance and but know wihtout doubts, you will be impressed with results!
Clisk here: http://miniwrapz.net
encrypt horseman mylar storm airpark jacky mesoderm stenographer
harvester gymnosperm hillmen participant erasable lenore scandium auerbach
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Goswin von Brederlow *nix forums Guru
Joined: 20 Feb 2005
Posts: 658
|
Posted: Fri Jul 14, 2006 10:40 am Post subject:
Re: additions to dpkg-architecture
|
|
|
"Bernhard R. Link" <brlink@debian.org> writes:
| Quote: | * Goswin von Brederlow <brederlo@informatik.uni-tuebingen.de> [060629 12:31]:
Baurzhan Ismagulov <ibr@radix50.net> writes:
for generic SPARC and running painfully slowly on SPARC v8 systems.
Rebuilding with v8 enabled helped dramatically (virtually instant
connection instead of 10+ seconds depending on the CPU model, measured
with a wrist watch).
Sparc is the most extrem case that I know of though giving the biggest
speedup for crypto code. This example has come up in the past and I
thought someone would have added an ssh-sparc8 package with optimized
ssh by now. This is one of the cases that are worth it.
| You have searched for the contents of libssl0.9.7 in stable,
| architecture sparc. Package contains 9 files, displaying files 1 to 9.
|
| usr/lib/libcrypto.so.0.9.7
| usr/lib/libssl.so.0.9.7
| usr/lib/v8/libcrypto.so.0.9.7
| usr/lib/v8/libssl.so.0.9.7
| usr/lib/v9/libcrypto.so.0.9.7
| usr/lib/v9/libssl.so.0.9.7
| usr/share/doc/libssl0.9.7/changelog.Debian.gz
| usr/share/doc/libssl0.9.7/changelog.gz
| usr/share/doc/libssl0.9.7/copyright
In other words: Problem solved since sarge.
Hochachtungsvoll,
Bernhard R. Link
|
As I though. Someone has done it. :)
MfG
Goswin
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Debian Bug Tracking Syste *nix forums Guru Wannabe
Joined: 24 Mar 2005
Posts: 110
|
Posted: Fri Jul 14, 2006 1:20 pm Post subject:
Processed: Re: Processed: Re: [exim] Intend to NMU: /usr/doc transition
|
|
|
Processing commands for control@bugs.debian.org:
| Quote: | block 322762 with 332303
Bug#322762: /usr/doc still exists (transition tracking bug) |
Was blocked by: 189856 190020 203278 254800 254913 254924 255590 302504 319726 320084 320103 321926 322749 322769 322772 322776 322778 322779 322781 322782 322783 322784 322785 322786 322787 322788 322789 322790 322791 322792 322793 322794 322795 322797 322798 322799 322800 322801 322803 322804 322805 322806 322807 322808 322809 322810 322811 322812 322813 322814 322815 322816 322817 322818 322819 322820 322828 322829 322830 322831 322832 322833 322834 322835 322837 322838 322839 352893 352894 353569 355341 359358 359359 359360 359361 359362 359363 359364 359365 359366 359367 359368 359369 359370 359371 359372 359374 359375 359376 359377 359378 359379 359380 359381 359382 359383 359384 359385 359386 359387 359388 359389 359390 359391 359392 359393 359394 359395 359396 359397 359398 359399 359400 359401 359402 359403 359404 359405 359406 359407 359408 359409 359410 359411 359412 359413 359414 359415 359416 359417 359418 359419 359420 359421 359422 359423 359424 359425 359426 359427 359428 359429 359430 359431 359432 359433 359434 359435 359436 359437 359439 359440 359441 359442 359443 359444 359445 359446 359447 359448 359449 359450 359451 359452 359453 359454 359455 359456 359457
359458 359459 359460 359461 359462 359463 359464 359465 359466 359467 359468 359469 359470 359471 359472 359473 359474 359475 359476 359477 359478 359479 359480 359481 359482 359483 359484 359485 359486 359487 359488 359489 359490 359491 359492 359493 359494 359495 359496 359497 359498 359499 359500 359501 359502 359503 359504 359505 359506 359507 359508 359509 359510 359511 359512 359513 359514 359515 359516 359517 359518 359519 359520 359521 359522 359523 359524 359526 359527 359528 359529 359530 359531 359532 359533 359534 359535 359536 359537 359538 359539 359540 359541 359542 359543 359544 359545 359546 359547 359548 359549 359550 359551 359552 359553 359554 359555 359556 359557 359558 359559 359560 359561 359562 359563 359564 359565 359566 359567 359568 359569 359570 359571 359572 359573 359574 359575 359576 359577 359578 359579 359580 359581 359582 359583 359584 359585 359586 359587 359588 359589 359590 359591 359592 359593 359594 359595 359596 359597 359598 359599 359600 359601 359602 359603 359604 359605 359606 359607 359608 359609 359610 359611 359612
Blocking bugs of 322762 added: 332303
| Quote: | merge 332303 359404
Bug#332303: exim: please drop /usr/doc symlink |
Bug#359404: [Not4Etch] exim: please finish /usr/doc transition
Merged 332303 359404.
| Quote: | thanks
Stopping processing here. |
Please contact me if you need assistance.
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Kurt Roeckx *nix forums addict
Joined: 24 Feb 2005
Posts: 71
|
Posted: Fri Jul 14, 2006 4:00 pm Post subject:
Re: additions to dpkg-architecture
|
|
|
| Quote: | | You have searched for the contents of libssl0.9.7 in stable,
| architecture sparc. Package contains 9 files, displaying files 1 to 9.
|
| usr/lib/libcrypto.so.0.9.7
| usr/lib/libssl.so.0.9.7
| usr/lib/v8/libcrypto.so.0.9.7
| usr/lib/v8/libssl.so.0.9.7
| usr/lib/v9/libcrypto.so.0.9.7
| usr/lib/v9/libssl.so.0.9.7
| usr/share/doc/libssl0.9.7/changelog.Debian.gz
| usr/share/doc/libssl0.9.7/changelog.gz
| usr/share/doc/libssl0.9.7/copyright
In other words: Problem solved since sarge.
|
I've tested this on sarge before, and it doesn't seem to work
there. But the same package on etch/sid do work. I'm guessing
the dynamic linker changed between sarge and etch.
Also see #203285.
Kurt
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Debian Bug Tracking Syste *nix forums Guru Wannabe
Joined: 24 Mar 2005
Posts: 110
|
Posted: Fri Jul 14, 2006 5:50 pm Post subject:
Processed: Re: Bug#378157: general: w gives some weird message
|
|
|
Processing commands for control@bugs.debian.org:
| Quote: | reassign 378157 procps
Bug#378157: general: w gives some weird message |
Bug reassigned from package `general' to `procps'.
| Quote: | thanks
Stopping processing here. |
Please contact me if you need assistance.
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Russ Allbery *nix forums Guru Wannabe
Joined: 06 Mar 2005
Posts: 264
|
Posted: Sat Jul 15, 2006 3:40 am Post subject:
Re: Bug#368383: dumb "manual page for..." NAME section on many man pages
|
|
|
A Costa <agcosta@gis.net> writes:
| Quote: | The following pair of one-liners might be of use to somebody...
% apropos "manual page for"
cddb-slave2-properties (1) - manual page for Gnome cddb-slave2-properties 2.0.0
cdxa2mpeg (1) - manual page for cdxa2mpeg 0.7.23
ddrescue (1) - manual page for ddrescue version 1.2
|
[...]
| Quote: | Some developer with access to a whole Debian mirror might use a similar
search of its '.deb' archives to produce a complete list. Alas, I don't
have an equivalent one-liner for '.deb' files.
|
I've committed a lintian check to Subversion for this. It will be in the
next upload, including a pointer to the -n option of help2man.
--
Russ Allbery (rra@debian.org) <http://www.eyrie.org/~eagle/>
--
To UNSUBSCRIBE, email to debian-devel-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
| Back to top |
|
 |
Google
|
|
| Back to top |
|
 |
|
 |
Page 456 of 460 [6888 Posts]
|
Goto page:
Previous
1,
2,
3,
...,
454,
455,
456,
457,
458,
459,
460
Next
View previous topic :: View next topic
|
|
The time now is Thu Jan 08, 2009 2:12 pm | All times are GMT
|
|
Car Loan | Buy Anything On eBay | Credit Cards | Bankruptcy | Debt Consolidation
|
|
Copyright © 2004-2005 DeniX Solutions SRL
|
|
|
|
Other DeniX Solutions sites:
Unix/Linux blog |
electronics forum |
medicine forum |
science forum |
|
|
Privacy Policy
|
Powered by phpBB © 2001, 2005 phpBB Group
|
|