What's wrong here? Can't reinstall graphics/lcms2

2013-08-20 Thread Walter Hurry
$ sudo portupgrade -f graphics/lcms2
[Reading data from pkg(8) ... - 544 packages found - done]
---  Reinstalling 'lcms2-2.5' (graphics/lcms2)
---  Building '/usr/ports/graphics/lcms2'
===  Cleaning for lcms2-2.5
===  lcms2-2.5 has known vulnerabilities:
lcms2-2.5 is vulnerable:
lcms2 -- Null Pointer Dereference Denial of Service Vulnerability

WWW: http://portaudit.FreeBSD.org/9a0a892e-05d8-11e3-
ba09-000c29784fd1.html
= Please update your ports tree and try again.
*** [check-vulnerable] Error code 1

Stop in /usr/ports/graphics/lcms2.
*** [build] Error code 1

Stop in /usr/ports/graphics/lcms2.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/
portupgrade20130820-93880-13u5qwy env UPGRADE_TOOL=portupgrade 
UPGRADE_PORT=lcms2-2.5 UPGRADE_PORT_VER=2.5 make
** Fix the problem and try again.
** Listing the failed packages (-:ignored / *:skipped / !:failed)
! graphics/lcms2 (lcms2-2.5)(unknown build error)
$

I have of course updated the ports tree but it made no difference.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong here? Can't reinstall graphics/lcms2

2013-08-20 Thread Kurt Buff
On Tue, Aug 20, 2013 at 10:23 AM, Walter Hurry walterhu...@gmail.com wrote:
 $ sudo portupgrade -f graphics/lcms2
snip
 = Please update your ports tree and try again.
 *** [check-vulnerable] Error code 1

 I have of course updated the ports tree but it made no difference.

Try updating ports again. I was successful in updating lcms2 this
morning on a couple of boxes, after failures yesterday.

Kurt
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong here? Can't reinstall graphics/lcms2

2013-08-20 Thread Ryan Frederick
There was an entry in vuxml for lcms2  2.5 earlier this week that 
initially included 2.5 accidentally. It's been corrected now, so an 
update of your ports vulnerability database should allow you to 
install/update lcms2.


Ryan


On 08/20/2013 01:15 PM, Kurt Buff wrote:

On Tue, Aug 20, 2013 at 10:23 AM, Walter Hurry walterhu...@gmail.com wrote:

$ sudo portupgrade -f graphics/lcms2

snip

= Please update your ports tree and try again.
*** [check-vulnerable] Error code 1

I have of course updated the ports tree but it made no difference.


Try updating ports again. I was successful in updating lcms2 this
morning on a couple of boxes, after failures yesterday.

Kurt
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


what's wrong with the openbsd-netcat?

2012-12-31 Thread lei yang
Hi experts

On my OS, I run kvm with below comand to do the migrate: it meet below error
1)
#qemu-system-x86_64 --enable-kvm -smp 2 -m 512 -net nic,model=e1000
-net tap,script=/etc/qemu-ifup -hda /boot/guest_img.raw  -kernel
/boot/bzImage -append root=/dev/hda rw console=ttyS0,115200 ip=dhcp
selinux=0 -nographic -incoming exec:nc -l 5200
it print:
nc: Protocol not available
load of migration failed

2)Then I copy the nc binary from redhat, then it works well

can you please help me about this issue?

Lei
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: what's wrong with the openbsd-netcat?

2012-12-31 Thread lei yang
Forget to say, My netcat from
http://code.google.com/p/openbsd-netcat/source/checkout

On 12/31/12, lei yang yanglei.f...@gmail.com wrote:
 Hi experts

 On my OS, I run kvm with below comand to do the migrate: it meet below
 error
 1)
 #qemu-system-x86_64 --enable-kvm -smp 2 -m 512 -net nic,model=e1000
 -net tap,script=/etc/qemu-ifup -hda /boot/guest_img.raw  -kernel
 /boot/bzImage -append root=/dev/hda rw console=ttyS0,115200 ip=dhcp
 selinux=0 -nographic -incoming exec:nc -l 5200
 it print:
 nc: Protocol not available
 load of migration failed

 2)Then I copy the nc binary from redhat, then it works well

 can you please help me about this issue?

 Lei

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


What's wrong with this code?

2011-12-12 Thread John Levine
This tiny routine is in a .so loadable module I use.  (It's part of the 
mailfront
SMTP daemon.)

static const char* date_string(void)
{
  static char datebuf[64];
  time_t now = time(0);
  struct tm* tm = gmtime(now);
  strftime(datebuf, sizeof datebuf - 1, %d %b %Y %H:%M:%S -, tm);
  return datebuf;
}

I was getting bogus dates.  Running it under GDB, time() is returning
-1, and setting errno to 22, which is EINVAL.  Changing the call to
time to time(NULL) or time(now) made no difference.

I changed it to a call to gettimeofday(), which works fine.  But what
could the problem have been?  When I splice this routine into a tiny
test program that calls it and prints out the result, it works fine.

The obvious problem, since it's in a .so, is that it's linking to something 
other than
the system library time() function, but I did an nm on the .so, and it said 
this,
which sure looks like the system time() function to me:

 U time@@FBSD_1.0

Setting a breakpoint in gdb gets a complaint about trying to set a breakpoint 
in /lib/libc.so.7.

Any ideas what the problem was?

R's,
John




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this code?

2011-12-12 Thread Dan Nelson
In the last episode (Dec 13), John Levine said:
 This tiny routine is in a .so loadable module I use.  (It's part of the
 mailfront SMTP daemon.)
 
 static const char* date_string(void)
 {
   static char datebuf[64];
   time_t now = time(0);
   struct tm* tm = gmtime(now);
   strftime(datebuf, sizeof datebuf - 1, %d %b %Y %H:%M:%S -, tm);
   return datebuf;
 }
 
 I was getting bogus dates.  Running it under GDB, time() is returning 1,
 -and setting errno to 22, which is EINVAL.  Changing the call to
 time to time(NULL) or time(now) made no difference.

The manpage says that time() can fail for any of the reasons described in
gettimeofday(2), but time() actually calls clock_gettime(CLOCK_SECOND),
which technically could return EINVAL if the first argument isn't a valid
clock_id.  CLOCK_SECOND is valid, though, so in practice it should never
fail with EINVAL.  You could try adding a printf to
sys/kern/kern_time.c:kern_clock_gettime() to see if it's really failing
there. 
 
 I changed it to a call to gettimeofday(), which works fine.  But what
 could the problem have been?  When I splice this routine into a tiny test
 program that calls it and prints out the result, it works fine.
 
 The obvious problem, since it's in a .so, is that it's linking to
 something other than the system library time() function, but I did an nm
 on the .so, and it said this, which sure looks like the system time()
 function to me:
 
  U time@@FBSD_1.0
 
 Setting a breakpoint in gdb gets a complaint about trying to set a
 breakpoint in /lib/libc.so.7.

Setting a breakpoint in a llibc should work fine, since time() is a regular
function and not a syscall stub.  Have you built a libc with debugging
symbols? ( easy way: add DEBUG_FLAGS=-g to the top of
/usr/src/lib/libc/Makefile, and run make obj  make clean  make depend
 make  make install in that directory )
 
 Any ideas what the problem was?

-- 
Dan Nelson
dnel...@allantgroup.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this code?

2011-12-12 Thread Robert Bonomi

From: John Levine jo...@iecc.com wrote:

 This tiny routine is in a .so loadable module I use.  (It's part of the 
 mailfront SMTP daemon.)

 static const char* date_string(void)
 {
   static char datebuf[64];
   time_t now = time(0);
   struct tm* tm = gmtime(now);
   strftime(datebuf, sizeof datebuf - 1, %d %b %Y %H:%M:%S -, tm);
   return datebuf;
 }

 I was getting bogus dates.  Running it under GDB, time() is returning
 -1, and setting errno to 22, which is EINVAL.  Changing the call to
 time to time(NULL) or time(now) made no difference.

 I changed it to a call to gettimeofday(), which works fine.  But what
 could the problem have been?  When I splice this routine into a tiny
 test program that calls it and prints out the result, it works fine.

how about a tiny .so that includes -only- that routine, and a 3-line or so
main() that links against -that- .so?

 The obvious problem, since it's in a .so, is that it's linking to something 
 other than the system library time() function, but I did an nm on the .so, 
 and it said this, which sure looks like the system time() function to me:

  U time@@FBSD_1.0

 Setting a breakpoint in gdb gets a complaint about trying to set a 
 breakpoint in /lib/libc.so.7.

 Any ideas what the problem was?

The errorno value you report is *NOT* a defined return code for date(3).
The libc date(3) will return only EFAULT, or EPERM, per the manpage. 

This lends credence to the possibility of a run-time linker issue.

HOWEVER, there is also the possiblity of memory getting trashed -- in just
the 'right' wrong way -- *elsewhere* in the code.   OR a corrupted .so

Mentioning O/S release level, and CPU architecture would be a good idea :)


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this code?

2011-12-12 Thread John R. Levine

how about a tiny .so that includes -only- that routine, and a 3-line or so
main() that links against -that- .so?


not a bad idea.


Mentioning O/S release level, and CPU architecture would be a good idea :)


Oh sorry, FreeBSD 8.2 release, AMD64

R's,
John
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


what's wrong?

2010-12-22 Thread Neil Short
Hopefully this will work. I attached a text file of my dmesg. After boot, I 
start getting ACPI errors. Here's an excerpt.


Root mount waiting for: usbus1
ugen1.3: vendor 0x090c at usbus1
Trying to mount root from ufs:/dev/ad4s1a
wlan0: Ethernet address: c4:17:fe:24:04:eb
wlan0: link state changed to UP
ACPI Error: No object attached to node 0xff000168a840 
(20100331/exresnte-211)
ACPI Error (uteval-0318): Method execution failed [\\_SB_.BAT0._UID] (Node 
0xff000168a840), AE_AML_NO_OPERAND
ACPI Error: No object attached to node 0xff000168a840 
(20100331/exresnte-211)
ACPI Error (uteval-0318): Method execution failed [\\_SB_.BAT0._UID] (Node 
0xff000168a840), AE_AML_NO_OPERAND\

==

 What did you do? the man holding the flashlight asked.

 I put down a spider, he said, wondering why the man didn't see; in the beam 
of yellow light the spider bloated up larger than life. So it could get away.


  Copyright (c) 1992-2010 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 8.1-STABLE #2: Wed Oct 13 20:48:24 MST 2010
nesh...@carmen:/usr/obj/usr/src/sys/CARMEN amd64
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Intel(R) Core(TM) i3 CPU   M 330  @ 2.13GHz (2127.92-MHz K8-class CPU)
  Origin = GenuineIntel  Id = 0x20652  Family = 6  Model = 25  Stepping = 2
  
Features=0xbfebfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE
  
Features2=0x98e3bdSSE3,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,POPCNT
  AMD Features=0x28000800SYSCALL,RDTSCP,LM
  AMD Features2=0x1LAHF
  TSC: P-state invariant
real memory  = 4294967296 (4096 MB)
avail memory = 3892662272 (3712 MB)
ACPI APIC Table: HPQOEM SLIC-MPC
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s) x 2 SMT threads
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
 cpu2 (AP): APIC ID:  4
 cpu3 (AP): APIC ID:  5
ioapic0: Changing APIC ID to 2
ioapic0 Version 2.0 irqs 0-23 on motherboard
kbd1 at kbdmux0
acpi0: HPQOEM SLIC-MPC on motherboard
acpi0: [ITHREAD]
acpi0: Power Button (fixed)
acpi_hpet0: High Precision Event Timer iomem 0xfed0-0xfed003ff on acpi0
Timecounter HPET frequency 14318180 Hz quality 900
Timecounter ACPI-safe frequency 3579545 Hz quality 850
acpi_timer0: 24-bit timer at 3.579545MHz port 0x408-0x40b on acpi0
cpu0: ACPI CPU on acpi0
cpu1: ACPI CPU on acpi0
cpu2: ACPI CPU on acpi0
cpu3: ACPI CPU on acpi0
acpi_ec0: Embedded Controller: GPE 0x17 port 0x62,0x66 on acpi0
acpi_button0: Power Button on acpi0
acpi_lid0: Control Method Lid Switch on acpi0
acpi_button1: Sleep Button on acpi0
battery0: ACPI Control Method Battery on acpi0
acpi_acad0: AC Adapter on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
vgapci0: VGA-compatible display port 0x6050-0x6057 mem 
0xd000-0xd03f,0xc000-0xcfff irq 16 at device 2.0 on pci0
agp0: Intel Ironlake (M) SVGA controller on vgapci0
agp0: detected 32764k stolen memory
agp0: aperture size is 256M
pci0: simple comms at device 22.0 (no driver attached)
ehci0: Intel PCH USB 2.0 controller USB-B mem 0xd8405c00-0xd8405fff irq 16 at 
device 26.0 on pci0
ehci0: [ITHREAD]
usbus0: EHCI version 1.0
usbus0: Intel PCH USB 2.0 controller USB-B on ehci0
hdac0: Intel PCH High Definition Audio Controller mem 0xd840-0xd8403fff 
irq 22 at device 27.0 on pci0
hdac0: HDA Driver Revision: 20100226_0142
hdac0: [ITHREAD]
pcib1: ACPI PCI-PCI bridge at device 28.0 on pci0
pci1: ACPI PCI bus on pcib1
pcib2: ACPI PCI-PCI bridge at device 28.1 on pci0
pci2: ACPI PCI bus on pcib2
ath0: Atheros 9285 mem 0xd640-0xd640 irq 17 at device 0.0 on pci2
ath0: [ITHREAD]
ath0: AR9285 mac 192.2 RF5133 phy 14.0
pcib3: ACPI PCI-PCI bridge at device 28.2 on pci0
pci3: ACPI PCI bus on pcib3
re0: RealTek 8101E/8102E/8102EL/8103E PCIe 10/100baseTX port 0x3000-0x30ff 
mem 0xd2404000-0xd2404fff,0xd240-0xd2403fff irq 18 at device 0.0 on pci3
re0: Using 1 MSI messages
re0: Chip rev. 0x2400
re0: MAC rev. 0x
re0: Unknown H/W revision: 0x2400
device_attach: re0 attach returned 6
pci3: unknown at device 0.1 (no driver attached)
pci3: base peripheral, SD host controller at device 0.2 (no driver attached)
pcib4: ACPI PCI-PCI bridge at device 28.3 on pci0
pci4: ACPI PCI bus on pcib4
ehci1: Intel PCH USB 2.0 controller USB-A mem 0xd8405800-0xd8405bff irq 20 at 
device 29.0 on pci0
ehci1: [ITHREAD]
usbus1: EHCI version 1.0
usbus1: Intel PCH USB 2.0 controller USB-A on ehci1
pcib5: ACPI PCI-PCI bridge at device 30.0 on pci0
pci7: ACPI PCI bus on pcib5
isab0: PCI-ISA bridge at device 31.0 on pci0
isa0: ISA bus on isab0
atapci0: Intel 5 Series/3400 Series PCH SATA300 controller port 

Re: What's wrong with this picture?

2009-06-08 Thread Jonathan McKeown
On Saturday 06 June 2009 05:43:15 Charlie Kester wrote:
 On Fri 05 Jun 2009 at 15:06:40 PDT Paul Chvostek wrote:
 If you elect to filter this person's traffic, and are concerned that
 you'll continue to be inundated with replies, I'd like to suggest a
 small procmail script I wrote years ago.
 
  http://www.it.ca/~paul/s/procmail-filter-msgid
 
 It caches the message-id of the troll's posts and filters the message
 (redirect or bitbucket).  It then caches the message-id of any message
 that includes a cached message-id in its headers (i.e. In-Reply-To,
 Refererences) and filters that too.  The effect is to hide not just the
 troll's mail, but all the conversations he starts.
 
 I haven't actively used this thing since 2003, but procmail hasn't
 changed much in that time either.  Hope it helps.

 Thanks, I'll give it a try.

 One thought however.  If I'd already filtered this thread, I would have
 missed helpful tips like yours.  I guess that's the price that has to be
 paid.

Unless you're absolutely certain someone is never going to talk sense, I 
reckon the backscatter is quite useful, to keep an eye on what the killfiled 
person is talking about and how people are reacting. Killfiling whole threads 
automatically because a particular person has joined in is a drastic step.

Jonathan
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this picture?

2009-06-05 Thread Paul Chvostek
Ian,

On Sun, May 31, 2009 at 04:00:40PM +1000, Ian Smith wrote:
 
 Woj, 20 out of 36 messages, over 55% of all these messages, are by you.
...
 You are equally as capable in this role as wannabe list wrecker, opining 
 on every second message including all the silly wildly off-topic ones.

If you elect to filter this person's traffic, and are concerned that
you'll continue to be inundated with replies, I'd like to suggest a
small procmail script I wrote years ago.

http://www.it.ca/~paul/s/procmail-filter-msgid

It caches the message-id of the troll's posts and filters the message
(redirect or bitbucket).  It then caches the message-id of any message
that includes a cached message-id in its headers (i.e. In-Reply-To,
Refererences) and filters that too.  The effect is to hide not just the
troll's mail, but all the conversations he starts.

I haven't actively used this thing since 2003, but procmail hasn't
changed much in that time either.  Hope it helps.

Sometimes killing the trolls is just too much effort.

-- 
  Paul Chvostek p...@it.ca
  it.canadahttp://www.it.ca/

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this picture?

2009-06-05 Thread Charlie Kester

On Fri 05 Jun 2009 at 15:06:40 PDT Paul Chvostek wrote:


If you elect to filter this person's traffic, and are concerned that
you'll continue to be inundated with replies, I'd like to suggest a
small procmail script I wrote years ago.

http://www.it.ca/~paul/s/procmail-filter-msgid

It caches the message-id of the troll's posts and filters the message
(redirect or bitbucket).  It then caches the message-id of any message
that includes a cached message-id in its headers (i.e. In-Reply-To,
Refererences) and filters that too.  The effect is to hide not just the
troll's mail, but all the conversations he starts.

I haven't actively used this thing since 2003, but procmail hasn't
changed much in that time either.  Hope it helps.


Thanks, I'll give it a try.

One thought however.  If I'd already filtered this thread, I would have
missed helpful tips like yours.  I guess that's the price that has to be
paid.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this picture?

2009-06-01 Thread Chad Perrin
On Mon, Jun 01, 2009 at 02:03:19AM +0200, Wojciech Puchar wrote:
 
 so you like to moderate me, being against moderation

I think GT would like you to moderate yourself, as would I.

-- 
Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ]
Quoth Larry Niven: That's the thing about people who think they hate
computers. What they really hate is lousy programmers.


pgpYtITijLCNV.pgp
Description: PGP signature


Re: What's wrong with this picture?

2009-06-01 Thread Paul Schmehl
--On Monday, June 01, 2009 13:46:11 -0500 Chad Perrin per...@apotheon.com 
wrote:



On Mon, Jun 01, 2009 at 02:03:19AM +0200, Wojciech Puchar wrote:


so you like to moderate me, being against moderation


I think GT would like you to moderate yourself, as would I.


Moderation is available to anyone who wants it.  It's called filtering.  Yours 
is the first of these I've seen in quite some time - which means I need to 
tweak my filters a bit.  Mr. Puchar's posts no longer bother me.  I suggest you 
do the same.


--
Paul Schmehl, Senior Infosec Analyst
As if it wasn't already obvious, my opinions
are my own and not those of my employer.
***
Check the headers before clicking on Reply.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this picture?

2009-06-01 Thread Wojciech Puchar

exactly

On Mon, 1 Jun 2009, Paul Schmehl wrote:

--On Monday, June 01, 2009 13:46:11 -0500 Chad Perrin per...@apotheon.com 
wrote:



On Mon, Jun 01, 2009 at 02:03:19AM +0200, Wojciech Puchar wrote:


so you like to moderate me, being against moderation


I think GT would like you to moderate yourself, as would I.


Moderation is available to anyone who wants it.  It's called filtering. 
Yours is the first of these I've seen in quite some time - which means I need 
to tweak my filters a bit.  Mr. Puchar's posts no longer bother me.  I 
suggest you do the same.


--
Paul Schmehl, Senior Infosec Analyst
As if it wasn't already obvious, my opinions
are my own and not those of my employer.
***
Check the headers before clicking on Reply.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


What's wrong with this picture?

2009-05-31 Thread Ian Smith
On Sat, 30 May 2009, freebsd-questions-requ...@freebsd.org wrote
in freebsd-questions Digest, Vol 260, Issue 31
[..]
 1. Fw: UK Currency Symbol in 7.2 Console (Graham Bentley)
 2. Re: find and searching for specific expression in files
(Mel Flynn)
 3. Re: find and searching for specific expression in files
(Valentin Bud)
 4. Re: MIME attachments in mbox files (Ian Smith)
 5. Re: Canon printer and TurboPrint (Jerry)
 6. FreeBSD 7.0-RELEASE-p12 bind9 log files not found
(Prokofyev Vladislav)
 7. GSM to Serial Converter (Exemys)
 8. Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found (Mel Flynn)
 9. Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found
(Michael Powell)
10. Re: GSM to Serial Converter (Kevin Kinsey)
11. Re: Canon printer and TurboPrint (cpghost)
12. Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found
(Prokofyev Vladislav)
13. Re: Canon printer and TurboPrint (Wojciech Puchar)
14. Re: Fresh install 7.2-RELEASE i386, X won't start
(Wojciech Puchar)
15. Re: Failure to get past a PCI bridge (Ian Smith)
16. Re: What is this forum for? (Wojciech Puchar)
17. Re: Stable Mail Server And Web Mail (Wojciech Puchar)
18. Re: What is this forum for? (Wojciech Puchar)
19. Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found (Mel Flynn)
20. Re: On the need for moderated questions lists (Wojciech Puchar)
21. Re: Competition law (was Re: Canon printer and TurboPrint)
(Wojciech Puchar)
22. RE: On the need for moderated questions lists (Wojciech Puchar)
23. Re: Canon printer and TurboPrint (Wojciech Puchar)
24. Re: MIME attachments in mbox files (Wojciech Puchar)
25. Re: Canon printer and TurboPrint (Wojciech Puchar)
26. Re: On the need for moderated questions lists (Wojciech Puchar)
27. Re: Remotely edit user disk quota (Wojciech Puchar)
28. Re: find and searching for specific expression in files
(Wojciech Puchar)
29. Re: Stable Mail Server And Web Mail (Mel Flynn)
30. Re: Software creating karaoke from mp3 files (Wojciech Puchar)
31. Re: Greylisting and new posters (Wojciech Puchar)
32. Re: find and searching for specific expression in files
(Wojciech Puchar)
33. Re: Canon printer and TurboPrint (Wojciech Puchar)
34. Re: Canon printer and TurboPrint (cpghost)
35. Filter request Re: GSM to Serial Converter (Wojciech Puchar)
36. Re: Stable Mail Server And Web Mail (Wojciech Puchar)

Woj, 20 out of 36 messages, over 55% of all these messages, are by you.

Having been very busy in recent weeks, I'd accumulated about 24 digests 
unread that I ploughed through yesterday, many of which featured over 
50% of messages either from you, or from silly people reacting to you, 
whose ranks I must join for just this once.

I gather that you're hoping to prove that without moderation - as we've 
enjoyed for 11 years that I've experienced - if you keep on flooding the 
list with so much off-topic crap, then we'll be forced into accepting 
your wish for the list to be controlled, post by post, by some poor 
bastard who needs to be awake 24/7/365 and has little else of a life.

I don't have the sort of free time (nor apparent need) that you have to 
try fashioning this sometimes-helpful list after my own wishes, which is 
why I get digests, posting occasionally where I think I can maybe help.  
I'm also subscribed to about a dozen other FreeBSD lists that in total 
deliver not many more messages per day than this one sometimes does.

You're not even being vaguely consistent.  You're fast to agree with our 
resident M$ troll when he argues against government control of anything, 
even of protecting the population from a 'free' market that's happy to 
profit by poisoning people in body or mind, but then you insist we need 
to establish another sort of 'government' to control what people want to 
discuss on these lists?  Fortunately, that's just not going to happen.

You are quite capable of being helpful and even useful to the FreeBSD 
Project, if you'd focus your energies on things you do know something 
about and by widening your experience in areas covered by other lists.

You are equally as capable in this role as wannabe list wrecker, opining 
on every second message including all the silly wildly off-topic ones.

You already HAVE the power to greatly improve this list.  Please do so.

Sincerely, Ian
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this picture?

2009-05-31 Thread Wojciech Puchar

   (Wojciech Puchar)
   33. Re: Canon printer and TurboPrint (Wojciech Puchar)
   34. Re: Canon printer and TurboPrint (cpghost)
   35. Filter request Re: GSM to Serial Converter (Wojciech Puchar)
   36. Re: Stable Mail Server And Web Mail (Wojciech Puchar)

Woj, 20 out of 36 messages, over 55% of all these messages, are by you.


That's fine. then please - if you count mine as spam, ignore them and 
calculate stats with the rest.



50% of messages either from you, or from silly people reacting to you,


So you just classify people as silly because then answer me. It isn't 
polite i think.



I gather that you're hoping to prove that without moderation - as we've
enjoyed for 11 years that I've experienced - if you keep on flooding the
list with so much off-topic crap.


Again - calculate how many not-mine threads are on topic.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this picture?

2009-05-31 Thread GT
I'm pretty sure you could set up a filter on Mr Puchar's name; it's not
hard.

That said, I just read a sample of his posts (not all of them), and the
ones I looked at didn't appear to be 'off-topic' and would probably have
passed muster from any reasonable moderator (aye, but there's the rub:
who gets to define 'reasonable'?).

The phrase You're fast to agree with our resident M$ troll when he
argues against government control of anything, even of protecting the
population from a 'free' market that's happy to profit by poisoning
people in body or mind stands in stark contrast to your exhortation
that he focus [his] energies on things you do know something about.

I'm against moderation, for the simple reason that people who want to be
moderators will bring their baggage to their efforts (like your
corporations kill the environment and are protected by the 'free'
market stuff, or my government is the problem, full stop: Caedite Eos
stuff). That is to say, anyone who wants to be a moderator ought to be
disqualified from doing so (that goes for anyone who wants to control
anyone else).

In sum, I double-plus unbellyfeel groupthink.

Cheerio


GT
(No Microsoft products were used in the creation of this message - MS
would not exist but for its government contracts ... MSFT is a
distinctly NON-'market' entity).


On Sun, 2009-05-31 at 16:00 +1000, Ian Smith wrote:
 On Sat, 30 May 2009, freebsd-questions-requ...@freebsd.org wrote
 in freebsd-questions Digest, Vol 260, Issue 31
 [..]
  1. Fw: UK Currency Symbol in 7.2 Console (Graham Bentley)
  2. Re: find and searching for specific expression in files
 (Mel Flynn)
  3. Re: find and searching for specific expression in files
 (Valentin Bud)
  4. Re: MIME attachments in mbox files (Ian Smith)
  5. Re: Canon printer and TurboPrint (Jerry)
  6. FreeBSD 7.0-RELEASE-p12 bind9 log files not found
 (Prokofyev Vladislav)
  7. GSM to Serial Converter (Exemys)
  8. Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found (Mel Flynn)
  9. Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found
 (Michael Powell)
 10. Re: GSM to Serial Converter (Kevin Kinsey)
 11. Re: Canon printer and TurboPrint (cpghost)
 12. Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found
 (Prokofyev Vladislav)
 13. Re: Canon printer and TurboPrint (Wojciech Puchar)
 14. Re: Fresh install 7.2-RELEASE i386, X won't start
 (Wojciech Puchar)
 15. Re: Failure to get past a PCI bridge (Ian Smith)
 16. Re: What is this forum for? (Wojciech Puchar)
 17. Re: Stable Mail Server And Web Mail (Wojciech Puchar)
 18. Re: What is this forum for? (Wojciech Puchar)
 19. Re: FreeBSD 7.0-RELEASE-p12 bind9 log files not found (Mel Flynn)
 20. Re: On the need for moderated questions lists (Wojciech Puchar)
 21. Re: Competition law (was Re: Canon printer and TurboPrint)
 (Wojciech Puchar)
 22. RE: On the need for moderated questions lists (Wojciech Puchar)
 23. Re: Canon printer and TurboPrint (Wojciech Puchar)
 24. Re: MIME attachments in mbox files (Wojciech Puchar)
 25. Re: Canon printer and TurboPrint (Wojciech Puchar)
 26. Re: On the need for moderated questions lists (Wojciech Puchar)
 27. Re: Remotely edit user disk quota (Wojciech Puchar)
 28. Re: find and searching for specific expression in files
 (Wojciech Puchar)
 29. Re: Stable Mail Server And Web Mail (Mel Flynn)
 30. Re: Software creating karaoke from mp3 files (Wojciech Puchar)
 31. Re: Greylisting and new posters (Wojciech Puchar)
 32. Re: find and searching for specific expression in files
 (Wojciech Puchar)
 33. Re: Canon printer and TurboPrint (Wojciech Puchar)
 34. Re: Canon printer and TurboPrint (cpghost)
 35. Filter request Re: GSM to Serial Converter (Wojciech Puchar)
 36. Re: Stable Mail Server And Web Mail (Wojciech Puchar)
 
 Woj, 20 out of 36 messages, over 55% of all these messages, are by you.
 
 Having been very busy in recent weeks, I'd accumulated about 24 digests 
 unread that I ploughed through yesterday, many of which featured over 
 50% of messages either from you, or from silly people reacting to you, 
 whose ranks I must join for just this once.
 
 I gather that you're hoping to prove that without moderation - as we've 
 enjoyed for 11 years that I've experienced - if you keep on flooding the 
 list with so much off-topic crap, then we'll be forced into accepting 
 your wish for the list to be controlled, post by post, by some poor 
 bastard who needs to be awake 24/7/365 and has little else of a life.
 
 I don't have the sort of free time (nor apparent need) that you have to 
 try fashioning this sometimes-helpful list after my own wishes, which is 
 why I get digests, posting occasionally where I think I can maybe help.  
 I'm also subscribed to about a dozen other FreeBSD lists that in total 
 deliver not many more 

Re: What's wrong with this picture?

2009-05-31 Thread Wojciech Puchar

passed muster from any reasonable moderator (aye, but there's the rub:
who gets to define 'reasonable'?).

The phrase You're fast to agree with our resident M$ troll when he
argues against government control of anything, even of protecting the
population from a 'free' market that's happy to profit by poisoning
people in body or mind stands in stark contrast to your exhortation
that he focus [his] energies on things you do know something about.

I'm against moderation, for the simple reason that people who want to be
moderators will bring their baggage to their efforts (like your
corporations kill the environment and are protected by the 'free'
market stuff, or my government is the problem, full stop: Caedite Eos
stuff). That is to say, anyone who wants to be a moderator ought to be
disqualified from doing so (that goes for anyone who wants to control


so you like to moderate me, being against moderation
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: What's wrong with this picture?

2009-05-31 Thread Glen Barber
Please take this to chat@, because this is getting really old.

-- 
Glen Barber
http://www.dev-urandom.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


[port : www/sams] What's wrong with my patch?

2008-11-09 Thread Yuriy Grishin

Hello,

More than 2 weeks ago I tried to take maintainership of www/sams because 
it hasn't been updated for a long time.

Current state : feedback. (but I've sent the file)
Could somebody please explain me what wrong with the patch is?
Why didn't the state changed?

See the pr here :
http://www.freebsd.org/cgi/query-pr.cgi?pr=128124

--
Kind Regards, Yuriy Grishin

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: [port : www/sams] What's wrong with my patch?

2008-11-09 Thread matt donovan
On Sun, Nov 9, 2008 at 2:01 AM, Yuriy Grishin [EMAIL PROTECTED]wrote:

 Hello,

 More than 2 weeks ago I tried to take maintainership of www/sams because it
 hasn't been updated for a long time.
 Current state : feedback. (but I've sent the file)
 Could somebody please explain me what wrong with the patch is?
 Why didn't the state changed?

 See the pr here :
 http://www.freebsd.org/cgi/query-pr.cgi?pr=128124

 --
 Kind Regards, Yuriy Grishin

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]


well if you look at the pr they tell you exactly what's wrong with it I
would point you to
http://www.freebsd.org/doc/en_US.ISO8859-1/articles/problem-reports/

and here is what they said about your patch

Hello, Yury!
Some useful information about problem report you may read in man 1 send-pr.
Don't use cyrillic names in From: field, don't send bziped or gziped patches
if they are not too large - plain text is good enough for reading (and
uu-encoded bzip - not). Also read
http://www.freebsd.org/doc/en_US.ISO8859-1/articles/problem-reports/ article
and GNU Info file send-pr.info .

-- 
Cheers
Denis Barov
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


what's wrong with rtadvd?!

2007-11-11 Thread Wojciech Puchar

on 3 machines - works fine.

on one - doesn't

tcpdump -i em0 -n ip6 shows nothing transmitted

ifconfig em0 shows
em0: flags=88843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,STATICARP mtu 
1500

options=4bRXCSUM,TXCSUM,VLAN_MTU,POLLING
inet6 fe80::21b:21ff:fe00:9e16%em0 prefixlen 64 duplicated scopeid 
0x1

inet 10.254.1.248 netmask 0xfc00 broadcast 10.254.3.255
inet 10.254.1.232 netmask 0xfc00 broadcast 10.254.3.255
inet6 xxx::2 prefixlen 64
inet6 xxx::3 prefixlen 64
inet6 xxx::4 prefixlen 64
ether 00:1b:21:00:9e:16
media: Ethernet autoselect (1000baseTX full-duplex)
status: active


in rc.conf
rtadvd_enable=YES
rtadvd_interfaces=em0



when rtadvd is started, stopped or sometimes in between there are such 
things in log:

rtadvd[68450]: ra_output sendmsg on em0: Network is down



where's a problem?

thanks.


PS. no - firewall doesn't block it, i checked and tried with ipfw turned 
off too.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


newbie permissions problems... what's wrong?

2007-01-17 Thread Oliver Iberien
I am logged in as oliver. I have two extra partitions mounted. Below is the 
section of devfs.conf that has to do with them:

#Allow access to the second disk
own /dev/ad1s2c oliver:wheel
perm/dev/ad1s2c 0666
own /disk2  oliver:wheel
perm/disk2  0666

#Allow access to disk3 
own /dev/ad2s2c oliver:wheel
perm/dev/ad2s2c 0666
own /disk3  oliver:wheel
perm/disk3  0666

And the permissions that display are:

$ ls -l / | grep disk
drw-rw-rw-   3 oliver  wheel  2048 Jan 16 23:13 disk2
drw-rw-rw-   6 oliver  wheel   512 Dec 21 23:01 disk3

But

$ mkdir /disk2/storage
mkdir: /disk2/storage: Permission denied

Although as a superuser, it works.

$ sudo mkdir /disk2/storage
Password:
$

What is going on? 

Thanks,

Oliver
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: newbie permissions problems... what's wrong?

2007-01-17 Thread Garrett Cooper

On Jan 17, 2007, at 12:04 AM, Oliver Iberien wrote:

I am logged in as oliver. I have two extra partitions mounted.  
Below is the

section of devfs.conf that has to do with them:

#Allow access to the second disk
own /dev/ad1s2c oliver:wheel
perm/dev/ad1s2c 0666
own /disk2  oliver:wheel
perm/disk2  0666

#Allow access to disk3
own /dev/ad2s2c oliver:wheel
perm/dev/ad2s2c 0666
own /disk3  oliver:wheel
perm/disk3  0666

And the permissions that display are:

$ ls -l / | grep disk
drw-rw-rw-   3 oliver  wheel  2048 Jan 16 23:13 disk2
drw-rw-rw-   6 oliver  wheel   512 Dec 21 23:01 disk3

But

$ mkdir /disk2/storage
mkdir: /disk2/storage: Permission denied

Although as a superuser, it works.

$ sudo mkdir /disk2/storage
Password:
$

What is going on?

Thanks,

Oliver


	Missing executable permission (required for viewing directories /  
executing binaries, scripts)? Try 0775 (that's a decent permissions  
setup--read, write, exec for oliver and wheel group; read, write for  
all) or 0770 (read, write for oliver / wheel group, permission denied  
for all) or something similar.
	You can also run chmod or chown as root to set things up properly,  
instead of with /etc/devfs.conf (if you don't mind that).

-Garrett
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


what's wrong with portsnap?!!!

2006-04-09 Thread Wojciech Puchar

that's on clean directory.

[EMAIL PROTECTED] /usr/sbin/portsnap fetch
Looking up portsnap.FreeBSD.org mirrors... using portsnap1.FreeBSD.org.
Fetching public key... done.
Fetching snapshot tag... done.
Fetching snapshot metadata... done.
Fetching snapshot generated at ndz  9 kwi 02:33:58 2006 CEST:
622100fb0a3c8f0e52402c120619a80720a722c8f285d4100% of   39 MB   92 kBps 
00m00s

Extracting snapshot... done.
Verifying snapshot integrity... done.
Fetching snapshot tag... done.
Fetching snapshot metadata... done.
Updating from ndz  9 kwi 02:33:58 2006 CEST to ndz  9 kwi 22:00:36 2006 
CEST.

Fetching 4 metadata patches. done.
Applying metadata patches... done.
Fetching 4 metadata files... /usr/sbin/portsnap: cannot open 
4c0d29ee1e19f46aa172300d2cb55599eb13fc029b6dfe543cd0b58657dc58d0.gz: No 
such file or directory

metadata is corrupt.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Big delay on login: What's wrong?

2005-05-12 Thread Fafa Hafiz Krantz

- Original Message -
From: Andrei A. Voropaev [EMAIL PROTECTED]
To: Fafa Hafiz Krantz [EMAIL PROTECTED]
Subject: Re: Big delay on login: What's wrong?
Date: Thu, 12 May 2005 13:19:21 +0200

 
 On Thu, May 12, 2005 at 04:49:52AM -0500, Fafa Hafiz Krantz wrote:
 
  Hello.
 
  I'm on a Pentium 120 with FreeBSD 5.4-STABLE, and zsh-4.2.5.
  When I log in, I have to wait in between 5 to 10 seconds before
  the prompt displays. Even though I use a functional zshrc file
  that has proven to work on other systems, things like auto
  completion doesn't seem to work in this case.
 
  # cat /etc/zshrc
  #
  http://www.home.no/hedhnta/zshrc
 
  # cat /etc/zlogout
  #
  http://www.home.no/hedhnta/zlogout
 
  # zsh -x
  #
  http://www.home.no/hedhnta/zsh-x
 
  Somebody know?
 
 Most likely it has nothing to do with zsh. Once we had the same problem
 because one of the daemons (I think ident) was trying to connect back to
 the machine where connection was coming from to find out username there.
 And we had firewall that was blocking those connections. So, login had
 to wait till that daemon gave up.
 
 YMMV.
 
 --
 Minds, like parachutes, function best when open

That's strange.

I doubt I have any daemons running that PF doesn't allow.

# cat /etc/pf.conf
#

int_if=ep0
ext_if=lnc0

set block-policy drop
scrub   in all

nat on $ext_if from $int_if:network to any - ($ext_if)
rdr on $int_if proto tcp from any to any \
port 21 - 127.0.0.1 port 8021

block   drop log all
passquick on { lo0 $int_if }

passout on $ext_if inet proto { tcp, udp, icmp } \
from any to any keep state

passin on $ext_if inet proto { tcp, udp } \
from any to ($ext_if) port 53
passout on $ext_if inet proto { tcp, udp } \
from any port 53 to any

passout on $ext_if inet proto udp \
from any to any port 123 keep state

passin on $ext_if inet proto tcp \
from any to ($ext_if) port { 22, 80, 113 } flags S/SA keep state

passin on $ext_if inet proto tcp \
from any port 20 to ($ext_if) user proxy flags S/SA keep state

passin on $ext_if proto tcp \
from any to any port 31337 keep state
passin on $ext_if proto tcp \
from any to any port 5:5

By the way, I like the slogan in your signature.
It's among the best I've ever heard, as it applies to all things.

--

Fafa Hafiz Krantz
  Research Designer @ http://www.home.no/barbershop
  Enlightened @ http://www.home.no/barbershop/smart/sharon.pdf



-- 
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Big delay on login: What's wrong?

2005-05-12 Thread Andrei A. Voropaev
On Thu, May 12, 2005 at 07:41:28AM -0500, Fafa Hafiz Krantz wrote:
  
  On Thu, May 12, 2005 at 04:49:52AM -0500, Fafa Hafiz Krantz wrote:
  
   Hello.
  
   I'm on a Pentium 120 with FreeBSD 5.4-STABLE, and zsh-4.2.5.
   When I log in, I have to wait in between 5 to 10 seconds before
   the prompt displays. Even though I use a functional zshrc file
   that has proven to work on other systems, things like auto
   completion doesn't seem to work in this case.
  
   # cat /etc/zshrc
   #
   http://www.home.no/hedhnta/zshrc
  
   # cat /etc/zlogout
   #
   http://www.home.no/hedhnta/zlogout
  
   # zsh -x
   #
   http://www.home.no/hedhnta/zsh-x
  
   Somebody know?
  
  Most likely it has nothing to do with zsh. Once we had the same problem
  because one of the daemons (I think ident) was trying to connect back to
  the machine where connection was coming from to find out username there.
  And we had firewall that was blocking those connections. So, login had
  to wait till that daemon gave up.
  
  YMMV.
  
  --
  Minds, like parachutes, function best when open
 
 That's strange.
 
 I doubt I have any daemons running that PF doesn't allow.
[...]

I would simply change to some other shell and try to login. If delay
disappears, then it's problem of zsh setup. If not, then it's problem
outside of zsh.

 
 By the way, I like the slogan in your signature.
 It's among the best I've ever heard, as it applies to all things.

One guy has commented it as Looks like today my mind is completely
closed, so I'm doomed to crash into ground :)

-- 
Minds, like parachutes, function best when open
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Big delay on login: What's wrong?

2005-05-12 Thread Fafa Hafiz Krantz

What up Andrei!

 I would simply change to some other shell and try to login. If delay
 disappears, then it's problem of zsh setup. If not, then it's problem
 outside of zsh.

I used to run tcsh before this.
No delay there, which brings me back to zsh.

Again, my setup is the same as on a computer where there is no delay.
Maybe because that's an Intel Pentium 3,2GHz whereas the one with the
delay is only 120MHz. Still, it shouldn't be like this.

Any idea?

  By the way, I like the slogan in your signature.
  It's among the best I've ever heard, as it applies to all things.
 
 One guy has commented it as Looks like today my mind is completely
 closed, so I'm doomed to crash into ground :)

Heheh :)

--

Fafa Hafiz Krantz
  Research Designer @ http://www.home.no/barbershop
  Enlightened @ http://www.home.no/barbershop/smart/sharon.pdf



-- 
___
Sign-up for Ads Free at Mail.com
http://promo.mail.com/adsfreejump.htm

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Big delay on login: What's wrong?

2005-05-12 Thread Wayne Davison
On Thu, May 12, 2005 at 09:35:11AM -0500, Fafa Hafiz Krantz wrote:
 I used to run tcsh before this.
 No delay there, which brings me back to zsh.

If you haven't tried it in a while, be sure to re-test to make sure that
something didn't change recently.  I ran into an ident delay a while
back, and fixed it by opening a hole in my firewall to a machine on my
local network, even though it wasn't running identd -- that made the
reverse ident attempt immediately fail (with a connection refused)
instead of hanging for a bit, waiting to timeout.

..wayne..
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


what's wrong with my swap partition ?

2005-01-27 Thread Supote Leelasupphakorn
Hi list,
  I owned 2 boxes of FreeBSD 4.x and just noticed that the output
of command swapinfo are strange coz there are two lines of swap
entry like below. What's wrong with my 2nd boxes and how do I do
with this ?
--- snip from the 1st box ---
Device  1K-blocks UsedAvail Capacity  Type
/dev/ad0s1b   2081152  172  2080980 0%Interleaved
--- snip from the 2nd box ---
Device  1K-blocks UsedAvail Capacity  Type
/dev/ad0s1b   1032144   64  1032080 0%Interleaved
/dev/ad0s1b   10321440  1032144 0%Interleaved  -- 
why does it repeat again ?
Total 2064288   64  2064224 0%

TIA,
pjn
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: what's wrong with my swap partition ?

2005-01-27 Thread Kris Kennaway
On Thu, Jan 27, 2005 at 05:23:38PM +0700, Supote Leelasupphakorn wrote:
 Hi list,
 
   I owned 2 boxes of FreeBSD 4.x and just noticed that the output
 of command swapinfo are strange coz there are two lines of swap
 entry like below. What's wrong with my 2nd boxes and how do I do
 with this ?
 
 --- snip from the 1st box ---
 Device  1K-blocks UsedAvail Capacity  Type
 /dev/ad0s1b   2081152  172  2080980 0%Interleaved
 
 
 --- snip from the 2nd box ---
 Device  1K-blocks UsedAvail Capacity  Type
 /dev/ad0s1b   1032144   64  1032080 0%Interleaved
 /dev/ad0s1b   10321440  1032144 0%Interleaved  -- 
 why does it repeat again ?
 Total 2064288   64  2064224 0%

Maybe you ran swapon twice?

Kris


pgpXPaIYsIXE9.pgp
Description: PGP signature


Re: what's wrong with my swap partition ?

2005-01-27 Thread Supote Leelasupphakorn
Hi list,
  If so, what do I do next coz there is no command swapoff
in such box. It's 4.10-RELEASE. But I'm pretty sure that I've
never run command swapon maually or I miss something.
TIA,
pjn

Original Message Follows
From: Kris Kennaway [EMAIL PROTECTED]
To: Supote Leelasupphakorn [EMAIL PROTECTED]
CC: freebsd-questions@freebsd.org
Subject: Re: what's wrong with my swap partition ?
Date: Thu, 27 Jan 2005 11:21:22 -0800
MIME-Version: 1.0
Received: from MC6-F35.hotmail.com ([65.54.252.171]) by imc1-s34.hotmail.com 
with Microsoft SMTPSVC(6.0.3790.211); Thu, 27 Jan 2005 11:22:18 -0800
Received: from obsecurity.dyndns.org ([69.199.47.57]) by MC6-F35.hotmail.com 
with Microsoft SMTPSVC(6.0.3790.211); Thu, 27 Jan 2005 11:22:14 -0800
Received: by obsecurity.dyndns.org (Postfix, from userid 1000)id 02D79511C0; 
Thu, 27 Jan 2005 11:21:22 -0800 (PST)
X-Message-Info: JGTYoYF78jGFNiwjAdX72D19x8shvxqNU/8SidkywB8=
References: [EMAIL PROTECTED]
User-Agent: Mutt/1.4.2.1i
Return-Path: [EMAIL PROTECTED]
X-OriginalArrivalTime: 27 Jan 2005 19:22:15.0302 (UTC) 
FILETIME=[825AA260:01C504A5]

On Thu, Jan 27, 2005 at 05:23:38PM +0700, Supote Leelasupphakorn wrote:
 Hi list,

   I owned 2 boxes of FreeBSD 4.x and just noticed that the output
 of command swapinfo are strange coz there are two lines of swap
 entry like below. What's wrong with my 2nd boxes and how do I do
 with this ?

 --- snip from the 1st box ---
 Device  1K-blocks UsedAvail Capacity  Type
 /dev/ad0s1b   2081152  172  2080980 0%Interleaved


 --- snip from the 2nd box ---
 Device  1K-blocks UsedAvail Capacity  Type
 /dev/ad0s1b   1032144   64  1032080 0%Interleaved
 /dev/ad0s1b   10321440  1032144 0%Interleaved  
--
 why does it repeat again ?
 Total 2064288   64  2064224 0%

Maybe you ran swapon twice?
Kris
 attach3 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: what's wrong with my swap partition ?

2005-01-27 Thread Kris Kennaway
On Fri, Jan 28, 2005 at 10:27:42AM +0700, Supote Leelasupphakorn wrote:
 Hi list,
 
   If so, what do I do next coz there is no command swapoff
 in such box. It's 4.10-RELEASE. But I'm pretty sure that I've
 never run command swapon maually or I miss something.

Does it persist after rebooting?  5.3 does have swapoff, btw.

Kris


pgpyQGZdXr2vJ.pgp
Description: PGP signature


Re: what's wrong with my swap partition ?

2005-01-27 Thread Supote Leelasupphakorn
From: Kris Kennaway [EMAIL PROTECTED]
To: Supote Leelasupphakorn [EMAIL PROTECTED]
CC: [EMAIL PROTECTED], freebsd-questions@freebsd.org
Subject: Re: what's wrong with my swap partition ?
Date: Thu, 27 Jan 2005 19:44:53 -0800
MIME-Version: 1.0
Received: from obsecurity.dyndns.org ([69.199.47.57]) by 
mc7-f19.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Thu, 27 Jan 2005 
19:45:25 -0800
Received: by obsecurity.dyndns.org (Postfix, from userid 1000)id 
53E1351286; Thu, 27 Jan 2005 19:44:53 -0800 (PST)
X-Message-Info: JGTYoYF78jH4Dzl+c7qLiybMBgCxL5JH1IbN1klzfnk=
References: [EMAIL PROTECTED] 
[EMAIL PROTECTED]
User-Agent: Mutt/1.4.2.1i
Return-Path: [EMAIL PROTECTED]
X-OriginalArrivalTime: 28 Jan 2005 03:45:25.0462 (UTC) 
FILETIME=[CD177760:01C504EB]

On Fri, Jan 28, 2005 at 10:27:42AM +0700, Supote Leelasupphakorn wrote:
 Hi list,

   If so, what do I do next coz there is no command swapoff
 in such box. It's 4.10-RELEASE. But I'm pretty sure that I've
 never run command swapon maually or I miss something.
Does it persist after rebooting?  5.3 does have swapoff, btw.
Kris
 attach3 
Hi list,
  Thanks for your reply. This box is currently in production environment so
I can't reboot it now. But if nothing terrible I will leave it for the next 
booting.
Hope it's no harmful with my box :-)

Best regards,
pjn
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


what's wrong with my ports???

2004-08-11 Thread Duane Winner
Hello all,
This problem has been recurring on my laptop (5.2.1-RELEASE-p9) for the 
past few weeks and I'm scratching my head.

Very frequently, I'll go to portinstall something, and I'll get several 
stop errors, and the build will fail.

But if I do a rm -rf /usr/ports, then re-cvsup my ports collection, I 
can successfully build whatever port I was trying at the time. However, 
a few days later (or whatever), I'll try to build another port, and it 
will start all over. I delete /usr/ports, cvsup again, then I'm fine. 
This has happened several times over the past few weeks and the whole 
manual cvsup'ing to refresh my entire /usr/ports every time is getting 
old. (Although I've noticed I can sometimes get away with just deleting 
the /usr/ports/... directory of the port I'm trying to build and 
cvsup'ing again.)

I'm keeping my ports current the same way on a workstation in at work, 
and I've had no problems there, so I know it has to be something that's 
wrong on my laptop.

Here is the output of the latest port failure (fwbuilder):
===  Applying FreeBSD patches for net-snmp-5.1.2
2 out of 4 hunks failed--saving rejects to 
agent/mibgroup/ucd-snmp/diskio.c.rej
 Patch patch-diskio.c failed to apply cleanly.
 Patch(es) patch-Makefile.in patch-aa patch-auto_nlist.c 
patch-configure.in applied cleanly.
*** Error code 1

Stop in /usr/ports/net-mgmt/net-snmp.
*** Error code 1
Stop in /usr/ports/security/libfwbuilder.
*** Error code 1
Stop in /usr/ports/security/fwbuilder.
** Command failed [exit code 1]: /usr/bin/script -qa 
/tmp/portinstall79078.0 make
** Fix the problem and try again.
** Listing the failed packages (*:skipped / !:failed)
! security/fwbuilder(patch error)
---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed

Thank for any feedback!
-Duane
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: what's wrong with my ports???

2004-08-11 Thread Will
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Duane Winner wrote:
| Hello all,
|
| This problem has been recurring on my laptop (5.2.1-RELEASE-p9) for the
| past few weeks and I'm scratching my head.
|
| Very frequently, I'll go to portinstall something, and I'll get several
| stop errors, and the build will fail.
|
| But if I do a rm -rf /usr/ports, then re-cvsup my ports collection, I
| can successfully build whatever port I was trying at the time. However,
| a few days later (or whatever), I'll try to build another port, and it
| will start all over. I delete /usr/ports, cvsup again, then I'm fine.
| This has happened several times over the past few weeks and the whole
| manual cvsup'ing to refresh my entire /usr/ports every time is getting
| old. (Although I've noticed I can sometimes get away with just deleting
| the /usr/ports/... directory of the port I'm trying to build and
| cvsup'ing again.)
|
| I'm keeping my ports current the same way on a workstation in at work,
| and I've had no problems there, so I know it has to be something that's
| wrong on my laptop.
|
| Here is the output of the latest port failure (fwbuilder):
|
| ===  Applying FreeBSD patches for net-snmp-5.1.2
| 2 out of 4 hunks failed--saving rejects to
| agent/mibgroup/ucd-snmp/diskio.c.rej
|   Patch patch-diskio.c failed to apply cleanly.
|   Patch(es) patch-Makefile.in patch-aa patch-auto_nlist.c
| patch-configure.in applied cleanly.
| *** Error code 1
|
| Stop in /usr/ports/net-mgmt/net-snmp.
| *** Error code 1
|
| Stop in /usr/ports/security/libfwbuilder.
| *** Error code 1
|
| Stop in /usr/ports/security/fwbuilder.
| ** Command failed [exit code 1]: /usr/bin/script -qa
| /tmp/portinstall79078.0 make
| ** Fix the problem and try again.
| ** Listing the failed packages (*:skipped / !:failed)
| ! security/fwbuilder(patch error)
| ---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
|
|
| Thank for any feedback!
|
| -Duane
|
| ___
| [EMAIL PROTECTED] mailing list
| http://lists.freebsd.org/mailman/listinfo/freebsd-questions
| To unsubscribe, send any mail to
| [EMAIL PROTECTED]
|
|
I'm abit confused, just syncing your port tree via cvsup does'nt work?
ie. things wont build after that, but after removing your entire ports
tree they will? Are you sure it couldn'nt be a disc problem with the
ports files being corrupted?
- --
Do yourself a favor, don't use IE!
www.mozilla.org/products/firefox/
PGP is Preferable for Email, Public
key available off PGP Key Server.
GPG Key ID: 0x787AD6A9
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (FreeBSD)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iQCVAwUBQRq2Fgx4IHh4etapAQIBiAP/UPczhmA2vnigt8b1oxM9Ko1RubDeSp1/
774R3bLk5sA/Rob+Co+cYEK1leoffdCRTJTZ4nQXeRyT1dUEJfjTxwdcjkR4utAY
yt0t9paJgbQenRCcdYMVftYwRlFDXnS5u/ifxkNfjgOflTLuVImLVjJ852D0D5ad
mUAHLDeIbxM=
=wE69
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: what's wrong with my ports???

2004-08-11 Thread Duane Winner
Will wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Duane Winner wrote:
| Hello all,
|
| This problem has been recurring on my laptop (5.2.1-RELEASE-p9) for the
| past few weeks and I'm scratching my head.
|
| Very frequently, I'll go to portinstall something, and I'll get several
| stop errors, and the build will fail.
|
| But if I do a rm -rf /usr/ports, then re-cvsup my ports collection, I
| can successfully build whatever port I was trying at the time. However,
| a few days later (or whatever), I'll try to build another port, and it
| will start all over. I delete /usr/ports, cvsup again, then I'm fine.
| This has happened several times over the past few weeks and the whole
| manual cvsup'ing to refresh my entire /usr/ports every time is getting
| old. (Although I've noticed I can sometimes get away with just deleting
| the /usr/ports/... directory of the port I'm trying to build and
| cvsup'ing again.)
|
| I'm keeping my ports current the same way on a workstation in at work,
| and I've had no problems there, so I know it has to be something that's
| wrong on my laptop.
|
| Here is the output of the latest port failure (fwbuilder):
|
| ===  Applying FreeBSD patches for net-snmp-5.1.2
| 2 out of 4 hunks failed--saving rejects to
| agent/mibgroup/ucd-snmp/diskio.c.rej
|   Patch patch-diskio.c failed to apply cleanly.
|   Patch(es) patch-Makefile.in patch-aa patch-auto_nlist.c
| patch-configure.in applied cleanly.
| *** Error code 1
|
| Stop in /usr/ports/net-mgmt/net-snmp.
| *** Error code 1
|
| Stop in /usr/ports/security/libfwbuilder.
| *** Error code 1
|
| Stop in /usr/ports/security/fwbuilder.
| ** Command failed [exit code 1]: /usr/bin/script -qa
| /tmp/portinstall79078.0 make
| ** Fix the problem and try again.
| ** Listing the failed packages (*:skipped / !:failed)
| ! security/fwbuilder(patch error)
| ---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
|
|
| Thank for any feedback!
|
| -Duane
|
| ___
| [EMAIL PROTECTED] mailing list
| http://lists.freebsd.org/mailman/listinfo/freebsd-questions
| To unsubscribe, send any mail to
| [EMAIL PROTECTED]
|
|
I'm abit confused, just syncing your port tree via cvsup does'nt work?
ie. things wont build after that, but after removing your entire ports
tree they will? Are you sure it couldn'nt be a disc problem with the
ports files being corrupted?
Yeah, I'm confused too :), but that's what's going on. I have a cronjob 
that syncs my ports tree every day at noon. It does:

/usr/local/bin/cvsup -L 2 /usr/sup/supfile
/usr/local/sbin/portsdb -Uu
/usr/sbin/pkg_version -v | grep needs
My supfile is:
*default host=cvsup11.us.freebsd.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=RELENG_5_2
*default use-rel-suffix compress
src-all
ports-all tag=.
doc-all tag=.
Additionally, I should mention that the problem isn't consistent.
For instance, yesterday, the cronjob ran and I was notified (pkg_version 
-v) that there were updates to XFree86 et.al.

I got home last night, and did a portupgrade -a. No problem.
Today at noon, cvsup (via cronjob) ran again.
I got home tonight and finally decided to install xmms. So I did a 
portinstall xmms and it installed fine.

Later on, I decided I wanted to install fwbuilder. portinstall 
fwbuilder started, then eventually bombed with the patch errors.

So I rm -rf /usr/ports, did cvsup again which sucked in a virgin ports 
tree again, then tried portinstall fwbuilder again. I'ts humming along 
nicely now.

I'll entertain the possiblity of disk errors, but I am not having any 
other noticeable issues, and I have just one big filesystem (/).

Is it possible portsdb -Uu is hosing things?
-Duane

- --
Do yourself a favor, don't use IE!
www.mozilla.org/products/firefox/
PGP is Preferable for Email, Public
key available off PGP Key Server.
GPG Key ID: 0x787AD6A9
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (FreeBSD)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iQCVAwUBQRq2Fgx4IHh4etapAQIBiAP/UPczhmA2vnigt8b1oxM9Ko1RubDeSp1/
774R3bLk5sA/Rob+Co+cYEK1leoffdCRTJTZ4nQXeRyT1dUEJfjTxwdcjkR4utAY
yt0t9paJgbQenRCcdYMVftYwRlFDXnS5u/ifxkNfjgOflTLuVImLVjJ852D0D5ad
mUAHLDeIbxM=
=wE69
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: what's wrong with my ports???

2004-08-11 Thread Michael C. Shultz
On Wednesday 11 August 2004 05:43 pm, Duane Winner wrote:
 Will wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
  Duane Winner wrote:
  | Hello all,
  |
  | This problem has been recurring on my laptop (5.2.1-RELEASE-p9) for the
  | past few weeks and I'm scratching my head.
  |
  | Very frequently, I'll go to portinstall something, and I'll get several
  | stop errors, and the build will fail.
  |
  | But if I do a rm -rf /usr/ports, then re-cvsup my ports collection, I
  | can successfully build whatever port I was trying at the time. However,
  | a few days later (or whatever), I'll try to build another port, and it
  | will start all over. I delete /usr/ports, cvsup again, then I'm fine.
  | This has happened several times over the past few weeks and the whole
  | manual cvsup'ing to refresh my entire /usr/ports every time is getting
  | old. (Although I've noticed I can sometimes get away with just deleting
  | the /usr/ports/... directory of the port I'm trying to build and
  | cvsup'ing again.)
  |
  | I'm keeping my ports current the same way on a workstation in at work,
  | and I've had no problems there, so I know it has to be something that's
  | wrong on my laptop.
  |
  | Here is the output of the latest port failure (fwbuilder):
  |
  | ===  Applying FreeBSD patches for net-snmp-5.1.2
  | 2 out of 4 hunks failed--saving rejects to
  | agent/mibgroup/ucd-snmp/diskio.c.rej
  |
  |   Patch patch-diskio.c failed to apply cleanly.
  |   Patch(es) patch-Makefile.in patch-aa patch-auto_nlist.c
  |
  | patch-configure.in applied cleanly.
  | *** Error code 1
  |
  | Stop in /usr/ports/net-mgmt/net-snmp.
  | *** Error code 1
  |
  | Stop in /usr/ports/security/libfwbuilder.
  | *** Error code 1
  |
  | Stop in /usr/ports/security/fwbuilder.
  | ** Command failed [exit code 1]: /usr/bin/script -qa
  | /tmp/portinstall79078.0 make
  | ** Fix the problem and try again.
  | ** Listing the failed packages (*:skipped / !:failed)
  | ! security/fwbuilder(patch error)
  | ---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
  |
  |
  | Thank for any feedback!
  |
  | -Duane
  |
  | ___
  | [EMAIL PROTECTED] mailing list
  | http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  | To unsubscribe, send any mail to
  | [EMAIL PROTECTED]
 
  I'm abit confused, just syncing your port tree via cvsup does'nt work?
  ie. things wont build after that, but after removing your entire ports
  tree they will? Are you sure it couldn'nt be a disc problem with the
  ports files being corrupted?

 Yeah, I'm confused too :), but that's what's going on. I have a cronjob
 that syncs my ports tree every day at noon. It does:

 /usr/local/bin/cvsup -L 2 /usr/sup/supfile
 /usr/local/sbin/portsdb -Uu
 /usr/sbin/pkg_version -v | grep needs

 My supfile is:

 *default host=cvsup11.us.freebsd.org
 *default base=/usr
 *default prefix=/usr
 *default release=cvs tag=RELENG_5_2
 *default use-rel-suffix compress

 src-all
 ports-all tag=.
 doc-all tag=.

 Additionally, I should mention that the problem isn't consistent.

 For instance, yesterday, the cronjob ran and I was notified (pkg_version
 -v) that there were updates to XFree86 et.al.

 I got home last night, and did a portupgrade -a. No problem.

 Today at noon, cvsup (via cronjob) ran again.

 I got home tonight and finally decided to install xmms. So I did a
 portinstall xmms and it installed fine.

 Later on, I decided I wanted to install fwbuilder. portinstall
 fwbuilder started, then eventually bombed with the patch errors.

 So I rm -rf /usr/ports, did cvsup again which sucked in a virgin ports
 tree again, then tried portinstall fwbuilder again. I'ts humming along
 nicely now.

 I'll entertain the possiblity of disk errors, but I am not having any
 other noticeable issues, and I have just one big filesystem (/).

 Is it possible portsdb -Uu is hosing things?

 -Duane


Duane, I wrote sysutils/portmanager because portupgrade doesn't always
do a good job at updateting ports, try it if you like it may just solve your 
problem

-Mike
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: what's wrong with my ports???

2004-08-11 Thread horio shoichi
On Wed, 11 Aug 2004 20:43:45 -0400
Duane Winner [EMAIL PROTECTED] wrote:
 Will wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  Duane Winner wrote:
  | Hello all,
  |
  | This problem has been recurring on my laptop (5.2.1-RELEASE-p9) for the
  | past few weeks and I'm scratching my head.
  |
  | Very frequently, I'll go to portinstall something, and I'll get several
  | stop errors, and the build will fail.
  |
  | But if I do a rm -rf /usr/ports, then re-cvsup my ports collection, I
  | can successfully build whatever port I was trying at the time. However,
  | a few days later (or whatever), I'll try to build another port, and it
  | will start all over. I delete /usr/ports, cvsup again, then I'm fine.
  | This has happened several times over the past few weeks and the whole
  | manual cvsup'ing to refresh my entire /usr/ports every time is getting
  | old. (Although I've noticed I can sometimes get away with just deleting
  | the /usr/ports/... directory of the port I'm trying to build and
  | cvsup'ing again.)
  |
  | I'm keeping my ports current the same way on a workstation in at work,
  | and I've had no problems there, so I know it has to be something that's
  | wrong on my laptop.
  |
  | Here is the output of the latest port failure (fwbuilder):
  |
  | ===  Applying FreeBSD patches for net-snmp-5.1.2
  | 2 out of 4 hunks failed--saving rejects to
  | agent/mibgroup/ucd-snmp/diskio.c.rej
  |   Patch patch-diskio.c failed to apply cleanly.
  |   Patch(es) patch-Makefile.in patch-aa patch-auto_nlist.c
  | patch-configure.in applied cleanly.
  | *** Error code 1
  |
  | Stop in /usr/ports/net-mgmt/net-snmp.
  | *** Error code 1
  |
  | Stop in /usr/ports/security/libfwbuilder.
  | *** Error code 1
  |
  | Stop in /usr/ports/security/fwbuilder.
  | ** Command failed [exit code 1]: /usr/bin/script -qa
  | /tmp/portinstall79078.0 make
  | ** Fix the problem and try again.
  | ** Listing the failed packages (*:skipped / !:failed)
  | ! security/fwbuilder(patch error)
  | ---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
  |
  |
  | Thank for any feedback!
  |
  | -Duane
  |
  | ___
  | [EMAIL PROTECTED] mailing list
  | http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  | To unsubscribe, send any mail to
  | [EMAIL PROTECTED]
  |
  |
  I'm abit confused, just syncing your port tree via cvsup does'nt work?
  ie. things wont build after that, but after removing your entire ports
  tree they will? Are you sure it couldn'nt be a disc problem with the
  ports files being corrupted?
 
 Yeah, I'm confused too :), but that's what's going on. I have a cronjob 
 that syncs my ports tree every day at noon. It does:
 
 /usr/local/bin/cvsup -L 2 /usr/sup/supfile
 /usr/local/sbin/portsdb -Uu
 /usr/sbin/pkg_version -v | grep needs
 
 My supfile is:
 
 *default host=cvsup11.us.freebsd.org
 *default base=/usr
 *default prefix=/usr
 *default release=cvs tag=RELENG_5_2
 *default use-rel-suffix compress
 
 src-all
 ports-all tag=.
 doc-all tag=.
 
 Additionally, I should mention that the problem isn't consistent.
 
 For instance, yesterday, the cronjob ran and I was notified (pkg_version 
 -v) that there were updates to XFree86 et.al.
 
 I got home last night, and did a portupgrade -a. No problem.
 
 Today at noon, cvsup (via cronjob) ran again.
 
 I got home tonight and finally decided to install xmms. So I did a 
 portinstall xmms and it installed fine.
 
 Later on, I decided I wanted to install fwbuilder. portinstall 
 fwbuilder started, then eventually bombed with the patch errors.
 
 So I rm -rf /usr/ports, did cvsup again which sucked in a virgin ports 
 tree again, then tried portinstall fwbuilder again. I'ts humming along 
 nicely now.
 
 I'll entertain the possiblity of disk errors, but I am not having any 
 other noticeable issues, and I have just one big filesystem (/).
 
 Is it possible portsdb -Uu is hosing things?
 
 -Duane
 
 
  
  - --
  Do yourself a favor, don't use IE!
  www.mozilla.org/products/firefox/
  
  PGP is Preferable for Email, Public
  key available off PGP Key Server.
  GPG Key ID: 0x787AD6A9
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v1.2.5 (FreeBSD)
  Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
  
  iQCVAwUBQRq2Fgx4IHh4etapAQIBiAP/UPczhmA2vnigt8b1oxM9Ko1RubDeSp1/
  774R3bLk5sA/Rob+Co+cYEK1leoffdCRTJTZ4nQXeRyT1dUEJfjTxwdcjkR4utAY
  yt0t9paJgbQenRCcdYMVftYwRlFDXnS5u/ifxkNfjgOflTLuVImLVjJ852D0D5ad
  mUAHLDeIbxM=
  =wE69
  -END PGP SIGNATURE-
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
  [EMAIL PROTECTED]
  
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

No sure if this is the 

Re: what's wrong with my ports???

2004-08-11 Thread Duane Winner

horio shoichi wrote:
On Wed, 11 Aug 2004 20:43:45 -0400
Duane Winner [EMAIL PROTECTED] wrote:
Will wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Duane Winner wrote:
| Hello all,
|
| This problem has been recurring on my laptop (5.2.1-RELEASE-p9) for the
| past few weeks and I'm scratching my head.
|
| Very frequently, I'll go to portinstall something, and I'll get several
| stop errors, and the build will fail.
|
| But if I do a rm -rf /usr/ports, then re-cvsup my ports collection, I
| can successfully build whatever port I was trying at the time. However,
| a few days later (or whatever), I'll try to build another port, and it
| will start all over. I delete /usr/ports, cvsup again, then I'm fine.
| This has happened several times over the past few weeks and the whole
| manual cvsup'ing to refresh my entire /usr/ports every time is getting
| old. (Although I've noticed I can sometimes get away with just deleting
| the /usr/ports/... directory of the port I'm trying to build and
| cvsup'ing again.)
|
| I'm keeping my ports current the same way on a workstation in at work,
| and I've had no problems there, so I know it has to be something that's
| wrong on my laptop.
|
| Here is the output of the latest port failure (fwbuilder):
|
| ===  Applying FreeBSD patches for net-snmp-5.1.2
| 2 out of 4 hunks failed--saving rejects to
| agent/mibgroup/ucd-snmp/diskio.c.rej
|   Patch patch-diskio.c failed to apply cleanly.
|   Patch(es) patch-Makefile.in patch-aa patch-auto_nlist.c
| patch-configure.in applied cleanly.
| *** Error code 1
|
| Stop in /usr/ports/net-mgmt/net-snmp.
| *** Error code 1
|
| Stop in /usr/ports/security/libfwbuilder.
| *** Error code 1
|
| Stop in /usr/ports/security/fwbuilder.
| ** Command failed [exit code 1]: /usr/bin/script -qa
| /tmp/portinstall79078.0 make
| ** Fix the problem and try again.
| ** Listing the failed packages (*:skipped / !:failed)
| ! security/fwbuilder(patch error)
| ---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
|
|
| Thank for any feedback!
|
| -Duane
|
| ___
| [EMAIL PROTECTED] mailing list
| http://lists.freebsd.org/mailman/listinfo/freebsd-questions
| To unsubscribe, send any mail to
| [EMAIL PROTECTED]
|
|
I'm abit confused, just syncing your port tree via cvsup does'nt work?
ie. things wont build after that, but after removing your entire ports
tree they will? Are you sure it couldn'nt be a disc problem with the
ports files being corrupted?
Yeah, I'm confused too :), but that's what's going on. I have a cronjob 
that syncs my ports tree every day at noon. It does:

/usr/local/bin/cvsup -L 2 /usr/sup/supfile
/usr/local/sbin/portsdb -Uu
/usr/sbin/pkg_version -v | grep needs
My supfile is:
*default host=cvsup11.us.freebsd.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=RELENG_5_2
*default use-rel-suffix compress
src-all
ports-all tag=.
doc-all tag=.
Additionally, I should mention that the problem isn't consistent.
For instance, yesterday, the cronjob ran and I was notified (pkg_version 
-v) that there were updates to XFree86 et.al.

I got home last night, and did a portupgrade -a. No problem.
Today at noon, cvsup (via cronjob) ran again.
I got home tonight and finally decided to install xmms. So I did a 
portinstall xmms and it installed fine.

Later on, I decided I wanted to install fwbuilder. portinstall 
fwbuilder started, then eventually bombed with the patch errors.

So I rm -rf /usr/ports, did cvsup again which sucked in a virgin ports 
tree again, then tried portinstall fwbuilder again. I'ts humming along 
nicely now.

I'll entertain the possiblity of disk errors, but I am not having any 
other noticeable issues, and I have just one big filesystem (/).

Is it possible portsdb -Uu is hosing things?
-Duane

- --
Do yourself a favor, don't use IE!
www.mozilla.org/products/firefox/
PGP is Preferable for Email, Public
key available off PGP Key Server.
GPG Key ID: 0x787AD6A9
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (FreeBSD)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iQCVAwUBQRq2Fgx4IHh4etapAQIBiAP/UPczhmA2vnigt8b1oxM9Ko1RubDeSp1/
774R3bLk5sA/Rob+Co+cYEK1leoffdCRTJTZ4nQXeRyT1dUEJfjTxwdcjkR4utAY
yt0t9paJgbQenRCcdYMVftYwRlFDXnS5u/ifxkNfjgOflTLuVImLVjJ852D0D5ad
mUAHLDeIbxM=
=wE69
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

No sure if this is the problem, but missing delete may be keeping
stale files sing aloud ?
If adding delete doesn't solve your problem, save the problem port(s)
somewhere before zapping /usr/ports, and compare before and after.
Ugh. That's probably 

What's wrong -- -Wconversion?

2003-01-10 Thread Mikhail Teterin
The following little file

#include netinet/in.h

uint16_t f(uint16_t in) {
return htons(in);
}

, when compiled with -Wconversion:

cc -Wconversion -c t.c

, gives the following mistery warning:

t.c: In function `f':
t.c:4: warning: passing arg 1 of `__bswap16' with different width due to 
prototype

The compiler is:
Using built-in specs.
Configured with: FreeBSD/i386 system compiler
Thread model: posix
gcc version 3.2.1 [FreeBSD] 20021119 (release)

Any clues? Thanks!

-mi



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



What's wrong (-Wconversion)?

2003-01-10 Thread Mikhail Teterin
The following little file

#include netinet/in.h

uint16_t f(uint16_t in) {
return htons(in);
}

, when compiled with -Wconversion:

cc -Wconversion -c t.c

, gives the following mistery warning:

t.c: In function `f':
t.c:4: warning: passing arg 1 of `__bswap16' with different width due to 
prototype

The compiler is:
Using built-in specs.
Configured with: FreeBSD/i386 system compiler
Thread model: posix
gcc version 3.2.1 [FreeBSD] 20021119 (release)

Any clues? Thanks!

-mi

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



RE: what's wrong with PAM ?

2002-10-13 Thread Andrew Knapp

I had a problem similar to this when I upgrade to 4.7. I fixed it by running 
mergemaster and overwriting the pam.conf file in /etc, as there were variations 
between the new file and the old file. Hope this helps.

-Andy

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
On Behalf Of Èëüÿ Øèïèöèí
Sent: Sunday, October 13, 2002 6:30 AM
To: [EMAIL PROTECTED]
Subject: what's wrong with PAM ?


Dear Sirs,

I used to use pam_kerberosIV, but after I upgraded to 4.7RC it stopped working. I 
tried to install security/pam_krb5, it's not working either!

Oct 13 16:27:48 apollo sshd[24967]: unable to dlopen(/usr/lib/pam_krb5) Oct 13 
16:27:48 apollo sshd[24967]: [dlerror: Cannot open /usr/lib/pam_krb5] Oct 13 
16:27:48 apollo sshd[24967]: adding faulty module: /usr/lib/pam_krb5


how can I get pam working again ???

Regards, (Наилучшие пожелания)
Ilia Chipitsine (Илья Шипицин)


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message