Re: Deprecating base system ftpd?

2021-04-14 Thread Andy Farkas



I think this is an excellent start. My shopping list includes:

- remove ftp(1)
- remove ftpd(8)
- remove telnet(1)
- remove telnetd(8)
- remove ftp:// and http:// from libfetch. This is 2021 and we should all
use https://.
- replace DNS lookups with DoH and/or DoT. Why let your ISP see your DNS
traffic?



I wonder how many people use YP/NIS (man 8 yp)?


It's a nifty concept; I played around with it last century...

I believe there is still an open PR in bugzilla I created (can't find it

right now, used a diffent email address back then, although same

username).


Removing it from base (if it should be done at all) looks very complicated

and therefore creating a port equally so.


I know this topic (removing ftpd) is closed, so perhaps this should be

a new one (removing YP/NIS)?  ie. no development on yp has been

done for over a decade.


My view: remove neither


-andyf


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


Re: assfail

2020-09-01 Thread Andy Farkas

On 1/09/2020 6:25 pm, Jamie Landeg-Jones wrote:

Don't google it!! 



Luckily I only use DuckDuckGo


-andyf


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


Re: assfail

2020-09-01 Thread Andy Farkas

On 1/09/2020 3:37 pm, Kurt Jaeger wrote:


Can you check smart values ?
smartctl -a /dev/ada0



No. Kernel does not boot so cannot get a sh prompt.


Just still wondering what 'assfail' could be.


Use the source, Luke!


-andyf


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


Re: assfail

2020-08-31 Thread Andy Farkas

On 1/09/2020 12:38 pm, Eugene Grosbein wrote:

You should describe your system: OS version and disk/file system setup, 



It says it right there: FBSD 10.3-RELEASE-p6

Boots from a Samsung SSD 840EVO.



because the screenshot shows ZFS-related assertion failure after GELI 
initialization,
so your setup seems to be non-trivial.



Setup is bog-standard. In what way could it be otherwise?



Perhaps, your system experienced unclean reboot before this problem?
Maybe you'll need to use "zpool import -F" or even
"zpool import -F -X" for "extreem rewind" (-X is not documented).



Pretty sure no unclean reboots.. although as I said, it's been giving me 
problems lately,


Will try 'zpool import -F'


Will let you know...


-andyf


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


assfail

2020-08-31 Thread Andy Farkas



My normally very reliable PC now panics in 'assfail+0x1d'


Any idea why (or what!) this is?


Imge of panic screen: https://imgur.com/1vRpkgW


-andyf


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


Re: vt [was: Re: [Bug 235564] INDEX.keymaps for vt contains "from-" keymaps but the files are missing]

2020-03-10 Thread Andy Farkas

On 2020-03-11 02:19, Ed Maste wrote:

So to confirm, your issue is with sc(4), not vt(4)? 



I don't actually have an issue with either. although:


"After booting, all colors can be changed using the
syscons.kattr sysctl."


% sysctl -a | grep syscons
hw.syscons.sc_no_suspend_vtswitch: 0
hw.syscons.kbd_debug: 1
hw.syscons.kbd_reboot: 1
hw.syscons.bell: 1
hw.syscons.saver.keybonly: 0

%


Also, both sc and vt are compiled into GENERIC.

Is it just a matter of putting "syscons=[sc|vt]" in loader.conf

to select whatever driver?


FreeBSD drunkfish.andyit.com.au 12.1-STABLE FreeBSD 12.1-STABLE #1 
r358253: Sun Feb 23 15:02:00 AEST 2020



-andyf


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


Re: vt [was: Re: [Bug 235564] INDEX.keymaps for vt contains "from-" keymaps but the files are missing]

2020-03-09 Thread Andy Farkas


On 2020-03-10 01:04, Konstantin Belousov wrote:

Take a look at r334530.



"or the user really hates this feature and can't wait to turn it off"



Excellently explained by Bruce as usual:


"Revision 314641 - (view) (download) (annotate) - [select for diffs]
Modified Sat Mar 4 06:19:12 2017 UTC (3 years ago) by bde
File length: 107771 byte(s)
Diff to previous 312910
Colorize syscons kernel console output according to a table indexed
by the CPU number.

This was originally for debugging near-deadlock conditions where
multiple CPUs either deadlock or scramble each other's output trying
to report the problem, but I found it interesting and sometimes
useful for ordinary kernel messages.  Ordinary kernel messages
shouldn't be interleaved, but if they are then the colorization
makes them readable even if the interleaving is for every character
(provided the CPU printing each message doesn't change).

The default colors are 8-15 starting at 15 (bright white on black)
for CPU 0 and repeating every 8 CPUs.  This works best with 8 CPUs.
Non-bright colors and nonzero background colors need special
configuration to avoid unreadable and ugly combinations so are not
configured by default.  The next bright color after 15 is 8 (bright
black = dark gray) is not very readable but is the only other color
used with 2 CPUs.  After that the next bright color is 9 (bright
blue) which is not much brighter than bright black, but is used with
3+ CPUs.  Other bright colors are brighter.

Colorization is configured by default so that it gets tested.  It can
only be turned off by configuring SC_KERNEL_CONS_ATTR to anything other
than FG_WHITE.  After booting, all colors can be changed using the
syscons.kattr sysctl.  This is a SYSCTL_OPAQUE, and no utility is
provided to change it (sysctl only displays it).

The default colors work in all VGA modes that I could test.  In 2-color
graphics modes, all 8 bright colors are displayed as bright white, so
the colorization has no effect, but anything with a nonzero background
gives white on white unless the foreground is zero.  I don't have an
mono or VGA grayscale hardware to test on.  Support for mono mode seems
to have never worked right in syscons (I think bright white gives white
underline with either bold or bright), but VGA grayscale should work
better than 2-color graphics."



RIP


https://photos.app.goo.gl/YiVmFtWiK8Niy3Fw6


-andyf


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


vt [was: Re: [Bug 235564] INDEX.keymaps for vt contains "from-" keymaps but the files are missing]

2020-03-08 Thread Andy Farkas

On 2020-03-09 04:15, bugzilla-nore...@freebsd.org wrote:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235564

--- Comment #8 from commit-h...@freebsd.org ---
A commit references this bug:

Author: emaste
Date: Sun Mar  8 18:14:45 UTC 2020
New revision: 358758
URL: https://svnweb.freebsd.org/changeset/base/358758

Log:
   MFC r355585: remove nonexistent from-* entries from vt INDEX.keymaps



Is anyone actually working on the vt(4) driver?  Will it ever

become feature-parity with the old sc(4) driver?


I've noticed some weird things happening on my console recently...

like psychedelicly-colour-coded kernel messages.. far out, man.


Just wondering,


-andyf


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


Re: my build time impact of clang 5.0

2017-10-02 Thread Andy Farkas

On 03/10/2017 06:18, Dan Mack wrote:


My scripts are pretty coarse grained so I only have timings at the macro
build steps so far (buildworld, buildkernel, installkernel, and
installworld)  I'm going to update them so I can a little more
granularity; should be easy to get timings wrapped around the big
sections, for example:

  >>> World build started on Mon Oct  2 07:49:56 CDT 2017
  >>> Rebuilding the temporary build tree
  >>> stage 1.1: legacy release compatibility shims
  >>> stage 1.2: bootstrap tools
  >>> stage 2.1: cleaning up the object tree
  >>> stage 2.2: rebuilding the object tree
  >>> stage 2.3: build tools
  >>> stage 3: cross tools
  >>> stage 3.1: recording compiler metadata
  >>> stage 4.1: building includes
  >>> stage 4.2: building libraries
  >>> stage 4.3: building everything
  >>> stage 5.1: building lib32 shim libraries
  >>> World build completed on Mon Oct  2 12:30:02 CDT 2017

Dan



Perhaps you could hack src/tools/tools/whereintheworld/whereintheworld.pl

-andyf

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


Re: Reproducible panic - Going nowhere without my init!

2016-10-06 Thread Andy Farkas
With your latest patch applied, I ran through my procedure more
than a dozen times and no panics!

Any explanation why sleep(STALL_TIMEOUT) as apposed to a
bunch of sleep(1)'s tickles the panic?

Also, it is definitely not sleeping for 30 seconds. I guess some
event interrupts the sleep loop?

Thanks heaps for your time and effort,

-andyf

%%%
Please try the following patch.

diff --git a/sbin/init/init.c b/sbin/init/init.c
index bda86b5..25ac2bd 100644
--- a/sbin/init/init.c
+++ b/sbin/init/init.c
@@ -870,6 +870,7 @@ single_user(void)
  sigset_t mask;
  const char *shell;
  char *argv[2];
+ struct timeval tv, tn;
 #ifdef SECURE
  struct ttyent *typ;
  struct passwd *pp;
@@ -884,8 +885,13 @@ single_user(void)
  if (Reboot) {
  /* Instead of going single user, let's reboot the machine */
  sync();
- reboot(howto);
- _exit(0);
+ if (reboot(howto) == -1) {
+ emergency("reboot(%#x) failed, %s", howto,
+strerror(errno));
+ _exit(1); /* panic and reboot */
+ }
+ warning("reboot(%#x) returned", howto);
+ _exit(0); /* panic as well */
  }

  shell = get_shell();
@@ -1002,7 +1008,14 @@ single_user(void)
  *  reboot(8) killed shell?
  */
  warning("single user shell terminated.");
- sleep(STALL_TIMEOUT);
+ gettimeofday(, NULL);
+ tn = tv;
+ tv.tv_sec += STALL_TIMEOUT;
+ while (tv.tv_sec > tn.tv_sec || (tv.tv_sec ==
+tn.tv_sec && tv.tv_usec > tn.tv_usec)) {
+ sleep(1);
+ gettimeofday(, NULL);
+ }
  _exit(0);
  } else {
  warning("single user shell terminated, restarting");
___
freebsd-stable@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Reproducible panic - Going nowhere without my init!

2016-10-06 Thread Andy Farkas
Reverted your patch then changed line 1011 of init.c to _exit(97):

--- init.c-orig 2016-10-05 18:52:24.02291 +1000
+++ init.c 2016-10-06 17:02:33.714624000 +1000
@@ -1008,7 +1008,7 @@
  */
  warning("single user shell terminated.");
  sleep(STALL_TIMEOUT);
- _exit(0);
+ _exit(97);
  } else {
  warning("single user shell terminated, restarting");
  return (state_func_t) single_user;

...and got a panic that showed "exit 97":  http://imgur.com/xonPwxR

I think that kern_reboot() is not being called somehow.
kern_reboot() is the only place rebooting = 1; is executed.

"init died (signal 0, exit 97)
panic: Going nowhere without my init!"

can only happen if rebooting = 0 in kern_exit.c exit1().

Another tell that kern_reboot() has not been called is "cpuid = 3"
because the first thing kern_reboot() does is bind to CPU 0.

Why is kern_reboot() being skipped? I have no idea.

Anything more I can do to help?  Do you want a core dump?

-andyf
___
freebsd-stable@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Reproducible panic - Going nowhere without my init!

2016-10-05 Thread Andy Farkas
On 05/10/2016 23:36, Konstantin Belousov wrote:

> Please try this variation, I want to see if the error code changed.

Afraid not. Still signal 0, exit 0.

Screenshot:  http://imgur.com/AU6weU0

-andyf
___
freebsd-stable@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Reproducible panic - Going nowhere without my init!

2016-10-05 Thread Andy Farkas
On 05/10/2016 18:43, Konstantin Belousov wrote:

> Apply the following patch.  I am interested if anything additional appear
> on the console.  Screenshot is good enough.

Patch applied. Panic (easlily!) reproduced. No additional output.

Screenshot:  http://imgur.com/KOOBysH

I guess init is dying before it gets there.

-andyf
___
freebsd-stable@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Reproducible panic - Going nowhere without my init!

2016-10-03 Thread Andy Farkas
Is it just me or

Step 1: boot
Step 2: login as root
Step 3: type "w" *
Step 4: type "shutdown now; logout"
Step 5: press  at the 'Enter full pathname of shell or RETURN for
/bin/sh:' prompt
Step 6: type "reboot"
Step 7: get a Panic: "Going nowhere without my init!"

* The panic will not happen if you skip step 3.

The panic will not happen if you type "sync; sync; sync" after step 5.

The panic will not happen if you wait (an unknown amount of) some time
after step 5.

# uname -a
FreeBSD deepthink 11.0-PRERELEASE FreeBSD 11.0-PRERELEASE #6 r306656: Tue
Oct  4 09:03:05 AEST 2016 root@deepthink:/usr/obj/usr/src/sys/GENERIC  amd64

-andyf

ps. apologies, forced to send from a gmail account.
reply-to: an...@andyit.com.au
___
freebsd-stable@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Jenkins build is still unstable: FreeBSD_stable_10 #208

2016-04-10 Thread Andy Farkas

On 11/04/2016 06:28, jenkins-ad...@freebsd.org wrote:

See 




Anybody?

-andyf

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


Re: Poll: FreeBSD userbase in 2016

2016-02-26 Thread Andy Farkas

On 27/02/2016 13:09, Lucius Rizzo wrote:

I am wondering who else (these days) uses FreeBSD commercially and/or any major 
names to understand current userbase. Is there any data on this?



The FreeBSD web site (https://www.freebsd.org/) has a link on
the home page:

"... the platform of choice for many of the busiest web sites ..."

Try clicking on it.

-andyf

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


Re: Why are cardbus drivers cbb(4) and pccard(4) still included in GENERIC?

2013-08-29 Thread Andy Farkas

There's still plenty of laptops that would be crippled if these were removed.



Indeed:

dc0: Abocom FE2500 10/100BaseTX port 0x1000-0x10ff mem 
0x8800-0x880003ff irq 11 at device 0.0 on cardbus1


-andyf

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


FreeBSD history

2013-06-16 Thread Andy Farkas

On 16/06/13 20:30, Jeremy Chadwick wrote:
 * Output from: strings /boot/kernel/kernel | egrep ^option Thanks.

I stumbled across this one about a week ago:

 strings /boot/kernel/kernel | head -1

and was wondering about the history of where it came from / what it means.

I can see it was added to Makefile.i386 in September 1998 but the commit 
comment mentions the defunct alpha port and searching SVN for things in 
the Attic is a PITA.


Also, according to 
http://svnweb.freebsd.org/base?view=revisionrevision=1 FreeBSD is 20 
years old!


Is not a celebration / announcement warranted?

-andyf

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


SVN seeds [was: FreeBSD 9.1-RC1 Available...]

2012-08-23 Thread Andy Farkas

On 24/08/12 08:14, Peter Wemm wrote:

Back when I did the first mirror for making a seed, ...


If you have a complete CVS mirror repo (I'm using cvsup-mirror from ports),
can you make your own seeds using cvs2svn to create local read-only SVN
repos, then begin using svnsync from the master/mirror SVN servers?

I'm looking to avoid downloading what I believe will be large seed files.

I guess you'd need to convert src, ports, docs, www as different SVN repos?

Are there any docs on how it was done for FreeBSD?

-andyf

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


Re: csup not updating all files

2011-02-09 Thread Andy Farkas
On Wed, Feb 9, 2011 at 7:31 AM, John Baldwin j...@freebsd.org wrote:

 On Tuesday, February 08, 2011 2:39:49 pm Richard Kuhns wrote:

 Sorry to followup on my own post, but I figured out what was going on. It
 appears to be a problem with csup.

 I've been using csup to maintain 2 CVS Repositories, one at home and one at 
 work.

 The last couple of times I've run csup there were lots of 'checksum 
 mismatches',
 so csup said it would download the entire file. I was watching it this 
 morning

 Hmm, I noticed this recently as well, but wasn't sure if anyone else had seen
 this.

The 'checksum mismatches' are especially annoying when a new tag is applied
to the tree. Practically the entire src repo is downloaded again :(

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


Re: FreeBSD 7 installs where FreeBSD 8 wont due to CD

2010-12-08 Thread Andy Farkas
On Wed, Dec 8, 2010 at 7:17 PM, Bruce Cran br...@cran.org.uk wrote:
 On Wed, 08 Dec 2010 01:00:34 -0800
 per...@pluto.rain.com wrote:

 Go into Fixit# and examine /dev and/or the dmesg.

 The problem is there's no ls in FixIt mode so you need to use
 echo * to see what files are present.

Why is this so?

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


Re: FreeBSD 7 installs where FreeBSD 8 wont due to CD

2010-12-08 Thread Andy Farkas
 So since ls wasn't required it wasn't included.

I just booted an old 6.1-RELEASE CD and selected Fixit mode...

ls -lF works as expected!

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


Re: MFC of Large set of CAM improvements breaks I/O to Adaptec 29160 SCSI controller

2010-05-01 Thread Andy Farkas
On Fri, Apr 30, 2010 at 4:42 AM, Pete French
petefre...@ticketswitch.com wrote:

 I've copied in the original poster of the problem to see how he is
 doing, but as far as I am concerned the problem has gone away. Certainly
 the things I was doing before to triger it no longer do so. Of course
 in the normal state of things it was rarely locking up (every few days)
 so I can't be sure just on a few hurs testing. But my initial impression
 is that this fixes it. Good work!


Confirming patch fixes problem. Thanks Alexander, good pick-up on finding
the missing bit of code!

bootverbose  --  /me smacks forehead with palm of hand

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


MFC of Large set of CAM improvements breaks I/O to Adaptec 29160 SCSI controller

2010-04-27 Thread Andy Farkas
Hi, firstly:

RELENG_8 csup'd with date=2010.02.14.00.00 works perfectly for days.

RELENG_8 csup'd with date=2010.02.15.00.00 dead-locks the disk I/O
subsystem. Network still operational but anything needing disk hangs.
Power-cycle required.

kernel config is GENERIC with KDB, DDB and BREAK_TO_DEBUGGER options added.

hardware:
ahc0: Adaptec 29160 Ultra160 SCSI adapter port 0x4000-0x40ff mem
0xefa0-0xefa00fff irq 16 at device 0.0 on pci10
ahc0: [ITHREAD]
aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs

da0: SEAGATE ST3146707LW 0005 Fixed Direct Access SCSI-3 device
da1: SEAGATE ST3146707LW 0005 Fixed Direct Access SCSI-3 device


The dead-lock can happen at any time, but I can provoke it by running
a bonnie++ disk test. It happens doing rm -rf /usr/obj/usr and it has
happened doing a make installworld. It can survive a make buildworld
(the system runs normally until it decides to dead-lock).

The box (HP ProLiant ML 110) has 2 scsi disks and 4 sata disks. The
2010.02.15 kernel will run perfectly for days on the SATA disks. *Only*
when the scsi disks are accessed will the system dead-lock. Note that
the SATA disks do not work either if the system has dead-locked.

I can provide more details and a vmcore.0 if anyone is interested.

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


more mouse madness

2003-06-02 Thread Andy Farkas

I'm trying to figure out why my usb mouse won't work.

This is what happens when i enable debug mode for moused to see whats
happening:

Script started on Mon Jun  2 16:33:28 2003
hunter# moused -df -p /dev/ums0
moused: proto params: f8 80 00 00 8 00 ff
moused: port: /dev/ums0  interface: usb  type: sysmouse  model: generic
moused: received char 0x83
moused: received char 0x1e
moused: received char 0x11
moused: received char 0x1f
moused: received char 0x12
moused: received char 0x0
moused: received char 0x0
moused: received char 0x7f
moused: assembled full packet (len 8) 83,1e,11,1f,12,0,0,7f
moused: tv:  1054535623 900676
moused:   :  1054535624 257152
moused: flags:8001 buttons:0001 obuttons:
moused: activity : buttons 0x0001  dx 61  dy -35  dz 0
 [10 second pause]
moused: mstate[0]-count:1
moused: button 1  count 1
moused: received char 0x83
moused: received char 0x11
moused: received char 0x8
moused: received char 0x11
moused: received char 0x8
moused: received char 0x0
moused: received char 0x0
moused: received char 0x7f
moused: assembled full packet (len 8) 83,11,8,11,8,0,0,7f
moused: tv:  1054535637 517247
moused: flags:8000 buttons:0001 obuttons:0001
moused: activity : buttons 0x0001  dx 34  dy -16  dz 0
 [2 minute pause]
^C
hunter# exit
Script done on Mon Jun  2 16:35:39 2003

In other words, nothing happens :(

I was watching systat -v in another window and interrupts were being
generated on uhci0.

Here are relevent parts of dmesg:

FreeBSD 4.8-RELEASE #1: Sat Apr  5 19:49:58 EST 2003
...
CPU: Intel Celeron (664.51-MHz 686-class CPU)
  Origin = GenuineIntel  Id = 0x686  Stepping = 6
  
Features=0x383f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE
real memory  = 335282176 (327424K bytes)
avail memory = 322170880 (314620K bytes)
...
uhci0: Intel 82801BA/BAM (ICH2) USB controller USB-A port 0xef40-0xef5f irq 11 at 
device 31.2 on pci0
uhci0: LegSup = 0x2f00
usb0: Intel 82801BA/BAM (ICH2) USB controller USB-A on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
ums0: Microsoft Microsoft Wireless Intellimouse Explorer\M-. 1.0A, rev 1.10/0.0d, addr 
2, iclass 3/1
ums0: 5 buttons and Z dir.
pci0: unknown card (vendor=0x8086, dev=0x2443) at 31.3 irq 10
uhci1: Intel 82801BA/BAM (ICH2) USB controller USB-B port 0xef80-0xef9f irq 9 at 
device 31.4 on pci0
uhci1: LegSup = 0x2f00
usb1: Intel 82801BA/BAM (ICH2) USB controller USB-B on uhci1
usb1: USB revision 1.0
uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
...

This is a genuine Intel D815EEA motherboard. I can provide full dmesg if
needed. Anyone have a clue as to where to start looking for problems?

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/



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


Re: fsck problem

2003-02-24 Thread Andy Farkas
On Mon, 24 Feb 2003, Jaime wrote:

   As I type, the server is in single user mode.  The fsck commands
 result in:
 CAN NOT READ: BLK 16


vinum is not started.

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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


Re: buildworld problem

2002-08-08 Thread Andy Farkas


Oops, I forgot to mention that this is freshly cvsup'd (src-all) RELENG_4_6
on a freshly installed RELENG_4_6_0_RELEASE (bin only) system disk.

I think not installing -crypto distribution has something to do with it...


On Fri, 9 Aug 2002, Andy Farkas wrote:

 Date: Fri, 9 Aug 2002 11:03:44 +1000 (EST)
 From: Andy Farkas [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Cc: skeetz [EMAIL PROTECTED], Ruslan Ermilov [EMAIL PROTECTED]
 Subject: buildworld problem


 Something is wrong with 'make buildworld':

 === secure/usr.bin/scp
 cc -O -pipe  -I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO_IDEA-c 
/usr/src/secure/usr.bin/scp/../../../crypto/openssh/scp.ccc -O -pipe  
-I/usr/src/secure/usr.bin/scp/../../../crypto/openssh -DNO_IDEA -o scp scp.o  
-lssh
 /usr/obj/usr/src/i386/usr/libexec/elf/ld: warning: libcrypto.so.2, needed by 
/usr/obj/usr/src/i386/usr/lib/libssh.so, not found (try using -rpath or -rpath-link)
 /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_DigestInit'
 /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_enc_null'
 ...
 /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to `EVP_bf_cbc'
 /usr/obj/usr/src/i386/usr/lib/libssh.so: undefined reference to 
`EVP_get_digestbyname'
 *** Error code 1

 Stop in /usr/src/secure/usr.bin/scp.
 *** Error code 1
 ...


 Looks like buildworld is depending on an unbuilt library??

 I've seen this reported on -stable three times now...


--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: Tar broken for large files?

2002-05-16 Thread Andy Farkas

 Obviousls, tar is not copying things correctly. Is this a known bug?
 # tar --version
 GNU tar version 1.11.2

Our tar is broken for files  2g :(

Install gtar from ports.

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: linksys nic

2002-05-16 Thread Andy Farkas

On Wed, 15 May 2002, Mike Grissom wrote:

 May 14 08:52:06 mission /kernel: dc0: TX underrun -- using store and forward mode

man 4 dc

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: Tar broken for large files?

2002-05-16 Thread Andy Farkas

On Thu, 16 May 2002, Jack L. Stone wrote:

 I've incurred aborted backups with tar (+ gzip) lately too. What is
 superior about gtar...???

it works with 2g files :)

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: Tar broken for large files?

2002-05-16 Thread Andy Farkas

On Thu, 16 May 2002, Tod McQuillin wrote:

 As it turns out, FreeBSD's tar is in fact GNU tar, albeit an older
 version.

 % tar --version
 GNU tar version 1.11.2

Its a *very* hacked-at version of GNU tar 1.11.2.

It should be hacked at some more to teach it about 2g file sizes.

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: *** HEAD'S UP ***

2002-04-20 Thread Andy Farkas

On Sat, 20 Apr 2002 [EMAIL PROTECTED] wrote:

 In short, I strongly disagree with explicitly include your choices
 for anything that you care about, whether they are the defaults or not.

I strongly disagree with your disagreement :)

To me, it makes more sense explicitly include choices for anything you
care about, whether they are defaults or not.

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: checkout-date in kernel name

2002-04-20 Thread Andy Farkas

On Sat, 20 Apr 2002, Thomas Krause, CI wrote:

 Hello,

 I want to have the checkout date in the kernel name, e.g.

 # uname -sr
 FreeBSD 4.5-STABLE-20020418

 instead of

 # uname -sr
 FreeBSD 4.5-STABLE

 I've done this by patching /sys/conf/newvers.sh. Is there an easier way to
 do this?

 Kind regards,
 Thomas.

No. That's the easiest way. Only one command!

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: /etc/defaults/rc.conf theory

2002-04-20 Thread Andy Farkas

On Sat, 20 Apr 2002, Doug Barton wrote:

 ... so the one left to discuss
 is inetd. At this point changing the default back seems to be the most
 reasonable course of action, even though everything in /etc/inetd.conf is
 off by default.

There is nothing to discuss. Leave everything off in /etc/inetd.conf and
leave inetd_enable=NO in /etc/defaults/rc.conf. Please.

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: smmsp user

2002-04-17 Thread Andy Farkas

On Wed, 17 Apr 2002, Gregory Neil Shapiro wrote:

 mike After my last cvsup, installworld failed with a no such user (smmsp)
 mike error.  I thought I'd grabbed something in a half-done state, so cvsuped
 mike again and got the same thing.  I then added a smmsp user/group and the
 mike install worked fine.  While running mergemaster, I notice:

 Read /usr/src/UPDATING


It would be A Good Thing(tm) if this were fixed (ie. installworld not
barfing). Otherwise, I predict that this will rise to FAQ #1.

--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



mergemaster

2001-09-05 Thread Andy Farkas


Is there a bug in recent mergemaster(8) that has a problem with diffing
a sendmail.cf file in the /usr/obj tree?

The last file mergemaster prompts me about (when I do a 'mergemaster -sv')
looks like this:

  *** Displaying differences between
./usr/obj/usr/src/etc/sendmail/freebsd.cf and installed version:

--- /usr/obj/usr/src/etc/sendmail/freebsd.cfWed Sep  5 21:05:13 2001
+++ ./usr/obj/usr/src/etc/sendmail/freebsd.cf   Wed Sep  5 21:37:44 2001
@@ -17,7 +17,7 @@
 #
 #  SENDMAIL CONFIGURATION FILE
 #
-# built by [EMAIL PROTECTED] on Wed Sep 5 21:05:13 EST 2001
+# built by [EMAIL PROTECTED] on Wed Sep 5 21:37:44 EST 2001
 # in /usr/src/etc/sendmail
 # using /usr/src/etc/sendmail/../../contrib/sendmail/cf/ as configuration include 
directory
 #

  Use 'd' to delete the temporary ./usr/obj/usr/src/etc/sendmail/freebsd.cf
  Use 'i' to install the temporary ./usr/obj/usr/src/etc/sendmail/freebsd.cf
  Use 'm' to merge the temporary and installed versions
  Use 'v' to view the diff results again

  Default is to leave the temporary file to deal with by hand

How should I deal with this? [Leave it for later]


--

 :{ [EMAIL PROTECTED]

Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/




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



Re: Build failure. :(

2001-04-06 Thread Andy Farkas

Yep, same thing here.  Upgrading to 4.2-RELEASE works.

Warner, here's a suggested change to UPDATING:

 diff -u UPDATING.orig UPDATING
--- UPDATING.orig   Sat Apr  7 13:44:06 2001
+++ UPDATINGSat Apr  7 13:47:00 2001
@@ -176,8 +176,8 @@

Except when it doesn't work :-)

-   To update from 3.x to 4.x stable
-   
+   To update from 3.x to 4.2-RELEASE
+   -
***
READ -STABLE ARCHIVES FOR THE LAST WEEK OR TWO BEFORE
STARTING THIS PROCESS.  UPDATING MAY LAG BEHIND A LITTLE
@@ -214,7 +214,7 @@
and then do a make buildworld + make installworld after you
are back to multi-user above:
MAKE_KERBEROS4
-   [3] Update to 4.x-stable sources.  Make sure that you get all
+   [3] Update to 4.2-RELEASE sources.  Make sure that you get all
the parts.  If you are using cvsup files that are older than a
couple of months, be sure they have all the components listed
in /usr/share/examples/cvsup.  Crypto and secure are now


On Fri, 6 Apr 2001, Mike Ruhl wrote:

 Howdy,

 I am attempting to upgrade a 3.5.1 box to the lastest 4.2 (.3RC?)
 stable release.  I am getting the following compile error.

 Any thoughts?

 Thanks!

 Mike


 c++ -I/usr/obj/usr/src/i386/usr/include/g++ -O -pipe
 -I/usr/obj/usr/src/i386/usr/include
 -I/usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/lib
 -I/usr/src/gnu/usr.bin/gperf -c
 /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc
 /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc:80:
 warning: `catch', `throw', and `try' are all C++ reserved words
 /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc: In
 function `void operator delete(void *)':
 /usr/src/gnu/usr.bin/gperf/../../../contrib/gperf/src/new.cc:82:
 declaration of `operator delete(void *)' throws different
 exceptions...
 internal:82: ...from previous declaration here
 *** Error code 1

 Stop.
 *** Error code 1

 Stop.
 *** Error code 1

 Stop.
 *** Error code 1

 Stop.


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



Re: user ppp broken?

2000-08-29 Thread Andy Farkas


Yes, this just bit me - after doing a remote upgrade, the system dials
back in, but no default route is set!

On Tue, 29 Aug 2000, Rasputin wrote:

 As of a cvsup last Friday?
 
 (FreeBSD-4.X-STABLE)
 
 It seems the syntax of the config file has changed? i.e. 'enable dns'
 isn't recognized as a command in the 'default' section. And the
 default route is not being added automatically, which breaks
 autodialling with tun0..
 
 Although it does work if I run it manually, '-auto' seems b0rken
 
 Just wondered if anybody else had seen this?
 
 Rasputin
 Jack of All Trades - Master of Nuns.
 

--
 
 :{ [EMAIL PROTECTED]
  
Andy Farkas
System Administrator
   Speednet Communications
 http://www.speednet.com.au/
  




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