Best Wishers.

2011-11-01 Thread PHIL EDWARDS
According to my Linux Format Calander it's celebration time, so HAPPY BIRTHDAY 
All @ FreeBSD and keep up the sterling work!

___
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


RAID10 setup

2009-08-28 Thread Phil Lewis
We got there!

Thanks for the encouragement. It took a few more steps, and I
couldn't get geom_mirror or geom_stripe to kldload from the
Fixit environment and so did it all from a clean install instead.

All that remains is to move my /usr onto the new file system.

It worked.

Thanks again

Phil

-- 
Ram Ram
___
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: RAID10 setup

2009-08-24 Thread Phil Lewis
Thanks to both of you for the encouraging words. I'm going to do little more
reading and schedule some time probably on Wednesday to give this a go.

I'll feel a lot more conformable for your responses!

Cheers

Phil



 Date: Sun, 23 Aug 2009 23:30:52 -0400
 From: John Nielsen
 Subject: Re: RAID10 setup
 To: freebsd-questions@freebsd.org
 Cc: Phil Lewis dharm...@gmail.com
 Message-ID: 200908232330.53118.li...@jnielsen.net
 Content-Type: text/plain;  charset=iso-8859-1

 You're on the right track, additional comments inline.

...

 You seem to be pretty well on track. It seems you've already parsed the
 gstripe and gmirror man pages. You should probably look at fdisk(8) and
 bsdlabel(8) as well in case sysinstall doesn't tie up all your loose

...

 Date: Mon, 24 Aug 2009 10:53:45 +0100
 From: chris scott
 Subject: Re: RAID10 setup
 To: John Nielsen
 Cc: Phil Lewis dharm...@gmail.com, freebsd-questions@freebsd.org
 Message-ID:
        d36406630908240253h3d6dd048n21468b6b18b41...@mail.gmail.com
 Content-Type: text/plain; charset=ISO-8859-1

...
 When you create the file systems you should  also consider laying gjournal
 on top of the stripe as well. In most cases it will remove the need for
 having to fsck the file systems when there's a system crash. Quite useful if
 the filesystem is large.

 I also like the label the filesystems with glabel so they appear in the
 fstab as

 /dev/ufs/root
 /dev/ufs/usr
 /dev/ufs/var

 etc

 makes life a little easier

___
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


RAID10 setup

2009-08-22 Thread Phil Lewis
This question was asked a few weeks ago, but the original poster
must have had their questions amswered. As follow-ups offered
further assistance given more detail, I wonder if I could be so bold
as to provide that detail for my own circumstances.

I have six disks:

ad4  - 500MB
ad5  - 500MB
ad6  - 500MB
ad7  - 400MB
ad8  - 500MB
ad10 - 500MB

These are SATA drives, with ad8 and ad10 on a PCIe SATA controller.

ad7 was my first disk and currently contains FreeBSD7.2-RELEASE.
I've been using that to gain some familiarity with FreeBSD, but it
need not be preserved (in fact, I'd rather not preserve it!). When I
built the machine, I just plugged the 400GB drive in any old slot,
so it can move if that makes sense. When I got the new drives I tried
to get identical to the 400GB drive, but couldn't. The 400GB drive
currently has a single slice using the full drive.

What I'd like to end up with is a three-way stripe across three
two-way mirrors, containing as much of the system as possible.

I understand that you can't boot from a stripe, so some part of some
disk will have to be outside the stripe. However, as the stripe will
also be limited to the smallest disk, I'm going to have 5 x 100 GB
bits left over anyway, so I guess /boot can go on one of these..?

If possible, I'd like set this up pre-install. If it has to be done
post-install, or is easier to describe how to do post-install, then
that's fine.

From here on in, this email becomes speculative.

All of the examples I've seen for setting up GEOM stripes and mirrors
have used the raw disk as the base-level provider. On the other hand,
I've seen nothing that says that the bottom level cannot be a slice,
rather than a raw disk, and given the way GEOM works, I suspect this
is true.

My current plan, based on this assumption, is as follows:

With my current FreeBSD installation, create 2 slices on each 500GB
disk, 1 x ~400GB,  1 x ~100GB (the same size as the slice of my 400GB
disk, and the rest of the disk).

Boot from the FreeBSD 7.2-RELEASE dvd, and enter fixit mode. I'm
not sure which would be best, or even if both are feasible for what I
want to do. (I was at this point in my researchwhen I found this
post!).

From here, kldload geom_stripe and kldload geom_mirror.

Then, create the three mirrors:

gmirror label -v main0 /dev/ad4s1 /dev/ad5s1
gmirror label -v main1 /dev/ad6s1 /dev/ad571
gmirror label -v main2 /dev/ad8s1 /dev/ad10s1

This should give me /mirror/main0|main1|main2, right?

Next create the stripe:

gstripe label -v -s 131072 raid10 /dev/mirror/main0
/dev/mirror/main1
/dev/mirror/main2
(that's all one line)


If I'm right so far, then hopefully I should be able to boot to the
install dvd again (or just rerun sysnstall?), and from there I should
be able to choose a slice from outside 'raid10' to mount /boot, and
use 'raid10' for everything else. Do I need anything else on a
non-striped slice?

Maybe I could even create another mirror:

gmirror label -v boot /dev/ad4s2 /dev/ad5s2

and use that to mount /boot, leaving me with s2 on ad6,8 and 10 as
3 spare 100GB slices?

Or am I just way off track?

PS. I can't believe I'm talking about 300 'spare' GB! My first disk
was 20MB! And I never filed that!

All guidance much appreciated.

Phil

On 30 July, 15:03, John Nielsen li...@jnielsen.net wrote:
 On Wednesday 29 July 2009 15:54:42 Richard Fairbanks wrote:

  OK, so this is what I want to do. I have 4 big fast drives that I want to
  run inRAID10 (1+0). So, I'll need to mirror two sets of two disks, then
...
  Of course, if there is a way to create the stripedsetoff mirrors before
  installation then installing onto that stripe, that'd be perfect. I don't
  know if that can be done. I'm sure someone has configured aRAID10
  standalone system before. (Oh, I'm using 7.2). I'm just stuck at this
  point!

 You need to consider where/how you are going to boot the system. It's
 straightforward to boot from a gmirror'ed UFS filesystem (the BIOS just uses
 one disk and thinks everything is normal), but you can't do the same from a
 stripe. You will either need a separate disk/device for your / or /boot
 partition or you will need to use slices/partitions on your disks. I
 frequently have the root filesystem on a small gmirror (partitions on 2
 disks) then use the equivalent extra space on the remaining disk(s) for
 swap.

 Youi should be able to do this pre-installfrom the Fixit shell. Boot to the
 live CD, enter the shell, kldload geom_mirror and geom_stripe, create the
 mirrors, create the stripe, exit the shell, start theinstall, and tell
 sysinstall to use the device node under /dev/stripe for your filesystem.

 Alternatively you could just do a regularinstallto one of the disks and do
 everything post-install. In this case you'd still create two mirrors but one
 of them would only contain a single disk at first. Then create your stripe,
 dump/restore your files, update fstab

Lead-Gen Help

2008-06-06 Thread Phil Dunn


Hi Wilko,

Do you know who handles creative production for marketing documents at 
The FreeBSD Project?


We help companies drive sales with lead-generation pieces like case 
studies, brochures and white papers.


Our rates are reasonable and clients recover costs quickly with just a 
couple of initial sales.


? Low up-front costs
? High ROI
? Direct-response campaigns
? SEO and SEM services
? Flat fee, hourly or performance-based pricing

Any help you can offer is much appreciated. A name, an email contact or 
a forward would be great.


Thanks,
Phil

Clients include NetApp, D-Link, Toshiba Medical, Hewlett Packard, 
Computer Associates, Software AG, Global Crossing, and many others.


When you find a reliable, experienced freelance writer like 
QualityWriter, it's often cheaper, quicker and less complicated than 
doing it in-house.

Wona Chung
Marketing Director
DemandTec

Phil Dunn - (949) 515-3510
QualityWriter
Marketing, Writing, SEO, SEM
http://www.qualitywriter.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Refurbished Wireless Test and Repair Values

2008-04-20 Thread Phil

We Sell Worldwide
Rentals and Leasing Available 
Renting or leasing test equipment is today’s answer. Renting test equipment 
allows you to acquire test equipment without the investment of ownership. 
Renting test equipment is an ideal solution for companies that need additional 
test equipment on short notice or need test equipment for short periods of 
time. Rent test equipment for special projects, replace failed equipment, or 
evaluate test equipment before purchasing and avoid long lead times.
Test Equipment Connection is expanding its rental inventory and investing in 
the newest and most popular test equipment. Our inventory is growing and 
changes daily. We offer over 28,000 test instruments from over 250 
manufacturers. When you rent test equipment, rental payments are treated as 
operating expenses and not part of your capital equipment budget.
Call or Email for a Quote Today
Rental Quote Request 
Tight Capital Budget? - No Problem!
Check Out These High Quality Refurbished Equipment Specials and Maximize Your 
Budget. 
Anritsu MT8220A/40/41 Sale $8,995
Anritsu S331B Sale $3,995
Anritsu S332C Sale $6,895
Anritsu ML2437A Sale $3,995
Agilent E6380A Sale $3,500
Agilent E4436B/Options Sale $15,900
Agilent 8712ET/1EC Sale $9,800
IFR COM120B Sale $9,290
HP 4284A Sale $9,990
HP 8560EC Sale $23,000
HP 8720D with options On Sale Call
RS FSH3 On Sale Call
Over 15 Years of Sales, Service and Selection
Rohde  Schwarz SME03
Sale $5,490
IFR 2945A
Sale 9,495
Anritsu S332C
Sale $6,895
Anritsu S331C
Sale $5,495
Anritsu S331A
Sale $2,995
Agilent 8753ES
Sale $22,000
Tektronix TVS645
Sale $2,750
Agilent 89431A
Sale $6,890
Test Equipment Connection is Actively Purchasing De-installed, Excess, 
New-Surplus, Off-Lease and Underutilized Equipment. Click Here for a Cash Offer

RS FSH6.26/B1/Z3 Sale $19,190
JDSU SDA5000 Sale $6,990
JDSU FST2802 Sale $8,490
JDSU FST-2310 Equipped for DS1, DS3, OC-3,  OC-12 Call
JDSU ANT-5 Equipped for STM-1/-4 On Sale Call
Tektronix TDS3032 Sale $3,000
Tektronix TDS3034 Sale $3,895
Tektronix TDS3054B Sale $8,490
HP 8561E Sale $11,980
Marconi 2031 Sale $3,895
Agilent E4436B w/options On Sale Call
HP 8720ES/10/12/400 Sale $55,000
HP 54540C Sale $2,495
HP 8648C/1E6 Sale $7,290
Our technicians are fully trained and have extensive calibration and repair 
expertise on the widest variety of makes  models. We provide high quality 
repair and calibration services at competitive prices with responsive turn 
around times for evaluation, repair and calibration.
N.I.S.T. traceable certificates in accordance with MIL-STD 45662A and ANSI/NSCL 
540-1 can be provided with all repairs. In addition, ISO 9001-2000 UL 
registered calibrations and ISO/IEC 17025 calibrations accredited by A2LA are 
available for select items. 
No Capital Budget? - No Problem!
We Repair and Calibrate 
So You Can Utilize The Equipment You Already Have.
Free Evaluation Coupon Below!
 
Click Here to View This Page on the Internet
Toll Free USA  Canada 800-615-8378 Direct Worldwide 407-804-1184
email [EMAIL PROTECTED]
30 Skyline Drive Lake Mary, FL 32746
This email is sent in accordance with the US CAN-SPAM Act. *Removal* requests* 
can be sent to this address and will be honored and respected If you want to 
dis-continue this mailing click on the following email address or respond with 
*un-subscribe* in the subject line to: [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: (no subject)

2007-03-15 Thread Phil Tann
I've found that Greg Lehey's book - The Complete FreeBSD was a huge help when I 
(very recently) started getting into BSD.
 
Kind Regards
Phil Tann
[EMAIL PROTECTED]
Mobile: 0404 098 268



From: [EMAIL PROTECTED] on behalf of neo neo
Sent: Thu 3/15/2007 4:33 PM
To: [EMAIL PROTECTED]
Subject: (no subject)



hello ;

i am new at FreeBSD .

Where can i get FreeBSD commands list?

thankz .

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


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


RE: Tool for validating sender address as spam-fighting technique?

2007-03-11 Thread Randal, Phil
smf-sav  is one sendmail milter which does this:

  http://smfs.sourceforge.net/smf-sav.html

SAV v1.3.0 - console utility for e-Mail Sender Address Verification
(also at http://smfs.sf.net/ )

Cheers,

Phil


-Original Message-
From: Kelly Jones [mailto:[EMAIL PROTECTED] 
Sent: 10 March 2007 19:28
To: freebsd-questions@freebsd.org; users@spamassassin.apache.org;
[EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]
Subject: Tool for validating sender address as spam-fighting technique?

To fight spam, I want to validate the address (not necessarily in
real-time) of the a given email sender. Is there a Unix tool that does
this?

The basics are simple: to validate [EMAIL PROTECTED], I connect to
the MX record of wnonline.net and go as far as RCPT TO as follows:

 host -t mx wnonline.net
wnonline.net mail is handled by 5 wnspf.bayou.com.

 telnet wnspf.bayou.com. 25
Trying 209.209.192.75...
Connected to wnspf.bayou.com..
Escape character is '^]'.
220 Welcome to Bayou mxfilter
HELO domaintester.com
250 mxfilter.bayou.com
MAIL FROM: [EMAIL PROTECTED]
250 Ok
RCPT TO: [EMAIL PROTECTED]
550 [EMAIL PROTECTED]: Recipient address rejected: 5.1.1
[EMAIL PROTECTED]... User unknown
QUIT
221 Bye
Connection closed by foreign host.

This tells me [EMAIL PROTECTED] is an invalid address and that mail
from that address is probably bogus.

A more sophisticated tool would cache results, handle temporary
failures (eg, inability to connect to the MX server), handle multiple
MX records, perhaps even publish results [carefully, to avoid giving
spammers a source of legit email addresses!], etc. Plus, I'd prefer to
use a tested tool vs hacking something up myself.

I realize this technique is far from perfect:

Spammers spoof legit addresses

Bounces/Mailing lists/etc legitimately use do not reply addresses

It could be considered unfriendly to the target MX servers

Some mail servers incorrectly say user unknown when they see spam,
figuring it's more of a deterrent than saying you're a spammer

Some mail servers inefficiently accept mail for [EMAIL PROTECTED] (where
xxx.com is one of their domains), figure out if foo exists later, and
send a bounce back to the envelope sender, instead of rejecting email
at the SMTP level (a really good tool would create throwaway addresses
to catch these cases too)

... but I still think it might help.

-- 
We're just a Bunch Of Regular Guys, a collective group that's trying
to understand and assimilate technology. We feel that resistance to
new ideas and technology is unwise and ultimately futile.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


restoring deleted files

2006-06-08 Thread Phil Sweeney
Can you tell me a simple way of retrieving recently deleted files?

Regards
Phil Sweeney
Superior Pest Management
P.O Box 68
www.superiorpest.com.au
[EMAIL PROTECTED]
H.R.M.C NSW 2310
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Ping and general network weirdness

2005-06-29 Thread Phil Cooper

Hi everybody;

Not doing too well with my first freeBSD install. I have a machine  
set up with the name fragile, no ipv6, DHCP, no ipfw, and sshd on.


Problem is, I can ping out to other machines on the network, or to  
another machine on the Internet ('net connection via another winXP  
machine), but neither of the other machine on the network can ping  
fragile. Fragile can ping itself via localhost, but not by name.


From any machine, or fragile itself, pinging fragile or the IP gives:

bramley:~ phil$ ping fragile
PING fragile.mshome.net (192.168.0.116): 56 data bytes
ping: sendto: No route to host
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
^C
--- fragile.mshome.net ping statistics ---
10 packets transmitted, 0 packets received, 100% packet loss
bramley:~ phil$

Any ideas?




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


Re: Ping and general network weirdness

2005-06-29 Thread Phil Cooper

Thanks;

I checked with ifconfig, and fragile's IP is actually 192.168.0.224,  
and I put this in the hosts file.


Now, I can ping and ssh into fragile using the IP address, but  
pinging fragile still assumes 192.168.0.116 is it's IP - so does  
the fault now lie with the other machines on the network? How do I  
get them to realise that fragile==192.168.0.224 and not .116?


- P


On 30 Jun 2005, at 00:57, fbsd_user wrote:


Do you have fragile.mshome.net in the /etc/hosts  file?

To ping using fragile.mshome.net you would need a DSN server
to resolve that name to an internal IP address.

Look in the ports collection for djbdns


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Phil Cooper
Sent: Wednesday, June 29, 2005 7:43 PM
To: freebsd-questions@freebsd.org
Subject: Ping and general network weirdness


Hi everybody;

Not doing too well with my first freeBSD install. I have a machine
set up with the name fragile, no ipv6, DHCP, no ipfw, and sshd on.

Problem is, I can ping out to other machines on the network, or to
another machine on the Internet ('net connection via another winXP
machine), but neither of the other machine on the network can ping
fragile. Fragile can ping itself via localhost, but not by name.

 From any machine, or fragile itself, pinging fragile or the IP
gives:

bramley:~ phil$ ping fragile
PING fragile.mshome.net (192.168.0.116): 56 data bytes
ping: sendto: No route to host
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
ping: sendto: Host is down
^C
--- fragile.mshome.net ping statistics ---
10 packets transmitted, 0 packets received, 100% packet loss
bramley:~ phil$

Any ideas?




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






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


Re: Ping and general network weirdness

2005-06-29 Thread Phil Cooper

Here's the output, thanks for such a quick reply.


$ netstat -rn
Routing tables

Internet:
DestinationGatewayFlagsRefs  Use  Netif  
Expire

default192.168.0.1UGS 00rl0
127.0.0.1  127.0.0.1  UH  1   41lo0
192.168.0  link#1 UC  00rl0
192.168.0.100:0f:20:1e:e9:12  UHLW1   25rl0
1084
192.168.0.400:11:24:87:67:e2  UHLW0   93rl0
1081

192.168.0.224  127.0.0.1  UGHS00lo0

Internet6:
Destination   Gateway
Flags  Netif Expire
::1   ::1
UH  lo0
fe80::%rl0/64 link#1 
UC  rl0
fe80::240:95ff:fe60:925%rl0   00:40:95:60:09:25  
UHL lo0
fe80::%lo0/64 fe80::1%lo0
U   lo0
fe80::1%lo0   link#3 
UHL lo0
ff01::/32 ::1
U   lo0
ff02::%rl0/32 link#1 
UC  rl0
ff02::%lo0/32 ::1
UC  lo0




...and...



$ ifconfig
rl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet6 fe80::240:95ff:fe60:925%rl0 prefixlen 64 scopeid 0x1
inet 192.168.0.224 netmask 0xff00 broadcast 192.168.0.255
ether 00:40:95:60:09:25
media: Ethernet autoselect (100baseTX full-duplex)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST mtu 1500
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet 127.0.0.1 netmask 0xff00
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3



Any ideas?

 - P



On 30 Jun 2005, at 01:14, Christopher Black wrote:


*snip*


It's obviously resolving the IP to 192.168.0.116, it could be a  
routing issue.  What is the output of 'netstat -rn' and ifconfig?





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


Re: Ping and general network weirdness

2005-06-29 Thread Phil Cooper
As far as I know, not knowing much, doesn't the win XP box which  
connects to the net do all the DHCP and local DNS when XP's internet  
connection sharing is turned on? Which it is. It's at 192.168.0.1,  
which netstat is correctly reporting as the default gateway...


So is it a case of working out how to get XP to update things?


On 30 Jun 2005, at 01:22, Christopher Black wrote:

It depends where fragile is mapped to the IP.  If it's only in the  
hosts
file, the other machines have no way of knowing, and will probably  
fail
to resolve 'fragile' to an IP.  If it's in DNS somewhere, you just  
need

to correct the DNS record.




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


Re: Ping and general network weirdness

2005-06-29 Thread Phil Cooper


If you haven't explicitly set fragile-192.168.1.204 in a DNS  
server, it
won't resolve from any other machine unless you put it in that  
machines

host file as well (windows has one, but the path eludes me right now).

On Thu, 2005-06-30 at 01:23 +0100


Fixed - all the machines can see it now. Updated the hosts file on  
the XP box, it's at:


C:\windows\system32\drivers\etc\hosts.ics

Thanks for all your help, everyone.


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


Re: Kernel Core Dumping

2005-06-15 Thread Phil Schulz

Greg 'groggy' Lehey wrote:

On Tuesday, 14 June 2005 at  5:53:58 -0700, J T wrote:


Hi,

For some reason my machine keeps crashing almost every night at around
3:00am with the following test in the messages log file:

Jun 14 03:02:28 taco kernel: pid 7174 (sh), uid 0: exited on signal 11
(core dumped)

...

I decided to rm the file
'/usr/local/etc/cvsup/sup/src-all/checkouts.cvs:RELENG_5_3' just to
see if that fixed it. And it did, but why was it crashing the entire
box?



The message you see there has nothing directly to do with the crash of
the system, though it may be an indication of hardware issues.  To
find out, you'll need to take a processor dump and see what's going
on.  Unfortunately, I can no longer find the instructions in the
online handbook; does anybody else know where they are?


Not first the place a user will look for them but they're still there...

http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneldebug.html

Regards,

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


Re: Re: Re: Automake version mismatch - can't install anything via ports

2005-06-08 Thread Phil Cryer

 #
 USE_AUTOMAKE_VER=19

*ahem*

Kris

Whew, thank you!  I knew automake was being misdirected somewhere, but didn't 
think of /etc/make.conf, can't remember putting that in there, but I suppose I 
did.  Commented that line out, and things are back to normal, everything works 
again!

Thank you Kris.

P



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


Automake version mismatch - can't install anything via ports

2005-06-07 Thread Phil Cryer
While trying to update automake19 I messed something up, now even though I can 
pkg_add it, it fails to update via ports.  Worse still I can't install ANY 
ports now, even though I've run portupdate, rm -rf /usr/ports/*/*/work and 
everything else suggested.  Here's the error when I try to install automake19:

[EMAIL PROTECTED] /usr/ports]# cd devel/automake19
[EMAIL PROTECTED] /usr/ports/devel/automake19]# make install
===   automake-1.9.5 depends on file: /usr/local/bin/perl5.8.6 - found
===   automake-1.9.5 depends on file: /usr/local/bin/automake19 - not found
===Verifying install for /usr/local/bin/automake19 in 
/usr/ports/devel/automake19
===   automake-1.9.5 depends on file: /usr/local/bin/perl5.8.6 - found
===   automake-1.9.5 depends on file: /usr/local/bin/automake19 - not found
===Verifying install for /usr/local/bin/automake19 in 
/usr/ports/devel/automake19
===   automake-1.9.5 depends on file: /usr/local/bin/perl5.8.6 - found
===   automake-1.9.5 depends on file: /usr/local/bin/automake19 - not found
===Verifying install for /usr/local/bin/automake19 in 
/usr/ports/devel/automake19
===   automake-1.9.5 depends on file: /usr/local/bin/perl5.8.6 - found
===   automake-1.9.5 depends on file: /usr/local/bin/automake19 - not found
===Verifying install for /usr/local/bin/automake19 in 
/usr/ports/devel/automake19
===   automake-1.9.5 depends on file: /usr/local/bin/perl5.8.6 - found
===   automake-1.9.5 depends on file: /usr/local/bin/automake19 - not found
===Verifying install for /usr/local/bin/automake19 in 
/usr/ports/devel/automake19
===   automake-1.9.5 depends on file: /usr/local/bin/perl5.8.6 - found
===   automake-1.9.5 depends on file: /usr/local/bin/automake19 - not found
===Verifying install for /usr/local/bin/automake19 in 
/usr/ports/devel/automake19
===   automake-1.9.5 depends on file: /usr/local/bin/perl5.8.6 - found
===   automake-1.9.5 depends on file: /usr/local/bin/automake19 - not found
===Verifying install for /usr/local/bin/automake19 in 
/usr/ports/devel/automake19
===   automake-1.9.5 depends on file: /usr/local/bin/perl5.8.6 - found

This forum is my thread, showing all that I have tried, but I'm getting worried 
that nothing there is helping, so I wanted to open it up to a larger audience.
http://www.bsdforums.org/forums/showthread.php?s=threadid=31728highlight=aclocal+%60configure.ac

Thanks

P




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


Re: Re: Automake version mismatch - can't install anything via ports

2005-06-07 Thread Phil Cryer
 What variables do you have set in your environment and in /etc/make.conf?
 Kris

CPUTYPE?=k7
CFLAGS= -O2 -pipe
COPTFLAGS= -O2 -pipe
MASTER_SITE_OVERRIDE=http://freebsd.mirrors.pair.com/pub/FreeBSD/distfiles/${DIST_SUBDIR}/#
# added by use.perl 2005-03-12 23:47:15
PERL_VER=5.8.6
PERL_VERSION=5.8.6
#
NO_X=true
WITHOUT_X11=yes
WITHOUT_GUI=yes
NO_LPR= true
UPS_OVERWRITE_BASE=yes
WITH_CUPS=yes   # build with CUPS driver
WITHOUT_IJS=yes # build without IJS-based Ghostscript driver

#
WITH_MYSQL=yes
WITH_BDB_VER=41
WITH_APACHE2=yes
WITHOUT_IPV6=yes
WITH_SSL_MODULES=yes
WITH_SSL=yes
WITH_OPENSSL=yes
WITH_SASL=yes
BUILD_OPTIMIZED=yes
#BUILD_STATIC=yes
#
KERNCONF=PEPE
#
USE_AUTOMAKE_VER=19




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


Re: Verizon EVDO - Broadcom a/b/g - Cisco VPN Client = how to in 5.3

2005-04-22 Thread Phil Schulz
Dana Rawson wrote:
[...]
3. Cisco VPN client software installation - I have downloaded the
Cisco VPN client from Cisco and also have seen the vpnc port in
FreeBSD.  Would either one work to connect to a cisco device?  How
would I incorporate my .pcf file into the installation/configuration?
 I did not know that there was a FreeBSD version for the Cisco client. 
If you downloaded the Linux version -- it won't work b/c it loads a 
kernel module and thus won't work under the Linux binary compatibility 
environment.
 The vpnc port works fine for me, although I don't know the model no. 
of the device I connect to. If there are any limitations on what models 
work with the port, I'm sure there is some information about it on the 
webpage of the tool.
 The .pcf file is human readable, you can easily extract all 
information you need to set up your tunnel. If you have the GroupPwd 
in encoded form, search the internet for a decoder. I don't have the 
link at hand, but there definitely is a site where you can enter the 
hash and have it spit out the clear phrase.

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


Binary search to track down a problem

2005-04-02 Thread Phil Schulz
Hi!
 I am trying to track down a problem with my laptop which was 
introduced somewhere between the release of 5.2.1 and 5.3 most likely 
related to ACPI (the laptop does not shut itself off when running halt -p).

 Before complaining about the problem itself, I'd like to gather as 
much information as possible or maybe even fix it myself. Currently, I 
am trying to find out when exactly the problem started with a method 
others have described as the 'binary search aproach' in the past.

 I have set up a jail environment with make installworld DESTDIR=... 
and with sources checked out from CVS. Inside the jail, I rebuild world, 
install world, build the kernel and install the kernel (still inside the 
jail). Then, from the host system, I copy the kernel from the jail's 
root directory to /boot and reboot to see whether or not the problem 
still is there.
 Then, I delete /usr/src from the jail and checkout the sources from 
the appropriate date and do the full buildworld, installworld, 
buildkernel and installworld again.

 Since rebuilding world and kernel including the clean step takes an 
awful long time I am wondering if there is something I can do to speed 
things up a bit?

 I am not so much worried about going from older to newer sources since 
this case can be handled by following /usr/src/UPDATING closely but 
rather the other way around. I have tried to manually build and install 
/usr/sbin/config inside the jail with a 5.3-Stable world and then build 
the older 5.2.1 kernel only. However I ran into some make errors so I 
figured I will go the fail safe path but that path really annoys me due 
to its slowness.

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


Re: Wireless Network NDIS

2005-03-23 Thread Phil Schulz
On 03/23/05 14:09, Lourik Malan wrote:
 HI there
 
 I get the following when i try an compile the following into the kernel. 
 
 optionsNDISAPI
 device ndis
 device wlan
 
 /usr/src/sys/dev/if_ndis/if_ndis.c:85:30: ndis_driver_data.h: No such file or 
 directory
 /usr/src/sys/dev/if_ndis/if_ndis_pccard.c:66:30: ndis_driver_data.h: No such 
 file or directory
 /usr/src/sys/dev/if_ndis/if_ndis_pci.c:65:30: ndis_driver_data.h: No such 
 file 
 or directory
 mkdep: compile failed
 *** Error code 1
 

From ndis(4):

To build a functional driver, the user must have a copy of the driver
distribution media for his or her card.  From this distribution, the
user must extract two files: the .SYS file containing the driver binary
code, and its companion .INF file, which contains the definitions for
driver-specific registry keys and other installation data such as device
identifiers. These two files can be converted into a ndis_driver_data.h
file using the ndiscvt(8) utility.  This file contains a binary image of
the driver plus registry key data.  When the ndis driver loads, it will
create sysctl(3) nodes for each registry key extracted from the .INF file.

So, in short: You'll need to run the supplied Windows driver through
ndiscvt(8) before you can build the ndis module.

Regards,

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


Re: updating system version of OpenSSH

2005-02-25 Thread Phil Schulz
On 02/25/05 20:55, David Newman wrote:
What is the procedure for patching/updating system
version of OpenSSH on an FBSD 5.2.1 box?
If you can't afford to upgrade the base OS and you do not want to 
install OpenSSH from the ports, then you'll need to specify what 
vulnerability you are talking about.

I checked the FreeBSD security advisories which *could* apply to your 
problem and it seems that FreeBSD-SA-04:05.openssl is the one you might 
be talking about. A patch is included with the advisory along with 
instructions on how to apply the patch and fix the issue.

ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-04:05.openssl.asc
Regards,
Phil.
I used the excellent Rootkit Hunter security
assessment tool:
http://www.rootkit.nl/projects/rootkit_hunter.html
and it found that I'm running OpenSSH 3.6.1p1, which
has at least one vulnerability.
I only know how to install/upgrade from ports. OpenSSH
is part of the ports collection, but the build I'm
running was included with the OS. 

What's the right way to proceed here?
thanks
/wsbs
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: usb

2005-02-24 Thread Phil Schulz
On 02/24/05 17:00, Osmany Guirola Cruz wrote:
Hi 
i have an usb 2.0 external harddisk this is the info 

umass0: Maxtor OneTouch, rev 2.00/2.00, addr 2
umass0: Get Max Lun not supported (STALLED)
da0 at umass-sim0 bus 0 target 0 lun 0
da0: Maxtor OneTouch 0201 Fixed Direct Access SCSI-0 device
da0: 1.000MB/s transfers
da0: 117246MB (240119808 512 byte sectors: 255H 63S/T 14946C)
Why the speed it's so slow? i have a 2.0 usb card :-(
How can i change the transfer speed   

You'll need device ehci in your kernel or module ehci.ko loaded. Even 
then, the reported speed is not always correct.
To find out at what speed your device is running, try to transfer some 
large file with dd.

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


Re: usb

2005-02-24 Thread Phil Schulz
On 02/24/05 18:16, Osmany Guirola Cruz wrote:
On 02/24/05 17:00, Osmany Guirola Cruz wrote:
Hi 
i have an usb 2.0 external harddisk this is the info 

umass0: Maxtor OneTouch, rev 2.00/2.00, addr 2
umass0: Get Max Lun not supported (STALLED)
da0 at umass-sim0 bus 0 target 0 lun 0
da0: Maxtor OneTouch 0201 Fixed Direct Access SCSI-0 device
da0: 1.000MB/s transfers
da0: 117246MB (240119808 512 byte sectors: 255H 63S/T 14946C)
Why the speed it's so slow? i have a 2.0 usb card :-(
How can i change the transfer speed   


You'll need device ehci in your kernel or module ehci.ko loaded. Even 
then, the reported speed is not always correct.
To find out at what speed your device is running, try to transfer some 
large file with dd.

I added this line to the configuration file of the kernel
device ehci
rebooted the system and conected the usb disk and i get the same
transfers speed
1.00MB/s and in the /boot/kernel/ directory there is not ehci.ko file 
i have to add another line to the configuration file or it's compiled
into the kernel

Chapter 8 of the handbook might be of interest to you.
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
After you have got things set up right, you should see the USB 2.0 
controller in your dmesg. Provided it is supported by freebsd.

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


Re: Hula Server -- Mail/Cal Server

2005-02-16 Thread Phil Brennan
Hi Nick

We are currently trying to install it at a freebsd site.
We have gotten to the stage where it expects atomic.h from linux, so
it doesn't look like it will work without patching.


On Tue, 15 Feb 2005 23:43:11 -0700, Nick Pavlica [EMAIL PROTECTED] wrote:
 All,
   I just noticed that Hulu Server
 (http://hula-project.org/index.php/Hula_Server) was released.  They
 only mention Linux support at this time, but provide source install
 instructions.  What is the best approach to installing this on
 freeBSD?
 
 Thanks!
 --Nick
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

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


Re: Flash causes Firefox to core dump, which ports should I have installed?

2005-02-14 Thread Phil Schulz
On 02/14/05 02:48, Ben Dover wrote:
Firefox is my browser of choice but every time I view a web page with
a Flash object Firefox core dumps.  The error is as follows:  Feb 13
18:57:53 w00f kernel: pid 27652 (firefox-bin), uid 0: exited on signal
6 (core dumped).  I have installed the following relevant ports:
/usr/ports/www/firefox
/usr/ports/www/flashplugin-firefox
I'm not sure if the following applies to your problem, but you might 
want to try it anyways.

I use Mozilla and it appeared to crash a lot recently. Everytime it 
crashed, a message like the one you mention was printed to the console. 
When I started Mozilla from a shell (instead of from the Gnome menu), I 
noticed that when Mozilla exited, a message like

Fatal error 'Recurse on a private mutex.' at line 988 in file 
/usr/src/lib/libpthread/thread/thr_mutex.c (errno = 0)
Abort trap
was printed to the terminal. Searching the CVS log for the file revealed 
that apparently www/linuxpluginwrapper needs to be rebuild. It seems 
that upgrading that port has fixed my problems.

Well, I think this applies only to 5-Stable after Feb 4th, 2005, and 
since you didn't mention which version you're running I don't know if it 
applies to your problem.

HTH,
Phil.


signature.asc
Description: OpenPGP digital signature


Re: Newbie Security Concerns

2005-02-08 Thread Phil Schulz
On 02/08/05 17:01, [EMAIL PROTECTED] wrote:
[...] Last night I was checking my 
logs and discovered  that sshd reported many illegal users.  Does 
that mean my system i compromised?  As configured, there are only 
three accounts on my system, root, toor, and one user account for 
me.  
if the message looks like the one below, there's no need to worry:
Feb  8 17:12:04 mars sshd[19022]: Illegal user foo from ::1
that just means somebody tried to get into your system using username 
foo. Since the user foo doesn't exist the login failed and no harm 
was done.

[...] I suppose you need more information from me, but am not sure 
what to provide.  Any help would be greatly appreciated.

you might want to post the actual message you see in your auth.log. but 
before you post, feed it to your favourite web search engine and dig 
through the results for any hints -- maybe you can solve your problem 
alone and learn something new along the way.

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


Re: message for port developers

2005-01-29 Thread Phil Schulz
On 01/29/05 18:42, Gert Cuykens wrote:
you know those blue configuration screens where you can select some
configuration options ?
Is it possible to first do ALL configuration screens of all the
dependencies before building the ports ?
So you know there will not be any screens until its done and you can
spend the time doing something els ?
Cant be that hart to do or am i mistaken ?
I'm not a port developer but I think you are looking for either `make 
configure` or the BATCH variable.

 If you know which ports you want to install on your system, you can do 
a `make configure' for each port (where it is availeable) and then have 
a skript fire up the `make install's. I'm not sure though if that works 
recursively, i.e. you run `make configure' for e.g. the Gnome meta port 
and you configure all the dependencies with that one command. Why don't 
you try it? ;-)
 If you think the default options are ok for you, you can add a line 
like BATCH=yes in /etc/make.conf and the ports will be built w/o any 
user interaction. Very useful for large builds.

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


Re: message for port developers

2005-01-29 Thread Phil Schulz
On 01/29/05 19:27, Gert Cuykens wrote:
On Sat, 29 Jan 2005 19:22:18 +0100, Gert Cuykens [EMAIL PROTECTED] wrote:
On Sat, 29 Jan 2005 19:17:46 +0100, Gert Cuykens [EMAIL PROTECTED] wrote:
On Sat, 29 Jan 2005 19:01:57 +0100, Phil Schulz [EMAIL PROTECTED] wrote:
I'm not a port developer but I think you are looking for either `make
configure` or the BATCH variable.
 If you know which ports you want to install on your system, you can do
a `make configure' for each port (where it is availeable) and then have
a skript fire up the `make install's. I'm not sure though if that works
recursively, i.e. you run `make configure' for e.g. the Gnome meta port
and you configure all the dependencies with that one command. Why don't
you try it? ;-)
 If you think the default options are ok for you, you can add a line
like BATCH=yes in /etc/make.conf and the ports will be built w/o any
user interaction. Very useful for large builds.
HTH,
Phil.
BATCH=yes i can not do because some configuration leave some very nice toys 
out.
If you know what specific options you are looking for, you could 
configure the ports by hand and install them later. I think not all 
ports can be build with BATCH defined, at least that's what ports(7) 
suggests.

Now lets see you can call all dependencies with this if your index is working :)
make pretty-print-build-depends-list
so with some grep magic you could tell to do make config in all does
dependencies. Now the trickie part how do you find out the new
dependencies after does configure screens ?
a maybe updating the index and do the same thing all over again until
there are no new dependencies ?

can you update the index after a configure that adds a extra
dependencie to the port ?
I don't know.
I don't think it would be very efficient in terms of effort vs. use. How 
many ports do you really want to install with non-default options? And 
how often do you re-configure them?

You probably want to wait for an opinion from someone else who knows 
more, though.

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


Re: Creator of 4.4 BSD

2005-01-20 Thread Phil Schulz
On 01/20/05 14:38, b zz wrote:
Hello, 
Sorry for my poor english language because I'm french..
I would to know who is the creator of 4.4 BSD.
Cordially,
Ben Clark.
It was released by the University of California at Berkeley, although it 
has its roots at the Bell Labs. Or at ATT. Or maybe in Berkeley. 
Depending on how you look at things.

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


Re: Why might my USB devices *not* be detected?

2005-01-03 Thread Phil Schulz
On 01/03/05 02:22, Trey Sizemore wrote:
On Sun, 2005-01-02 at 15:13 -0500, Trey Sizemore wrote:
snip
Sorry for replying to myself, but wanted to fix the subject (less
confusing).  Might this have something to do with the usbd.conf file
(I've not changed mine, but perhaps something to be added?).
What happens if you plug in the device(s) before you boot the system?
On my laptop, USB devices were only detected when the system booted, not 
when it was already up. That issue was solved by compiling ehci into the 
kernel.

If that doesn't help, you might want to show your dmesg.
Regards,
Phil.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD Gateway

2005-01-02 Thread Phil Schulz
Bill Moran wrote:
Victor Foulk [EMAIL PROTECTED] wrote:
[...]
What I really had hoped to find, was more of an experienced
networking guru's thumb rule equating the number of safeLAN
workstations with the required gateway RAM/Processor; to 
enable all safeLAN users to experience a minimal network
transaction time roughly equivalent to what they would see
if plugged directly into a really good hub.
Something maybe in the form of:
Proc Speed = X*Users+Y
RAM = W*Users+Z

I don't think _anybody_ can give such a formula. Especially not whithout 
knowing how much and what kind of traffic your users generate. But as 
others have said already, good NICs are essential.

As a general rule of thumb, I won't put FreeBSD on anything smaller
than a 1Ghz with 128M of RAM and 4G of disk space.  While you can
get away with smaller, that's about the minimum before using the
box for maintenance purposes becomes a terrible burdon.  Try upgrading
and rebuilding world on a 266!
You can always build world remotely. 1GHz seems to be overkill for a 
router. Just think of energy consumption.

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


Re: Sharing drive data with windows

2005-01-01 Thread Phil Schulz
On 01/01/05 23:54, Sergei Gnezdov wrote:
Is it possible to have NTFS writable?
Do I have to use FAT32 to share data with Windows XP?
there is limited support for writing to an ntfs filesystem in freebsd. 
see mount_ntfs(8) for details. personally i think you're better off 
using fat32

regards,
phil.


signature.asc
Description: OpenPGP digital signature


Re: Building a custom kernel

2004-12-28 Thread Phil Schulz
Kövesdán Gábor wrote:
I'd like to build a monolithic kernel without loadable module support. I've
also made it on Linux, but I haven't found such howto for FreeBSD. Is there
any opportunity to do this?
this doesn't answer your question directly but you can disable 
(un-)loading of modules during runtime if you set the securelevel to sth 
= 1.

afaik, there are some things which only work as modules so disabling 
modules might not be a good idea. acpi is one of them, i believe.

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


Re: Skype?

2004-12-20 Thread Phil Schulz
Tom Vilot wrote:
Has anyone managed to get Skype running (I would presume using Linux 
emulation) on FreeBSD?
There is a port in net/skype which I had running for a day or two. I had 
to uninstall it since I need to use Maple 8 which doesn't work with the 
version of linux_base skype requires. Maybe it's even possible to run 
them  both at the same time but I didn't care enough to even attempt to 
solve the issues.
If you already tried the skype port then you'll need to give more 
information.

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


Re: Trouble with ULE scheduler

2004-12-17 Thread Phil Schulz
O. Hartmann wrote:
Peter Farmer schrieb:
From http://www.freebsd.org/releases/5.3R/errata.html
(1 Nov 2004) The ULE scheduler described in the release notes has been 
completely disabled to discourage its use because it has stability 
problems.

HTH

Is there a way to explicitely enable it for testing purposes?
the error message which the op attached to his email shows that the 
error is raised by an #error directive in sched_ule.c -- removing that 
line /might/ make ule build.

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


Re: Wheel Mouse in 5.3 STABLE

2004-12-16 Thread Phil Schulz
Ronnie Clark wrote:
I have successfully loaded 5.3 and cvsuped to STABLE.
Since loading Xorg, I have been trying to use my wheel
on my mouse. I have edited the xorg conf file that I
created and followed the hand book and even some
threads from this list. 

Can someone please point me in the right direction for
this? I'm going nuts! (Short trip by the way)
since you don't give much information about the problem, e.g. what 
errors you're seeing, it's hard to say for sure what's wrong... but i'll 
try anyways.

i have this in my config file
Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol Auto
Option  Device /dev/sysmouse
Option  ZAxisMapping 4 5
EndSection
the mouse is detected as
ums0: Microsoft Basic Optical Mouse, rev 1.10/0.00, addr 2, iclass 3/1
ums0: 3 buttons and Z dir.
and don't forget a line like
usbd_enable=YES
in /etc/rc.conf -- and it works.
hth,
phil.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Installing VMWare 4.x

2004-12-16 Thread Phil Schulz
Ronnie Clark wrote:
Has anyone successfully installed VMWare 4.5
Workstation on FreeBSD 5.3? If so, what are pitfalls
or things to watch out for?
i don't think vmware 4 works on freebsd since, iirc, the linux version 
loads a kernel module and thus can't be run under the linux 
compatibility layer. however, there are older versions of vmware in the 
ports tree under emulators/ which work on freebsd (at least did work on 
5.2.1)

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


Re: Wheel Mouse in 5.3 STABLE

2004-12-16 Thread Phil Schulz
Ronnie Clark wrote:
(**) Option Protocol auto
(**) Mouse0: Device: /dev/sysmouse
(**) Mouse0: Protocol: auto
(**) Option CorePointer
(**) Mouse0: Core Pointer
(**) Option Device /dev/sysmouse
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Option ZAxisMapping 4 5
(**) Mouse0: ZAxisMapping: buttons 4 and 5
(**) Mouse0: Buttons: 5
(II) Keyboard Keyboard0 handled by legacy driver
(II) XINPUT: Adding extended input device Mouse0
(type: MOUSE)
(II) Mouse0: SetupAuto: hw.iftype is 4, hw.model is 0
(II) Mouse0: SetupAuto: protocol is SysMouse
According to this, it *should* work, right? Still
stumped, and not working...
does your mouse work on the console, i.e. do you see a cursor moveing 
when your on the console and move your mouse?

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


Re: openoffice for 5.2.1?

2004-12-15 Thread Phil Schulz
John Conover wrote:
Is openoffice available for BSD 5.2.1? Pkg_add -r grumbles that it
isn't.
John,
there is a link on this page
http://porting.openoffice.org/freebsd/
where you can download the packages. You can then use pkg_add to install 
them. Maybe you can even have pkg_add fetch them for you, I didn't check.

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


Re: Sharing resources on LAN without NFS

2004-12-15 Thread Phil Schulz
Ben Washington-Yule wrote:
The handbook section on NFS was great but having only 3 computers I 
don't feel the need to set up a client/server system. Nevertheless I 
would like to be able to share one printer and one cd-writer between 
these 3 machines. I'll be grateful even for just a shove towards the 
correct handbook chapter where this is explained.

Ben,
maybe I'm overlooking sth obvious, but I think you'll always need a 
client/server setup in this case. The server needs to serve the 
resource, i.e. the printer or the CD-writer, to its clients, the other 
PCs on your network.
If you are only running Unix-like operating systems on your PCs, I think 
NFS is the simplest solution, provided that the network isn't directly 
reacheable from the internet. If you need to share resources with 
windows, you'll need to run samba.
It is all described in chapter 23 of the handbook.

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


Re: GPL vs BSD Licence

2004-10-29 Thread Phil Schulz
I thought I sent that mail to chat@, I wonder how the reply ended up at 
questions@ again. Unfortunately my provider won't let me set a Reply-To: 
header.

[EMAIL PROTECTED] wrote:
In a message dated 10/28/04 4:49:28 PM Eastern Daylight Time, 
[EMAIL PROTECTED] writes:

  I don't think that Allot modifies the Linux kernel. I wouldn't expect
 them to do so and I don't see an obvious reason why they should (*).
 Obviously some of their custom stuff needs to run inside kernel, but I
 rather think they enhance the kernel with some loadable modules or
 whatever (does Linux have KLDs?).
Then you either know nothing about programming or nothing about their
products. Do you think they do gigabit bandwidth management, with
features not in the kernel, from user space? 
That's not what I meant and not what I wrote.
You can write a loadable kernel module w/o changing the kernel sources, 
can't you?

Plus, if they were using an
unmodified kernel, why not provide the source? Put it on the machine.
Whats the harm?
 What's the use of it? Would you pay a load of money for a product, 
modify it and therefore lose all the support?

  A while back, I fast-read a post of Linus Torvalds to a mailing list
 saying why he thinks that binary-only enhancements to linux must be GPL
 licenced (and I believed the statemant was discussed on a FreeBSD-list
 also). His argument was that by using the kernel headers your work
 automatically becomes a derived work, thus it needs to be licensed under
 the GPL. I seem to recall the discussion was about nVidia's closed
Modules use headers and are not GPLed, so clearly you're just
plain wrong.
 Ok, we agree that modules use headers and that at least some modules 
are not GPL licensed. Why am I wrong?
 We should also agree that (at least some) kernel headers are GPL'ed. 
You can verify this yourself if you have the time and the bandwith. My 
point was that some people think that if you use a GPL'ed header file, 
your work must be under the GPL as well. I don't have an opinion on that 
point b/c I haven't had the need to think about it yet.
 I was rather trying to say that not even Linux people agree on how to 
interpret the GPL.

 
Linus is just a big dope anyway, so who cares what he thinks? He's like
Kerry. He thinks whatever is convenient for him to think at the time.
 I don't care a whole lot about the upcoming U.S. election. Plus I 
think it is highly inappropriate to state your political opinion in such 
a way on this list. It's not what the list is there for.

Kind regards,
Phil.
--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward
 ...it installs Windows 2000
  -- Alfred Perlstein on [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: UPDATE between the BETA versions of 5.3

2004-09-25 Thread Phil Schulz
Odhiambo Washington wrote:
Is binary upgrade the only way to move from (for example) 5.3-BETA4
to 5.3-BETA5??
Perhaps CVS is available?
 What makes you think that a binary upgrade is the only way to upgrade?
 I've moved from RELENG_5_2 to RELENG_5 around the time 5.3-BETA2 came 
out and have been making world (after CVSup, of course) on a weekly 
basis since then. Just read /usr/src/UPDATING and you'll be fine.

Regards,
Phil.
--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward
 ...it installs Windows 2000
  -- Alfred Perlstein on [EMAIL PROTECTED]


signature.asc
Description: OpenPGP digital signature


Debugging a panic (was: )

2004-09-24 Thread Phil Schulz
Dan Mahoney, System Admin wrote:
After recently upgrading to 4.10, on a machine that's known for getting 
100+ days uptime, I got the following error on an unexpected reboot:

[Panic]
What could cause this?
-Dan Mahoney
Hi Dan!
 I'm no expert at all, but I'll give it a try...
 If you cannot reproduce the panic, you might face a hardware problem. 
Memory, harddisk, power supply, etc. are the usual suspects. If you, 
however, can reproduce the panic, please continue to read.

 Please note that the steps outlined below are things I did on a 
5.3-BETA5 system. I might have forgotten some things while I have 
included other, unneeded steps.

 There are a few requirements to really debug a panic:
 * Build a kernel w/ debug symbols. Add makeoptions DEBUG=-g to your
   kernel configuration file.
 * Set up the dumpdev and dumpdir variables in rc.conf - mine are
   set to:
 dumpdev=/dev/ad0s2b
 dumpdir=/var/crash
 * If the machine doesn't aim at minimum downtime, you might want to
   build a kernel debugger into your kernel, so the kernel can drop into
   the debugger in case of a panic. At the debugger prompt, you can type
   backtrace to get a useful trace on how the kernel ended up in the
   place where it crashed. I've also found that you need to type call
   doadump to get a crash dump before you can reset the machine. This
   might or might not apply to 4.x, however.
 * If you're aiming at minimum downtime and have set the machine to
   automatically reset itself in case of a panic, you'll have to analyze
   the core dump to get a trace.
 It is my understanding that the instruction pointer listed in the 
panic message points to the place where things blew up. You can use the 
address to point to the line in the source code, provided you have built 
in debug symbols and you have a core dump. However, the address might 
point to different places with different kernel configurations, i.e. the 
adress you gave us only applies to your kernel.
 I also think that debug symbols do not have any negative impact on 
performance, so it's a good idea to keep them around.
 Someone please correct me if I'm wrong.

  The link below [1] and a quick Google search for Debugging Kernel 
Problems will point you to documentation I've found very useful.

HTH,
Phil.
[1]http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/kerneldebug.html
--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward
 ...it installs Windows 2000
  -- Alfred Perlstein on [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problem with USB device (was: Help Me!)

2004-09-24 Thread Phil Schulz
[Please chose a better subject next time]
Mehdi Sabzeie wrote:
Hi.
Please help me about add USB device storage compeletly.
After I study handbook add USB device was failed.
please help me.
Thanks a lot.
 
1. What are you trying to do? What sort of device are you talking about? 
I'm afraid I don't understand your question.
2. What does not work? Please include any error messages you are seeing. 
 The places to look at is probably /var/log/messages
3. Tell us which version of FreeBSD you are running.

Without that information it is nearly impossible to tell what went 
wrong. After you provide more information, I'm sure you will get some help.

Kind Regards,
Phil.
--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward
 ...it installs Windows 2000
  -- Alfred Perlstein on [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: make installkernel help required. (ANSWER... sort of)

2004-09-22 Thread Phil Payne
Bizarro...

After having another search of the archives and seeing someone suggest
they were having make problems in X:
(http://lists.freebsd.org/mailman/htdig/freebsd-questions/2004-September/058300.html)

... I ran the make installkernel outside of X (i.e. in a console) and it
works fine.

Try to run it in aterm or xterm and you get the can't shift that many
error.

I cannot pretend to know anything about why this is the case.

Phil.


On Mon, 2004-09-20 at 21:04, Phil Payne wrote:
 yup:
 ---
 src-all
 ports-all tag=.
 ---
 
 Phil.
 
 
 On Mon, 2004-09-20 at 20:52, Subhro wrote:
  Did you cvsup with src-all? 
  
  Regards
  S.
  
  
  On Mon, 20 Sep 2004 20:27:34 +0100, Phil Payne [EMAIL PROTECTED] wrote:
   Hi
   
   On Mon, 2004-09-20 at 20:16, Subhro wrote:
mount -a ?
   
   All filesystems are mounted:
   # mount
   /dev/ad0s1a on / (ufs, local)
   devfs on /dev (devfs, local)
   /dev/ad0s1e on /tmp (ufs, local, soft-updates)
   /dev/ad0s1f on /usr (ufs, local, soft-updates)
   /dev/ad0s1d on /var (ufs, local, soft-updates)
   /dev/ad1s1e on /usr/home/share (ufs, local, soft-updates)
   
sysctl kern.securelevel ?
   
   securelevel is default of -1
   
cat /etc/make.conf | grep CFLAGS ?
   
   Nothing bizarre in make.conf:
   
   # cat /etc/make.conf
   NO_BIND=true
   NO_I4B=true
   NOINET6=true
   NO_SENDMAIL=true
   NOGAMES=true
   
   # -- use.perl generated deltas -- #
   # Created: Thu Sep 16 23:54:07 2004
   # Setting to use base perl from ports:
   PERL_VER=5.8.5
   PERL_VERSION=5.8.5
   PERL_ARCH=mach
   NOPERL=yo
   NO_PERL=yo
   NO_PERL_WRAPPER=yo
   
   Any extra help much appreciated.
   
   Thanks,
   Phil.
   
   
   
   
Regards
S.
   
   
On Mon, 20 Sep 2004 15:56:22 +0100, Phil Payne [EMAIL PROTECTED] wrote:
 Hi,

 Having problems installing a new kernel. Kernel builds fine, the only
 difference over previous kernel is the commenting of the following
 items:

 #optionsIPFIREWALL
 #optionsIPFIREWALL_VERBOSE
 #optionsIPFIREWALL_VERBOSE_LIMIT=1000
 #optionsIPDIVERT

 as I have switched to using PF. (previous kernel had both PF and
 IPFIREWALL enabled)

 Debug is below. Anyone help on why this is borking now?

 I've tried this twice. After the first error I cleared our /usr/obj to
 make sure I was building into a clean directory but get the same result.

 Thanks,
 Phil.

 --
  Kernel build for PP completed on Mon Sep 20 15:40:31 BST 2004
 --
 gw# make installkernel KERNCONF=PP
 --
  Making hierarchy
 --
 cd /usr/src;  MAKEOBJDIRPREFIX=/usr/obj  MACHINE_ARCH=i386
 MACHINE=i386  CPUTYPE=
 GROFF_BIN_PATH=/usr/obj/usr/src/i386/legacy/usr/bin
 GROFF_FONT_PATH=/usr/obj/usr/src/i386/legacy/usr/share/groff_font
 GROFF_TMAC_PATH=/usr/obj/usr/src/i386/legacy/usr/share/tmac
 PATH=/usr/obj/usr/src/i386/legacy/usr/sbin:/usr/obj/usr/src/i386/legacy/usr/bin:/usr/obj/usr/src/i386/legacy/usr/games:/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
  make -f Makefile.inc1 hierarchy
 cd /usr/src/etc;make distrib-dirs
 mtree -eU  -f /usr/src/etc/mtree/BSD.root.dist -p /
 mtree -eU  -f /usr/src/etc/mtree/BSD.var.dist -p /var
 mtree -eU  -f /usr/src/etc/mtree/BSD.usr.dist -p /usr
 share/nls/C changed
type expected dir found link
 mtree -eU  -f /usr/src/etc/mtree/BSD.include.dist  -p /usr/include
 cd /; rm -f /sys; ln -s usr/src/sys sys
 cd /usr/share/man/en.ISO8859-1; ln -sf ../man* .
 cd /usr/share/man;  set - `grep ^[a-zA-Z] /usr/src/etc/man.alias`;
 while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift;
 done
 cd /usr/share/openssl/man;  set - `grep ^[a-zA-Z]
 /usr/src/etc/man.alias`;  while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s
 $2 $1;  shift; shift;  done
 cd /usr/share/openssl/man/en.ISO8859-1; ln -sf ../man* .
 cd /usr/share/nls;  set - `grep ^[a-zA-Z] /usr/src/etc/nls.alias`;
 while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift;
 done
 shift: can't shift that many
 *** Error code 2

 Stop in /usr/src/etc.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.

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

Re: make installkernel help required. (ANSWER... sort of)

2004-09-22 Thread Phil Payne
On Wed, 2004-09-22 at 11:38, Giorgos Keramidas wrote:
 On 2004-09-22 11:19, Phil Payne [EMAIL PROTECTED] wrote:
  After having another search of the archives and seeing someone suggest
  they were having make problems in X:
  (http://lists.freebsd.org/mailman/htdig/freebsd-questions/2004-September/058300.html)
 
  ... I ran the make installkernel outside of X (i.e. in a console) and it
  works fine.
 
  Try to run it in aterm or xterm and you get the can't shift that many
  error.
 
  I cannot pretend to know anything about why this is the case.
 
 This error seems to be caused by some sort of mishandling of nls.alias
 when this command runs:
 
 : cd /usr/share/nls;  set - `grep ^[a-zA-Z] /usr/src/etc/nls.alias`;
 : while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift;
 : done
 : shift: can't shift that many
 : *** Error code 2
 :
 : Stop in /usr/src/etc.
 
 For this to work correctly, the file /usr/src/etc/nls.alias should
 contain pairs of words, as shown below:
 
 : # $FreeBSD: src/etc/nls.alias,v 1.5 2003/06/10 01:22:30 ache Exp $
 :
 : POSIX   C
 : en_US.US-ASCII  C
 
 Two questions that come to my mind are:
 
 1. Have you changed this file in any way?

Nope. Well... not by directly editing.

 2. What are the locale settings of your environment when this
fails, i.e. what does this print?
 
 $ env | grep '^L[AC]' | sort

No output from this command.

Here's the nls.alias file:


gw# cat /usr/src/etc/nls.alias 
# $FreeBSD: src/etc/nls.alias,v 1.5 2003/06/10 01:22:30 ache Exp $

POSIX   C
en_US.US-ASCII  C


Phil.



 - Giorgos
 

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


Re: make installkernel help required. (ANSWER... sort of)

2004-09-22 Thread Phil Payne
On Wed, 2004-09-22 at 13:15, Giorgos Keramidas wrote:
 On 2004-09-22 11:43, Phil Payne [EMAIL PROTECTED] wrote:
  On Wed, 2004-09-22 at 11:38, Giorgos Keramidas wrote:
   On 2004-09-22 11:19, Phil Payne [EMAIL PROTECTED] wrote:
... I ran the make installkernel outside of X (i.e. in a console)
and it works fine.  Try to run it in aterm or xterm and you get
the can't shift that many error.  I cannot pretend to know
anything about why this is the case.
  
   This error seems to be caused by some sort of mishandling of nls.alias
   when this command runs:
  
   : cd /usr/share/nls;  set - `grep ^[a-zA-Z] /usr/src/etc/nls.alias`;
   : while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift;
   : done
 
  Here's the nls.alias file:
 
  gw# cat /usr/src/etc/nls.alias
  # $FreeBSD: src/etc/nls.alias,v 1.5 2003/06/10 01:22:30 ache Exp $
 
  POSIX   C
  en_US.US-ASCII  C
 
 Weird.  Everything seems ok but you seem to be bumping on a problem
 related to the shell in use :-/

Weirder... installed Eterm... and I can installkernel  install ports
fine. So looks like its only aterm  xterm that have given me a problem.

Phil.

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


Re: make installkernel help required. (ANSWER... sort of)

2004-09-22 Thread Phil Payne
On Wed, 2004-09-22 at 15:18, Giorgos Keramidas wrote:
 On 2004-09-22 13:44, Phil Payne [EMAIL PROTECTED] wrote:
  On Wed, 2004-09-22 at 13:15, Giorgos Keramidas wrote:
   Weird.  Everything seems ok but you seem to be bumping on a problem
   related to the shell in use :-/
 
  Weirder... installed Eterm... and I can installkernel  install ports
  fine. So looks like its only aterm  xterm that have given me a problem.
 
 Hmmm. What's your login shell?  Is it really invoked as a login shell
 by your xterms/aterms (i.e. with the -ls option of xterm)?
 

I use /bin/tcsh. It's not invoked by any aterm/xterm options, its just
set in /etc/passwd. Is that what you meant?

Phil.

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


Re: make installkernel help required. (ANSWER... sort of)

2004-09-22 Thread Phil Payne
On Wed, 2004-09-22 at 16:33, Kevin D. Kinsey, DaleCo, S.P. wrote:
 Phil Payne wrote:
 
 On Wed, 2004-09-22 at 15:18, Giorgos Keramidas wrote:
   
 
 On 2004-09-22 13:44, Phil Payne [EMAIL PROTECTED] wrote:
 
 
 On Wed, 2004-09-22 at 13:15, Giorgos Keramidas wrote:
   
 
 Weird.  Everything seems ok but you seem to be bumping on a problem
 related to the shell in use :-/
 
 
 Weirder... installed Eterm... and I can installkernel  install ports
 fine. So looks like its only aterm  xterm that have given me a problem.
   
 
 Hmmm. What's your login shell?  Is it really invoked as a login shell
 by your xterms/aterms (i.e. with the -ls option of xterm)?
 
 
 
 I use /bin/tcsh. It's not invoked by any aterm/xterm options, its just
 set in /etc/passwd. Is that what you meant?
 
 Phil.
   
 
 
 That's the first part.  xterm doesn't {by default} set up your shell
 as a login shell ... therefore it doesn't get certain environment
 variables, and probably there are a few other things I don't know
 about ...
 
 A simple test:  try typing logout to exit your xterm.  If it responds
 not a login shell, then, well, it's not.  Starting xterm with -ls should
 help with the problem, as Giorgos stated.
 
 Now, to further support the theory Giorgos has here, Eterm *does*
 seem to use its -l option by default, so when using Eterm the terminal
 would invoke tcsh as a login shell ... and things should work.

I believe you're correct about it being a login shell issue. Using xterm
and using su - instead of su fixes the issue.

Not sure what's different in the environment that makes a full login
shell work though.

Anyway, many thanks to all who helped sort this out.

Thanks,
Phil.


 HTH,
 
 Kevin Kinsey

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


make installkernel help required.

2004-09-20 Thread Phil Payne
Hi,

Having problems installing a new kernel. Kernel builds fine, the only
difference over previous kernel is the commenting of the following
items:

#optionsIPFIREWALL
#optionsIPFIREWALL_VERBOSE
#optionsIPFIREWALL_VERBOSE_LIMIT=1000
#optionsIPDIVERT

as I have switched to using PF. (previous kernel had both PF and
IPFIREWALL enabled)

Debug is below. Anyone help on why this is borking now?

I've tried this twice. After the first error I cleared our /usr/obj to
make sure I was building into a clean directory but get the same result.

Thanks,
Phil.

--
 Kernel build for PP completed on Mon Sep 20 15:40:31 BST 2004
--
gw# make installkernel KERNCONF=PP
--
 Making hierarchy
--
cd /usr/src;  MAKEOBJDIRPREFIX=/usr/obj  MACHINE_ARCH=i386 
MACHINE=i386  CPUTYPE= 
GROFF_BIN_PATH=/usr/obj/usr/src/i386/legacy/usr/bin 
GROFF_FONT_PATH=/usr/obj/usr/src/i386/legacy/usr/share/groff_font 
GROFF_TMAC_PATH=/usr/obj/usr/src/i386/legacy/usr/share/tmac
PATH=/usr/obj/usr/src/i386/legacy/usr/sbin:/usr/obj/usr/src/i386/legacy/usr/bin:/usr/obj/usr/src/i386/legacy/usr/games:/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
 make -f Makefile.inc1 hierarchy
cd /usr/src/etc;make distrib-dirs
mtree -eU  -f /usr/src/etc/mtree/BSD.root.dist -p /
mtree -eU  -f /usr/src/etc/mtree/BSD.var.dist -p /var
mtree -eU  -f /usr/src/etc/mtree/BSD.usr.dist -p /usr
share/nls/C changed
type expected dir found link
mtree -eU  -f /usr/src/etc/mtree/BSD.include.dist  -p /usr/include
cd /; rm -f /sys; ln -s usr/src/sys sys
cd /usr/share/man/en.ISO8859-1; ln -sf ../man* .
cd /usr/share/man;  set - `grep ^[a-zA-Z] /usr/src/etc/man.alias`; 
while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift; 
done
cd /usr/share/openssl/man;  set - `grep ^[a-zA-Z]
/usr/src/etc/man.alias`;  while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s
$2 $1;  shift; shift;  done
cd /usr/share/openssl/man/en.ISO8859-1; ln -sf ../man* .
cd /usr/share/nls;  set - `grep ^[a-zA-Z] /usr/src/etc/nls.alias`; 
while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift; 
done
shift: can't shift that many
*** Error code 2

Stop in /usr/src/etc.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.


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


Re: Spinlock problem in 5.3-Beta

2004-09-15 Thread Phil Kernick
Why are people continuing to ask -CURRENT questions in -STABLE?
Just because 5.3-RELEASE will probably become stable, it isn't -STABLE now, 
and the -STABLE list isn't the place to ask questions.  Please take them back 
to -CURRENT where they belong.

Phil.
Kris Kennaway wrote:
On Tue, Sep 14, 2004 at 08:43:12PM -0600, Jason Porter wrote:
I cvsuped last week, on 9 Sept and since then I've installed XMMS and 
mplayer from the ports and neither one of them work, here are the errors 
I receive when I try to start them:

XMMS:
Fatal error 'Spinlock called when not threaded.' at line 83 in file 
/usr/src/lib/libpthread/thread/thr_spinlock.c (errno = 0)
Segmentation fault (core dumped)

mplayer:
Fatal error 'Spinlock called when not threaded.' at line 83 in file 
/usr/src/lib/libpthread/thread/thr_spinlock.c (errno = 0)
Abort trap (core dumped)

I'm not sure if this is a new feature in 5 or a debugging problem or 
what.  Does anyone have any help they can offer?

Check the archives, this is a FAQ.
Kris
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]

--
   _-_|\ Phil Kernick
  / \E-Mail:  [EMAIL PROTECTED]
  \_.-*_/Mobile:  041 61 ROTFL
   v Age! Fac ut gaudeam.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: CVS CO Error

2004-09-14 Thread Phil Schulz
Kevin D. Kinsey, DaleCo, S.P. wrote:
Kenneth A. Bond wrote:
Hello,
I am trying to update my source using CVS, as CVSup is not an option 
in my current environment. I am running FreeBSD 4.10.
Below are the commands that I am entering in order to perform the 
update, but for some reason, I am getting the following error when 
attempting to update my source:

lx1005# pwd
/usr/src
lx1005# setenv CVSROOT [EMAIL PROTECTED]:/home/ncvs
lx1005# cvs co -rRELENG_4_10 src
cvs [checkout aborted]: cannot write /home/ncvs/CVSROOT/val-tags: 
Permission denied
lx1005# whoami
root
[...]
I'm thinking it must be something in your configuration, as I
can't replicate the problem here.
I can, but only if I include the -rRELENG_4_10 part.
(using csh)
# setenv CVSROOT [EMAIL PROTECTED]:/home/ncvs
# cvs co -rRELENG_4_10 src/COPYRIGHT
cvs [checkout aborted]: cannot write /home/ncvs/CVSROOT/val-tags: Permission denied
# cvs co src/COPYRIGHT
U src/COPYRIGHT
If there were a file in the way, you'd see something like
# rm -rf src/
# mkdir src
# touch src/COPYRIGHT
# cvs co src/COPYRIGHT
cvs checkout: cannot open CVS/Entries for reading: No such file or directory
cvs [checkout aborted]: no repository
The reason why I think this is a server issue is that there is no 
reference to /home/ncvs on my system besides the CVSROOT variable. Of 
course, I might be doing something wrong, but I'm completely lost on 
what it could be.

Do you have CVS_RSH=ssh in your environment?
From man cvs:
  CVS_RSH
  cvs uses the contents of this variable to determine the name  of
  the  remote shell command to use when starting a cvs server.  If
  this variable is not set then `ssh' is used.
I take is that it doesn't matter if you've got it set or not, as long as 
you want to use ssh.

--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward
 ...it installs Windows 2000
  -- Alfred Perlstein on [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Status telnet/tn3270 [was I have some questions...]

2004-09-14 Thread Helms, Phil
Thanks for your reply.

I think I'm going to look into x3270.

Although the 3270 is a thing of the past, I still have the occasional need
to access an IBM using that protocol.

-- 
Phil Helms
[EMAIL PROTECTED]
303-595-1524


 -Original Message-
 From: K. Greenwood [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, September 14, 2004 7:16 AM
 To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: Re: Status telnet/tn3270 [was I have some questions...]
 
 
 Painfully long subject line:
 
 I have some questions about
 telnet/telnetd/libtelnet/tn3270 and why FreeBSD is
 different than other BSDs in this regard
 
 --- Phil Helms [EMAIL PROTECTED] wrote:
 
  Any luck with fixing tn3270 yet?
 
 Well, no one else has responded (on list) so here's
 the pertainent link regarding a long discussion on
 it's status
 
 http://lists.freebsd.org/pipermail/freebsd-questions/2004-Marc
h/039418.html

So it has a new maintainer... good, but the
conversation somewhat stagnates.  When we go to the
cvsweb to note the last updates here:

http://www.freebsd.org/cgi/cvsweb.cgi/ports/net/tn3270/

It does not look like any radical changes have
occurred, so my guess would be nope.  Nobody has
bothered to get around to it.

Good luck



__
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


I have some questions about telnet/telnetd/libtelnet/tn3270 and why FreeBSD is different than other BSDs in this regard

2004-09-13 Thread Phil Helms
Any luck with fixing tn3270 yet?

-- 
Phil Helms
[EMAIL PROTECTED]
303-595-1524

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


Re: problem by the installation

2004-09-07 Thread Phil Schulz
huko wrote:
Sorry to vaste your time, but I have a problem and I don´t know how to fiksed it.
I have the geforce fx5200 grafic card and the e-yama LCD 17 monitor.
When I will enter the section to configure my grafic card and the monitor,
Where do you enter the section to configure my grafic card? In the 
installation routine aka sysinstall? If so, what version of FreeBSD are 
you trying to install?

the monitor paints black and the computer doesn´t responce anymore.
Can somebody give me a good adveise, Please, Please..
You might want to use a text based configuration tool. If you are trying 
to install a version of FreeBSD that comes with XFree86, you might be 
able to easily configure your card and monitor by running `xf86cfg 
-textmode`. If you are trying to install X.org, you can do the same 
thing by running `xorgcfg -textmode`

Regards,
Phil.
--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward
 ...it installs Windows 2000
  -- Alfred Perlstein on [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Can't boot

2004-08-31 Thread Phil Thomson
Hi all,
Just installed FreeBSD on a Pentium 150 I found in the garbage (!), and it 
seems the installation went fine, but I cannot boot. I had to use the boot 
floppies to start the installation, so I used those to boot from to try 
and figure out how to configure the boot options in sysinstall, but I had 
no luck. I tried using the fixit floppy, but I don't understand how to 
find the hard drive or what I would do when I got there (I'm kind of a 
newbie to FreeBSD). The holographic shell didnt work (no shell came up 
at all). I can't currently rescue from a CD as I did a network install 
from floppies. What is the next step?

P
Computers in the future may weigh no more than 1.5 tons.
Popular Mechanics, 1949
=
Phil Thomson
home: http://www.sfu.ca/~pthomson
label: http://centibel.org/
group: http://groups.yahoo.com/group/databenders/
=
SDF Public Access UNIX System
http://www.freeshell.org/
Geekier than you since 1987.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't boot

2004-08-31 Thread Phil Thomson
I assume that you are installing *only* FreeBSD on the Pentium and not
multibooting it. Did you select to install the standard MBR or did u
select to leave he MBR untouched? What happens when you try to boot
the system fromthe hadr drive?
Yes, FreeBSD is to be the only system on the machine. I actually don't 
remember what I chose to do with regards to the MBR; was there a point in 
the installation I would have made that choice? I'm pretty sure I would 
have chosen to install the standard MBR as there are no other systems on 
the machine. Is there a way I can fix the MBR now if that's the issue? I 
couldn't find that in sysinstall.

When I try to boot from the hard drive, it says Read error.
P

Regard
S.
On Wed, 1 Sep 2004 02:49:51 + (UTC), Phil Thomson
[EMAIL PROTECTED] wrote:
Hi all,
Just installed FreeBSD on a Pentium 150 I found in the garbage (!), and it
seems the installation went fine, but I cannot boot. I had to use the boot
floppies to start the installation, so I used those to boot from to try
and figure out how to configure the boot options in sysinstall, but I had
no luck. I tried using the fixit floppy, but I don't understand how to
find the hard drive or what I would do when I got there (I'm kind of a
newbie to FreeBSD). The holographic shell didnt work (no shell came up
at all). I can't currently rescue from a CD as I did a network install
from floppies. What is the next step?
P
Computers in the future may weigh no more than 1.5 tons.
Popular Mechanics, 1949
=
Phil Thomson
home: http://www.sfu.ca/~pthomson
label: http://centibel.org/
group: http://groups.yahoo.com/group/databenders/
=
SDF Public Access UNIX System
http://www.freeshell.org/
Geekier than you since 1987.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

--
Subhro Sankha Kar
School of Information Technology
Block AQ-13/1 Sector V
ZIP 700091
India
Computers in the future may weigh no more than 1.5 tons.
Popular Mechanics, 1949
=
Phil Thomson
home: http://www.sfu.ca/~pthomson
label: http://centibel.org/
group: http://groups.yahoo.com/group/databenders/
=
SDF Public Access UNIX System
http://www.freeshell.org/
Geekier than you since 1987.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: determine X windows version from command line

2004-08-30 Thread Phil Schulz
Steven Friedrich wrote:
I'd like to be able to run a command that will yield which X window system is 
installed and what version.

`X -version` works for me. But I'm not sure if this will also work w/ 
X.org since I'm still running XFree86

Regards,
Phil
--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward
 ...it installs Windows 2000
  -- Alfred Perlstein on [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: how to get ndis support working in freebsd

2004-08-29 Thread Phil Schulz
Sanjay Makadia wrote:
Hi,
I am newbie as far as freebsd is concerned.  I installed the latest
version of freebsd 5.2.1 last week and to make my wireless card to
work i need ndis wrapper.  I searched for it on the web and found the
necessary drivers.  I searched for ndis on my system but it seems like
its not there.  Do i have rebuild the kernel with some flags to
install ndis or can i just get source for ndis and install it?  Any
help is highly appreciated.  Thanks in advance.
Hi,
 Project Evil aka NDISulator does not come with 5.2.1-Release. 
However, you can install it on 5.2.1-Release by following these 
instructions.
 You need to have the system's sources installed locally. In addition, 
you will have to download the NDISulator sources. You can either 
download them from CVSweb, by using CVSup or by using AnonCVS. I chose 
to use AnonCVS.
 Pick an AnonCVS mirror close to you from the list at [1]. I live in 
Germany, but since none of the two German mirrors work for me atm, I 
chose anoncvs.at.FreeBSD.org which is located in Austria. Set your 
CVSROOT environment variable so it fits the server you chose. I issued 
the following commands:

  $ su
  Password:
  # setenv CVSROOT :pserver:[EMAIL PROTECTED]:/home/ncvs
 I used 'su' b/c you need write permissions on the source tree to check 
out the NDISulator sources.
 Now you will need to login to the CVS server.

  # cvs login
  Logging in to :pserver:[EMAIL PROTECTED]:2401/home/ncvs
  CVS password:
 You can find the password listed at [1]. Now you need to check out the 
sources for NDISulator. The directories you need to check out are

  sys/compat/ndis
  sys/dev/if_ndis
  usr.sbin/ndiscvt
  sys/modules/if_ndis
  sys/modules/ndis
Use the following command to do so (and make sure you're in /usr/src):
  # pwd
  /usr/src
  mars# cvs checkout sys/compat/ndis sys/dev/if_ndis usr.sbin/ndiscvt \
  sys/modules/if_ndis sys/modules/ndis
  [CVS output snipped]
 First you should build ndiscvt(8) by doing
  # cd /usr/src/usr.sbin/ndiscvt
  # make
  [compile output snipped]
  # make install
  install -s -o root -g wheel -m 555   ndiscvt /usr/sbin
  install -o root -g wheel -m 444 ndiscvt.8.gz  /usr/share/man/man8
  # rehash
 Now you can build the first module by doing:
  # cd /sys/modules/ndis/
  # make
  # make load
  /sbin/kldload -v /usr/src/sys/modules/ndis/ndis.ko
  Loaded /usr/src/sys/modules/ndis/ndis.ko, id=4
 Finally you need to build the if_ndis module. This requires that you 
have got the drivers for your NIC availeable.

  # cd /sys/modules/if_ndis
  # ndiscvt -i /path/to/driver.inf -s /path/to/driver.sys \
  -o ndis_driver_data.h
  [long output snipped]
  # make
  Warning: Object directory not changed from original \
  /usr/src/sys/modules/if_ndis
  @ - /usr/src/sys
  machine - /usr/src/sys/i386/include
  touch opt_bdg.h
  awk -f @/tools/makeobjops.awk @/kern/device_if.m -h
  awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h
  awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h
  awk -f @/tools/makeobjops.awk @/dev/pccard/card_if.m -h
  make: don't know how to make pccarddevs.h. Stop
Now, I don't know what this error means or why it appears, but if you 
apply this patch to Makefile, it works for me.

  --- Makefile.oldSun Aug 15 14:27:08 2004
  +++ MakefileSun Aug 29 13:27:25 2004
  @@ -4,6 +4,6 @@
   KMOD=  if_ndis
   SRCS=  if_ndis.c if_ndis_pci.c if_ndis_pccard.c
  -SRCS+= opt_bdg.h device_if.h bus_if.h pci_if.h card_if.h pccarddevs.h
  +SRCS+= opt_bdg.h device_if.h bus_if.h pci_if.h card_if.h
   .include bsd.kmod.mk
Now re-run make:
  # make
  [output snipped, no errors]
Now you can load the module. I recommend you do this on the console and 
not from X so you see what's going on...

  # make load
  /sbin/kldload -v /usr/src/sys/modules/if_ndis/if_ndis.ko
   Aug 29 13:30:38 mars kernel: ndis0: Intel(R) PRO/Wireless LAN 2100 
3B Mini PCI Adapter mem 0xe0203000-0xe0203fff irq 10 at device 6.0 on pci2
   Aug 29 13:30:38 mars kernel: ndis0: NDIS API version: 5.1
   Aug 29 13:30:38 mars kernel: ndis0: 11b rates: 11Mbps 2Mbps 1Mbps 
5.5Mbps
  Loaded /usr/src/sys/modules/if_ndis/if_ndis.ko, id=5

 Please note that the s are just there so my mailer doesn't wrap the 
lines :-/. Now, if all went well you can see a network interface called 
ndis0 if you issue

mars# ifconfig ndis0
ndis0: flags=8802BROADCAST,SIMPLEX,MULTICAST mtu 1500
ether 00:0c:f1:2d:0e:4b
media: IEEE 802.11 Wireless Ethernet autoselect
status: no carrier
ssid 
channel -1 authmode OPEN powersavemode OFF powersavesleep 100
wepmode OFF weptxkey 1
Depending on your interface the output might look differently, but if 
ndis0 is there, you know that compiling and loading Project Evil worked.
 Hope this helps.

Regards,
Phil.
[1]http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html
--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward

Re: Alternatives to CVSUP for Security Updates and Errata

2004-08-26 Thread Phil Schulz
Kenneth A. Bond wrote:
[Has no way of upgrading sources via CVSup b/c of firewalls]
If your security guys do not block SSH traffic, you could check out your 
sources using CVS over ssh.
See 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html 
for some mirrors which allow ssh.

Regards,
Phil.
P.S.: Oh, and wrap your lines...
--
Did you know...
If you play a Windows 2000 CD backwards, you hear satanic messages,
but what's worse is when you play it forward
   ...it installs windows 2000
-- Alfred Perlstein on [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: AMD64 Woes

2004-07-28 Thread Phil Brennan
Just force the cpu speed to high in your bios setup.

On Tue, 27 Jul 2004 19:46:22 -0700, Remi [EMAIL PROTECTED] wrote:
 I just got a new AMD64 laptop(I8254) and it appears to be running at 800MHz
 on 5.2.1-R
 CPU: AMD Athlon(tm) 64 Processor 3200+ (800.03-MHz K8-class CPU)
 
 I have no idea how to fix this! Would upgrading to -CURRENT help at all?
 
 ___
 [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: FreeBSD ISO-image

2004-07-23 Thread Phil Reynolds
On Fri, Jul 23, 2004 at 02:36:03PM +0200, Maksym Marchenko wrote:
 Hello!
 
 So I need to download FreeBSD iso image 4.10
 
 Can anybody say, what a difference between miniinst, disc1 and disc2 iso's

A miniinst is a minimal network-install image - it would fit well on a
3 CD, or maybe on a CD-R business card.

The others are full base system install CDs (and maybe more - I haven't
handled a set of FreeBSD CDs for quite a while).

-- 
Phil Reynolds
 o   mail: [EMAIL PROTECTED]
|L_ \  / Web: http://www.tinsleyviaduct.com/phil/
(_)- \/  Waltham 67, Emley Moor 69, Droitwich 79, Windows 95
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: 5.2.1 Install Error (Unable To Find Device Node)

2004-07-13 Thread Phil Schulz
I'm getting an Unable to find device node for
/dev/da0s1b in /dev error that is causing
installation to abort.  The disk is a 4x200GB IDE
RAID array.
[...]
I see Adaptec 2400A ATA-100 RAID controller ( asr(4)
driver) in the list; do I need to do anything
special, or will the driver load with the standard mfs
and kernel floppies?
Rishi,
I'm sorry but I don't /know/. But the driver floppy image doesn't have 
the driver included (according to the DRIVERS.TXT file) - it is possible 
that the driver is not included on the floppies just to save space. You 
might want to download the miniinst.iso from

ftp://ftp.CHANGE_THIS.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/5.2.1/5.2.1-RELEASE-i386-miniinst.iso
burn it to a blank cd and see if you can boot from the CD. Note that the 
URL above is for the i386 platform (ordinary PC) only. For other 
platforms, you'll need to go to the respective directory on the FTP 
server - I guess you'll find the file :-)

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


Re: Is it safe to keep /kernel.old?

2004-07-13 Thread Phil Schulz
[Please wrap your lines]
Mark wrote:
[...]
My question is, though, is it safe to keep /kernel.old?
[...]
I am not sure whether users could actually use the old kernel (once in 
multi-user mode). Still, I wonder if this concern is valid at all. Or 
whether I should perhaps get rid of the old kernel.
Mark,
I'd say there is no problem in keeping the old kernel around. Even if 
you had to apply a security patch to the current kernel. After applying 
the patch, re-compiling and installing the new kernel, /kernel.old would 
indeed contain the old security hole. However, as long as nobody can 
boot that old kernel, no harm can be done. If an attacker is actually 
able to boot your old vulnerable kernel, then he won't need to exploit 
the security whole anymore :-)

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


Re: Opengroupware on FreeBSD 5.2

2004-07-12 Thread Phil Schulz
Hi Suhaimi,
Is there anybody manage to setup and configure 
opengroupware(http://opengroupware.org ) on FreeBSD 5.x?

Try misc/linux-opengroupware from ports.
Really need your advise ...
Read http://www.lemis.com/questions.html and be more specific on what 
the problem is (e.g. error messages).

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


Re: 5.2.1 Install Error (Unable To Find Device Node)

2004-07-12 Thread Phil Schulz
Hi Rishi,
I'm getting an Unable to find device node for
/dev/da0s1b in /dev error that is causing
installation to abort.  The disk is a 4x200GB IDE RAID
array.  Any idea what the problem might be?
This is a wild guess... but is the RAID controller supported? You might 
want to check http://www.freebsd.org/releases/5.2.1R/hardware.html and 
go on from there.

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


Re: Weird memory detection problem on Compaq M700

2004-07-05 Thread Phil Schulz
Christopher Smith wrote:
[...]
I have a Compaq Armada M700 that I used for a firewall.  I've recently
upgraded the memory in it to 320MB (64MB onboard + 256MB).  The machine
detects the memory fine.  The FreeBSD bootloader detects the memory fine.
However, when the kernel boots it only detects 64MB.
I don't know if this is related but I'll post anyways hoping to help you.
I have an older Armada laptop which has the same problem, however it's 
running OpenBSD. I remember reading that the BIOS of the laptop wouldn't 
announce the right amount of physical memory to the kernel. The solution 
 (for OpenBSD) is to add a line that reads
	machine mem [EMAIL PROTECTED]
to /etc/boot.conf - Note that this is for 32MB onboard + 32MB in the 
add. slot.

[...]
I realise I can use options MAXMEM to manually specify the amount of RAM
in the machine, but it just struck me as rather strange that it detects
192MB fine but not 320MB (particularly since the bootloader sees it all).
Try it. See if it works. I think it's pretty much the same thing I did 
with my OpenBSD laptop.

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


Re: Connecting a USB Zip drive -- whatever am I doing wrong?

2004-07-05 Thread Phil Schulz
epilogue wrote:
### relevant lines from kernel
device  vpo
device  scbus
device  da
device  uhci# uhci related entries show up in dmesg
device  usb
device  ugen
Don't forget umass.
Try adding sa. My USB HDD comes up as /dev/sa0. Your ZIP drive might 
need sa, too.

[dmesg snipped]
[various messages snipped]
### /var/log/messages
Jul  4 21:47:04 /kernel: umass0: Iomega USB Zip 100, rev 1.00/1.00, addr 2
Jul  4 21:47:04 /kernel: umass0: Get Max Lun not supported (STALLED)
Jul  4 21:48:09 /kernel: umass0: BBB reset failed, IOERROR
I guess if you posted these to stable@ you might get more attention.
### mounting
i'm not sure that i 'get' which device the zip maps to nor how to determine
this.  i have tried about 40 different combinations of mount (mostly
gleaned from my research), but i have yet to hit upon the right command. 

# mount -t msdos /dev/da* /mnt  # * = practically every single one
msdos: /dev/da0s4: Device not configured
See above. I think USB mass storage devices require sa to work, 
therefore you would need sth like

mount -t msdos /dev/sa* /mnt  -- Don't know what * should be out of my 
head now.

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


Re: A few simple questions(...if you don't mind)

2004-07-05 Thread Phil Schulz
Mark Jayson Alvarez wrote:
Hello,
 
Questions:
1. What is the command for ejecting the cdrom?
I don't think there is such a command. I'm not 100% sure though.
2. Do you know if viruses exist in freebsd, like in
Windows?
I believe there used to be some viri for Unix-like OSs, but they are all 
pretty much harmless since they aren't usually found 'in the wild'.
A quick search on www.viruslibrary.com gave me one match [1] - maybe 
someone else can comment that.

3. When I issued a netstat command, and i see  
something like 192.135.15... connected to
192.262.33..., what is the command for terminating
such connections?

I don't know.
4. When I issued a alias ls ls -FGh how can I make
this alias for 'ls' permanent? And where are the
individual manpages for those built-in commands
located? 
Check your shell's man page. Given that you are using csh(1) (which is 
root's default shell on FreeBSD) you should add such an entry in ~/.cshrc

5. Does any version of freebsd supports mounting,
reading, and writing of ext3fs partitions of linux? 

No.
6. Can freebsd turn off my monitor or any other
peripherals of my pc in a given idle time, like the
stand by in Windows? How?(just the link)
It definitely works w/ my TFT Screen.
Depending on your BIOS and how well it is supported, you might be able 
to use ACPI for power-saving purposes on FreeBSD 5.x

7. What is the correct way of rebuilding my ports? In
freebsd sources, I do a make buildworld and then make
installworld. How do I do it in my ports collection?
(e.g; make buildports, make installports??? :-)
Install /usr/ports/sysutils/portupgrade and read portupgrade(1)'s man 
page. You might also find some other resources on the internet. Use your 
favourite search engine :-)

Regards,
Phil.
--
[1] http://www.viruslibrary.com/virusinfo/Worm.FreeBSD.Scalper.a.htm
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ext2FS

2004-07-05 Thread Phil Schulz
Warren Block wrote:
On Mon, 5 Jul 2004, Phil Schulz wrote:
Mark Jayson Alvarez wrote:

5. Does any version of freebsd supports mounting,
reading, and writing of ext3fs partitions of linux? 

No.

Maybe.  ext2fs is supposed to be ext3fs with journalling, and ext2fs can 
be mounted with mount_ext2fs.  I could swear I've done this with ext3fs 
partitions, but can't recall when or where.

I stand corrected.
I have to admit that I answered that question solely based on
# ls /sbin/mount_*
:-)
Phil.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: port upgrades

2004-06-30 Thread Phil Schulz
Chris wrote:
[...]
So I use the -f flag to force, and get several errors like:
[...]
From the portupgrade man page:
-r
--recursiveAct on all those packages depending on the given
   packages as well.
So I think you might want to run
#portupgrade -rf bsdpan-Mail-SpamAssassin
[...]
I can successfully install Mail::SpamAssassin using cpan, but it never seems to 
show up as the latest version (always seems to need upgrading when looking at pkg_version).
Are there are two different ways to install (for example) SpamAssassin (and other perl 
related ports)?
I can use cpan OR the pkg_add / portupgrade commands but not both?
Sorry, I don't know.
Phil.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How to make permanent in kernel

2004-06-30 Thread Phil Schulz
Tuc wrote:
Hi,
I had a problem with my mouse, and found the answer here :
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/x.html#PS2-X
which says :
11.14. Why does my PS/2 mouse misbehave under X?
Your mouse and the mouse driver may have somewhat become out of synchronization.
In rare cases the driver may erroneously report synchronization problem and you
may see the kernel message:
psmintr: out of sync ( != )
and notice that your mouse does not work properly.
If this happens, disable the synchronization check code by setting the driver fl
ags for the PS/2 mouse driver to 0x100. Enter UserConfig by giving the -c option
 at the boot prompt:
boot: -c
Then, in the UserConfig command line, type:
UserConfig flags psm0 0x100
UserConfig quit

Which is great. The problem is, I don't want to keep doing this
every time I reboot. This is a FreeBSD 5 system. In 4 I knew how to
do it with device  psm0at atkbdc? irq 12, but now not sure
how do this in 5. I see something about a hints file, but not sure how
it plays in, if at all.
Mmmh, didn't I answer the very same question a while ago?
Anyways... add a line that reads
hint.psm.0.flags=0x100
to /boot/device.hints
Regards,
Phil.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: fetchmail question

2004-06-27 Thread Phil Schulz
Bikrant wrote:
Hi... I am trying to retrive mails using fetchmail and then deleiver it 
locally using sendmail. I found that fetchmail adds the following header in 
every messages that it retrives from the pop server.

Received: from localhost (localhost.localdomain [127.0.0.1])
by localhost.localdomain (8.12.5/8.12.5) with ESMTP id i5QIldIr030563
for [EMAIL PROTECTED]; Sun, 27 Jun 2004 00:32:39 +0545
I'm not sure about this. But to me it doesn't look like this is added by 
 fetchmail but rather by sendmail. Below you find the header which was 
added to your original email by fetchmail on my box. Note the difference 
 in the 'from' part. Also I don't think that fetchmail 'speaks' (E)SMTP.

Phil.
Received: from pop.gmx.net [213.165.64.20]
by localhost with POP3 (fetchmail-6.2.0)
for [EMAIL PROTECTED] (single-drop); Sun, 27 Jun 2004 10:25:38 +0200 (CEST)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Centrino - Made for Microsoft Windows XP?

2004-06-26 Thread Phil Reynolds
On Sat, Jun 26, 2004 at 02:39:12PM +0800, Robert Storey wrote:
 So I guess my question is this: Has anybody here gotten FreeBSD 5.2.1 to install on 
 a Centrino laptop? If so, did you need to do anything special to make it work? Any 
 tips, tricks or hints I should try? Or should I just wait for FreeBSD 5.3 to come 
 out and hope it works? Or should I file a PR?

Well, I haven't tried FreeBSD on my Centrino-based machine but use Linux
on it with no problem, as far as every day operation goes. Wireless
networking is a little unreliable but still very usable. I use a 2.6
kernel.

If I had another machine of the same type, I would try FreeBSD for you -
not heard of anyone doing so though.

-- 
Phil Reynolds
 o   mail: [EMAIL PROTECTED]
|L_ \  / Web: http://www.tinsleyviaduct.com/phil/
(_)- \/  Waltham 67, Emley Moor 69, Droitwich 79, Windows 95
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Miscellaneous Problems

2004-06-20 Thread Phil Schulz

I have been attempting to get my pcmcia wireless card running on my laptop, I 
have identified the driver to install (wi), but am quite clueless on how to 
do so.

 

What exactly are you doing and what problems are you facing?
When you insert the card, you should see some messages on the console. 
Maybe you want to post those messages and possible warnings/error 
messages you're seeing.

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


Re: Any 4.10 installation on asus pundit ?

2004-06-20 Thread Phil Schulz

my desktop machine using (I think) 4.9-Release. It started when I had 
to change the motherboard. The new one came w/ an SiS chipset that 
wasn't supported by FreeBSD. I solved the problem by adding a line to 
/sys/dev/ata/ata-dma.c. It worked for a few weeks w/o any problems 
until I switched to RELENG_5_2 for various other reasons.
You might want to post what chipset your mainboard uses.

http://www.asus.com/prog/spec.asp?m=Punditlangs=01
 - Chipset SIS 651/962
 - Lan Broadcom BCM4401
Try to apply the attached patch to /sys/dev/ata/ata-dma.c
Neither do I have a mainboard w/ the same chipset as yours nor do I have 
any PC running RELENG_4 atm. But I had to apply sth similar to make my 
SiS-746(?)-based mainboard work under RELENG_4. I'm not a developer so I 
don't know if it's a good and clean solution but it worked for me back then.

In addition, I can't find the bfe0 network driver for the Broadcom 
BCM4401 in the kernel configuration, but the 4.10 release notes told 
the bfe should be in.

From bfe(4): The bfe device driver first appeared in FreeBSD 5.1.
--- ata-dma.c.old   Sun Jun 20 19:30:10 2004
+++ ata-dma.c   Sun Jun 20 19:23:41 2004
@@ -669,6 +669,7 @@
ata_find_dev(parent, 0x06401039, 0) ||  /* SiS 640 */
ata_find_dev(parent, 0x06451039, 0) ||  /* SiS 645 */
ata_find_dev(parent, 0x06501039, 0) ||  /* SiS 650 */
+   ata_find_dev(parent, 0x06511039, 0) ||  /* SiS 651 */
ata_find_dev(parent, 0x07301039, 0) ||  /* SiS 730 */
ata_find_dev(parent, 0x07331039, 0) ||  /* SiS 733 */
ata_find_dev(parent, 0x07351039, 0) ||  /* SiS 735 */
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Any 4.10 installation on asus pundit ?

2004-06-20 Thread Phil Schulz

The problem is I'm not a system developper either, and I only had the 
iso images for installation, so I will have to find a way to apply the 
patch.

You'll need the kernel sources installed. Then apply the patch and then 
re-compile the kernel. Basically you just need to add on line of code in 
the right place. If you have got the sources from CD and not updated 
them you will not need to rebuild  the userland. Check the handbook for 
details (chapter 9).

In addition, I can't find the bfe0 network driver for the Broadcom 
BCM4401 in the kernel configuration, but the 4.10 release notes told 
the bfe should be in.

 From bfe(4): The bfe device driver first appeared in FreeBSD 5.1.

Actually I forgot that 5.1 was released before 4.10 - my mistake. Indeed 
the driver seems to have been ported back to the 4-Stable branch.

Yes, but in http://www.freebsd.org/releases/4.10R/errata.html :
(27 May 2004) The bfe(4) driver for Broadcom BCM4401 based Fast 
Ethernet adapters has been added but the release notes did not mention 
that.

I think you just need to add a line that reads
device   bfe
to your kernel config file and the rebuild the kernel.
Phil.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Any 4.10 installation on asus pundit ?

2004-06-19 Thread Phil Schulz
Bernard Dugas wrote:
Hi,
Robert Downes a écrit :
[EMAIL PROTECTED] wrote:
I've tried to install the last freebds4.10 on an ASUS PUNDIT, from 
the iso images downloaded from the freeBSD website.
But it can't install. It stops on a :
ata0 : resetting devices

I had that problem. I disabled UDMA (Ultra DMA) in the BIOS, and the 
problem was overcome.

However, it ultimately turned out to be a bad data cable to the hard 
drive, so see if you've got a good spare lying around to give that a 
try. (I got some serious errors in 5.2.1 trying to use the bad cable).

Thanks very much, Robert, it was the udma option : but this is quite 
inefficient if I can't use UDMA with FreeBSD ?

Best regards,
I didn't see the beginning of the thread. But I had a similar problem on 
my desktop machine using (I think) 4.9-Release. It started when I had to 
change the motherboard. The new one came w/ an SiS chipset that wasn't 
supported by FreeBSD. I solved the problem by adding a line to 
/sys/dev/ata/ata-dma.c. It worked for a few weeks w/o any problems until 
I switched to RELENG_5_2 for various other reasons.
You might want to post what chipset your mainboard uses.

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


Re: Regarding dynamic kernel modules in freeBSD

2004-06-16 Thread Phil Schulz
ravi wrote:
Hi,
How to write dynamic kernel modules using C in FreeBSD ?
 

http://www.freebsd.org/doc/en_US.ISO8859-1/books/arch-handbook/driverbasics-kld.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How to make permanent in kernel

2004-06-16 Thread Phil Schulz

boot: -c
Then, in the UserConfig command line, type:
UserConfig flags psm0 0x100
UserConfig quit
	Which is great. The problem is, I don't want to keep doing this
every time I reboot. This is a FreeBSD 5 system. In 4 I knew how to
do it with device  psm0at atkbdc? irq 12, but now not sure
how do this in 5. I see something about a hints file, but not sure how
it plays in, if at all.
 

Add a line that says
hint.psm.0.flags=0x100
to /boot/device.hints
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Whither binaries?

2004-06-06 Thread Phil Thomson
Hi all,
I'm a relative *NIX newby running FreeBSD on an somewhat older (750 MHz) 
machine. I've been installing programs, and they seem to install in my 
home directory by default, but I have my partition table set up so I don't 
have much room there. My questions are: 1) is there a better place to 
install programs (like /usr/bin for example?) and 2) is there an 
established procedure for installing programs in that location by default? 
Sorry if the wording of my questions in unclear; let me know if you have 
any questions.

Phil
=
Phil Thomson
home: http://www.sfu.ca/~pthomson
label: http://centibel.org/
group: http://groups.yahoo.com/group/databenders/
=
SDF Public Access UNIX System
http://www.freeshell.org/
Geekier than you since 1987.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mounting CDrom

2004-05-24 Thread Phil Schulz
Donald Szatkowski wrote:
 
I have tried:  mount -t cd9660 /dev/acd0/mnt
 

I think you're missing a space... as root try
mount -t cd9660 /dev/acd0 /mnt
I think this only works on 5.x, on 4.x you'd have to use /dev/acd0c. Or 
read

http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#USER-FLOPPYMOUNT
if you want ordinary users to be able to mount drives.
Phil.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: openssh port not uptodate ?

2004-05-24 Thread Phil Schulz
Thomas May wrote:
i have now downloaded the new ports.tar.gz file and if i want to install the
openssh port, because of the security hole, i see the old version 3.6.1
 

how do I get the new version ? is the port not uptodate ?
 

You've probably downloaded the ports tree that comes whit a release. In 
order to get the latest ports you'll need to update the ports tree e.g. 
by using CVSup. Check the handbook at [1] on how to do that.
After you've updated your ports tree, go to /usr/ports/security/openssh 
and then type make install. You should then get the latest version of 
OpenSSH installed.

Phil.
[1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ICQ question

2004-05-13 Thread Phil Reynolds
On Thu, May 13, 2004 at 11:52:03AM +0200, Nelis Lamprecht wrote:
 On Thu, 2004-05-13 at 10:59, Stephen Liu wrote:
  Hi folks,
  
  FreeBSD 5.2
  
  Has any folk run 'Kxicq' on FreeBSD before.  Can I
  talk to my friend if he runs MSN on Windows?  If NO
  kindly advise what will be the solution.
  
 
 you may want to try Gaim http://gaim.sourceforge.net/ for MSN support
 and others.

Either install gabber (from ports/net) and find an MSN transport on it,
or install ayttm (also from ports/net).

-- 
Phil Reynolds
 o   mail: [EMAIL PROTECTED]
|L_ \  / Web: http://www.tinsleyviaduct.com/phil/
(_)- \/  Waltham 67, Emley Moor 69, Droitwich 79, Windows 95
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: play a music CD backwards?

2004-03-09 Thread Phil Reynolds
On Tue, Mar 09, 2004 at 10:58:26AM -0500, Michael W. Lucas wrote:
 No, I'm not looking for satanic messages.  :-)  
 
 I have a music CD that was pressed from a master tape run backwards
 (Throbbing Gristle's 2nd Annual Report, if anyone cares).  It would
 be nice to hear it forwards.
 
 Can someone suggest a way to hear a CD backwards?  Sadly, none of the
 standard CD players have this option.  I'd happily rip this to MP3 if
 I could find a MP3 player with a play backwards option.

Use cdparanoia to rip the track(s) then use sox with the reverse
effect.

Install and man them both if you need further help.

-- 
Phil Reynolds
 o   mail: [EMAIL PROTECTED]
|L_ \  / Web: http://www.tinsleyviaduct.com/phil/
(_)- \/  Waltham 67, Emley Moor 69, Droitwich 79, Windows 95
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


UK Distributor???

2004-02-27 Thread Phil Burford
Hi 
 
I am an Account Manager for Westwood Associates Ltd, an IT Reseller in
the UK.
 
One of my customers has asked for pricing on your products, but I do not
know who your UK Distributor(s) is (are). 
 
Can you help?
 
Best regards, 
Phil Burford
Account Manager
Westwood Associates Ltd 
Tel. 01858 545 888
Fax. 01858 545 154
Email. [EMAIL PROTECTED] 
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Ports: foomatic-db-engine broken

2004-02-18 Thread Phil Reynolds
On upgrading ports today, the following happened:

** 'print/foomatic-db-engine' is marked as IGNORE:
is marked as broken: Fails to patch

Is someone working to fix this?

-- 
Phil Reynolds
 o   mail: [EMAIL PROTECTED]
|L_ \  / Web: http://www.tinsleyviaduct.com/phil/
(_)- \/  Waltham 67, Emley Moor 69, Droitwich 79, Windows 95
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Web browser ip address http format for port 8088

2004-02-11 Thread Leonard, Phil
http://xxx.xxx.xxx:8088/



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of JJB
Sent: Wednesday, February 11, 2004 2:26 PM
To: [EMAIL PROTECTED] ORG
Subject: Web browser ip address http format for port 8088


My IPS has blocked port 80.
But I want to test my apache config.
I have apache listening on port 8088.
What is the format of the browser http://xxx.xxx.xxx.xxx/   URL to
tell it to use different port number

___
[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]


cups-base and cups-lpr - installing from ports

2004-02-02 Thread Phil Reynolds
I have satisfactory use of cups-base and cups-lpr, but I believe it
should be possible to install them somewhat more correctly, so that the
following happen:

1) The system's standard lpr command is replaced by the cups one,
   without any manual alteration to the PATH being required.

2) portupgrade -a ceases displaying the messages:

   **  'print/cups-lpr' is marked as IGNORE:
   is forbidden: Changes ownership of system directories
   (and the same for cups-base)

Naturally, it will be necessary to prevent make world installing the
standard lpr but I can already see how to do that.

Any advice would be appreciated.

-- 
Phil Reynolds
 o   mail: [EMAIL PROTECTED]
|L_ \  / Web: http://www.tinsleyviaduct.com/phil/
(_)- \/  Waltham 67, Emley Moor 69, Droitwich 79, Windows 95
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Samba, Cups and Printing: Windows client gives Access denied

2004-01-01 Thread Phil Payne
Hi,

I've got an HP printer on USB port on Freebsd 4-Stable box. Printer is 
on /dev/ulpt0. Installed cups and printing from BSD is fine. 

Had samba installed and working great for filesharing. Now introduced an 
all printers share to share this printer. Printer is browseable from 
windows machine.

When I install this printer on a Win2K machine (and use local drivers) I 
get Access Denied, Unable to Connect. Unlike some other people's 
experience I cannot print to the printer despite this message.

I've found lots of references to others having this problem on BSD and 
LINUX on the web but no resolutions. 

Of course, BSD questions is where all the really clever people hang out 
so someone here is bound to know ;-)

I couldn't find any resolution in the mailing list archive so does 
anyone know of an answer or is this a bug in operation between Winblows 
and Samba?

Below is the global and printers sections of my smb.conf. This was 
generated by webmin but I do understand and have written smb.conf 
manually in past.

Thanks,
Phil

[global]
log file = /var/log/log.%m
max log size = 50
interfaces = 192.168.100.254/255.255.255.0
dns proxy = no 
printing = cups
encrypt passwords = yes
path = /var/spool/samba
server string = FRANKS SERVER
socket address = 192.168.100.254
allow hosts = 192.168.100. 127.
workgroup = FRANKS
socket options = TCP_NODELAY
netbios name = PPSERVER
keepalive = 300
load printers = yes
security = user
os level = 20

[printers]
printable = yes
guest only = yes
printer = PPPR
public = yes


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


login.conf changes not being effected

2003-12-13 Thread Phil Murphy
I've been trying to test out some features in /etc/login.conf. I
created a user test, in a login class kids. I edited
/etc/login.conf to include:

kids:\
:daytime=10:\
:tc=default:

I ran cap_mkdb /etc/login.conf, and tried logging in as test. I
assumed that the user would be logged off in 10 seconds, but this did
not happen. I added:

:sessiontime=10:

and reran cap_mkdb. Still no effect. I reran cap_mkdb -v
/etc/login.conf and received a confirmation message. I have read, and
reread the manpages, googled, searched freebsd.org, bsdforums.org,
etc., and have found that others are experiencing the same problem. I
have not found any solution yet. Is there something I am missing? My
goal is to be able to restrict login times and duration.

I am running 4.9 on a celeron 1.3, 256 mb.

Thanks for any help.

Phil


__ 
Post your free ad now! http://personals.yahoo.ca
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: [possibly OT]: anyone attempt running IBm DB2 for Linux, under emulation on FreeBSD

2003-10-16 Thread Phil Cryer
Quoting Nathan Vidican [EMAIL PROTECTED]:
 
 Can someone run IBm's DB2 for Linux, on a FreeBSD box? If so, will it 
 maintain stability even if at the loss of some performance versus running it
 
 on an actual Linux box? Does anyone have any experience with this, and/or has
 
 anyone out there tried this themselves yet? I have heard numerous success 
 stories running Oracle for Linux under FreeBSD... but have thus far been 
 unable to find anyone trying IBM DB2 with FreeBSD.

While not completely related, I have been running DB2 at work for a test
database running on Gentoo Linux.  Since Gentoo is not an RPM based system (DB2
is only distributed as RPMs I believe) I had to install RPM, but after that,
this doc walked me through getting it installed:
http://kjeldahl.net/db2/

So, the point being, is that DB2 *can* work on non-RPM systems.  For FreeBSD,
you'd need to install RPM:
$ whereis rpm
rpm: /usr/ports/archivers/rpm

..and try to follow some of the above instructions.  With the Linux capabilties
installed, I'd think it might work.  I'm still Goggling your query myself

It looks like someone has successfully installed the DB2client on FreeBSD (they
installed on a Linux box, and moved the files over)
http://www.khmere.com/resume/bsd_db2.html

Also, this page seems to infer that it's been done, but the link to BSD Today
takes you to serverwatch.com, and I can't find the article there.
http://daily.daemonnews.org/view_story.php3?story_id=1289

Here an IBM'r comments on the viability:
http://lists.freebsd.org/pipermail/freebsd-questions/2003-March/000533.html

If I were you, I'd post this question to:
http://www.idug.org/idug/db2/listserver.cfm

Regards
P

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


Re: Changing gtk application fonts outside of gnome (Answer)

2003-07-21 Thread Phil Payne
Hi,

Caveat, I'm no GTK/Gnome expert so if someone wants to pick holes, feel 
free...

Did some further digging around on the web and I've concluded that the way to 
ensure your GTK apps appear as you want (font wise) outside of gnome is:

If you want anti-aliasing ensure the following environment variable is set:
 GDK_USE_XFT=1
Thanks to Matthew for that.

To change the default font for GTK1.* apps then add the following lines to the 
file ~/.gtkrc (or create it if it doesn't exist):

style default {
font = -*-helvetica-medium-r-*-*-12-*-*-*-*-*-iso8859-15
}

Note... using full font definition.

For GTK2 based apps then things have changed. Need to add the following line 
to the file ~/.gtkrc-2.0, outside of any style definition if you want it to 
be global. (I believe that within a style definition you use the font_name = 
 format):

gtk-font-name = Helvetica 12

Note the switch to using shorthand font names.

Hope that helps anyone else stuck as I was.

Cheers,
Phil.

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


Re: Changing gtk application fonts outside of gnome

2003-07-20 Thread Phil Payne
On Saturday 19 July 2003 7:27 pm, Matthew Graybosch wrote:
 On Saturday 19 July 2003 10:52 am, Phil Payne wrote:
  Hi,
 
  I'm running FreeBSD 4-stable, XFree86 4.30  windowmaker 0.80.2.
  Default resolution and bitdepth is 1280x1024x24.
 
  Whenever I start GTK based apps (e.g. evolution, pan) I'm finding
  the application font size is too small to be readable. I've had a
  search through the mail archives and googled but I can't find
  anything explaining...

 Hi, Phil. Are you using the GTK2 versions of Evolution and Pan? 

Both gtk1 and gtk2 are installed.

If I do a pkg_info -Rr on the relevant packages they have a dependency to gtk2

 pkg_info -Rr evolution-1.4.0_1 | grep gtk
Dependency: gtk-2.2.2
Dependency: gtkhtml3-3.0.5
 pkg_info -Rr pan2-0.14.0 | grep gtk
Dependency: gtk-2.2.2
Dependency: gtkspell2-2.0.4

 Are
 you also reverting back to the default (ugly) GTK2 theme? 

OK... my gtk/gnome familiarity is limited. How do I tell?... and how do I 
change this?

 If so, Try
 putting the following lines in either ~/.xinitrc or ~/.xsession (as
 appropriate):

 *
 #!/bin/sh

 # sample ~/.xinitrc
 export GDK_USE_XFT=1
 gnome-settings-daemon 

I gave this a go and it didn't appear to change anything. What are these 
commands attempting?

 exec /usr/X11R6/bin/wmaker
 *

 Then restart X and see what happens. I had this problem myself, and
 had other people ask on the Libranet users' list.

Yes, there seems to be a lot of discussion about how to control GTK fonts 
outside of gnome without a coherent answer. Any further help is much 
appreciated.

Sorry for being such a newb about GTK sutff. Have been working with FreeBSD, 
KDE and related apps for sometime with no problems but thought I'd give 
windowmaker and other apps a go... expand my knowledge etc... but having 
trouble.

Cheers,
Phil.

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


Changing gtk application fonts outside of gnome

2003-07-19 Thread Phil Payne
Hi,

I'm running FreeBSD 4-stable, XFree86 4.30  windowmaker 0.80.2. Default 
resolution and bitdepth is 1280x1024x24.

Whenever I start GTK based apps (e.g. evolution, pan) I'm finding the 
application font size is too small to be readable. I've had a search through 
the mail archives and googled but I can't find anything explaining...

... how to change the default font for GTK apps outside of a gnome 
environment.

Does anyone know if/how this can be done easily?

I mean... I could lower the resolution but that feels a little defeatist. 

Please include me personally on the reply as I won't be receiving the list 
email for a while.

Thanks,
Phil.

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


FreeBSD 5.0-RELEASE and radiusclient-0.3.2

2003-06-07 Thread Phil Yuska
Howdy,

When trying to execute radlogin I keep getting this error message:

radlogin[13740]: rc_own_ipaddress: couldn't get own IP address

I'm stumped, the hostname and ip address both resolve via nslookup and
dig
The radiusclient package was built using the ports collection.

The system in question is running the following:

FreeBSD 5.0-RELEASE #0: Fri Jan 17 20:03:38 GMT 2003
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC sparc64

Any ideas how to correct this problem?

Regards


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


I need your help!

2003-01-22 Thread Phil
Hello FreeBSD-Team

i had the freebsd 4.7 version installed. but i have a big problem with a *.tar.gz 
file, i can't open it with the tar/gzip programm. the error message says :

tar skipping to next header
tar Archive contains absolexient base 64-headers

gzip stdin invalid compressed data--format violated
tar child returned status 1
tar error exit daleyed from previous errors

why this ? whats the problem ? please help me

greets Phil

_
RCN - www.root-core.org

_
Select your own custom email address for FREE! Get [EMAIL PROTECTED] w/No Ads, 6MB, 
POP  more! http://www.everyone.net/selectmail?campaign=tag

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



Dyslexia screening

2002-11-13 Thread Phil Teare
Hello,

I'd like to take this chance to let you know about Instines the Smart Computer-based 
Dyslexia Screening. FREE evaluation CD-ROMs will only be available until Feb 2003. So 
if you think you're interested read on. 

It's main aim is to enable professionals with or without specialist training to 
quickly, cost effectively, but most of all accurately screen teens and adults for 
dyslexia. It's pioneering use of artificial intelligence makes supervision simple, and 
the diagnosis extremely accurate (currently 98% +/- 2% concurrent with an educational 
psychologist). 

The subtests are designed to be both highly indicative of dyslexic traits, and very 
user friendly. But don't take my word for it, try it your self.

Simply reply to this email with your postal address, and we'll send you a free 
evaluation CD for use on all MS windows platforms. 

Kind regards,
Phil Teare
www.ArtificialRelevance.com


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



Re: [Samba] Samba 2.2.6 bug with Windows XP

2002-11-09 Thread Phil Chambers

On Fri, 8 Nov 2002 13:26:44 -0600 Brandon Hagedorn [EMAIL PROTECTED] wrote:

 Is this a bug or what...
 Setup:
 samba-2.2.6.p2_1 as Windows PDC
 Installed via ports on FreeBSD 4.7 RELEASE
 on install I enabled Syslog support, Recycle Bin, and Quota support.
 Everything installs properly
 I created the groups machines:201, and admins:200.
 Added every user with the command smbpasswd -a username
 Also added every machine with this command smbpasswd -a -m
 machine_name
 Edited the password file via vipw
 And added the lines in it corresponding
 machine_name$:*:201:201::0:0:Machine account for a
 machine:/dev/null:false
 
If all the machine accounts have a uid of 201 that would explain the problem.  each 
machine account must have a unique uid.  (The message stating that you need a dollar 
signe on the machine name in the smbpasswd command is mistaken.  The dollar sign 
only appears in the passwd file, smbpasswd adding it when creating the smbpasswd 
entry.)

Phil.
---
Phil Chambers ([EMAIL PROTECTED])
University of Exeter


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



  1   2   >