Re: FreeBSD 9.1 won't boot after install

2013-07-06 Thread Simon
On Fri, 5 Jul 2013 19:43:02 -0600 (MDT), Warren Block wrote:

 I booted the 9.1 install CD, executed gpart destroy -F ada0, and
 installed.  After completing the install, boot fails with:

 ERROR: No boot disk has been detected or the disk has failed.

That is a BIOS error, probably due to UEFI expecting a certain disk 
layout when it finds GPT.


Does this mean GPT is not supported by this system? I thought
GPT is supposed to replace MBR and UEFI is the future. Perhaps
there is something in UEFI that can be tweaked to make it work
with GPT?

-Simon


___
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


FFMpeg and FreeBSD

2013-06-26 Thread Simon
Hello Everyone,

Does anyone use the latest FFMpeg version 1.2 and FreeBSD?

How did you compile it? did you run into any issues?

The FFMpeg port is 6+ months behind and I feel like I'm the only one who uses
this which would be very odd given everything uses video nowadays.

Thanks,
Simon


___
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: FFMpeg and FreeBSD

2013-06-26 Thread Simon
On Wed, 26 Jun 2013 18:11:03 -0700, Waitman Gobble wrote:

On Jun 26, 2013 5:28 PM, Simon si...@optinet.com wrote:

 Hello Everyone,

 Does anyone use the latest FFMpeg version 1.2 and FreeBSD?

 How did you compile it? did you run into any issues?

 The FFMpeg port is 6+ months behind and I feel like I'm the only one who
uses
 this which would be very odd given everything uses video nowadays.

 Thanks,
 Simon


 ___
 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

i make extensive use of ffmpeg, try devel port or try build from ffmpeg
src, try gcc46. there arent issues i can think of. its pretty well put
together. if you install the port first then build src  its easier b/c it
pulls in dependencies. just use something besides /usr/local for the prefix
of src install.

Waitman Gobble
San Jose California USA

Thanks, can you confirm you compiled version 1.2 from source without issues?
I saw a lot of patches in older port versions of it, so I assumed I will have 
many
issues. The ffmpeg-develop port installs oct 2012 version which is even older
than ffmpeg1 port, I believe.

-Simon

___
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: FFMpeg and FreeBSD

2013-06-26 Thread Simon
On Thu, 27 Jun 2013 12:25:19 +0930, Shane Ambler wrote:

On 27/06/2013 09:57, Simon wrote:
 Hello Everyone,

 Does anyone use the latest FFMpeg version 1.2 and FreeBSD?

 How did you compile it? did you run into any issues?

 The FFMpeg port is 6+ months behind and I feel like I'm the only one who uses
 this which would be very odd given everything uses video nowadays.

You need to look a little closer. We have three versions available in 
ports -

multimedia/ffmpeg which is at 0.7.15
multimedia/ffmpeg1 which is at 1.2.1 - updated 2 days ago
multimedia/ffmpeg-devel which is an svn snapshot at 2012.10.13

You will find a lot of ports are still configured to use 0.7.15.

The main catch is the ports are designed to co-exist so ffmpeg1 has the
trailing 1 added to all the lib/cli names.

I have had no problems using ffmpeg1 with my version of blender for
several months now. It has a cmake option for lib names and then I
added include/ffmpeg1 to C/CXXFLAGS and lib/ffmpeg1 to LDFLAGS.


Thanks for the info. I did an update of my ports tree last Friday, when I
also emailed the maintainer of FFmpeg port. As I received no response,
I assumed the port hasn't changed. I just synced my ports and see the
1.2.1 in ffmpeg1

I would like to thank Martin for the update!

-Simon


___
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: https://wiki.freebsd.org/ certificate error

2013-03-09 Thread Simon L. B. Nielsen
On 2 March 2013 07:48, Jeremy Chadwick j...@koitsu.org wrote:
 (Please keep me CC'd as I'm not subscribed to -questions)

 (I'm CC'ing Simon Nielsen who maintains the FreeBSD webserver cluster, as
 this obviously needs to be looked at.)

[...]
 NOW BACK TO THE ACTUAL PROBLEM REPORTED --

 It appears that whoever maintains the FreeBSD webservers in the cluster
 **assumes** that the connecting client supports SNI.  That assumption,
 as someone who ran a hosting organisation since 1993, is rude (some
 might say bad, but I would say rude).

 Web browsers/clients that don't support SNI are screwed -- they'll
 receive a certificate validation failure error.

 Internet Explorer 6.x through 8.x -- newer is not available on Windows
 XP -- do not support SNI (this is even mentioned in the above Wikipedia
 page).  They return the error There is a problem with this website's
 security certificate due to lack of SNI support.

 Let me be clear: THIS IS NOT THE FAULT (OR AGE) OF THE OS.  THIS HAS TO
 DO WITH THE WEB BROWSER.  Why?

 Because Firefox 19.0 on Windows XP works just fine, as it supports SNI.

AFAIR the problem is that some crypto library on Windows XP does not
support SNI. IE uses it, Firefox and others probably don't.

 So how do you solve this problem for legacy clients?  Simple:

 By dedicating an IP address to the SSL-based virtualhost/webserver (i.e.
 one IP address per SSL-based virtual host), and do away with name-based
 vhosting for SSL.  That's the only way.

I agree that SNI is suboptimal, unfortunately it was the best of bad solutions:

- We just don't have enough IPv4 addresses to dedicate one per virtual hostname.
- We could use IPv6 only which means excluding even more legacy clients.
- Bundling all sites under www.freebsd.org creates problems with
cookies, more pain in configuration, and less flexibility in moving
things around.
- Using SubjectAlternatName (SAN) certificates where strongly
considered, but fewer CA's support them (most have no clue) and it
becomes a lot more painful to add new hosts. Those are also not fully
supported by all older OS'es still in use.

-- 
Simon L. B. Nielsen
___
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: Old releases support

2013-03-02 Thread Simon L. B. Nielsen
On 2 Mar 2013 09:47, Andrea Venturoli m...@netfence.it wrote:
 Just a quick question on EOL dates.

 According to http://www.freebsd.org/security/security.html#sup, 7.4R
support should have ended two days ago. Did it?
 Is Feb 28 2013 date confirmed?

 Next, 9.0 should reach EOL at the end of this month.
 Is this confirmed too?

Correct on both accounts. As the updates are manual nobody just got to
removing 7.4 yet.

I should have sent a mail out with warning a month ago but forgot.

-- 
Simon
___
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: Boot-time hard drive errors

2013-02-24 Thread Simon


Have you tried Pause/Break to see if you could feeze the screen to get the
error message?

I would stress test all three drives to see if they pass with flying colors. One
or more of your drives could be indeed flaky, regardless being new, that means
little. Also, something could be conflicting from time to time, that could also
show up under stress testing.

Make backup if you have important data before stress testing.

-Simon

On Sun, 24 Feb 2013 13:33:06 -0800, Ronald F. Guilmette wrote:



I have a somewhat eclectic system, currently running (or at any rate,
trying to run) 9.1-RELEASE.  The system in question contains three
drives, to wit:

   WDC WD1002FAEX-00Z3A0 05.01D05 ATA-8 SATA 3.x device
   ST3500320AS SD1A ATA-8 SATA 1.x device
   Hitachi HTS541010A9E680 JA0OA480 ATA-8 SATA 3.x device

Previously, I had the ST3500320AS in this system, along with one other
entirely different Seagate drive, i.e. one not shown in the list above.
(Also, I was previously running 8.3-RELEASE and only recently updated
to 9.1-RELEASE.)

Since I reconfigured the system to its current state, i.e. with the set
of three drives listed above, whenever I reboot the system, about 50%
of the time, when the boot process gets down to the point where it
would ordinarily be printing out the messages relating to ada0, ada1,
etc. suddenly I start to get a massive and apparently endless stream
of error messages, apparently relating to one of the drives listed
above, but the stream actually alternates between two consecutive
error messages, both undoubtedly related to each other.

The boot process never completes, and I am just left staring at a
screen that's displaying, in very rapid succession, first the one
error message and then the other, and then the first one again, and
then the second one again, and on and on like that.

Unfortunately, the two error messages are being printed on the screen
so fast (and alternating, as described above) that I cannot even read
them, but I could just barely make out that they seem to relate to ada2...
well, anyway, one or another of the hard drives.

I do not know the proper way to rectify whatever is causing these flaky
errors.  I use the term flaky because, as I have said, this boot-time
problem only seems to occur maybe about 50% of the time, and the rest
of the time when I boot up there is no problem whatsoever.

Because I am able to boot up successfully, with no problems whatsoever,
a significant fraction of the time, I am inclined to think that whatever
is causing the failure is not actually a hardware fault.  (And by the way,
the WDC drive and the Hitachi drive are both practically brand new.  That
doesn't prove anything, of course, but it does make me think that they
are unlikely to have serious hardware faults.)

I would report this problem by filing a standard PR, but as I've said
above, I can't even read the error messages, because they are being
printed in such rapid succession, so I'm not sure that filing a PR
would be useful to anybody.  I mean what would it say?  That I'm getting
some unspecified failure at boot time that seems to relate to the hard
drives in this system?  That kind of PR would clearly not be very helpful.

Has anyone else ever encountered symptoms like those I have listed
above, either with 9.1-RELEASE or with any other version of FreeBSD?


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




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


Re: FreeBSD 8.3 + MySQL 5.0.95

2012-06-14 Thread Simon
On Thu, 14 Jun 2012 09:04:26 +0100, Paul Macdonald wrote:

On 13/06/2012 19:34, Simon wrote:
 Hi,

 I upgrade to FreeBSD 8.3-p3 and installed MySQL 5.0.95 from ports.

 It runs fine until it dies silently. Does anyone run a heavy loaded MySQL
 under such setup? how can I troubleshoot this?

 I could never compile a stable MySQL server from the ports and always
 relied on MySQL community server binaries but there is no binary for
 latest 5.0.xx

 Thank you!
 Simon

Its not clear if you upgraded mysql or just did a vanilla fresh install, 
but assuming the former,

i take it you ran the mysql_upgrade script post upgrade?

/usr/ports/databases/mysqlXX-scripts


No, I did not run the mysql_upgrade because this was a minor upgrade.

I was running 5.0.88 Community Server binary install built by mysql developers
rock solid for long time. Then I decided to upgrade to latest 5.0.x but there is
no such build for FreeBSD by the MySQL developers. So I decided to give the
ports version a shot. I compiled and installed databases/mysql50-server
with BUILD_STATIC The latest mysql50-server under FBSD 8.3 is 5.0.95
BTW, I'm doing this on FreeBSD 8.3-p3 AMD64

PS I just had it die on a different machine that is less loaded and uses less
memory.

-Simon





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


FreeBSD 8.3 + MySQL 5.0.95

2012-06-13 Thread Simon
Hi,

I upgrade to FreeBSD 8.3-p3 and installed MySQL 5.0.95 from ports.

It runs fine until it dies silently. Does anyone run a heavy loaded MySQL
under such setup? how can I troubleshoot this?

I could never compile a stable MySQL server from the ports and always
relied on MySQL community server binaries but there is no binary for
latest 5.0.xx

Thank you!
Simon


___
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: FreeBSD 8.3 + MySQL 5.0.95

2012-06-13 Thread Simon

Possible but extremely unlikely, I always had issues whenever I tried to build
MySQL server myself. The hardware where this is running has been very
stable. I don't have any issues whatsoever making world, etc...

There is no segfault which is what usually happens when you have memory
issues. And why would MySQL community server run stable if it was somehow
my hardware? Bottom line, if this was hardware issue, the server would have
paniced long ago.

I wish I could get some input from someone running MySQL server with 300+
queries a second and what MySQL version/build they are running.

-Simon

On Wed, 13 Jun 2012 11:36:48 -0700, Chuck Swiger wrote:

On Jun 13, 2012, at 11:34 AM, Simon wrote:
 I upgrade to FreeBSD 8.3-p3 and installed MySQL 5.0.95 from ports.
 
 It runs fine until it dies silently. Does anyone run a heavy loaded MySQL
 under such setup? how can I troubleshoot this?
 
 I could never compile a stable MySQL server from the ports and always
 relied on MySQL community server binaries but there is no binary for
 latest 5.0.xx

This sounds like marginal hardware which is failing under load.  Make
sure you can run something like memtest86 or prime95 overnight without
errors

Regards,
-- 
-Chuck





___
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: FreeBSD 8.3 + MySQL 5.0.95

2012-06-13 Thread Simon
 I wish I could get some input from someone running MySQL server with 300+
 queries a second and what MySQL version/build they are running.

By all means-- while I'm quite familiar with busy databases, folks aren't 
running
MySQL for that kind of TPS load.


Why not? it is designed precisely for this. Like I said, whenever I used MySQL
project community server built binaries, I never had it crash.

Right now I'm thinking:

1. the port build of 5.0.95 does something incorrectly.
2. it's running out of memory (FreeBSD's kernel still does not report out of 
memory
errors for processes if it kills them; there is no way to know if kernel killed 
a process
due to memory limit, it does not log this)
3. it's hitting some kind of 5.0.95 bug

Maybe I'm contacting wrong mailling list, I can't seem to get ahold of 
ISP/hosting guys
on this list. Truly amazing that for a server OS, there is so little input for 
something like
MySQL server. Perhaps everyone else is still using text files, does 10TPS, or 
runs
linux, don't know what to make of it :\

-Simon


___
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: FreeBSD 8.3 + MySQL 5.0.95

2012-06-13 Thread Simon
Yes you too are using the wrong list.
The questions@ list was created to catch FreeBSD newbies, 
somewhere to point /etc/motd at.
   ( It's evolved to also deal with _some_ more complex issues
   'cos some on questions@ failed to move on,  post more
   complex non beginner issues to the maybe 50+ or more
   specialist lists. )

Examples for this topic might include:
   freebsd-...@freebsd.org 
   freebsd-datab...@freebsd.org
   freebsd-hack...@freebsd.org
   freebsd-performa...@freebsd.org

See
   http://lists.freebsd.org/mailman/listinfo
Just 2 clicks from
   http://freebsd.org/
Sad how many people don't look,  dump all on questions@,
breaking the whole point of having 50+ different themed FreeBSD lists.

Those only using questions@ _Please_ realise there are other lists.
   http://lists.freebsd.org/mailman/listinfo
Read the remits of the other lists  subscribe /or post those lists
that match your topic.

Cheers,
Julian
-- 

Thanks Julian. The reason for freebsd-questions is because when I looked
thru isp, database, and performance, and few others, they had one or two
threads a month with barely much input. I figured I would reach more people
on this list. The reason why I didn't use freebsd-hackers is because I thought
perhaps this was somewhat trivial, like I was overlooking something, but I
guess not. Next time I'll just use that list instead. I think it would be my 
best bet.

-Simon

___
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


Proper Port Forwarding

2012-06-06 Thread Simon
Hi,

Can someone suggest an alternative/proper way to port forward using ipfw. Right
now I have the following and some bad clients cause too many FIN_WAIT_2 state

fwd IP,PORT2 tcp from any to me dst-port PORT1 keep-state

This easily causes DoS for when too many FIN_WAIT_2 are created and IPFW
stops forwarding using the rule above because of too many dynamic rules

Thanks,
Simon


___
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: FreeBSD 8.3 support for LSI SAS 2208 based controllers/Dell PERC 710

2012-06-04 Thread Simon

I'm wondering if this was resolved. I was looking at Dell R610s with Perc H700
and no solid information either. Found a few threads with people having issues
with it, no solutions. These been out since early 2010, not cutting edge by any
means.

Is anyone using Dell R610/R620 with Perc H700/H710 reliably for some time?

How can a hardcore server-OS like FreeBSD not have solid support for these
popular server platforms :\

The more I run into these issues, the more I'm being forced to consider Linux;
this is somewhat sad. I hope I'm mistaken but it seems like there is less and
less support for mainstream server out-of-box hardware lately.

-Simon

On Thu, 17 May 2012 11:24:01 -0400, kpn...@pobox.com wrote:

On Wed, May 16, 2012 at 02:07:30PM -0500, Mark Felder wrote:
 On Wed, 16 May 2012 13:04:25 -0500, Rick Miller vmil...@hostileadmin.com  
 wrote:
 
 
 Would anyone else out there have any experience with installing
 FreeBSD on the R620 and be able to provide any tips for
 troubleshooting?
 
 
 Does 9.0 install on that hardware? It's possible your controller chip has  
 a slightly different revision that isn't listed in the driver. I'd expect  
 it to not work on 9.0 either in that case.

I also have an R620 possibly with the same card. 

FreeBSD 8.3 does not see the card.

FreeBSD 9.0 sees the card well enough to hang the kernel trying to
get a good response out of the probe.

I thought the mfi driver was the relevant one? I'm pretty sure that's
the one that hangs 9.0. I'll check tonight.

Having 9.0 hang makes it ... difficult ... to get a 9.0 install done
to the built-in usb drive. So I'm planning on trying to run a 9.0-current
kernel with an 8.3 userland at least for a little while.
-- 
Kevin P. Nealhttp://www.pobox.com/~kpn/

 Good grief, I've just noticed I've typed in a rant. Sorry chaps!
Keir Finlow Bates, circa 1998
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org



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


Re: FreeBSD 8.3 support for LSI SAS 2208 based controllers/Dell PERC 710

2012-06-04 Thread Simon

I'm glad to hear at least the Perc 6/i is working fine with R610 which is
what I'm looking to get to avoid all the trouble with the new R620 Albeit
I need to use the 1TB SAS drives that are 6gbps, so I really wanted to
use the H700 instead of the much older Perc 6/i, which I also have working
fine in a number of R710s

When you get a chance, please find out what those other R610s are
running and in what RAID config.

I'm surprised so few on the list use Dell's Perc H700

Thanks,
Simon


On Mon, 4 Jun 2012 19:03:35 -0400, kpn...@pobox.com wrote:

On Mon, Jun 04, 2012 at 02:28:18PM -0400, Simon wrote:
 
 I'm wondering if this was resolved. I was looking at Dell R610s with Perc 
 H700
 and no solid information either. Found a few threads with people having 
 issues
 with it, no solutions. These been out since early 2010, not cutting edge by 
 any
 means.
 
 Is anyone using Dell R610/R620 with Perc H700/H710 reliably for some time?

I've got an R610 with the PERC 6/i (not what you asked) that runs like a
champ. I plan on upgrading the card at some point, but for now it works
fine. The trick was to turn off _all_ the power savings features (C1E,
etc) in the BIOS.

We have I don't even know how many R610 at work running FreeBSD 8.2 with
some kind of RAID card, but I don't know which one. Those machines get
pounded all day every day and I haven't heard of any problems. I haven't
noticed any as a user. I'll find out and report back.

I also have my R620 and the latest stable/8 has support for the H710 card
(Mini, Monolithic). It works well enough to create a couple of ZFS
pools and copy the install of FreeBSD over to the disks. But I have the
Broadcom 5720 network daughtercard that doesn't work yet, so I don't know
how the H710 performs under load.

Am I correct that LSI is contributing to the drivers for the Dell cards
that use LSI chips? Can someone verify that I'm not looney?

The R620 went on sale within days of Intel's release of the chips. To be
fair to FreeBSD the firmware that Dell shipped is ... half baked at best.
For a while it insisted on using the wrong IP when using DHCP, the network
upgrade of the firmware via FTP+proxy requests the wrong URL, etc etc. The
Dell DVD-ROM USB drive can't be connected at the same time as the iDRAC
network port or else the firmware won't initialize. And Dell had access
to the hardware before it shipped. So I can't complain about FreeBSD's
support for the R620 not being 100% in place when Dell hasn't gotten their
act together yet.

I'm told that support for the Broadcom card is being worked on. I do not
have a timeframe.

-- 
Kevin P. Nealhttp://www.pobox.com/~kpn/

Seen on bottom of IBM part number 1887724:
DO NOT EXPOSE MOUSE PAD TO DIRECT SUNLIGHT FOR EXTENDED PERIODS OF TIME.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org



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


Re: Anyone using freebsd ZFS for large storage servers?

2012-06-02 Thread Simon

This thread confused me. Is the conclusion of this thread that ZFS is slow and
breaks beyond recovery? I keep seeing two sides to this coin. I can't decide
whether to use ZFS or hardware RAID. Why does EMC use hardware RAID?

-Simon




___
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


PHP 5.3 + ZendGuard Support

2012-05-16 Thread Simon
Hello,

I found a couple of threads on the web about this but no solution.

Am I the only one of few people who needs to run PHP scripts on FreeBSD machine
that were encoded with Zend Guard technology? trying to run linux version of
PHP, which has a ZendGuard loader made for it, or worse linux version of Apache
which loads linux PHP module on FreeBSD is the last thing I want to do. It 
would be
easier to switch to linux altogether, which I'm trying to avoid at all costs.

Has anyone found a solution less of switching to linux for the purpose 
described above?

Is there anything FreeBSD community can do to influence Zend Guard developers
to release Zend Guard loader for FreeBSD?

The company I work for has already at least a few clients who are forcing me to 
switch
them to Linux due to lack of Zend Guard support under FreeBSD.

Any thoughts, comments, would be appreciated.

Thank you!
Simon



___
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: monitoring changes in SVN branches

2011-06-29 Thread Simon Olofsson

On 06/28/2011 09:13 PM, Matthias Apitz wrote:

Is there some tool (in the ports) to watch if changes done in one of SVN
branches are also incorporated into other branches?


Since version 1.5 SVN records this information in the mergeinfo 
property, see [1] and [2].

Writing a script that reads this property shouldn't be too hard.

[1] 
http://svnbook.red-bean.com/en/1.5/svn.branchmerge.basicmerging.html#svn.branchmerge.basicmerging.mergeinfo


[2] http://www.collab.net/community/subversion/articles/merge-info.html

Regards,
Simon

___
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: Invitation (waaaaay off-topic)

2011-02-16 Thread Simon Tibble
On 15/02/11 19:09, Chad Perrin wrote:
 Your attempt to convince people that the way you see the path is the One
 True Path is distracting people from walking it, which if anything should
 be regarded as pushing people off the path to argue with them about
 whether the color of the dust on the path is brown or beige.
 

Chad, I thank you for teaching me humility.  I owe you.

end_of_thread /

-- 
Simon Tibble
si...@tibble.net
___
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: Invitation

2011-02-14 Thread Simon Tibble
On 14/02/11 19:31, Amanda Bilson wrote:
 Hello,
 
 you have been invited to participate in the tester campaign 
 of the new Dell XPS16 laptop.
 
 As a reward for your contribution we are willing to let you 
 keep the testing model. The shipment is at our expense.
 
 Follow the link below if you wish to join the tester campaign.
 http://bit.ly/fNW2o7
 
 Regards,
 The Gadget Center
 ___
 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
 

Now, see, I can't help thinking that if we all just abandoned money then
the motivation for people to do this sort of thing would then disappear
- would it not?

Don't mind me.  I'm a crazy man.  Or am I just entertaining the thought
of a world without money as a possibility, yet I am refusing to accept it?


-- 
Simon Tibble
si...@tibble.net
___
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: Invitation

2011-02-14 Thread Simon Tibble
On 14/02/11 21:12, David Kelly wrote:
 On Mon, Feb 14, 2011 at 08:54:59PM +, Simon Tibble wrote:

 Now, see, I can't help thinking that if we all just abandoned money
 then the motivation for people to do this sort of thing would then
 disappear - would it not?
 
 Without money, how would we keep score to know who is winning?
 

By measuring ones contribution.  This can be quantified by creating a
system whereby one's output is measured.  It is not a credit system,
rather a combination of reputation (feedback of others) and how much
produce or time you effect.  Try to think ebay without the money, and
instead of leaving feedback after every transaction you only leave the
feedback just once (how do you feel about the other person? good/bad).

Also, in this contribution based system you can change your mind about
the other party at any time, whether you are still in a relationship or
not.  And, instead of having listings which get replaced they get
renewed with updated quantities, so, you see, you could list TIME or
PRODUCT and as you make more available you update your contribution system.

I am looking to recruit developers for such an idea, and I have a
partial prototype of a new discussion-decision-resolution website system
partially created at tibble.net (it's not even prototype worthy yet, but
it's getting there).  Specificially, I suggest you read the IDEA page
which explains more about my radical (and not new but only slightly
different) way of organising ourselves as a race.

Quantifiable without currency through better organisation.  Lose the
belief in the money system and the Queen of England will no longer
control you from the capital of the whole financial institution which is
London. (On a side note, Washington is the centre for military control
and I think you know where the spiritual center is in the east).

But don't mind me.  I'm a crazy man with random mumbles.

-- 
Simon Tibble
si...@tibble.net
___
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: Invitation

2011-02-14 Thread Simon Tibble
On 14/02/11 21:18, Jarrod Slick wrote:
 On 2/14/11 2:12 PM, David Kelly wrote:
 On Mon, Feb 14, 2011 at 08:54:59PM +, Simon Tibble wrote:
 Now, see, I can't help thinking that if we all just abandoned money
 then the motivation for people to do this sort of thing would then
 disappear - would it not?
 Without money, how would we keep score to know who is winning?

 David,
 
 Simon Tibble has thus far shown himself to be a spammer; let's not give
 him any more space to plug his completely OT site than he's already had
 on this list.
 
 Simon,
 
 If you want to plug your site in a legitimate manner why not put a link
 to it in your signature, learn about FreeBSD, and contribute to on topic
 discussion?

I don't just plug a site.  I don't care if you take the open source
effort I am making (it's initially called Tibble but I am open to
better names) and start using it on your own system in order to help
organise yourself better.  I encourage it.

Don't mind me - the crazy man with a radical idea!  All I am suggesting
is that the 20 million people who are online as part of the Zeitgeist
movement are calling for us all to question our belief in the money
system, and you can either look in to it or you can play like an ostrich
(put your head in the sand and hope the idea goes away)?

I'm not saying you have to be involved OK.  I am asking all people for
help, and I welcome who will join me.  Developers frequent these mailing
lists, and how else can I ask for help if I don't go the places people
hang out?  Huh?

If my emails bother you so much I encourage you to set up a mail filter
on your MUA and send me to /dev/null where you think I belong.  It's
fine by me, ok :-)

The world is starving.  Wars are raging.  There is a strangle hold over
the flow of information in the form of TV.  These are all facts.  The
new world order is coming to fruition and you are picking on my
distasteful emailing for help to the smartest mailing lists I know?
Sorry I'm taking up your ever so valuable disk space!



-- 
Simon Tibble
si...@tibble.net
___
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: Invitation (waaaaay off-topic)

2011-02-14 Thread Simon Tibble
On 14/02/11 23:42, Chad Perrin wrote:
 On Mon, Feb 14, 2011 at 09:47:11PM +, Simon Tibble wrote:
 On 14/02/11 21:12, David Kelly wrote:
 On Mon, Feb 14, 2011 at 08:54:59PM +, Simon Tibble wrote:

 Now, see, I can't help thinking that if we all just abandoned money
 then the motivation for people to do this sort of thing would then
 disappear - would it not?

 Without money, how would we keep score to know who is winning?

 By measuring ones contribution.  This can be quantified by creating a
 system whereby one's output is measured.  It is not a credit system,
 rather a combination of reputation (feedback of others) and how much
 produce or time you effect.  Try to think ebay without the money, and
 instead of leaving feedback after every transaction you only leave the
 feedback just once (how do you feel about the other person? good/bad).
 
 Broken.  Won't work.  It's too bureaucratic for too little (immediate)
 return to catch on, and its bureaucracy would guarantee long-term
 corruption.

This sort of idea will take years to catch on and will be a gradual
process.  In fact, it has already started in the (primitive) form of
free open-source software.

As for the corruption, at least in a organised contribution based system
all data will be available for all to see, unlike the corruption we have
today.  Personal preference: if I can have check-able corruption or
hidden corruption - I'd choose check-able every time.  In fact, I think
you'd find people would come to the forefront by actually boasting they
are the most sound people with solid principles as a result of it being
open for audit by anyone at anytime.  And because it relies on the
opinion of others it would be a better framework to build on (see eBay's
feedback system as an introduction to a the value of mass-opinion).

 We'll probably evolve semi-naturally to a reputation based economy as
 advancing technology eliminates a lot of basic-needs scarcity, but that's
 just speculation.  In the meantime, money is really nothing but a
 scalable way to lubricate the process of trade.  The more you centralize
 the management of money (or its replacement), the less efficiently it
 works -- and trying to quantify contribution through some uniform
 system as you suggest would require absurd levels of centralization.
Yes, it would be absurd to introduce it over night, but not more absurb
than the proposed Bankor currency headed our way.  It's probably just
about the same amount of admin, only with a website it would eliminate
the need for turning trees into notes/paper.

Also, the people who control the current money efforts conduct their
affairs behind closed doors and avoid scrutiny.  In an open system
people will be able to not only see the workings (the maths behind it)
and they will also be able to vote on it and change it (mass opinion
outweighs the individual).

 If you really want to do away with money, the best way to do it is to
 advance the state of the art of automation technology.  You can do this
 by contributing expertise, time, and money (in decreasing order of
 importance) to copyfree [0] and open source [1] software development
 projects such as FreeBSD.  Trying to distract the people contributing to
 such projects with pie-in-the-sky manifestations of song lyrics from the
 early '70s [2] is actually counterproductive to that aim.
Whilst I agree with you on most of this, I want to point out that the
greatest portion of the available workforce are in front of Facebook
drooling over Justin Beiber.  The sooner the masses are awoken to the
truth and shown that a different way of living is even possible, only
then will we move in the most positive direction at the fastest speed
possible.  Hence, some think I spam simply because I am part of many
who are attempting to raise awareness of this issue.

There really is nothing more important that this non-utopian alternative
life choice.

 But don't mind me.  I'm a crazy man with random mumbles.
 That's good advice.  I should follow it.
I believe American's use the word kook.  Is that right?  (assuming
your from the states)

 # NOTES:
 [0] http://copyfree.org
Sorry dude, this is based on an inherently flawed Law system.  Try to
always remember that a law is just what one guy says another can or
cannot do.

 [1] http://www.opensource.org
Top notch link dude.  Awesome.  Thanks!  I am definitely reading this
one.  I'm ashamed to say I've read most of the open source docs, but not
this one.

 [2] https://secure.wikimedia.org/wikipedia/en/wiki/Imagine_(song)
If we're referencing popular culture, I call on Bill Hicks to do my bidding:

The world is like a ride in an amusement park. And when you choose to
go on it, you think it's real because that's how powerful our minds are.
And the ride goes up and down and round and round. It has thrills and
chills and it's very brightly coloured and it's very loud and it's fun,
for a while. Some people have been on the ride for a long time and they
begin

Re: Sorry state of the rsync based CVS,replication

2010-11-14 Thread Simon L. B. Nielsen

On 12 Nov 2010, at 09:47, Patrick Bihan-Faou wrote:

 Don't take this as flamebait, because I have no intention in starting a war 
 on this particular issue, but as good as cvsup is, this is unfortunately a 
 fairly isolated tool that, from my prospective (which is necessarily biaised 
 and incomplete), does not offer any feature compelling enough to prefer it 
 over rsync in our case. That position is by essence just a personal view, 
 applicable to me only and not to anybody else. Also I have to admit that now 
 that the m3 dependency is gone with csup, it becomes easier to return to it.

The issue is not to remove CVS via rsync - just to remove it from the FTP 
collection where it doesn't belong.

There is nothing which prevents mirror sites from providing access to the CVS 
repo via rsync, even if they get it via CVSup...

If it's useful (IE, any of the primary mirrors requests it) we can probably 
rather easily set up rsync access via cvsup-master. That said, I think rsync 
access is likely not too interesting for most master mirrors as they likely 
provide access to the repo via CVSup already, so they have cvsup installed 
already.

-- 
Simon L. B. Nielsen
Hat: FreeBSD.org clusteradm

___
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: tweak FreeBSD 8 for optimal java/weka performance

2010-01-05 Thread Simon Olofsson
On Mon, 2010-01-04 at 14:28 -0800, Greg Lewis wrote:
 On Mon, Jan 04, 2010 at 06:54:22AM -0800, Dino Vliet wrote:
  Are there any other tweaks I should think of to get as much RAM for
  my java programs?

 IIRC there is an option to tell the JVM to use as much RAM as possible,
 but I don't recall it off the top of my head.  There should be some docs
 on this on the main Java site at Sun and they will be equally relevant to
 FreeBSD as they are to any other OS.

http://java.sun.com/javase/technologies/performance.jsp
is a good starting point.
There are many articles and books available for maximizing Java
performance. Maybe the weka people also have some advice.

Regards
Simon

___
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


Issues with make -j option on ports

2009-12-27 Thread Simon Griffiths
Hello,

 

I seem to get errors with quite a few ports if I use the make -j option.
The errors surround multiple make commands not getting the files it expects
in order.  Is this the correct behaviour?

 

make -j 8 install clean

install  -s -o root -g wheel -m 555
/usr/ports/net/boinc_curses/work/boinc_curses-0.1.9/boinc_curses
/usr/local/bin/

install: /usr/ports/net/boinc_curses/work/boinc_curses-0.1.9/boinc_curses:
No such file or directory

*** Error code 71

===  Cleaning for boinc-client-6.4.5_4

===  Cleaning for wxgtk2-2.8.10_2

===  Cleaning for intltool-0.40.6

===  Cleaning for boinc_curses-0.1.9_2

1 error

 

This is on a quad core amd64 box. I seem to get this error on a number of
ports, for example recompiling gnome2, mysql etc etc.  So my CPU never
really maxes and the builds take longer than they should.

 

Any ideas?

 

 

Si

___
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: Issues with make -j option on ports

2009-12-27 Thread Simon Griffiths
Hello,

 On Sun, 27 Dec 2009, Simon Griffiths wrote:
 
  I seem to get errors with quite a few ports if I use the make -j
 option.
 
 Building with multiple jobs is part of the ports system for several
 months now.  See the MAKE_JOBS variables in /usr/ports/Mk/bsd.port.mk.
 Overriding that with -j is going to try to force ports that aren't
 multiple-job-safe, probably causing the problems you're seeing.
 
 The preferred number of jobs defaults to the number of CPUs.  That
 can be overridden with MAKE_JOBS_NUMBER.

Ahh, that'll be where I'm going wrong then. Thank you very much :)

Is this number only be overridden on the command line e.g. make
-DMAKE_JOBS_NUMBER=8 install clean... or is there a file I could put this
in, I'm thinking make.conf in /etc ?

 
 -Warren Block * Rapid City, South Dakota USA

Thanks very much Warren,

Si

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


FreeBSD AMD64 7.1 LAST_ACK stuck

2009-09-19 Thread Simon
Hello,

I'm running FreeBSD AMD64 7.1-p4 After the server experienced a DoS attack,
it ended up with many sockets stuck in LACK_ACK state as reported by
netstat -na

Is this a bug or something else is wrong, how would I troubleshoot this?

Please CC me.

Thank you very much!
Simon


___
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



i had a tought

2009-04-22 Thread Arjen Simon Scheer
why there is not a lunix operatingsystem consortium, for the kernel end  
the commercial userinterface


--
Arjen Simon Scheer
Konigin Wilhelminalaan 4-017
4205ET  Gorinchem
___
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: Build/Install world via ssh

2009-04-02 Thread Simon Griffiths
 -Original Message-
 From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-
 questi...@freebsd.org] On Behalf Of Bruce Cran
 Sent: 01 April 2009 23:12
 To: Simon Griffiths
 Cc: freebsd-questions@freebsd.org
 Subject: Re: Build/Install world via ssh
 
 On Wed, 1 Apr 2009 22:38:47 +0100
 Simon Griffiths simon.griffi...@tenenbaum.co.uk wrote:

[snip]

Thank you all for your advice.  The build went through fine and the box came
back lovely even though I did have a backup plan if that didn't work.

Great stuff, saves a 300 mile journey :-)

Simon

___
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


Build/Install world via ssh

2009-04-01 Thread Simon Griffiths
Hello,

I tried to get an answer to this via web searches etc.  I have a freebsd 7
box that I plan on upgrading remotely via 

Make buildworld
Make buildkernel KERNCONF=xyz

Now im stuck,  I cannot get it down to single user because I only have
access via ssh.  Would it hurt to 

Make installkernel KERNCONF=xyz
Make installworld

Mergemaster etc.

Reboot

?

TIA,

Simon

___
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


OT console based editor that can do php syntax highlighting

2009-02-14 Thread Simon Griffiths
Hello Everyone,

I'm guessing this is off-topic so thank you in advance if you can offer any
help.

I currently SSH into a couple of freebsd machine I have dotted about which
run some console and web based php code.  This is all fine and dandy but
when it comes to remote support I struggle reading plain code when the file
gets over a certain size and find a little syntax highlighting helps a lot. 

So can anyone recommend an editor that can do this ?  I did try vim some
time ago but being a novice in these areas I couldn't get the syntax file to
load and help on the web confusing or indecipherable. 

TIA,

Si.


___
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: OT console based editor that can do php syntax highlighting

2009-02-14 Thread Simon Griffiths
Beautiful!  That is exactly what I wanted.  

Thank you very much!  

Si. 

 -Original Message-
 From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-
 questi...@freebsd.org] On Behalf Of Wojciech Puchar
 Sent: 14 February 2009 12:46
 To: Simon Griffiths
 Cc: freebsd-questions@freebsd.org
 Subject: Re: OT console based editor that can do php syntax highlighting
 
 joe probably can. i don't use PHP but it highlights properly every other
 language source i use
 
 On Sat, 14 Feb 2009, Simon Griffiths wrote:
 
  Hello Everyone,
 
  I'm guessing this is off-topic so thank you in advance if you can offer
 any
  help.
 
  I currently SSH into a couple of freebsd machine I have dotted about
which
  run some console and web based php code.  This is all fine and dandy but
  when it comes to remote support I struggle reading plain code when the
 file
  gets over a certain size and find a little syntax highlighting helps a
 lot.
 
  So can anyone recommend an editor that can do this ?  I did try vim some
  time ago but being a novice in these areas I couldn't get the syntax
file
 to
  load and help on the web confusing or indecipherable.
 
  TIA,
 
  Si.
 
 
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to freebsd-questions-
 unsubscr...@freebsd.org
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
freebsd-questions-unsubscr...@freebsd.org
 
 No virus found in this incoming message.
 Checked by AVG - www.avg.com
 Version: 8.0.237 / Virus Database: 270.10.23/1950 - Release Date: 02/13/09
 06:51:00

___
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: OT console based editor that can do php syntax highlighting

2009-02-14 Thread Simon Griffiths
Thanks for the tip Sean.  

It was mentioned that I could use joe and part of the /usr/ports/editors/joe
build there is jpico which emulates the shortcuts im so used to in pico and
nano.  I think joe works great for me.

Cheers,

Si.

Simon Griffiths
So bored I made...
www.tenenbaum.co.uk

 -Original Message-
 From: Sean Cavanaugh [mailto:millenia2...@hotmail.com]
 Sent: 14 February 2009 15:55
 To: Simon Griffiths; freebsd-questions@freebsd.org
 Subject: Re: OT console based editor that can do php syntax highlighting
 
 Nano supports syntax highlighting. it is off by default but can easily be
 turned on.  I think that you actually have to find the config file to make
 it handle PHP though but that can be found pretty easily on the web
 
 -Sean
 
 --
 From: Simon Griffiths simon.griffi...@tenenbaum.co.uk
 Sent: Saturday, February 14, 2009 7:27 AM
 To: freebsd-questions@freebsd.org
 Subject: OT console based editor that can do php syntax highlighting
 
  Hello Everyone,
 
  I'm guessing this is off-topic so thank you in advance if you can offer
  any
  help.
 
  I currently SSH into a couple of freebsd machine I have dotted about
which
  run some console and web based php code.  This is all fine and dandy but
  when it comes to remote support I struggle reading plain code when the
  file
  gets over a certain size and find a little syntax highlighting helps a
  lot.
 
  So can anyone recommend an editor that can do this ?  I did try vim some
  time ago but being a novice in these areas I couldn't get the syntax
file
  to
  load and help on the web confusing or indecipherable.
 
  TIA,
 
  Si.
 
 
  ___
  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
 
 
 No virus found in this incoming message.
 Checked by AVG - www.avg.com
 Version: 8.0.237 / Virus Database: 270.10.23/1950 - Release Date: 02/13/09
 06:51:00

___
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


Analysing VMcore files.

2008-11-24 Thread Simon Burke
I am currently running FreeBSD 7.0 as my desktop OS, and I have a need to
analyse VWCores from a RedHat ES system.
Knowing very little about analysing dumps, is it possible to do this? or
would I have to set up a more comparable environment?

-- 
Theres no place like ::1

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


Re: Analysing VMcore files.

2008-11-24 Thread Simon Burke
2008/11/24 Ivan Voras [EMAIL PROTECTED]

 Simon Burke wrote:
  I am currently running FreeBSD 7.0 as my desktop OS, and I have a need to
  analyse VWCores from a RedHat ES system.
  Knowing very little about analysing dumps, is it possible to do this? or
  would I have to set up a more comparable environment?

 In theory, you could set up a Linux environment
 (http://www.freebsd.org/doc/en/books/handbook/linuxemu.html) with the
 binaries from your RedHat system, spawn a Linux shell and go from there
 as if you're on Linux, but this will almost certainly be more work than
 just finding a RedHat system (or even installing one in qemu).


That is more or less as I thought.It'll probably be easier to stay as I was,
using our ESX servers for this.

Thank you for your reply.

-- 
Theres no place like ::1

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


Re: collecting pv entries -- suggest increasing PMAP_SHPGPERPROC

2008-10-27 Thread Simon Chang
 collecting pv entries -- suggest increasing PMAP_SHPGPERPROC

 I've read that this is mainly caused by Apache spawning too many processes.
 Everyone seems to suggest to decrease the MaxClients directive in Apache(set
 to 450 at the moment), but here's the problem...i need to increase it !
 During peaks all the processes are in use, we even have little drops
 sometime because there isn't enough processes to serve the requests. Our
 traffic is increasing slowly over time so i'm affraid that it'll become a
 real problem soon. Any tips on how I could deal with this situation,
 Apache's or FreBSD's side ?

On page 85 of Michael Lucas' Absolute BSD, there is a solution to
your problem that someone else had come across before.  The solution
involves (1) increasing the PMAP_SHPGPERPROC parameter in the kernel
to a higher value and rebuilding the kernel, and (2) increasing the
amount of physical RAM to complement it.

For more details, go to

http://books.google.com/books?id=vebgS-r9fP8Cpg=PA85lpg=PA85dq=Michael+Lucas+collecting+pv+entriessource=webots=9Fl2T_Uyqisig=6LgchiUI5r0NTL6PaK3sxnFuIBIhl=ensa=Xoi=book_resultresnum=1ct=result

Good luck,

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


Re: collecting pv entries -- suggest increasing PMAP_SHPGPERPROC

2008-10-27 Thread Simon Chang
 Raising PMAP_SHPGPERPROC works most of the time.  You can also re-tune
 your Apache setting to keep processes from constantly spawning and
 dying.  For example, set the max spare and min spare servers settings
 higher, so Apache keeps more spare servers around instead of spawning
 them on demand and killing them when the demand ends.

 Another option is to upgrade to 7.X, which seems to have replaced the
 mechanism by which this is done to be more dynamic and not have this
 problem.

Since he has only this server as production, and does not like
re-compiling the kernel on it (and rebooting), the only option that's
sensible is retuning Apache and restart services (since an upgrade to
7.X would be even more involved than a kernel rebuild).

By the way, does anyone know whether there is any way to tune
PMAP_SHPGPERPROC using sysctl, or does such button/knob not exist?

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


Disk quotas out of sync

2008-08-07 Thread Simon
Hello Folks,

Ever since I went from 6.x to 7.x I have started experiencing disk quotas 
getting
out of sync, way out of sync. For example, a user with 160GB quota suddenly
shows usage of only 120GB This forces me to run quotacheck -av often.  Was
something changed regarding quotas in 7.x? Nobody else noticed this issue?
I have this issue across multiple, different hardware, servers running 7.x

Thank you for any insight and help in advance!

PS: please CC me

-Simon


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


Re: connecting to a secured Windows 2003 terminal server

2008-07-22 Thread Simon Chang
 Recently my company has updated their server to Windows 2003. The earlier
 2000 server didn't have SSL enabled, so rdp/rdesktop worked for me without
 any problem. But now, as I try to connect to the server, it simply gives me
 ERROR: recv: Connection reset by peer


Did you make sure that the server has remote administration enabled?
I believe that, by default, Win2k3 Servers have RDP disabled.  Check
with your admins about that.

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


Re: FreeBSD 7 , Rebooting....

2008-07-15 Thread Simon Chang
On Tue, Jul 15, 2008 at 10:13 AM, Marcel Grandemange
[EMAIL PROTECTED] wrote:
 I have just setup a FreeBSD server one a machine.

 What happens is the machine seems to suddenly reboot during compiling
 ports..

Which ports, or are you having problems with all the ports you are
trying to build?

...snip...

It would also be helpful if you can reliably reproduce this panic, and
then produce a backtrace.  Read the Handbook for the how-to on that.

Sorry to hear that your box is panicking,

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


Re: How

2008-06-12 Thread Simon Chang
 I had a question concerning how to, suggest a feature in freebsd. But I did
 not know who to email, I am very new to this open-source feel, and was just
 wondering who, or where I post a suggestion.

You have the right mailing list, so go ahead with your question/comment.

Just know that if you are suggesting a feature in FreeBSD and are not
a programmer yourself, a lot will depend on how involved the feature
is and whether you can get someone to work on it.  At least in this
circumstance, if you want a lot you have to give a lot.

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


FreeBSD way of installing old version from ports tree

2008-06-09 Thread Simon Jolle
Hi FreeBSD users

Currently in /usr/ports/sysutils/syslog-ng there is version syslog-ng
1.6.12. I need version syslog-ng 1.6.5 (the same as in production
environment) to test configuration changes.

Is there an archive of the ports tree? Whats the FreeBSD way to
install this old version integrated in the rest of the system?

cheers
Simon

-- 
XMPP: [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: Grep Guru

2008-06-08 Thread Simon Jolle sjolle
On 06/08/2008 10:12 PM, Bill Campbell wrote:
 On Sun, Jun 08, 2008, Jos Chrispijn wrote:
 I tried to make a grep script on find a string in all files on path ./ 
 and down. It does anything exept searching in files and reporting them.
 Is there a Grep Guru who can hint me out? Thanks,
 
 I expect you need something like:
 
 find . -type f -print0 | xargs -0 grep pattern

Or install the GNU grep (from the man)

-R, -r, --recursive
Read all  files  under  each  directory,  recursively;  this  is
equivalent to the -d recurse option.

 Bill

cheers
Simon




signature.asc
Description: OpenPGP digital signature


Re: Grep Guru

2008-06-08 Thread Simon Jolle sjolle
On 06/08/2008 10:26 PM, Matthew Seaman wrote:
 The system supplied grep(1) /is/ gnu grep:
 
 happy-idiot-talk:~:% grep --version grep (GNU grep) 2.5.1-FreeBSD

[...]

Sorry you are right. I didn't had any FreeBSD box around.

 Cheers,
 Matthew

cheers
Simon




signature.asc
Description: OpenPGP digital signature


list files in FreeBSD ports tree package

2008-06-05 Thread Simon Jolle
Hi FreeBSD users

I am searching for something similar to Red Hat's rpm -q -l package
and Debian's dpkg -L package.

cheers
Simon

-- 
XMPP: [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: list files in FreeBSD ports tree package

2008-06-05 Thread Simon Jolle
On 6/5/08, Matthias Apitz [EMAIL PROTECTED] wrote:
 Don't know nothing about Red Hat or Debian, but how about

  $ pkg_info -L stardict-2.4.8_5

  or even

  $ man pkg_info

  HIH

 matthias

Thank you Matthias

-- 
XMPP: [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: News in Spanish

2008-05-25 Thread Simon Jolle sjolle
On 05/24/2008 01:44 PM, Mustela wrote:
Hello. I'm FreeBSD user. Very days ago, I verified that the news
(what's new) in spanish is not up to date (the last is 1999!!) Why?

Hi Mustela

Disclaimer: I am not member of the FreeBSD team (I am only a newbie users)

Simply because there is no voluntary FreeBSD user who translated it.
Every Open Source project needs contributions. You are welcome to
translate the news.

Link: [1]http://www.freebsd.org/es/news/press.html#story200802:02
Very thanks.
Pd:If is possible, please, reply in spanish.

cheers
Simon




signature.asc
Description: OpenPGP digital signature


Do you want to jump on my motorbyke?

2008-05-24 Thread Simon from Italy
Hello, i’m italian boy.

I have 36 years and I love to travel in motorbyke in Europe, beach or mountain 
and camping, in my vacations.

The past summers I have been on the beaches of Spain, France, Croatia, Holland, 
but also Hungary, Switzerland, Austria, Belgium, Germany, Slovenia, Poland, 
Republik Czech, Repubblik Slovanska, Lithuania, Latvia... 

I search a girl that she loves to travel in motorbyke and that she wants to 
make from travel’s partner in order to organize the next vacations. 

Usually I make of the trance of vacations from 10 - 15 days and succeed not to 
spend very. 

My period for vacations is:
25/5 - 2/6
or
6/6 - 16/6
or
21/6 - 30/6
or
1/8 - 24/8

I’m single and I search girl in order to amuse themselves and to discover new 
worlds, new cultures, new people... 

Do you want to jump on my motorbyke?

Simon
[EMAIL PROTECTED]



___

Ciao, sono un ragazzo italiano.

Ho 36 anni e amo trascorrere le vacanze girando in moto per l'Europa, spiagge o 
montagna e campeggi.

Le scorse estati sono stato sulle spiagge di Spagna, Francia, Croazia, Olanda, 
Lituania, ma anche in Ungheria, Svizzera, Austria, Belgio, Germania, Slovenia, 
Repubblica Ceca, Repubblica Slovacca, Polonia, Lussemburgo, Lituania, 
Lettonia...

Cerco una ragazza, a cui piaccia la moto e che voglia fare da compagna di 
viaggio per organizzare le prossime vacanze.

Io ho le ferie in questi periodi:
25/5 - 2/6
o
6/6 - 16/6
o
21/6 - 30/6
o
1/8 - 24/8

Solitamente riesco a non spendere molto.

Sono single e sto solo cercando una COMPAGNA DI VIAGGIO per divertirsi e 
scoprire nuovi mondi, nuove culture, gente nuova...
Salti in sella?

Simone
[EMAIL PROTECTED]



Message envoyé par la version d'essai d'Oxilog e-mailing.
Attention :
La société Oxilog n'est pas à l'origine de l'envoi de ce message et n'est pas 
responsable de son contenu.
Pour toute demande ou réclamation, veuillez contacter l'expéditeur de ce 
message.


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


installation of Python failed: ./python: Permission denied

2008-05-17 Thread Simon Jolle sjolle
Hi FreeBSD users

I am trying to install Python. Please help a newbie here.

[EMAIL PROTECTED] /usr/ports/lang/python]# make -DBATCH install clean
===  Extracting for python-2.5,2
===  Patching for python-2.5,2
===  Configuring for python-2.5,2
===  Installing for python-2.5,2
===   python-2.5,2 depends on file: /usr/local/bin/python2.5 - not found
===Verifying install for /usr/local/bin/python2.5 in
/usr/ports/lang/python25
===  Building for python25-2.5.2_2
cd /usr/ports/lang/python25/work/Python-2.5.2/portbld.shared;
/usr/bin/env VPATH=/usr/ports/lang/python25/work/Python-2.5.2
SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local  LOCALBASE=/usr/local
X11BASE=/usr/local  MOTIFLIB=-L/usr/local/lib -lXm -lXp
LIBDIR=/usr/lib CFLAGS=-O2 -fno-strict-aliasing -pipe
-D__wchar_t=wchar_t  -DTHREAD_STACK_SIZE=0x2  CXXFLAGS=-O2
-fno-strict-aliasing -pipe -D__wchar_t=wchar_t
-DTHREAD_STACK_SIZE=0x2 MANPREFIX=/usr/local
BSD_INSTALL_PROGRAM=install  -s -o root -g wheel -m 555
BSD_INSTALL_SCRIPT=install  -o root -g wheel -m 555
BSD_INSTALL_DATA=install  -o root -g wheel -m 444
BSD_INSTALL_MAN=install  -o root -g wheel -m 444 make libpython2.5.so
python;  /bin/ln -f libpython2.5.so libpython2.5.so.1;  /bin/ln -f
python python-shared2.5
`libpython2.5.so' is up to date.
`python' is up to date.
case $MAKEFLAGS in  *-s*)  CC='cc' LDSHARED='cc -shared -pthread'
OPT='-DNDEBUG -O2 -fno-strict-aliasing -pipe  -D__wchar_t=wchar_t
-DTHREAD_STACK_SIZE=0x2' ./python -E ./../setup.py -q build;;  *)
CC='cc' LDSHARED='cc -shared -pthread' OPT='-DNDEBUG -O2
-fno-strict-aliasing -pipe  -D__wchar_t=wchar_t
-DTHREAD_STACK_SIZE=0x2' ./python -E ./../setup.py build;;  esac
./python: Permission denied
*** Error code 126

Stop in /usr/ports/lang/python25/work/Python-2.5.2/portbld.static.
*** Error code 1

Stop in /usr/ports/lang/python25.
*** Error code 1

Stop in /usr/ports/lang/python.

cheers
Simon




signature.asc
Description: OpenPGP digital signature


Re: installation of Python failed: ./python: Permission denied

2008-05-17 Thread Simon Jolle sjolle
On 05/18/2008 12:08 AM, Sahil Tandon wrote:
 * Simon Jolle sjolle [EMAIL PROTECTED] [05-17-2008]:
 
 ./python: Permission denied
 *** Error code 126
 
 Anything in /etc/fstab being mounted with noexec,nosuid?

No nothing noexec or nosuid. Filesystems table is out-of-the-box. Thanks

cheers
Simon




signature.asc
Description: OpenPGP digital signature


Re: freebsd-update question

2008-05-16 Thread Simon Jolle
On 5/16/08, Catalin Miclaus [EMAIL PROTECTED] wrote:
 I've noticed this was solved after recompiling the kernel.
  Maybe it's also another method available, but since I'm using a custom
  kernel I did not looked for it.

I have the same problem here. Uname shows 7.0-RELEASE after reboot
and freebsd-update to 7.0-RELEASE-p1.

How to solve this without recompiling kernel?

cheers
Simon

-- 
XMPP: [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: FreeBSD 7 on Windows 2008 (Hyper-V)

2008-05-13 Thread Simon Jolle
On 5/13/08, Diego F. Arias R. [EMAIL PROTECTED] wrote:
 Hi i have checked freebsd 8 and now i can see the boot loader, but
  when i try to load the kernel it freezes up. Ok at least i can see the
  boot menu.

  Any sugestions? (about running freebsd in hyper v or freebsd
  virtualization software)?

I recommend you using other virtualization software. For example
Vmware and VirtualBox (now Sun) have official support for FreeBSD and
runs on Windows hosts.

cheers
Simon

-- 
XMPP: [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: FreeBSD 7 on Windows 2008 (Hyper-V)

2008-05-12 Thread Simon Jolle sjolle
On 05/12/2008 01:07 AM, Natham wrote:
 Hi:

Hi Natham

 Im trying to set up a FreeBSD VM under Hyper-V but i the instalation
 do not start. i try x86 and x64 boot disk only (for a net install).
 The error i got is cant load kernel.

See Supported Guest OS on Windows Server 2008 Hyper-V[0]. As far as I
know Microsoft made modifications in the guest kernel. Thats why in
unix-like world only Microsoft partner Novell is supported.

 Im a novice on FreeBSD but i have set up a few small server with it. Any idea?

cheers
Simon

[0]
http://www.microsoft.com/windowsserver2008/en/us/hyperv-supported-guest-os.aspx?pf=true



signature.asc
Description: OpenPGP digital signature


Re: Kind Link Request

2008-05-12 Thread Simon Jolle sjolle
On 05/12/2008 03:06 PM, FreeBSD.Arno wrote:
 ...but it runs on windows and redhat...?
 
 http://www.star.net.uk/star/home/hostingoverview.stml
 http://uptime.netcraft.com/up/graph?site=www.star.net.uk

And additionally it seems to be a SEO-SPAM request. Tony Gordon have the
fancy title Manager Link Building :-)

 gr
 Arno
cheers
Simon



signature.asc
Description: OpenPGP digital signature


automate ports upgrade (portmanager -u -l)

2008-05-08 Thread Simon Jolle
Hi FreeBSD users

How to do unattended ports upgrade? I am using FreeBSD 7.0 and
portmanager ask me strange questions[0] (about compile-time options)

cheers
Simon

[0] http://img384.imageshack.us/img384/8657/portmanageruloptionsaw9.png
-- 
XMPP: [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: automate ports upgrade (portmanager -u -l)

2008-05-08 Thread Simon Jolle
On Thu, May 8, 2008 at 1:53 PM, RW [EMAIL PROTECTED] wrote:
 How to do unattended ports upgrade? I am using FreeBSD 7.0 and
 portmanager ask me strange questions[0] (about compile-time options)

 It's not actually portmanager, it's the ports-system itself. This
 question comes-up regularly. Try looking for the thread:

 overnight upgrade interrupted by questions

Thank you, the thread can be found here[0]. I use now portupgrade -a --batch
There are so many port management tools. Which one is officially
recommended? What do you use and why?

cheers
Simon

[0] http://www.mail-archive.com/freebsd-questions@freebsd.org/msg189925.html
-- 
XMPP: [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: When's FreeBSD going to catch up in the world of virtualization.

2008-04-21 Thread Simon Chang
  Now however, I'm forced to use linux as the host OS for Vmware as there
  currently seems to be no current support for FreeBSD as the Host OS for
  popular VM applications.

I hear your pain.  However, VMware is a commercial company one of
whose responsibilities is their bottom line.  I have heard it said
many, many times on this and other FreeBSD discussions that, if
commercial companies hear from the end-users and system
administrators, they would pay more attention to the group in
question.

Sadly, to date I have not seen any organized efforts to bring to
VMware's attention the mob of BSD users that are out there, despite
all the boastful talks.  You also see that there are no (host) support
for Open and Net (BSD).

OSS virtualization efforts are another story, as there is no bottom
line as such.  But you still need the manpower and manhours to do
complicated stuff like virtualization.

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


Re: [SSHd] Limiting access from authorized IP's

2008-04-21 Thread Simon Gao

cpghost wrote:

On Fri, 18 Apr 2008 13:46:48 -0500
Paul Schmehl [EMAIL PROTECTED] wrote:

  

Let me clarify.  When I use the term host, I'm referring to what
many would call a personal workstation or personal computer.  If
you have more than one person who has shell access to a computer,
then you no longer have a host. You have a server.  Sure, you may not
think of it that way, but that's what it is.

Servers are a completely different ballgame, and the decisions you
make regarding protecting them have everything to do with who has
access to what. The servers that I referenced in my post have one
person with root access - me 
- and one user - the owners.  No one else has access.  So, it's a

great deal easier for me to lock down the boxes than it is, for
example, here at work, where *many* people have shell access and more
than one have root access through sudo or even su.



Sorry for bikeshedding here, since it's just a matter of terminology,
but...

Hosts used to be multi-user machines for a long time, and actually
still are. Most RFCs, including newer ones, refer to hosts and mean
nodes on the net. They don't care whether the hosts are workstations
used by a single or few user(s), or big multi-user machines with
hundreds of shell accounts.

Server is merely the role a program assumes when it waits passively
for requests from clients. Servers run on hosts, regardless
of the number of users on those hosts (ranging from 0 to very high).

Obviously, the security implications vary considerably if you have
to host many user accounts, esp. on hosts used by mission critical
server programs. ;)

And of course, the bikeshed has to be painted... red! :)

Regards,
-cpghost.

  

Try this:

AllowUsers [EMAIL PROTECTED] [EMAIL PROTECTED] joe@home ip

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


file/directory names with space in between

2008-04-14 Thread Simon Gao

Hi,

I need to work on some files and directories that have spaces in them like:

interesting story\2008 March\{story one,story two}.

When using find with -exec, part of the file/directory name will be 
missing and therefore lead to error.


What should I do to put escape key in there to include full names?

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


Re: Powerpc port

2008-03-21 Thread Simon Chang
Hi there,

On Thu, Mar 20, 2008 at 9:13 PM, K. Bradford [EMAIL PROTECTED] wrote:
 I have installed 7.0-RELEASE on an old Mac G4.
  I have cvs'ed the latest sources (using the RELENG_7 tag)
  in order to track 7.0-STABLE.

...snip...

Yeah, the information about FreeBSD seems rather biased toward
i386/amd64/IA64 and maybe the Alpha.  At any rate the PowerPC is
officially a tier-2 platform so there isn't as much support available.

What you can do, though, is to get basic information like device node
names and such from NetBSD.  I got NetBSD 3.0 running on my PowerMac
G4/533 more than a year ago, and it ran just about flawlessly (it had
some problems shutting down, i.e. froze, but other than that there was
nothing I could complain about).  Some of the setup information,
particularly with regards to how OpenFirmware interacts with the boot
loader and boot devices, may be relevant.  At any rate, NetBSD has had
considerable experience porting the OS to the PowerPC platform so it's
worth a try.

Check out this (huge!) how-to at:

ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-3.1/macppc/INSTALL.html

Good luck,

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


Re: FreeBSD 6.2+PHP+700 sites = DNS Issues?

2008-03-12 Thread Simon Street
On Thu, Mar 6, 2008 at 6:38 PM, Mel [EMAIL PROTECTED] wrote:
 On Thursday 06 March 2008 12:12:05 Simon Street wrote:

   I've copied resolv.conf to /usr/local/etc and HostnameLookups is
   already enabled, no joy :( (Have restarted apache also).


  Hmm hmmm.
  So apache can look up IP's and write hostname into it's log, but php can't
  resolve anything. If it's got something to do with FDSET, then if it has no
  traffic at all, the problem should go away. Does it? Not sure if you can test
  that, but block all incoming traffic for 30 seconds and run your test script,
  shouldn't be too difficult.

  Does this work:
  var_dump(gethostbyname(www.example.com));

  Maybe it isn't related to resolving at all - like, are there any disallowed
  functions in your php configuration?
var_dump.. etc returns string(15) www.example.com

disable_functions shows as none in phpinfo!

However I've just noticed in the domain logs that its logging IP's not
hostnames, I assume this is wrong given HostnameLookups On is in a
conf file that is included by httpd.conf. Is there any way to confirm
at runtime that this directive is being obeyed?

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


Upgrade 4.11 to 7.0, possible?

2008-03-10 Thread Simon Gao

Hi,

I am trying to see if it's possible to upgrade 4.11 to 7.0 by using cvsup.

When I run make buildworld, I got these errors.  Are there packages 
missing?


--
 Building an up-to-date make(1)
--
rm -f .depend
mkdep -f .depend -a-I/usr/src/usr.bin/make -DOLD_JOKE=1 
-DMAKE_VERSION=\5200408120\ -D__FBSDID=__RCSID -DDEFSHELLNAME=\sh\  
/usr/src/usr.bin/make/arch.c /usr/src/usr.bin/make/buf.c 
/usr/src/usr.bin/make/cond.c /usr/src/usr.bin/make/dir.c 
/usr/src/usr.bin/make/for.c /usr/src/usr.bin/make/hash.c 
/usr/src/usr.bin/make/hash_tables.c /usr/src/usr.bin/make/job.c 
/usr/src/usr.bin/make/lst.c /usr/src/usr.bin/make/main.c 
/usr/src/usr.bin/make/make.c /usr/src/usr.bin/make/parse.c 
/usr/src/usr.bin/make/proc.c /usr/src/usr.bin/make/shell.c 
/usr/src/usr.bin/make/str.c /usr/src/usr.bin/make/suff.c 
/usr/src/usr.bin/make/targ.c /usr/src/usr.bin/make/util.c 
/usr/src/usr.bin/make/var.c

In file included from /usr/src/usr.bin/make/arch.c:107:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/cond.c:59:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/dir.c:97:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/for.c:55:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/job.c:131:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/main.c:82:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/make.c:80:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/parse.c:86:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/str.c:49:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/suff.c:102:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/targ.c:84:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/util.c:59:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
In file included from /usr/src/usr.bin/make/var.c:96:
/usr/src/usr.bin/make/globals.h:49: stdint.h: No such file or directory
mkdep: compile failed
*** Error code 1

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

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

Stop in /usr/src.



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


Re: FreeBSD bind performance in FreeBSD 7

2008-03-07 Thread Simon Dircks

Ted Mittelstaedt wrote:
  

-Original Message-
From: Peter Losher [mailto:[EMAIL PROTECTED]
Sent: Monday, March 03, 2008 10:18 PM
To: Ted Mittelstaedt
Cc: [EMAIL PROTECTED]; freebsd-questions@freebsd.org
Subject: Re: FreeBSD bind performance in FreeBSD 7


Yeah, ISC just hates FreeBSD... rolls eyes



This final report here:

ftp://ftp.isc.org/isc/dns_perf/ISC-TN-2008-1.pdf

is LIGHTYEARS different than the draft here:

http://new.isc.org/proj/dnsperf/OStest.html


The draft contains the conclusion:

  


You change your underpants once a year?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 6.2+PHP+700 sites = DNS Issues?

2008-03-06 Thread Simon Street
On Wed, Mar 5, 2008 at 5:14 PM, Mel [EMAIL PROTECTED] wrote:

 On Wednesday 05 March 2008 17:50:45 Mel wrote:
   On Wednesday 05 March 2008 17:11:25 Simon Street wrote:
On Wed, Mar 5, 2008 at 2:32 PM, Mel [EMAIL PROTECTED]
  
   wrote:
 On Wednesday 05 March 2008 12:01:11 Simon Street wrote:
   In addition i've attempted adding:
  
   kern.maxfilesperproc=65536
   kern.ipc.somaxconn=1024
   kern.ipc.maxsockbuf=2097152
   kern.maxprocperuid=9000
   to sysctl.conf
  
   kern.maxproc=10240
   kern.maxfiles=65536
   kern.ipc.nmbclusters=32768
   kern.ipc.maxsockets=51200
   to loader.conf
  
   I've also disabled ipv6 in the kernel (can't remember where I saw
   this suggestion)
  
   Post this I've recompiled apache with:
   [EMAIL PROTECTED] export CFLAGS=-DFD_SETSIZE=12000
   [EMAIL PROTECTED] export CXX_FLAGS=-DFD_SETSIZE=12000
   [EMAIL PROTECTED] /scripts/easyapache (this is the cPanel script 
 that auto
   regens apache/php/addons)
  
   I'm having a hard time believing that this issue only plagues
   FreeBSD and is unfixable!
  
   Anyone got any ideas on what else I can change?

  Well, you're probably not reaching any CPanel users, so how about
 posting the offending script. Companies like to blame others, lawyers
 tell them to.

  What is this script doing anyway, that it needs 12000 open file
 descriptors?

  --
  Mel

  Problem with today's modular software: they start with the modules
 and never get to the software part.
   
The problems php inside apache (700+ sites). Not sure if gmail replied
to my original email properly or not!
   
Basically, PHP refuses (instantly) to resolve dns with mod_php, but
its fine connecting to an IP with the same piece of fsockopen code.
And it will happily resolve the name if its run from the CLI.
   
I've been told by cpanel that this is a FreeBSD bug but I'm having a
hard time accepting that. cPanels third line support seem unable to
fix it and are telling me to switch to CGI/suphp which the customer
isn't happy with due to .htaccess stuff.
   
I'm making an assumption that its a lack of FD's but my attempts to
compile stuff with more seems to be failing, or my assumptions are
wrong.
Code that breaks:
$fp = fsockopen(www.example.com, 80, $errno, $errstr, 30); // Fails
inside apache2.2/mod_php5, works fine with php5cli on same server
$fp = fsockopen(208.77.188.166,  80, $errno, $errstr, 30);// Works all
round
   
The code fails with:
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses:
getaddrinfo failed: hostname nor servname provided, or not known in
test.php on line 2
But dns is fine on the server.
  
   Doesn't have anything to do with the DNS, I'm still looking how this can
   be, but the error means that no hostname has been given, since php passes
   NULL to servname by default (see main/network.c around line 202).
   So somewhere along the way the hostname passed to the function gets lost.

  Argh, strike that, the same errorcode is used for unresolvable hostnames. I'm
  gonna take a guess that the process is chrooted into /usr/local and therefore
  cannot access /etc/resolv.conf to know what the nameserver is.
  And, something just entered my mind from way way back - I think if you don't
  have HostnameLookups enabled, that any attempt to do resolving inside a httpd
  child, will fail.

  --


 Mel

  Problem with today's modular software: they start with the modules
 and never get to the software part.


I've copied resolv.conf to /usr/local/etc and HostnameLookups is
already enabled, no joy :( (Have restarted apache also).

Thanks for taking a look though!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 6.2+PHP+700 sites = DNS Issues?

2008-03-05 Thread Simon Street
In addition i've attempted adding:

kern.maxfilesperproc=65536
kern.ipc.somaxconn=1024
kern.ipc.maxsockbuf=2097152
kern.maxprocperuid=9000
to sysctl.conf

kern.maxproc=10240
kern.maxfiles=65536
kern.ipc.nmbclusters=32768
kern.ipc.maxsockets=51200
to loader.conf

I've also disabled ipv6 in the kernel (can't remember where I saw this
suggestion)

Post this I've recompiled apache with:
[EMAIL PROTECTED] export CFLAGS=-DFD_SETSIZE=12000
[EMAIL PROTECTED] export CXX_FLAGS=-DFD_SETSIZE=12000
[EMAIL PROTECTED] /scripts/easyapache (this is the cPanel script that auto
regens apache/php/addons)

I'm having a hard time believing that this issue only plagues FreeBSD
and is unfixable!

Anyone got any ideas on what else I can change?

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


Re: FreeBSD 6.2+PHP+700 sites = DNS Issues?

2008-03-05 Thread Simon Street
On Wed, Mar 5, 2008 at 2:32 PM, Mel [EMAIL PROTECTED] wrote:

 On Wednesday 05 March 2008 12:01:11 Simon Street wrote:
   In addition i've attempted adding:
  
   kern.maxfilesperproc=65536
   kern.ipc.somaxconn=1024
   kern.ipc.maxsockbuf=2097152
   kern.maxprocperuid=9000
   to sysctl.conf
  
   kern.maxproc=10240
   kern.maxfiles=65536
   kern.ipc.nmbclusters=32768
   kern.ipc.maxsockets=51200
   to loader.conf
  
   I've also disabled ipv6 in the kernel (can't remember where I saw this
   suggestion)
  
   Post this I've recompiled apache with:
   [EMAIL PROTECTED] export CFLAGS=-DFD_SETSIZE=12000
   [EMAIL PROTECTED] export CXX_FLAGS=-DFD_SETSIZE=12000
   [EMAIL PROTECTED] /scripts/easyapache (this is the cPanel script that auto
   regens apache/php/addons)
  
   I'm having a hard time believing that this issue only plagues FreeBSD
   and is unfixable!
  
   Anyone got any ideas on what else I can change?

  Well, you're probably not reaching any CPanel users, so how about posting the
  offending script. Companies like to blame others, lawyers tell them to.

  What is this script doing anyway, that it needs 12000 open file descriptors?

  --
  Mel

  Problem with today's modular software: they start with the modules
 and never get to the software part.

The problems php inside apache (700+ sites). Not sure if gmail replied
to my original email properly or not!

Basically, PHP refuses (instantly) to resolve dns with mod_php, but
its fine connecting to an IP with the same piece of fsockopen code.
And it will happily resolve the name if its run from the CLI.

I've been told by cpanel that this is a FreeBSD bug but I'm having a
hard time accepting that. cPanels third line support seem unable to
fix it and are telling me to switch to CGI/suphp which the customer
isn't happy with due to .htaccess stuff.

I'm making an assumption that its a lack of FD's but my attempts to
compile stuff with more seems to be failing, or my assumptions are
wrong.
Code that breaks:
$fp = fsockopen(www.example.com, 80, $errno, $errstr, 30); // Fails
inside apache2.2/mod_php5, works fine with php5cli on same server
$fp = fsockopen(208.77.188.166,  80, $errno, $errstr, 30);// Works all round

The code fails with:
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses:
getaddrinfo failed: hostname nor servname provided, or not known in
test.php on line 2
But dns is fine on the server.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Installing FreeBSD remotely via serial console

2008-03-04 Thread Simon Chang
Hi,

  Not sure whether Dell hardware has any special management features, but on
  generic server hardware, I always make sure BIOS console redirection is
  enabled (gives you BIOS access), and that it's set to stop redirecting once
  the OS boots.

If it is one of the newer Dells, there is a feature called Remote
Access Server that is built-in and has a special Ethernet port for it
(the symbol above the physical port is that of a wrench).  Read the
documentation, but I believe it will get you BIOS messages, etc.

What model of Dell server is it?

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


FreeBSD 6.2+PHP+700 sites = DNS Issues?

2008-02-27 Thread Simon Street
Hi,

I have a customer with a cPanel install on 6.2, Apache/2.2.8 with
PHP/5.2.5 (DSO)

The server is having problem with dns resolution:
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses:
getaddrinfo failed: hostname nor servname provided, or not known in
/snip/support.php on line 2.

This script works fine on the CLI but inside apache it fails.

I've been told by cpanel support that this is a problem with FreeBSD
more than anything and I'm wondering if anyone has any suggestions on
fixes, either sysctl tweaks or otherwise.
cPanel have tried changing FD options on apache but to no avail.

Upgrading to 6.3 is an option if that will fix it.

Any thoughts?

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


Re: Dropped Packets

2008-02-24 Thread Simon Chang
Hardware issues come to mind.  Do you have a dmesg?

SC

On Sun, Feb 24, 2008 at 9:27 AM, Dave Raven [EMAIL PROTECTED] wrote:
 Hi all,
  I have a FreeBSD 4.11 (I know its outdated but I don't have an
  option) box which is behaving very weirdly. After about a day and a half it
  starts to drop packets - about 6-10% of pings at least, and tcp traffic
  becomes unreliable etc.

  I have swapped out the network cards, the cables etc and I don't have any
  mbuf problems and all seems fine. For the first day the box works fine -
  pinging, doing tcp traffic etc; and then suddenly it just stops. Rebooting
  brings it all back to normal.

  Any ideas what could be causing this, and how I could go about diagnosing
  it? As far as I know there are no known bugs for this. I'm using the em
  driver, but not with SMP. There are no errors on the interface, and the em
  debug_info and stats sysctl's don't show any problems - there is no
  indication on the box itself that its dropping packets..

  My thinking is that it must be box specific as a reboot solves the problem?

  Thanks in advance
  Dave

  ___
  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: A non FreeBSD question.

2008-02-08 Thread Simon Chang
On Feb 7, 2008 10:29 PM, अनुज Anuj Singh [EMAIL PROTECTED] wrote:
 Hi,

irrelevant drivel snipped...

This is completely off-topic.  Either post something on-topic, or do
not post at all.

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

Re: how to hardcode kernel dump device in kernel

2008-01-25 Thread Simon Chang
snip

I do not know the syntax either, but it does say that whatever it is
is being deprecated, so I don't imagine the documentation guys will
bother putting it in there...

SC
___
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-12-18 Thread Simon Chang
You need to do some reading on your own.  Your questions are general
enough that some Googling around the Internet should give you what you
need.  After having done sufficient reading on your own, if you still
have questions, then come back.  Show some initiative; don't expect us
to spoon-feed you.

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


Re: devel/boost -- where is tools/build/v2?

2007-12-16 Thread Simon Barner
Hello,

   1. I didn't set NOPORTDOCS in /etc/make.conf, yet there's nothing there
  besides some html files.
 
   2. /usr/ports/devel/boost-python/work/boost_1_34_1/tools/build/v2/tools
  for example contains plenty of .jam files that are needed by bjam to
  run. Those are *not* copied over. A few html files are put in doc/,
  but not the real stuff (which belongs elsewhere, see 3.).

You are right, the bjam scripts are currently not installed. I will
prepare a patch and send it to you for testing.

 
   3. Those files are NOT doc files: they are needed by bjam.
  Their right place should be something like, say,
  /usr/local/lib/boost/tools/...

-- 
Best regards / Viele Grüße, [EMAIL PROTECTED]
 Simon Barner[EMAIL PROTECTED]


pgpqI7AX52gTl.pgp
Description: PGP signature


cannot open br: no such file error

2007-12-14 Thread Simon Gao
Hi,

I am seeing many errors in htpd-erro.log file like:

cannot open br: no such file
cannot open br: no such file
cannot open br: no such file
cannot open br: no such file
cannot open br: no such file

Does this mean there is something wrong with file system? or disk?

Has anyone else seen similar error?

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


CVSup question

2007-12-11 Thread Simon Gao
Hi,

I wonder if just having port-all is enough in cvsupfile as follow. If I
just want to keep ports tree up to date, do I really need to have
'src-all?


*default host=cvsup9.freebsd.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=RELENG_4_11
*default delete use-rel-suffix compress
# src-all
ports-all tag=.

thanks,

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


Re: Duplicate existing FreeBSD Server in VM

2007-12-10 Thread Simon Gao
DAve wrote:
 Terry Sposato wrote:
   
 Hi,

  

 I have just installed a machine and have it setup running a web based CRM
 solution. I want to have an exact duplicate of this machine running as a VM
 for redundancy reasons. 

  

 What is the best way to go about getting this exact machine transferred to
 the VM? Both machines exist on the same network and will be able to talk to
 each other, I have been thinking of a couple of different ways to get all my
 data across which is the easy part, but I want to match everything that is
 installed, base system, ports etc.

  

 Anyone have any ideas or point me into the right direction?

 

 You can use dump over ssh easily enough, here are my notes from using it
 to create multiple production machines from a single test server. There
 are better ways I am sure, but this is quick and easy if you are
 familiar with FreeBSD installs.

 Note #1 In the first comment line I say to boot the live file system CD,
 that is what you would do in the VM, just as you would normally boot an
 installer CD, but use a Live filesystem CD instead.

 Note #2 I used several slices with sizes some may not agree with. It was
 a choice we made for various reasons, the servers have been running for
 three years. You may have more or less slices of varying sizes, adjust
 the steps below to your preferences.

 Note #3 You will need to check and WRITE DOWN which slice is which mount
 point, /, /var, /usr and so on. Your disks may be different if you
 choose not to create a seperate /tmp, or /var.

 I'll be out of the office for a week, but you can try and adjust as
 needed, it won't hurt anything and you can always overwrite and try
 again. WRITE IT DOWN.

 Works for us, I've used it several times, adjusting as needed for the
 system I am cloning.

 DAve

 

 # boot live filesystem cd
 # use disklabel to check/create slices
 /stand/sysinstall
 /dev/ad0s1b256mb   swap
 /dev/ad0s1a256mb   /mnt/ufs.1softupdates
 /dev/ad0s1e256mb   /mnt/ufs.2softupdates
 /dev/ad0s1d256mb   /mnt/ufs.3softupdates
 /dev/ad0s1fall /mnt/ufs.4softupdates
 /dev/ad1s1d2mb /mnt/ufs.5

 # unmount the new slices
 umount /mnt/ufs.1
 umount /mnt/ufs.2
 umount /mnt/ufs.3
 umount /mnt/ufs.4
 umount /mnt/ufs.5

 # make newfs on each slice
 newnfs /dev/ad0s1a
 newnfs /dev/ad0s1e
 newnfs /dev/ad0s1f
 newnfs /dev/ad0s1d
 newnfs /dev/ad1s1d

 # remount the slices
 mount -t ufs -o rw /dev/ad0s1a /mnt/ufs.1
 mount -t ufs -o rw /dev/ad0s1e /mnt/ufs.2
 mount -t ufs -o rw /dev/ad0s1d /mnt/ufs.3
 mount -t ufs -o rw /dev/ad0s1f /mnt/ufs.4

 # fetch the filesystems from the test server
 # you will need to enable root ssh access on the test server for this.
 cd /mnt/ufs.1
 ssh [EMAIL PROTECTED] dump -0L -f - /dev/ad0s1a | restore -rf - /dev/ad0s1a
 cd /mnt/ufs.2
 ssh [EMAIL PROTECTED] dump -0L -f - /dev/ad0s1e | restore -rf - /dev/ad0s1e
 cd /mnt/ufs.3
 ssh [EMAIL PROTECTED] dump -0L -f - /dev/ad0s1f | restore -rf - /dev/ad0s1f
 cd /mnt/ufs.4
 ssh [EMAIL PROTECTED] dump -0L -f - /dev/ad0s1d | restore -rf - /dev/ad0s1d

 # change the following entries in rc.conf, remember everything is
 mounted under /mnt!
 # X = the ecluster number 1,2,3,4,5,6,7,8, etc.
 hostname=new_server_X
 ifconfig_em0=inet 10.0.240.13X netmask 255.255.255.0

 Reboot the new server, it should come up just fine.


   
Your instructions is very helpful. When using on 4.11, -L seems not
working with dump.

Also I have one question, I clone file system from one machine to
another different type of machine. The source machine's file system is
on /dev/da0s1, but destination's is on /dev/ad0s1.  Then I run following
to update boot loader:

fdisk -B -b /boot/boot0 /dev/ad0
bsdlabel -B /dev/ad0s1

However, the cloned system can't find kernel on reboot. What am I missing?

Simon



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


Re: How to find out when a package is installed?

2007-12-09 Thread Simon Gao
Rudy wrote:

 I have used this:
  ls -l /var/db/pkg/PORT_NAME/+DESC

 replace PORT_NAME with the correct directory name...

 RUdy

Thanks. This helped.

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


How to find out when a package is installed?

2007-12-08 Thread Simon Gao
Hi,

Is there a command that can help find out when a package is
installed/compiled? Or what options should I give to pkg_info to find
out installation date?

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


Re: Double fault

2007-11-25 Thread Simon Chang
Hi Bernt,

A few observations:

1)  This double fault apparently occurs fairly early in your boot
process.  Do you initialize anything late, like an external drive or
some other hardware?

2)  By your saying that you usually get either trap 9 or 12, I
assume it happens frequently enough for you to notice a pattern.  Do
you have the kernel dump file and the backtrace?  It would be a really
good starting point to troubleshoot.

SC

On Nov 25, 2007 11:53 AM, Bernt Hansson [EMAIL PROTECTED] wrote:
 Any help with this?


 Fatal double fault:
 eip = 0xc08a6589
 esp = 0x14
 ebp = 0xd020cb1c
 panic: double fault
 Uptime: 1m45s

 I usally get fatal trap 9 or 12


 FreeBSD 6.2-STABLE #0: Fri May 11 17:02:55 CEST 2007
 ___
 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: ffmpeg demuxer library currently broken?

2007-11-15 Thread Simon Burkhalter

On Thu, 15 Nov 2007 10:19:52 +0100
Heiko Wundram (Beenic) [EMAIL PROTECTED] wrote:

 Hey all!
 
 Does anyone else have problems with the latest ffmpeg port (from Oct 20)? It 
 crashes reliably for me transcoding any input to any output (I tested with 
 avi and mp3 files).
 
 The backtrace in the core-dump is corrupt, but it seems that the problem lies 
 somewhere in libavformat's demuxer library (but is format independent), which 
 causes a segmentation fault.
 
 If anybody else is experiencing this, please write me a short mail, because 
 I'll start investigating deeper under that circumstance (I need ffmpeg 
 desperately for work, and simply downgraded to the previous port, which works 
 fine, but still would like to have a fix for the current ffmpeg if it's not 
 only my system that is causing this).
 
 Thanks for any info!


Hi Heiko

I had the same problem some days before.

Not a fix, maybe only a workaround or debug hint:
Compile ports/multimedia/ffmpeg without -pthread or using ffmpeg-2007.05.30_1 
still works.


Full information here: 
http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2007-August/126554.html


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


Re: install

2007-11-08 Thread Simon Chang
snip
...COMPLAINING...
snip

For someone who speaks five languages and works in IT, he sure seems
rather obtuse.  There are only two CDs, with one of them being Disc
1 and the other Disc 2.  If he can't follow simple directions I
suggest that he checks out Fedora Core, which at last count weighs in
at six (6) CDs!!!

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


Software to print vouchers from large amount of txt data

2007-10-22 Thread simon butsana
Hi,
   
  I am looking for a software that will read repetitive data from a text file 
and send it to a preformated fanfold paper (impact printer). The software must 
be customizable as to be told on which area of the paper to print a given field 
from the source text file. 
   
  The data in the text file would thus be translated in a certain number of 
similar paper vouchers.
   
  Does anyone have an idea?
   
  Thanks,
   
  Simon


Simon-Pierre Butsana
  [EMAIL PROTECTED]
   
  I do not fear computers. I fear the lack of them.  —Isaac Asimov 
   

   
-
 Découvrez le blog Yahoo! Mail : dernières nouveautés, astuces, conseils.. et 
vos réactions !
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Bridging interfaces

2007-09-29 Thread Simon Timms
Hello,
I seem to be having some trouble bridging interfaces in FreeBSD 6.2-STABLE.
What I have are two interfaces

rl0 - 192.168.2.2
sis0 - 192.168.1.2

and a bridge I've set up following the pages in the handbook.  However
frames don't seem to be routed from one interface to the other.  The
internet gateway for the networks lives on 192.168.1.1 and I am able to
reach the internet from boxes on the 192.168.1.0/24 subnet but not from the
other.  Tracing the route from a box on the 192.168.2.0/24 subnet the
connection times out on the freebsd box, orinoco.

On orinoco:

[EMAIL PROTECTED] /usr/pub/distfiles]$ ping freebsd.org
PING freebsd.org (69.147.83.40): 56 data bytes
64 bytes from 64.191.203.30: icmp_seq=0 ttl=244 time=79.676 ms
64 bytes from 64.191.203.30: icmp_seq=1 ttl=244 time=69.009 ms
^C
--- digg.com ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max/stddev = 69.009/74.343/79.676/5.334 ms

[EMAIL PROTECTED] /usr/pub/distfiles]$ traceroute freebsd.org
traceroute to freebsd.org (69.147.83.40), 64 hops max, 40 byte packets
 1  wireless (192.168.1.1)  0.849 ms  0.792 ms  0.740 ms
 2  * * *
 3  rd1no-ge7-0-0-2.cg.shawcable.net (64.59.131.210)  9.407 ms  9.793 ms
9.648 ms
 4  rc1no-ge6-0-0.cg.shawcable.net (66.163.77.5)  9.754 ms  9.887 ms  9.453ms
 5  rc1so-pos15-0.cg.shawcable.net (66.163.77.9)  10.553 ms  9.192 ms *
 6  rc1wh-pos3-0-0.vc.shawcable.net (66.163.77.197)  22.346 ms  53.143 ms
22.748 ms
 7  rc1wt-pos1-0-0.wa.shawcable.net (66.163.76.2)  27.164 ms  29.142 ms
25.660 ms
 8  six.yahoo.com (198.32.180.98)  28.643 ms  30.031 ms  36.214 ms
 9  ge-0-2-0.pat2.swp.yahoo.com (216.115.110.33)  25.840 ms  28.536 ms
27.054 ms
10  so-1-0-0.pat1.pdx.yahoo.com (216.115.110.39)  37.792 ms  36.867 ms
34.238 ms
11  so-3-0-0.pat1.sjc.yahoo.com (216.115.110.36)  47.776 ms  52.997 ms
46.636 ms
12  g-0-0-0-p160.msr1.sp1.yahoo.com (216.115.107.57)  46.840 ms
g-1-0-0-p170.msr2.sp1.yahoo.com (216.115.107.85)  50.327 ms
g-1-0-0-p160.msr1.sp1.yahoo.com (216.115.107.61)  51.827 ms
13  ge-1-46.bas-b1.sp1.yahoo.com (209.131.32.43)  50.238 ms
ge-1-41.bas-b2.sp1.yahoo.com (209.131.32.33)  52.068 ms
ge-1-48.bas-b1.sp1.yahoo.com (209.131.32.47)  49.095 ms
14  freebsd.org (69.147.83.40)  51.419 ms  51.483 ms  50.079 ms


On a 192.168.2.0/24 side box

[EMAIL PROTECTED] ~]$ traceroute freebsd.org
traceroute to freebsd.org (69.147.83.40), 30 hops max, 40 byte packets
 1  orinoco (192.168.2.2)  0.627 ms  0.444 ms  0.313 ms
 2  * * *
 3  * * *
...

Output of Ifconfig on orinoco

sis0: flags=8943UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet 192.168.1.2 netmask 0xff00 broadcast 192.168.1.255
ether 00:d0:09:f8:f7:5a
media: Ethernet autoselect (100baseTX full-duplex)
status: active
rl0: flags=8943UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet 192.168.2.2 netmask 0xff00 broadcast 192.168.2.255
ether 00:e0:29:43:ef:db
media: Ethernet autoselect (100baseTX full-duplex)
status: active
plip0: flags=108810POINTOPOINT,SIMPLEX,MULTICAST,NEEDSGIANT mtu 1500
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x4
inet6 ::1 prefixlen 128
inet 127.0.0.1 netmask 0xff00
bridge0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
ether 46:50:6b:b3:54:0d
id 00:00:00:00:00:00 priority 32768 hellotime 2 fwddelay 15
maxage 20 holdcnt 6 proto stp maxaddr 100 timeout 1200
root id 00:00:00:00:00:00 priority 32768 ifcost 0 port 0
member: rl0 flags=143LEARNING,DISCOVER,AUTOEDGE,AUTOPTP
member: sis0 flags=143LEARNING,DISCOVER,AUTOEDGE,AUTOPTP

Any idea what I'm doing incorrectly?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Bridging interfaces

2007-09-29 Thread Simon Timms
Thanks for your help Chris, I ended up rebooting the router since I wasn't
sure what manner of nonsense I'd put in and everything is working.

On 9/29/07, Christopher Cowart [EMAIL PROTECTED] wrote:

 On Sat, Sep 29, 2007 at 09:49:36PM -0600, Simon Timms wrote:
  That makes a lot of sense, but I suppose I still don't understand why
 this
  isn't working.  The handbook section on routing is pretty basic and it
 seems
  to come down to setting net.inet.ip.forwarding to 1 if you want to route
  packets between interfaces on a dual-homed host.  I'm able to reach
 hosts on
  both subnets from the router and my routing table looks like:
 
  Internet:
  DestinationGateway  Flags   Refs  Use  Netif
  Expire
  default   wireless   UGS 0  9905
  sis0
  localhost   localhost  UH0   134
  lo0
  192.168.1  link#1  UC0
 0
  sis0
  orinoco  00:d0:09:f8:f7:5a  UHLW   1
 268lo0
  192.168.1.255ff:ff:ff:ff:ff:ffUHLWb 1 87
  sis0
  192.168.2  link#2  UC0 0
  rl0
  192.168.2.255ff:ff:ff:ff:ff:ffUHLWb 187
  rl0

 Are your 192.168.2/24 machines configured to use 192.168.2.2 as their
 default router? They don't know where 192.168.1.2 is, because they
 don't see it as being on the same link. The subnet mask is used to
 determine this kind of reachability.

 You could probably use 192.168.1.2 as your default router, as long as
 you created a static route `route add 192.168.1/24 192.168.2.2', telling
 the system that to get to 192.168.1/24, the next-hop is 192.168.2.2.
 This seems needlessly complex when you can just configure 192.168.2.2 as
 your default router and skip the static route configuration all
 together.

 Regardless, bridging isn't going to help unless the host and the default
 router have the same subnet configurations.

 --
 Chris Cowart
 Lead Systems Administrator
 Network  Infrastructure Services, RSSP-IT
 UC Berkeley


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


Re: Bridging interfaces

2007-09-29 Thread Simon Timms
That makes a lot of sense, but I suppose I still don't understand why this
isn't working.  The handbook section on routing is pretty basic and it seems
to come down to setting net.inet.ip.forwarding to 1 if you want to route
packets between interfaces on a dual-homed host.  I'm able to reach hosts on
both subnets from the router and my routing table looks like:

Internet:
DestinationGateway  Flags   Refs  Use  Netif
Expire
default   wireless   UGS 0  9905
sis0
localhost   localhost  UH0   134
lo0
192.168.1  link#1  UC0   0
sis0
orinoco  00:d0:09:f8:f7:5a  UHLW   1   268lo0
192.168.1.255ff:ff:ff:ff:ff:ffUHLWb 1 87
sis0
192.168.2  link#2  UC0 0
rl0
192.168.2.255ff:ff:ff:ff:ff:ffUHLWb 187
rl0


On 9/29/07, Christopher Cowart [EMAIL PROTECTED] wrote:

 On Sat, Sep 29, 2007 at 07:06:55PM -0600, Simon Timms wrote:
  Hello,
  I seem to be having some trouble bridging interfaces in FreeBSD
 6.2-STABLE.
  What I have are two interfaces
 
  rl0 - 192.168.2.2
  sis0 - 192.168.1.2
 
  and a bridge I've set up following the pages in the handbook.  However
  frames don't seem to be routed from one interface to the other.  The
  internet gateway for the networks lives on 192.168.1.1 and I am able to
  reach the internet from boxes on the 192.168.1.0/24 subnet but not from
 the
  other.  Tracing the route from a box on the 192.168.2.0/24 subnet the
  connection times out on the freebsd box, orinoco.

 A layer 2 bridge connects two physical network segments to create the
 illusion of a single layer 2 network. In general, you have a single IP
 subnet sitting on top of a layer 2 network. Think of a bridge as a
 2-port ethernet switch.

 If you want a single layer 2 network, try readdressing the
 192.168.2/24 side to be on the 192.168.1/24 subnet.

 If you need different subnets, you'll want to configure *routing* and
 not bridging (See: handbook/network-routing.html).

 Good luck,

 --
 Chris Cowart
 Lead Systems Administrator
 Network  Infrastructure Services, RSSP-IT
 UC Berkeley


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


Re: Can't fdisk newly installed disks

2007-08-14 Thread Simon Gao
Jerry McAllister wrote:
 On Mon, Aug 13, 2007 at 05:38:04PM -0700, Simon Gao wrote:

   
 Hi,

 I am running into some problem with fdisk newly installed drives.

 From boot message, these drives are found without problem:

 da3 at mpt0 bus 0 target 2 lun 0
 da3: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
 da3: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
 Queueing Enabled
 da3: 2048000MB (4194304000 512 byte sectors: 255H 63S/T 261083C)
 da4 at mpt0 bus 0 target 2 lun 1
 da4: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
 da4: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
 Queueing Enabled
 da4: 2048000MB (4194304000 512 byte sectors: 255H 63S/T 261083C)
 da5 at mpt0 bus 0 target 2 lun 2
 da5: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
 da5: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
 Queueing Enabled
 da5: 670790MB (1373777920 512 byte sectors: 255H 63S/T 85513C)

 There are device files in /dev:

 crw-r-  1 root  operator4,  14 Aug 13 17:14 /dev/da3
 crw-r-  1 root  operator4,  15 Aug 13 17:14 /dev/da4
 crw-r-  1 root  operator4,  16 Aug 13 17:14 /dev/da5


 However, when trying to fdisk one of drives, I got following error:

 # fdisk -BI da5
 fdisk: cannot open disk /dev/da5: No such file or directory

 sysintall failed also.

 The system runs  FreeBSD 5.2.1-RELEASE.

 Any help is appreciated.
 

 Did you try doing a  dd(1)  if some blocks of zeros to the drive
 before doing the fdisk.On some older FreeBSD - don't remember
 which - I had trouble with some brands of SCSI disks and writing
 some zeros to it seemed to make it work.  I don't know why or even
 why I first tried it.   But it is simple enough to be worth giving
 it a try to see if anything improves.

dd if=/devf/zero of=/dev/da5 bs=512 count=1024

 jerry  

   
This is what I got:

# dd if=/dev/zero of=/dev/da5 bs=512 count=1024
dd: /dev/da5: Operation not permitted


If I use sysinstall -- config -- fdisk to partition /dev/da5, I got
following warning:


WARNING:  A geometry of 85513/255/63 for da5 is incorrect.  Using  │
 │a more likely geometry.  If this geometry is incorrect or you  │
 │are unsure as to whether or not it's correct, please consult   │
 │the Hardware Guide in the Documentation submenu or use the │
 │(G)eometry command to change it now.   │
 │   │
 │Remember: you need to enter whatever your BIOS thinks the  │
 │geometry is!  For IDE, it's what you were told in the BIOS │
 │setup. For SCSI, it's the translation mode your controller is  │
 │using.  Do NOT use a ``physical geometry''.   


The cylinder, heads and sectors match what's found during boot up.

Simon

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


Re: Can't fdisk newly installed disks

2007-08-14 Thread Simon Gao
[EMAIL PROTECTED] wrote:
 On 13/08/07, Simon Gao [EMAIL PROTECTED] wrote:
   
 Hi,

 I am running into some problem with fdisk newly installed drives.
 
 . . .
   
 # fdisk -BI da5
 fdisk: cannot open disk /dev/da5: No such file or directory
 

 What is your securelevel?

 For example:
 % sysctl kern.securelevel
 kern.securelevel: -1

 man init for more about securelevels.

   
# sysctl kern.securelevel
kern.securelevel: 3

Does higher security level prevent one from adding new file system?

Simon

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


Re: Can't fdisk newly installed disks

2007-08-14 Thread Simon Gao
Wojciech Puchar wrote:
 does anything else works.
 like
 dd if=/dev/disk of=/dev/null bs=1m count=1



Yes.

# dd if=/dev/da5 of=/dev/null bs=1m count=1
1+0 records in
1+0 records out
1048576 bytes transferred in 0.155479 secs (6744167 bytes/sec)



 On Mon, 13 Aug 2007, Simon Gao wrote:

 Hi,

 I am running into some problem with fdisk newly installed drives.

 From boot message, these drives are found without problem:

 da3 at mpt0 bus 0 target 2 lun 0
 da3: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
 da3: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
 Queueing Enabled
 da3: 2048000MB (4194304000 512 byte sectors: 255H 63S/T 261083C)
 da4 at mpt0 bus 0 target 2 lun 1
 da4: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
 da4: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
 Queueing Enabled
 da4: 2048000MB (4194304000 512 byte sectors: 255H 63S/T 261083C)
 da5 at mpt0 bus 0 target 2 lun 2
 da5: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
 da5: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
 Queueing Enabled
 da5: 670790MB (1373777920 512 byte sectors: 255H 63S/T 85513C)

 There are device files in /dev:

 crw-r-  1 root  operator4,  14 Aug 13 17:14 /dev/da3
 crw-r-  1 root  operator4,  15 Aug 13 17:14 /dev/da4
 crw-r-  1 root  operator4,  16 Aug 13 17:14 /dev/da5


 However, when trying to fdisk one of drives, I got following error:

 # fdisk -BI da5
 fdisk: cannot open disk /dev/da5: No such file or directory

 sysintall failed also.

 The system runs  FreeBSD 5.2.1-RELEASE.

 Any help is appreciated.

 Simon



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

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


Re: Can't fdisk newly installed disks

2007-08-14 Thread Simon Gao
Jerry McAllister wrote:
 On Tue, Aug 14, 2007 at 11:48:29AM -0700, Simon Gao wrote:

   
 [EMAIL PROTECTED] wrote:
 
 On 13/08/07, Simon Gao [EMAIL PROTECTED] wrote:
   
   
 Hi,

 I am running into some problem with fdisk newly installed drives.
 
 
 . . .
   
   
 # fdisk -BI da5
 fdisk: cannot open disk /dev/da5: No such file or directory
 
 
 What is your securelevel?

 For example:
 % sysctl kern.securelevel
 kern.securelevel: -1

 man init for more about securelevels.

   
   
 # sysctl kern.securelevel
 kern.securelevel: 3

 Does higher security level prevent one from adding new file system?
 

 It can prevent you from making almost any changes.  A secure level of 3
 is very high and may be what you want for your production - depending
 on what you are doing, but will make any installation or development
 very difficult or impossible.

 jerry

   

Thanks, Jerry.

I tried to lower secure level, but still run into similar error:

# sysctl kern.securelevel=-1
kern.securelevel: 3
sysctl: kern.securelevel: Operation not permitted

Is there other way to reduce secure level to -1 without reboot the
machine or drop into single user mode?

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


Re: Can't fdisk newly installed disks

2007-08-14 Thread Simon Gao
Jerry McAllister wrote:

 It can prevent you from making almost any changes.  A secure level of 3
 is very high and may be what you want for your production - depending
 on what you are doing, but will make any installation or development
 very difficult or impossible.

 jerry
   
That's it. A secure level of 3 setting was the problem. Once changed
secure level to -1, everything worked.

Thanks.

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


Can't fdisk newly installed disks

2007-08-13 Thread Simon Gao
Hi,

I am running into some problem with fdisk newly installed drives.

From boot message, these drives are found without problem:

da3 at mpt0 bus 0 target 2 lun 0
da3: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
da3: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
Queueing Enabled
da3: 2048000MB (4194304000 512 byte sectors: 255H 63S/T 261083C)
da4 at mpt0 bus 0 target 2 lun 1
da4: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
da4: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
Queueing Enabled
da4: 2048000MB (4194304000 512 byte sectors: 255H 63S/T 261083C)
da5 at mpt0 bus 0 target 2 lun 2
da5: IFT A12U-G2421 347D Fixed Direct Access SCSI-3 device
da5: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
Queueing Enabled
da5: 670790MB (1373777920 512 byte sectors: 255H 63S/T 85513C)

There are device files in /dev:

crw-r-  1 root  operator4,  14 Aug 13 17:14 /dev/da3
crw-r-  1 root  operator4,  15 Aug 13 17:14 /dev/da4
crw-r-  1 root  operator4,  16 Aug 13 17:14 /dev/da5


However, when trying to fdisk one of drives, I got following error:

# fdisk -BI da5
fdisk: cannot open disk /dev/da5: No such file or directory

sysintall failed also.

The system runs  FreeBSD 5.2.1-RELEASE.

Any help is appreciated.

Simon


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


Tool to automate web application installation

2007-08-08 Thread simon butsana
Hi,
   
  I have just built an application that will be using Apache, PHP, MySQL.
   
  I am now looking for a tool that will enable me to automate the installation 
of the software, so human intervention will be kept as low as possible.
   
  Basically, the tool will have to install, with one single command (and 
probably a number of parameters), Apache, PHP, MySQL, as well as modify some 
config files (mainly php.ini)
   
  Does anyone have clues?
   
  Regards,
   
  Simon


Simon-Pierre Butsana
  [EMAIL PROTECTED]
   
  I do not fear computers. I fear the lack of them.  —Isaac Asimov 
   

   
-
 Découvrez le blog Yahoo! Mail : dernières nouveautés, astuces, conseils.. et 
vos réactions !
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How to use the rum(4) driver in 6.3?

2007-08-07 Thread Simon Ironside

Hi all,

How can I use the rum driver in 6.3-RELEASE?
The online man pages show that the driver is available in 7.

Every USB 802.11g adapter I've bought on eBay so far has been one of 
these instead of the ural supported device I've been looking for!


Thanks,
Simon

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


Re: How to use the rum(4) driver in 6.2?

2007-08-07 Thread Simon Ironside

Simon Ironside wrote:


How can I use the rum driver in 6.3-RELEASE?


Oops, I of course meant 6.2-RELEASE.

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


Re: looking for a good mailing list manager

2007-07-24 Thread Simon Gao

Steven wrote:

Hi I am looking for a good Open source mailing list manager.

 


It should be web based, preferable be able to handle multiple domains but
not essential, nice interface for user and administrator and at least fairly
good statistics/reports.

 


I have looked at phplist.com but not completely happy with it.

 


Any help would be appreciated.

  

Check out Sympa at www.sympa.org.

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


Re: Waiting for BIND security announcement

2007-07-24 Thread Simon L. Nielsen
[freebsd-security@ CC'ed to avoid answering the same there again
shorly :) - if following up, please drop either freebsd-questions or
freebsd-securiy to avoid spamming both lists]

On 2007.07.24 18:15:43 -0500, Jeffrey Goldberg wrote:

 As I'm sure many people know there is a newly discovered BIND vulnerability 
 allowing cache injection (pharming).  See
 
   http://www.isc.org/index.pl?/sw/bind/bind-security.php
 
 for details.
 
 The version of bind on 6.2, 9.3.3, looks like it is vulnerable (along with 
 many other versions).  It's not particularly an issue for me since my name 
 servers aren't publicly queryable, but I am curios about how things like 
 security problems in
 src/contrib get handled in FreeBSD.

Yes, the FreeBSD Security Team and the FreeBSD BIND maintainer are
aware of the issue and are working on fixing it in FreeBSD as soon as
possible.

More details about the issue can be found at:
http://www.isc.org/sw/bind/bind-security.php .

Our general security handling policies can be found at:
http://security.FreeBSD.org/ .

-- 
Simon L. Nielsen
FreeBSD Deputy Security Officer


pgpfLpC7zupwl.pgp
Description: PGP signature


Remote Desktop tool for FreeBSD

2007-07-18 Thread simon butsana
Hi,
   
  Does anyone know of a remote X client that can be used to establish a remote 
X session with a FreeBSD box. 
  As an example, I would greatly like to test a tool with features similar to 
Microsoft's Remote Desktop.
   
  Thanks,
   
  Simon

Roger Olofsson [EMAIL PROTECTED] a écrit :
  

Steve Franks skrev:
 I just had this problem this week - drives are fine until you access
 one and then disappears.
 
 Checked my bios monitor page and 12V was only 11.8V. Changing from a
 300W to a 500W power supply magically fixed the problem...
 
 I don't claim that this is necessarily your problem, but it caught me
 off-guard and it's worth looking at.
 
 Steve
 
 On 7/16/07, Roger Olofsson wrote:
 Dear mailing list,

 I have 2 IBM HDs and one WD HD (ata) in an old pc and for some reason
 FBSD 6.2 can't find the IBMs on a warm-boot. Cold-boot is fine and, the
 WD is fine.

 The motherboard is an old Aopen AX34 and all settings are default except
 for ACPI that's off.

 The first thought that came to mind was that one of the IBMs are going
 bad, but, I find it very unlikely that both HDs are doing it. One is a
 120 and one is an 80gigger but both 'vanish' on warm-boot.

 Some other setting in bios than ACPI?

 Grateful for any answer,

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

 
 

Thank you for your answer. I'll check the PSU and if necessary replace it.

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



Simon-Pierre Butsana
  [EMAIL PROTECTED]
   
  I do not fear computers. I fear the lack of them.  —Isaac Asimov 
   

   
-
 Découvrez le blog Yahoo! Mail : dernières nouveautés, astuces, conseils.. et 
vos réactions !
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE : Re: Remote Desktop tool for FreeBSD

2007-07-18 Thread simon butsana
Hi Garett,
   
  I apologize if you saw that as an offense. I never intended to hijack 
anyone's thread, and you will probably notice that I changed the subject 
(although I missed to remove the email body).
   
  Kind regards,
   
  Simon 

Garrett Cooper [EMAIL PROTECTED] a écrit :
  simon butsana wrote:
 Hi,
 
 Does anyone know of a remote X client that can be used to establish a remote 
 X session with a FreeBSD box. 
 As an example, I would greatly like to test a tool with features similar to 
 Microsoft's Remote Desktop.
 
 Thanks,
 
 Simon

 Roger Olofsson a écrit :
 

 Steve Franks skrev:
 
 I just had this problem this week - drives are fine until you access
 one and then disappears.

 Checked my bios monitor page and 12V was only 11.8V. Changing from a
 300W to a 500W power supply magically fixed the problem...

 I don't claim that this is necessarily your problem, but it caught me
 off-guard and it's worth looking at.

 Steve

 On 7/16/07, Roger Olofsson wrote:
 
 Dear mailing list,

 I have 2 IBM HDs and one WD HD (ata) in an old pc and for some reason
 FBSD 6.2 can't find the IBMs on a warm-boot. Cold-boot is fine and, the
 WD is fine.

 The motherboard is an old Aopen AX34 and all settings are default except
 for ACPI that's off.

 The first thought that came to mind was that one of the IBMs are going
 bad, but, I find it very unlikely that both HDs are doing it. One is a
 120 and one is an 80gigger but both 'vanish' on warm-boot.

 Some other setting in bios than ACPI?

 Grateful for any answer,

 /Roger

Don't hijack other's threads. It's not polite.
-Garrett



Simon-Pierre Butsana
  [EMAIL PROTECTED]
   
  I do not fear computers. I fear the lack of them.  —Isaac Asimov 
   

   
-
 Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: An ssh Question

2007-07-07 Thread Simon Chang


  OpenSSH_4.5p1 FreeBSD-20061110, OpenSSL 0.9.7e-p1 25 Oct 2004
  debug1: Reading configuration data /etc/ssh/ssh_config
  debug2: ssh_connect: needpriv 0
  debug1: Connecting to xx.com [x.x.x.x] port 22.


What is really baffling is that if I try the exact same thing from, say,
a cygwin session on a host on the private network - this works fine.
So ... it's not a firewall problem as near as I can tell.  It may be
an ssh configuration problem - that is, the FreeBSD ssh client can't do
it, but another client (cygwin) can.


It would be helpful if you include your firewall ruleset, plus
sshd_config.  It's possible that one or more is misconfigured, but we
would have no way of knowing without your telling us about them.

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


  1   2   3   4   5   6   7   >