Active Directory server on 6-STABLE ?

2007-04-25 Thread Pat Lashley

I'm looking for a good way to provide a single authentication/authorization
database for multiple applications in an environment consisting of a FreeBSD
server and a collection of primarily Windows (XP) clients.  We do NOT want
to use the old Windows Domain protocols; and it doesn't look easy to make
Windows work with anything that isn't a Microsoft work-alike.

Active Directory looks like a good choice; since it should be easy to access
the database from just about any app that supports LDAP authentication.  But
so far, I haven't found an implementation of an AD-compatible server that will
run on FreeBSD.  (This could, in part, reflect my lack of Windows experience...)

It looks like Samba4 is far enough along to provide the necessary functionality;
but it doesn't build and run on FreeBSD; and I don't currently have the time
available to do the porting work.

So, have I completely missed some other solution?  Does someone have Samba4
running on FreeBSD 6-STABLE?  Do any of you have any other useful (on-topic)
advice for me?



Thanks,
-Pat 
___

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


Re: find -exec surprisingly slow

2004-08-16 Thread Pat Lashley
--On Monday, August 16, 2004 21:37:13 +0930 Paul A. Hoadley [EMAIL PROTECTED] 
wrote:
On Sun, Aug 15, 2004 at 02:22:02PM -0700, Pat Lashley wrote:
Just FYI, Exim, with the ExiScan patches, can reject at SMTP time;
and also has a 'fakereject' capability which tells the sender that
the message has been rejected; but actually delivers it.
Thanks for the info.  I have been thinking of changing MTAs for a
while.
I've been using Exim for years now, and in several widly varying
installations.  I can heartily recommend it as solid, flexable,
and capable.  And the config file is actually pretty easy to read
even in complex or highly customized configurations.  (Unlike a
certain ancient but still inexplicably popular MTA...)  The FreeBSD
port automatically includes the semi-official ExiScan patchest
which adds the ability to do SpamAssassin and anti-virus scanning
while the SMTP connection is still open.
The Exim mailing list has a pretty high signal-to-noise ratio;
and the folks on it tend to be friendly and helpful.  And there's
very good on-line documentation at http://www.exim.org/

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


Re: find -exec surprisingly slow

2004-08-15 Thread Pat Lashley
--On Sunday, August 15, 2004 12:30:01 +0930 Paul A. Hoadley [EMAIL PROTECTED] 
wrote:
Good question---without context, my claim that I can do nothing else
seems wrong.  What I should have said is given I have an interest in
collecting all the spams to non-existent addresses, I don't think I
can make qmail do anything other than deliver it to the new/ subdir of
a Maildir.
Could you create a user to get them; and give that user a procmail
(or similar) delivery-time script to file them into subdirs based
on some arbitrary characteristic?

IMHO, these messages should be _rejected_ at the SMTP session, though
(AFAICS) qmail won't do this (without being patched).  (I am sure I
once read a security justification for this behaviour, though I
can't seem to find any justification for it at all now.  I am willing
to be convinced otherwise, but IMHO, accepting these messages is bogus
behaviour.)  Anyway, I was about to embark on tracking down a patch to
do SMTP-level rejection, when I decided I would just funnel them into
a Maildir and use them later to train Bogofilter, or whatever.
Just FYI, Exim, with the ExiScan patches, can reject at SMTP time;
and also has a 'fakereject' capability which tells the sender that
the message has been rejected; but actually delivers it.

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


Re: make issues on freebsd

2004-08-11 Thread Pat Lashley
--On Wednesday, August 11, 2004 17:19:52 -0700 Mohammed Shaikh (Satyam Computer Services) 
[EMAIL PROTECTED] wrote:
I have a program that can be compiled with no problems on SuSe Linux but
when I try it on freebsd it gives plethora of errors. I have just copied
the whole directory tree from SuSe Linux machine onto freebsd machine.
Can Anyone PLEASE help as I have to submit the compiled stuff on freebsd
It is probably using make constructs that are specific to GNU make.
If you haven't already done so, install the devel/gmake port and try
using 'gmake' instead of 'make'.

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


Re: IPFW/NATD Transparent Proxy

2004-08-08 Thread Pat Lashley
--On Sunday, August 08, 2004 18:43:21 -0400 [EMAIL PROTECTED] wrote:
No, I want a user on 192.168.1.247 to be redirected to 192.168.2.250:80 when
they request 1.2.3.4:80, where 1.2.3.4 is a PUBLIC ip number on the FreeBSD
internet gateway.  Again, the configuration is
de0 = PUBLIC IP = 1.2.3.4
de1 = 192.168.1.1
de2 = 192.168.2.1
I don't have a problem with incoming requests for 1.2.3.4:80 from the Internet
being redirected to 192.168.2.250.  That works fine.  But I want someone on
192.168.1.247 to ALSO be redirected to 192.168.2.250:80 when they request the
public address 1.2.3.4:80.
Put another way, I have a FreeBSD server acting as a Router/Firewall.  It has
a public interface with an IP number of 1.2.3.4 and is assigned the DNS name
www.ishouldhaveusedipfilter.com.  It also has a second NIC that supports a
private address space of 192.168.1.0/255.255.255.0 and a third NIC that
supports a private address space of 192.168.2.0/255.255.255.0
When someone from the Internet tries to reach www.ishouldhaveusedipfilter.com
they get redirected to 192.168.2.250 because I've included a redirect_port
rule for NATD.  This works fine.  But, users on all private networks (I have
two, but there could be 20) also need to be redirected to 192.168.2.250 when
they try to go to www.ishouldhaveusedipfilter.com   So the user sitting at
192.168.1.247 shouldn't have to worry about putting in the IP number of the
company web server, they should just be able to put in the company domain
name (www.ishouldhaveusedipfilter.com) and be redirected to 192.168.2.250
just like anyone coming from the outside.
It seems to me that the best way to handle this is through DNS.  Hosts
within your LAN should find www.ishouldhaveusedipfilter.com to 192.168.2.250
instead of 1.2.3.4.
Typically, you would have an externally visible DNS server which is authorititave
for your domain; and which lists only the publicly visible machines and IP addresses.
(It should -NOT- handle referrals at all.)  Somewhere within your LAN you would have
another DNS server that is authoritative for your internal domain and IP range.  It
may handle referrals; but it is safer to have a completely separate DNS server which
just handles referrals (and possibly caches results) - it should be explicitly told
to use your LAN's authoritative server for your domain and IP range.
With this setup, outside machines see the public address, which is redirected
via your firewall/NAT rules; but internal machines see the internal address and
access it directly.
-Pat
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mozilla: changing IP w/o restarting

2004-01-19 Thread Pat Lashley
--On Monday, January 19, 2004 23:05:02 -0500 Jesse Sheidlower [EMAIL PROTECTED] wrote:

I use Mozilla on my 4.8 laptop. Whenever I switch IP addresses,
which is frequent, as I use my computer both in the office and
at home (and on trips, etc.), Mozilla becomes unable to
resolve any sites it hasn't previously hit. I just get an
endless, Resolving host www.nytimes.com note in the corner.
The only way around this is to quit and restart the browser.
Frankly, this is a pain in the ass, as I usually have six
or more tabs open at once, each containing something I need,
and I don't want to re-open everything every time I move the
computer.
Is there any way around this? I didn't see anything obvious
in the Mozilla docs.
Well, one work-around would be to switch from Mozilla to Galeon
and use its session capabilities to automatically re-open all
of the browser windows.  (My primary desktop usually has over
100 tabs distributed across 45 to 50 galeon windows, spread
over 5 of my 20 workspaces.  Without sessions, I think the
occasional crash would send me into a homicidal frenzy...)
You could also try setting up something like djbdns's dnscache
server on the laptop and then set resolv.conf to use 127.0.0.1.
This may not help though - I seem to recall reading that Mozilla
tries to improve DNS performance by doing it itself instead of
trusting the system...  (Actually, I think it was a complaint
about Netscape; but if it does it at all, it's probably in the
shared code.)


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


Re: Any (easy)way to copy contents of a file into X clipboard?

2003-12-26 Thread Pat Lashley
--On Sunday, December 21, 2003 20:50:22 -0500 Scott W [EMAIL PROTECTED] wrote:

Hey all..was wondering if anyone knew of a utlity to copy the contents
of a text file into an X clipboard buffer?
It's possible via the use of xmessage or any other X editor that allows
you to select all text, but something command line only would be useful...
I'm sure something exists somewhere, but I'm not having any luck as of
yet...anyone?
Have you tried /usr/ports/x11/xclip ?



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


Re: Amanda or Bacula

2003-10-14 Thread Pat Lashley
--On Tuesday, October 14, 2003 10:07:18 -0700 Rick Duvall 
[EMAIL PROTECTED] wrote:

I have about 200 gigs of data to back up every night on multiple machines
on the network.  All are either FreeBSD or Linux based.  My backup
machine is FreeBSD.  I have about 30 gigs of dump drive space, and a 20
gig tape drive. I am pretty much convinced that even if I use
compression, I will need to span across multiple tapes or get a bigger
tape drive.  At the very least I may have to get more dump drive and do
incremental backups.  At any rate, I am having a hard time deciding
between Amanda and Bacula.  Amanda has been around forever and is known
to work, but to the best of my knowledge doesn't span across multiple
tapes.  Bacula, on the other hand, does span across multiple tapes, but
it hasn't been out as long.
With AMANDA, each filesystem's dump must fit on a single tape; but it
can use multiple tapes in a single dump run.
I've been using AMANDA for several years now; and one of the things
that I like about it is that you tell it how many tapes you have and
how long a dump cycle you want; and it decides when to run full or
incremental dumps for each partition; and the level of increment on
the incrementals.  It is easy to set it up to ensure that there are
at least two full dumps on tape at any given time; even if you have
a very limited number of tapes.
I now have a couple of disks that are too large to fit a full dump
onto a single tape; so I've been looking into other backup systems.
Bacula seems to be the top contender because it appears to be able
to span a single partition's dump across multiple tapes.  But it
uses the classic 'full dump every X, incremental every Y, differential
every Z' scheduling mechanism.  Which means that I'd need to split
my tapes into a set for full dumps and another for incremental or
differential dumps.  And worry about exactly how many tapes I need
in each.  And which set I have loaded into the limited-capacity
auto-changer.  (AMANDA uses the tapes in sequence; so I just swap
the 7-tape carrier for the next one when it complains that it can't
find the one it wants.)
So I'm stuck trying to choose between a system with a real good
scheduling algorythm; but unable to backup large partitions; and
a system that can handle large partitions; but uses a scheduling
scheme that may require me to spend hundreds of dollars for more
tapes...


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


Re: Amanda or Bacula

2003-10-14 Thread Pat Lashley
--On Tuesday, October 14, 2003 10:55:32 -0700 Rick Duvall 
[EMAIL PROTECTED] wrote:

So to clarify just so that I understand correctly:

1.  Each filesystem per system to be backed up qualifies as a dumpfile.
2.  Multiple dumpfiles per backup
3.  Multiple tapes per backup, as long as 1 dumpfile isn't larger than the
tape.
One of my systems has a 120 gig drive with about 36gigs (and growing) of
people's images, documents, etc on it (samba server).  My single tape
drive is only 20 gigs.  I am assuming this will be a problem for Amanda
unless I get a bigger tape drive.
The AMANDA docs suggest handling this situation by splitting the
partition up into multiple tar dumps; each of which will fit on
the tape.  (I'm currently in the process of tweaking my configs
to try this for one of my partitions.)


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


Re: Jail FS questions. (Columbus ref)

2003-10-09 Thread Pat Lashley
--On Thursday, October 09, 2003 22:55:26 -0300 Marc G. Fournier 
[EMAIL PROTECTED] wrote:

You know, its this attitude that would have kept Christopher Columbus in
Europe ... all the big scary warnings said that the world was flat back
then, no?
No, not at all.  Because by the time of Columbus, every educated
European knew that the Earth was spherical.  Hell, the ancient
Greeks and Romans knew that.  (Anybody who's ever stood on the
shore and watched a ship sail over the horizon should be able
to figure out the most likely reason why it disappears from the
bottom up; and why you can see it for longer from a higher vantage
point.)
Where Columbus differed from his contemporaries was in the estimates
of the size of the sphere and of the land distance between Europe
and Asia.  The commonly accepted estimates were fairly accurate.
Columbus grossly under estimated the size of the earth and over-
estimated the land distance between Europe and Asia.  Which is why
he thought that the East Indies were part of India - they were about
the right distance west of Europe, according to his badly flawed
estimates.
There is also strong reason to believe that he -knew- that there
was a land mass between Europe and Asia.  Why else would he take
the longer southern route against the currents of the Gulf Stream
instead of the more northerly route that would have shortened the
distance and time travelled out of site of land?  And there is
evidence that Welsh fishing fleets were regularly fishing off the
coast of Newfoundland for at least 200 years before Columbus.
(But at the time, the location of good fishing sites was considered
a valuable trade secret.  There is evidence of contemporary rumors
of a land mass in the northern ocean to the west; but not a precise
location; and it was thought to be a large island, not a continent.)
And there is also considerable evidence that an Irish monk sailed
to Canada in a small tarred-hide boat around 800 AD.  That certainly
wasn't any secret in Columbus' time.  Nor were the Norse stories
of Vinland.
So let's stop giving Columbus credit for things that he didn't
actually do.  And particularly stop giving him credit for being
more insightful than his contemporaries when his success actually
came from being grossly wrong in almost every respect.


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


Re: port install to jail root from host system

2003-10-04 Thread Pat Lashley
--On Wednesday, October 01, 2003 15:12:42 +0200 Felix 'buebo' Kakrow 
[EMAIL PROTECTED] wrote:

I've compiled a port as normal (apache13 in this case).  I'd like to run
'make install' now and tell it to install the package to the base of the
root filesystem of a jail from the jail's host.  Possibly also to skip
registering it in the host's package database.
Does anyone know an easy way to do this with the ports system?

In this situation I like it to mount the /usr/ports via nullfs in my Jail
Directory and build the Port directly in the Jail. However you'll have to
have a more or less complete system (at least gcc + all needet build
dependencies) in the Jail. As a plus you don't have to worry about
package registrations and stuff like this, but I'm just another newbie so
probally somebody will come up with another and better way ;)
Another option is to build and package the port(s) outside the jail.
Then nullfs mount /usr/ports in the jail directory and install
the port(s) from the package(s).
The downside of this approach is that the port needs to be installed
on the host system to build the package.  If you have multiple virtual
host jails which are basicly identical in configuration; you might
want to consider setting up one to build the packages in instead of
building them on the host system. (And then install from packages in
the other jails.)


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


Re: tar vs cp

2003-10-01 Thread Pat Lashley
--On Wednesday, October 01, 2003 13:22:36 -0400 Chuck Swiger 
[EMAIL PROTECTED] wrote:

Jamie wrote:
[ ... ]
I don't know what the actual rationale is for this. Can anyone
explain why it is oftentimes better to tar something rather than
using cp when copying directories and their contents?
tar handles symbolic links properly, whereas cp will copy through the
contents of the link.
Another technique is 'cd /source ; find . -print | cpio -pdmv /dest'.

But none of the built in tools seem to preserve links, flags, and
sparseness.  If you want as close to a true copy as possible, check
out the cpdup port.


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


Re: antiviruos for FreeBSD mail server ?

2003-09-25 Thread Pat Lashley
--On Thursday, September 25, 2003 09:39:12 +0200 Armand Passelac 
[EMAIL PROTECTED] wrote:

[ On Wed, 24 Sep, 2003 at 15:58, [EMAIL PROTECTED] wrote: ]
What do you think of Clam so far?
I'm interested in checking something out
It's a good and free product.
It seems to work well.
But it's only a detect program. On the contrary some of other programs
like sophos,trend micro, ... allow you to clean/put in quarantine/notify/
If your MTA is Exim, with the ExiScan-ACL patches (installed by
default by the FreeBSD port); then the ACL statement that passes
the message to clamav can choose to quarantine/notify/etc.  You
can even choose to return an error condition to the sending MTA
but really keep/deliver/quarantine a copy of the message.  (One
of the nice things about Exim and ExiScan-ACL is that you can
run the filters, and various other built-in tests, and reject the
message while the SMTP session is still open.  So you don't wind
up queuing bounces to forged from addresses.)
I'm not sure whether it can be set to just remove/replace the
offending attachment.  (I just reject any message that clamav
says has a virus.  But since I also use the ExiScan-ACL code
to reject any message with a dangerous attachment(*); very few
viri manage to make it to the clamav check.)
(*) In this case dangerous is defined as having one of the file
extensions that Microsoft has identified as 'dangerous' and
recommends blocking: scr, vbs, bat, lnk, pif, adt, adp, bas, chm,
cmd, com, cpl, crt, exe, hlp, hta, inf, ins, isp, js, jse, mdb,
mde, msc, msi, msp, mst, pcd, reg, sct, shs, shb, url, vb, vbe,
wsc, wsf, wsh


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


Re: ports on a CD

2003-09-22 Thread Pat Lashley
--On Tuesday, September 23, 2003 00:59:30 +0100 Tadimeti Keshav 
[EMAIL PROTECTED] wrote:

Is it possible to get all of the ports on a CD set?
This is one area where Linux fares better. Debian
offers a 7 CD (OK they don'y make ISOs) set that
contains all packages.
The short answer is No.

Some of the ports have licencing restrictions that
prevent that.
Now if you're just talking about the ports that may
legally be included on the CD set; it's a space tradeoff.
Adding more would mean more than 4 CDs in the set,
which would raise the cost of producing them.  Which
would in turn raise the price to end-users.
On the whole, I'd rather keep the current setup and
see about putting more into a DVD based release...
I think the FreeBSD distribution would be better off
having all ports on the 2 additional CDs rather than
have packages. For starters we get 5 window managers.
We could easily do w/o KDE  GNOME and have JRE/JDK
and OOo instead.
You might; but others would take the opposite position.
I suspect that if a vote were taken KDE and GNOME would
get more votes than Java and OOo.
And having packages makes the system install -MUCH-
faster.  You really don't want to make new users wait
while the entire GNOME suite is compiled.  There are
already complaints that the installation process takes
too long.
 I might just have to give up FreeBSD
for the reason that downloading ports is turning out
to be expensive.
Sounds like a business opportunity.  Make and sell
CD sets with the 'missing' ports.  Every couple of
months, a new snapshot of the entire ports tree with
all of the legally-CD-able distfiles; for people who
don't have the (cheap) bandwidth to stay up to date
with cvsup...


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


ntop: Bad file descriptor on device 1

2003-09-21 Thread Pat Lashley
I've just installed the ntop port, on a 4.8-STABLE system that has
two NICs.  When I run ntop, it always gives me this error:
**ERROR** Reading packets on device 1(sis0): 'read: Bad file descriptor'

In this case sis0 is the second NIC listed.  If I swap the order in the
-i option, it will report the error on '...device 1(sis1)...'  In either
case, it does not report any data for that NIC.
My ports directory is up to date; but the -STABLE system was last
cvsupp'd and built on 25 April.
Any clues what might be causing this or how to fix it?

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


Re: My jail can not ssh..

2003-09-16 Thread Pat Lashley
--On Tuesday, September 16, 2003 09:07:15 +0100 Matthew Seaman 
[EMAIL PROTECTED] wrote:

On Tue, Sep 16, 2003 at 04:16:31AM +0800, maillist bsd wrote:

I am just testing jail on my FreeBSD4.8-stable box, i found i can not
ssh to the jail environment, but i can telnet to jail environment, the
sshd is running both inside and outside jail.  What's the problem.
I suspect that your problem is that the sshd(8) in your host and jail
environments are both binding to IN_ADDR_ANY.  That means both daemons
are fighting over the loopback interface (at least).
Another subtle thing that can cause problem is if the jailed SSH
can't do DNS resolution.  Telnet in and run your favorite DNS
query app (host, dnsip, dig, nslookup, etc.).  If it fails, check
resolv.conf in the jail; and check the access controls on your
name server
If that isn't it, lsof is your friend.  Install it on the host system
and try something like 'lsof -i :ssh' to see what processes are listening
at what addresses.


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


Determining which jail a process is running in without procfs

2003-09-10 Thread Pat Lashley
I have a system running 5.1-RELEASE-p2 with several jails.  Occasionally
I want to determine which jail a given process belongs to.  On -STABLE
I could just cat /proc/pid/status and look at the final entry.  But
with 5.x procfs id deprecated; so I'd like to find some other way.  Any
help would be appreciated.


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


AE_AML_BUFFER_LIMIT

2003-09-09 Thread Pat Lashley
I've recently set up a new machine with 5.1-RELEASE-p2 and during the
boot I get a series of messages like the following.  Is this something
that I should be worried about?  (I get two more, longer, batches of
them after it probes pcib1 and pcib2.)
Thanks,
-Pat

acpi0: ASUS   A7N266VM on motherboard
pcibios: BIOS version 2.10
Using $PIR table, 10 entries at 0xc00f2120
acpi0: power button is handled as a fixed feature programming model.
Timecounter ACPI-fast  frequency 3579545 Hz
acpi_timer0: 24-bit timer at 3.579545MHz port 0xe408-0xe40b on acpi0
acpi_cpu0: CPU on acpi0
acpi_button0: Power Button on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.SRS_] (Node 
0xc3ff6c80), AE_AML_BUFFER_LIMIT
ACPI-1287: *** Error: Method execution failed [\\_SB_.LNKM._SRS] 
(Node 0xc3ff6180), AE_AML_BUFFER_LIMIT
pci0: ACPI PCI bus on pcib0
pci0: memory, RAM at device 0.1 (no driver attached)
pci0: memory, RAM at device 0.2 (no driver attached)
pci0: memory, RAM at device 0.3 (no driver attached)


--

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


Re: Copying an entire tree

2003-08-22 Thread Pat Lashley
--On Friday, August 22, 2003 20:17:07 +0930 Malcolm Kay 
[EMAIL PROTECTED] wrote:

Dump/restore is also the only technique I've found to retain the holes in
holey files.
cpio can handle sparse files.  I think that was the reason I changed
from a tar/tar pipe to a find/cpio pipe as my standard method many
years ago.  (It's been long enough that I don't remember for certain.)
Now, I'll probably use cpdup; since it handles the flags properly.
Although, now that you mention it, the docs don't say anything about
sparse files; so I may have to be careful which I choose for a given
hierarchy...  or at least find a test case...


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


Copying an entire tree

2003-08-21 Thread Pat Lashley
Is there any simple clean way to copy an entire directory tree and
preserve both the flags (like schg) AND hard links within the tree?
(And, of course, preserve device special nodes, etc.)
cp -r   Copies hardlinked files as separate files
cpioDoesn't preserve flags
pax Doesn't preserve flags
dumpOnly works on entire filesystems
If it matters, I'm particularly interested in doing this on RELENG_5_1;
but a solution that works in 4-STABLE would also be appreciated.


Thanks,
-Pat
Curiosity is a willing, a proud, an eager confession of ignorance.
- Leonard Rubenstein
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Copying an entire tree

2003-08-21 Thread Pat Lashley
--On Thursday, August 21, 2003 22:19:28 +0200 Nico Meijer 
[EMAIL PROTECTED] wrote:

Is there any simple clean way to copy an entire directory tree and
preserve both the flags (like schg) AND hard links within the tree?
(And, of course, preserve device special nodes, etc.)
Have you looked at rsync?
No, I hadn't thought of using rsync for a purely local copy.  But now
that I've tried it, add it to the list of utilities that lose the flags.
(I'm particularly interested in preserving the schg and nodump flags.)
So far, the only thing I know of that seems to do everything right
is cvsup.  But it's really a bit cumbersome to set up for a one-time
copy.


-Pat

We can complain because rose bushes have thorns,
or rejoice because thorn bushes have roses.
-- Abraham Lincoln
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Copying an entire tree

2003-08-21 Thread Pat Lashley
--On Thursday, August 21, 2003 15:45:54 -0600 Tillman Hodgson 
[EMAIL PROTECTED] wrote:

 On Thu, Aug 21, 2003 at 02:23:54PM -0700, Pat Lashley wrote:
 Is there any simple clean way to copy an entire directory tree and
 preserve both the flags (like schg) AND hard links within the tree?
 (And, of course, preserve device special nodes, etc.)

 ...
cpdup, perhaps?

(/usr/ports/sysutils/cpdup)
That one appears to be exactly what I was looking for!



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


How do I use uvisor?

2002-12-02 Thread Pat Lashley
I've been syncing my Handspring Visor over the USB cable using
coldsync and ugen0 for a couple of years now.  One of the recent
system updates introduced ucom and uvisor; and now I can't get
the Visor to sync.  (I'm currently running FreeBSD 4.7-STABLE
as of about 29 October.)

The uvisor man page is distinctly short on actual usage info;
but mentions some attach messages that I never see.  When I
hit the sync button on the cradle, I get the following in
/var/log/messages (I've cut out the dates and reduced the host
name to 'h' to eliminate line wrapping.)

   14:13:26 h /kernel: ucom0: Handspring Inc Handspring Visor, rev 
1.00/1.00, addr 6
   14:13:26 h /kernel: ucom0: Handspring Inc Handspring Visor, rev 
1.00/1.00, addr 6
   14:14:21 h /kernel: ucom0: at uhub1 port 1 (addr 6) disconnected
   14:14:21 h /kernel: ucom0: detached

Was it a mistake to add uvisor (and ucom?) to the kernel config?

Does someone have working examples of all of the necessary config
files to get this to work?



Thanks,
-Pat

msg10817/pgp0.pgp
Description: PGP signature