compile error LyX 1.5.1

2007-10-09 Thread Marco Beishuizen

Hi,

Installing LyX 1.5.1 from ports gives the following error during 
compiling (on 6.2-Stable):

...
filetools.cpp:416: error: `fs::filesystem_error' has not been declared
filetools.cpp:416: error: invalid catch parameter
filetools.cpp:416: error: expected `)' before "const"
filetools.cpp:416: error: expected `{' before "const"
filetools.cpp:416: error: expected initializer before ')' token
gmake[5]: *** [filetools.lo] Error 1
gmake[5]: Leaving directory 
`/usr/ports/print/lyx15/work/lyx-1.5.1/src/support'
gmake[4]: *** [all-recursive] Error 1
gmake[4]: Leaving directory 
`/usr/ports/print/lyx15/work/lyx-1.5.1/src/support'
gmake[3]: *** [all] Error 2
gmake[3]: Leaving directory 
`/usr/ports/print/lyx15/work/lyx-1.5.1/src/support'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory `/usr/ports/print/lyx15/work/lyx-1.5.1/src'
gmake[1]: *** [all] Error 2
gmake[1]: Leaving directory `/usr/ports/print/lyx15/work/lyx-1.5.1/src'
gmake: *** [all-recursive] Error 1
*** Error code 2
...

Does anyone have a clue what the problem is here?

Thanks in advance,

Marco

-- 
The wages of sin are high but you get your money's worth.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


How to make printer print faster?

2003-12-09 Thread Marco Beishuizen

Hello,

I own a HP LaserJet 2100, connected to my home network. According to the
specifications it should be able to print 10 pages per minute. When using
Windows that's not a problem. But using FreeBSD (with lpd configured with
help of Apsfilter from the ports) it prints very slowly, I guess about 2
pages per minute.

Is it possible to make printing go faster?

Thanks in advance,

Marco

-- 
An age is called Dark not because the light fails to shine, but because
people refuse to see it.
-- James Michener, "Space"
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How to make printer print faster?

2003-12-09 Thread Marco Beishuizen
On stardate Tue, 9 Dec 2003, the wise Peter Ulrich Kruppa entered:

> On Tue, 9 Dec 2003, Marco Beishuizen wrote:
>
> >
> > Hello,
> >
> > I own a HP LaserJet 2100, connected to my home network. According to the
> > specifications it should be able to print 10 pages per minute. When using
> > Windows that's not a problem. But using FreeBSD (with lpd configured with
> > help of Apsfilter from the ports) it prints very slowly, I guess about 2
> > pages per minute.
> >
> > Is it possible to make printing go faster?
> Start apsfilter's setup and play around with resolutions and
> qualities.
> If you need different quality standards, you could give them
> different names like hplaser_lo and hplaser_hi .

Well I just tried a lot of settings (resolution to 300dpi, quality to
high/medium/low) but it has not influenced the speed of printing at all.
The only driver that seems suitable for my printer is the lj5mono or
lj5gray.

Any other suggestions?

gr.
Marco

-- 
They also surf who only stand on waves.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How to make printer print faster?

2003-12-10 Thread Marco Beishuizen
On stardate Wed, 10 Dec 2003, the wise Mark Terribile entered:

> When something is slow, the first thing to learn is _why_ it is slow.
> With it running, call up  systat 1 -vmstat  (systat-one-dash-vmstat) and
> look at the bar graph from the lhs to the center of the display.  If you
> see lots of dashes or angle brackets, the problem is with user-level code
> such as  ghostscript .  If you see lots of equal signs, then something in
> the kernel (a driver?) is eating the time.  If you see lots of plus signs,
> then a lot of time is being spent fielding interrupts, which suggests that
> the communication between the computer and the printer is not well handled.
> (Parallel ports are horrible in this way.)  If there is not a lot of CPU
> being used, then the problem lies in the printer or in the precise
> instructions is is being given -- or else in some other source of delay in
> the computer.  In an extreme case, heavy disk I/O could do this; you'll see
> that in the display on the bottom left to bottom center.
>
> Once you know where the bottleneck is, or at least where it ISN'T, you
> can look for the precise problem and the real fix.
>
> systat -vmstat may be the best thing a performance-concious developer
> will find in FreeBSD.  Apart, that is, from a system which wants to run
> fast if only you'll let it.

I did the test:
- When ps is busy processing the document, a lot of angle brackets are
visible in the middle of the graph (under user). But only for a second or
two.
- When the data is sent to the printer, a split second one plus sign is
visible under sys.

After that everything returns to "normal" as if nothing is busy and the
data is being sent to the printer and the printer starts printing.

At first I thought the bottleneck is the speed of my network and the speed
the data is sent tot the printer. But it has to be something else because
when I attach a laptop to my network (with Win2000) it's printing 10 ppm.

I got the impression that the printer is processing the data coming from
Windows a lot faster than when the data is coming from FreeBSD.

Marco
-- 
A [golf] ball hitting a tree shall be deemed not to have hit the tree.
Hitting a tree is simply bad luck and has no place in a scientific
game.  The player should estimate the distance the ball would have
traveled if it had not hit the tree and play the ball from there,
preferably atop a nice firm tuft of grass.
-- Donald A. Metz
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How to make printer print faster?

2003-12-10 Thread Marco Beishuizen
On stardate Tue, 9 Dec 2003, the wise Warren Block entered:

> You could get the PostScript DIMM for the 2100 and eliminate apsfilter.
> The speed increase would depend on what type of things you're printing,
> but it's inexpensive (saw the DIMM on printerworks.com for $39).
>
> -Warren Block * Rapid City, South Dakota USA

If that increases the speed, I'll look for it. I live in Europe so I will
look for a PS DIMM here first :).

It could be the solution because it seems the only difference between the
Windows laptop and my FreeBSD computers (only talking about printing now
of course).

I print mostly "text" (from Acrobat or ApplixWare etc.).

Marco
-- 
Corruption is not the #1 priority of the Police Commissioner.  His job
is to enforce the law and fight crime.
-- P.B.A. President E. J. Kiernan
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How to make printer print faster?

2003-12-10 Thread Marco Beishuizen
On stardate Wed, 10 Dec 2003, the wise Mark Terribile entered:

> I'm wondering if the problem is that everything going through APSFILTER is
> sent as Postscript or raster.  If this is on a 4.x (did you say 4.9?) then
> you are limited to the 1.1 Meg/sec of USB1 (I'm assuming that it's a USB
> printer).  USB2 is 450 times faster, and may remove a bottleneck.  On the
> other hand, the bottleneck may be the speed at which the printer can process
> either Postscript or its raster data.  And that may depend on some resolution
> settings.
>
> I can't think of how to measure these things offhand, but that's where I
> would start.
>
> Mark Terribile

Most of the time I'm printing from a PIII450 which runs FreeBSD
4.8-release and an Alpha which runs 4.7-release (I know I should upgrade
but that's another issue :)). The printer is connected to a small network
at home, three computers all running FreeBSD and the printer, all
connected to a switch. Sometimes I plug a laptop from my work into the
network, which runs Windows 2000.

Now I think that the data sent to the printer is PostScript and not PCL
(if this is possible, I'm no expert on this but I guess that's the reason
Windows is printing a lot faster) and that I should install a so called
"PostScript emulator DIMM". Problem is that these are hard to find since
the LaserJet 2100 is an old model now.

I just got a tip on the mailinglist that they are still being sold at
http://www.printerworks.com. Now I hope that they deliver to Europe also
and that the company can be trusted...

Marco
-- 
Finagle's Second Law:
No matter what the anticipated result, there will always be
someone eager to (a) misinterpret it, (b) fake it, or (c) believe it
happened according to his own pet theory.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: How to make printer print faster?

2003-12-10 Thread Marco Beishuizen
On stardate Wed, 10 Dec 2003, the wise Chris Howells entered:

> I have a similiar "issue" with a HP LaserJet 4 Plus, which is capable of
> 12ppm. It's connected to my network using a JetDirect card on 100mbit switch,
> so speed of the interface shouldn't be an issue. I'm using the hpijs drivers
> currently. I would also agree that it seems to print more slowly than in
> Windows. My impression is that the LaserJet 4 is quite an old printer and has
> a relatively slow processor and therefore seems to spend quite a long time
> processing each page. I don't know for sure but I think it's just simply that
> it has to do more processing for UNIX print jobs.
>
> E.g. on WIndows it looks something like this:
>
> Application > PCL -> Printer
>
> On FreeBSD, mine does something like this:
>
> Application -> PostScript -> PCL -> Printer
>
> I was wondering if the PCL generated from PostScript was rather more
> complicated than that generated by the Windows driver and therefore required
> more processing.

Yes I also have the impression that it has something to do with the
translation from PostScript to PCL. The printer prints 10ppm from my
laptop with Windows2000, so it can't be a hardware problem. I think it has
to be a driver issue, some difference of printing systems between
FreeBSD/Windows.

> also take a look at (misleadingly-named) www.linuxprinting.org. They
> reccommend the use of the pxlmono driver, and say that it's much faster than
> others:
>
> http://www.linuxprinting.org/show_printer.cgi?recnum=HP-LaserJet_2100

I tried the "pxlmono" driver, recommended on the site instead of the
"lj5mono" or "lj5gray" I'm using now. But that driver didn't work at all.
Thanks for the tip though.

I'm thinking of looking for a Postscript emulator DIMM now, to make my
printer a PS printer.

Marco
-- 
"I played lead guitar in a band called The Federal Duck, which is the
kind of name that was popular in the '60s as a result of controlled
substances being in widespread use.  Back then, there were no
restrictions, in terms of talent, on who could make an album, so we
made one, and it sounds like a group of people who have been given
powerful but unfamiliar instruments as a therapy for a degenerative
nerve disease."
-- Dave Barry, "The Snake"
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: logcheck doesn't work anymore

2008-09-12 Thread Marco Beishuizen
On Fri, 12 Sep 2008 18:02:37 -0400
Greg Larkin <[EMAIL PROTECTED]> wrote:

> Hi Marco,
> 
> Right you are!  In fact, after my initial logcheck commit, someone
> opened a PR stating something very similar to what you noted:
> http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/127255
> 
> The submitter's point is that the logcheck user should not be part of
> the wheel group, since that also confers the ability to su to root and
> read many files that should be private.
> 
> A patch has been committed very recently to remove the logcheck user
> from the wheel group and change the verbiage in pkg-message:
> http://www.freebsd.org/cgi/cvsweb.cgi/ports/security/logcheck/files/pkg-install.in.diff?r1=1.1;r2=1.2
> http://www.freebsd.org/cgi/cvsweb.cgi/ports/security/logcheck/files/pkg-message.in.diff?r1=1.1;r2=1.2
> 
> Any file that needs to be analyzed by logcheck will now have to be
> readable by the logcheck group instead of the wheel group.
> 
> Best regards,
> Greg
> - --
> Greg Larkin

I upgraded to the latest version today and now there is a separate
logcheck group. But logcheck still only works when the logfiles have
permission 644. Most of them had permissions set to 600 but then I get
the same error messages as before.

Or should I change the owner of all logfiles from root to logcheck and
then the permissions back to 600?

Regards,
Marco
-- 
I'd rather just believe that it's done by little elves running around.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: logcheck doesn't work anymore

2008-09-14 Thread Marco Beishuizen
On Sun, 14 Sep 2008 13:00:47 -0400
Greg Larkin <[EMAIL PROTECTED]> wrote:

> Finally, I'll add the members of the wheel group to the logcheck group
> so anyone in that group can still read the file as they could before:
> 
> fbsd70# grep ^wheel: /etc/group
> wheel:*:0:root,glarkin
> fbsd70# grep ^wheel: /etc/group | awk -F : '{ print $4 }' | xargs
> \ -n1 pw groupmod logcheck -m
> fbsd70# grep ^logcheck: /etc/group
> logcheck:*:915:root,glarkin
> 

When trying to add root and marco to the logcheck group I get:

...
#grep ^wheel: /etc/group | awk -F : '{ print $4 }' | xargs \ -n1 pw
groupmod logcheck -m
#xargs:  -n1: No such file or directory
...

Should I add them manually to /etc/group? Or is this not enough to make
it work.

Regards,
Marco

-- 
Around computers it is difficult to find the correct unit of time to
measure progress.  Some cathedrals took a century to complete.  Can you
imagine the grandeur and scope of a program that would take as long?
-- Epigrams in Programming, ACM SIGPLAN Sept. 1982
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: logcheck doesn't work anymore

2008-09-14 Thread Marco Beishuizen
On Sun, 14 Sep 2008 13:00:47 -0400
Greg Larkin <[EMAIL PROTECTED]> wrote:

> Now the logcheck, root, and glarkin user can all
> read /var/log/auth.log, and the logcheck script should work fine.  I
> hope that clears everything up.  If you have any further questions or
> problems, please post back here.

Yes, all is working fine now. Thanks for the help!

Regards,
Marco

-- 
Life is like a bowl of soup with hairs floating on it.  You have to
eat it nevertheless.
-- Flaubert
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Problems with portupgrade or db

2008-10-14 Thread Marco Beishuizen
Hi,

In an attempt to upgrade db42 to db47 I seem to have broken some
things. If I try to portupgrade anything I get:

...
#portupgrade -a
** Makefile possibly broken: www/gnome-user-share:
/libexec/ld-elf.so.1: Shared object "libdb-4.2.so.2" not found,
required by "libaprutil-1.so.3" [: -le: argument expected
gnome-user-share-0.31_2
: Your apache does not support DSO modules

/usr/local/sbin/portupgrade:1468:in `get_pkgname': Makefile broken
(MakefileBrokenError) from /usr/local/sbin/portupgrade:622:in `main'
from /usr/local/sbin/portupgrade:613:in `each'
from /usr/local/sbin/portupgrade:613:in `main'
from /usr/local/sbin/portupgrade:588:in `catch'
from /usr/local/sbin/portupgrade:588:in `main'
from /usr/local/lib/ruby/1.8/optparse.rb:1303:in `call'
from /usr/local/lib/ruby/1.8/optparse.rb:1303:in
`parse_in_order' from /usr/local/lib/ruby/1.8/optparse.rb:1299:in
`catch' ... 6 levels...
from /usr/local/lib/ruby/1.8/optparse.rb:785:in `initialize'
from /usr/local/sbin/portupgrade:229:in `new'
from /usr/local/sbin/portupgrade:229:in `main'
from /usr/local/sbin/portupgrade:2208
...

If I try to reinstall db42 (or anything else) I get the same error
message.
What can I do to make things work again?

Thanks in advance,

Marco

-- 
Remember, if it's being done correctly, here or abroad, it's
*not* the U.S. Army doing it!
-- Good Morning, Vietnam
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Problems with portupgrade or db

2008-10-14 Thread Marco Beishuizen
On Tue, 14 Oct 2008 08:06:46 -0700 (PDT)
mdh <[EMAIL PROTECTED]> wrote:

> Have you tried installing db42 from ports manually?  ie:
> (cd /usr/ports/databases/db42 && make deinstall && make clean && make
> install && make clean)
> 
> If that doesn't work, perhaps try installing the db42 pkg from the
> FreeBSD ftp servers?  Personally, I try to stay away from portupgrade
> or anything else that comes around claiming to make something easier
> that's already easy enough.  ;)
> 
> - mdh

Yes, I did try to install it manually but that results in:
...
===>  Extracting for db42-4.2.52_5
=> MD5 Checksum mismatch for bdb/db-4.2.52.tar.gz.
=> SHA256 Checksum mismatch for bdb/db-4.2.52.tar.gz.
=> MD5 Checksum OK for bdb/patch.4.2.52.1.
=> SHA256 Checksum OK for bdb/patch.4.2.52.1.
=> MD5 Checksum OK for bdb/patch.4.2.52.2.
=> SHA256 Checksum OK for bdb/patch.4.2.52.2.
=> MD5 Checksum OK for bdb/patch.4.2.52.3.
=> SHA256 Checksum OK for bdb/patch.4.2.52.3.
=> MD5 Checksum OK for bdb/patch.4.2.52.4.
=> SHA256 Checksum OK for bdb/patch.4.2.52.4.
=> MD5 Checksum OK for bdb/patch.4.2.52.5.
=> SHA256 Checksum OK for bdb/patch.4.2.52.5.
===>  Refetch for 1 more times files: bdb/db-4.2.52.tar.gz
bdb/db-4.2.52.tar.gz => db-4.2.52.tar.gz doesn't seem to exist
in /usr/ports/distfiles/bdb. => Attempting to fetch from
http://download-east.oracle.com/berkeley-db/. fetch:
http://download-east.oracle.com/berkeley-db/db-4.2.52.tar.gz: Requested
Range Not Satisfiable => Attempting to fetch from
http://download-west.oracle.com/berkeley-db/. fetch:
http://download-west.oracle.com/berkeley-db/db-4.2.52.tar.gz: Requested
Range Not Satisfiable => Attempting to fetch from
http://download-uk.oracle.com/berkeley-db/. fetch:
http://download-uk.oracle.com/berkeley-db/db-4.2.52.tar.gz: Requested
Range Not Satisfiable => Attempting to fetch from
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/bdb/. fetch:
db-4.2.52.tar.gz: local modification time does not match remote =>
Couldn't fetch it - please try to retrieve this => port manually
into /usr/ports/distfiles/bdb and try again. *** Error code 1

Stop in /usr/ports/databases/db42.
*** Error code 1

Stop in /usr/ports/databases/db42.
...

The package is already present in /usr/ports/distfiles/bdb and when I
download it manually I get the error above.

Regards,
Marco

-- 
Beauty and harmony are as necessary to you as the very breath of life.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Problems with portupgrade or db

2008-10-14 Thread Marco Beishuizen
On Tue, 14 Oct 2008 09:35:55 -0700
Jeremy Chadwick <[EMAIL PROTECTED]> wrote:

> The "Range Not Satisfiable" errors are because your db-4.2.52.tar.gz
> is of an incorrect size (probably larger than what's on the source
> site). The last error (talking about modification time) could
> indicate that you have a clock which is severely skewed or incorrect
> in some way.
> 
> Otherwise, if you're *absolutely 100% positive* all is well, then the
> issue could be one of the following:
> 
> 1) The db-4.2.52.tar.gz tarball on the distribution sites has changed,
> 2) There is a proxy server between you and the distribution site which
>is caching data and returning bad stuff,
> 3) You're experiencing underlying corruption going on (network or
> disk), 4) Your ports tree is outdated or broken (some pieces are out
> of date while others are correct).
> 
> Here's some evidence that things are indeed working (on my systems)
> how you'd expect -- everything matches up perfectly:
> 
> $ wget -q http://download-east.oracle.com/berkeley-db/db-4.2.52.tar.gz
> 
> $ md5 db-4.2.52.tar.gz
> MD5 (db-4.2.52.tar.gz) = 8b5cff6eb83972afdd8e0b821703c33c
> 
> $ grep db-4.2.52.tar.gz /usr/ports/databases/db42/distinfo
> MD5 (bdb/db-4.2.52.tar.gz) = 8b5cff6eb83972afdd8e0b821703c33c
> SHA256 (bdb/db-4.2.52.tar.gz) =
> f4bddd8d1b4cde0daf5e13e3493ed62a25b736b0bf258e1d929e47bc6a82a28c SIZE
> (bdb/db-4.2.52.tar.gz) = 3919271
> 

I got the tarball you mentioned and this one installed fine so it was
probably changed. I had one of a different size. My clock seems fine
too, it gets updated by a ntp daemon.

But all seems to be working again so thanks for the help.

Regards,
Marco

-- 
I think the sky is blue because it's a shift from black through purple
to blue, and it has to do with where the light is.  You know, the
farther we get into darkness, and there's a shifting of color of light
into the blueness, and I think as you go farther and farther away from
the reflected light we have from the sun or the light that's bouncing
off this earth, uh, the darker it gets ... I think if you look at the
color scale, you start at black, move it through purple, move it on
out, it's the shifting of color.  We mentioned before about the stars
singing, and that's one of the effects of the shifting of colors.
-- Pat Robertson, The 700 Club
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


radeonhd 1.3.0 slow window moving

2009-12-07 Thread Marco Beishuizen


Hi,

I upgraded the radeonhd driver from 1.2.5 to 1.3.0. It seems to work fine, 
except when moving a window. As far as I can see all other actions like 
scrolling or resizing is quick, but moving windows goes really slow.


In my xorg.conf the modules "extmod", "record", "dbe", "glx", "dbi" and 
"dbi2" are loaded. In the device section I have two options enabled:

- "AccelMethod" "EXA"
- "DRI" "on"
In my x.org logfile are no errors.

Does anyone else has experienced this?
My Radeon is a HD4870 and I'm running FreeBSD 8.0-ST.

Thanks in advance.
Regards,
Marco

--
The more you complain, the longer God lets you live.
___
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: radeonhd 1.3.0 slow window moving

2009-12-07 Thread Marco Beishuizen

On Mon, 7 Dec 2009, George Liaskos wrote:


Give x11-drivers/xf86-video-ati a try

http://lists.freebsd.org/pipermail/freebsd-x11/2009-December/009093.html


What are the differences between the ati and the radeonhd driver? Is the 
ati-driver for all Ati cards and the radeonhd specifically for RadeonHD 
cards, or are there more differences?


Regards,
Marco

--
It takes a smart husband to have the last word and not use it.
___
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: radeonhd 1.3.0 slow window moving

2009-12-07 Thread Marco Beishuizen

On Mon, 7 Dec 2009, Marco Beishuizen wrote:



Hi,

I upgraded the radeonhd driver from 1.2.5 to 1.3.0. It seems to work fine, 
except when moving a window. As far as I can see all other actions like 
scrolling or resizing is quick, but moving windows goes really slow.


In my xorg.conf the modules "extmod", "record", "dbe", "glx", "dbi" and 
"dbi2" are loaded. In the device section I have two options enabled:

- "AccelMethod" "EXA"
- "DRI" "on"
In my x.org logfile are no errors.

Does anyone else has experienced this?
My Radeon is a HD4870 and I'm running FreeBSD 8.0-ST.

Thanks in advance.
Regards,
Marco


I installed the ati-driver and this one doesn't seem to have the slow 
window moving problem. So I guess I'm staying with the ati-driver for now.


Regards,
Marco


--
Women who want to be equal to men lack imagination.
___
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 7.0 not reading rc.conf at startup

2008-04-18 Thread Marco Beishuizen
Hi,

Since I upgraded to 7.0, it seams that my /etc/rc.conf isn't read
anymore at startup. At least partly. Things that do not start anymore
are:
- oss
- dbus
- hald
- avahi

They are all gnome related. I have in my rc.conf: oss_enable="YES",
hald_enable="YES", avahi_daemon_enable="YES and dbus_enable="YES". The
gnome FAQ mentiones to put gnome_enable="YES" in the rc.conf but that
doesn't work at all.

Does anyone know how to make FreeBSD start these things automatically?

Thanks in advance.

Marco

-- 
Error in operator: add beer
___
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.0 not reading rc.conf at startup

2008-04-19 Thread Marco Beishuizen
On Sat, 19 Apr 2008 11:24:34 +0200
Mel <[EMAIL PROTECTED]> wrote:

> Anything useful come up when you put rc_debug="YES" in there?
> Gutshot guess, the polkitd_enable is missing.

I've attached the messages at startup with rc_debug="YES" in my
rc.conf. I've also enabled the polkitd, but it says nothing about the
stuff it should startup.

Marco

-- 
The system was down for backups from 5am to 10am last Saturday.
Apr 19 11:43:36 yokozuna syslogd: kernel boot file is /boot/kernel/kernel
Apr 19 11:43:36 yokozuna kernel: Copyright (c) 1992-2008 The FreeBSD Project.
Apr 19 11:43:36 yokozuna kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 
1989, 1991, 1992, 1993, 1994
Apr 19 11:43:36 yokozuna kernel: The Regents of the University of California. 
All rights reserved.
Apr 19 11:43:36 yokozuna kernel: FreeBSD is a registered trademark of The 
FreeBSD Foundation.
Apr 19 11:43:36 yokozuna kernel: FreeBSD 7.0-STABLE #10: Sat Apr 12 22:54:51 
CEST 2008
Apr 19 11:43:36 yokozuna kernel: [EMAIL PROTECTED]:/usr/obj/usr/src/sys/YOKOZUNA
Apr 19 11:43:36 yokozuna kernel: Timecounter "i8254" frequency 1193182 Hz 
quality 0
Apr 19 11:43:36 yokozuna kernel: CPU: Intel(R) Xeon(TM) CPU 2.80GHz 
(2793.02-MHz 686-class CPU)
Apr 19 11:43:36 yokozuna kernel: Origin = "GenuineIntel"  Id = 0xf34  Stepping 
= 4
Apr 19 11:43:36 yokozuna kernel: 
Features=0xbfebfbff
Apr 19 11:43:36 yokozuna kernel: 
Features2=0x441d
Apr 19 11:43:36 yokozuna kernel: AMD Features=0x2000
Apr 19 11:43:36 yokozuna kernel: Logical CPUs per core: 2
Apr 19 11:43:36 yokozuna kernel: real memory  = 2147278848 (2047 MB)
Apr 19 11:43:36 yokozuna kernel: avail memory = 2087542784 (1990 MB)
Apr 19 11:43:36 yokozuna kernel: ACPI APIC Table: 
Apr 19 11:43:36 yokozuna kernel: FreeBSD/SMP: Multiprocessor System Detected: 4 
CPUs
Apr 19 11:43:36 yokozuna kernel: cpu0 (BSP): APIC ID:  0
Apr 19 11:43:36 yokozuna kernel: cpu1 (AP): APIC ID:  1
Apr 19 11:43:36 yokozuna kernel: cpu2 (AP): APIC ID:  6
Apr 19 11:43:36 yokozuna kernel: cpu3 (AP): APIC ID:  7
Apr 19 11:43:36 yokozuna kernel: ioapic0  irqs 0-23 on motherboard
Apr 19 11:43:36 yokozuna kernel: ioapic1  irqs 24-47 on motherboard
Apr 19 11:43:36 yokozuna kernel: kbd1 at kbdmux0
Apr 19 11:43:36 yokozuna kernel: acpi0:  on motherboard
Apr 19 11:43:36 yokozuna kernel: acpi0: [ITHREAD]
Apr 19 11:43:36 yokozuna kernel: acpi0: Power Button (fixed)
Apr 19 11:43:36 yokozuna kernel: acpi0: reservation of 0, a (3) failed
Apr 19 11:43:36 yokozuna kernel: acpi0: reservation of 10, 7ff0 (3) 
failed
Apr 19 11:43:36 yokozuna kernel: Timecounter "ACPI-fast" frequency 3579545 Hz 
quality 1000
Apr 19 11:43:36 yokozuna kernel: acpi_timer0: <24-bit timer at 3.579545MHz> 
port 0x808-0x80b on acpi0
Apr 19 11:43:36 yokozuna kernel: cpu0:  on acpi0
Apr 19 11:43:36 yokozuna kernel: p4tcc0:  on cpu0
Apr 19 11:43:36 yokozuna kernel: cpu1:  on acpi0
Apr 19 11:43:36 yokozuna kernel: p4tcc1:  on cpu1
Apr 19 11:43:36 yokozuna kernel: cpu2:  on acpi0
Apr 19 11:43:36 yokozuna kernel: p4tcc2:  on cpu2
Apr 19 11:43:36 yokozuna kernel: cpu3:  on acpi0
Apr 19 11:43:36 yokozuna kernel: p4tcc3:  on cpu3
Apr 19 11:43:36 yokozuna kernel: pcib0:  port 0xcf8-0xcff 
on acpi0
Apr 19 11:43:36 yokozuna kernel: pci0:  on pcib0
Apr 19 11:43:36 yokozuna kernel: pci0:  at device 0.1 (no driver 
attached)
Apr 19 11:43:36 yokozuna kernel: pcib1:  at device 2.0 on 
pci0
Apr 19 11:43:36 yokozuna kernel: pci1:  on pcib1
Apr 19 11:43:36 yokozuna kernel: pcib2:  at device 3.0 on 
pci0
Apr 19 11:43:36 yokozuna kernel: pci2:  on pcib2
Apr 19 11:43:36 yokozuna kernel: pcib3:  at device 4.0 on 
pci0
Apr 19 11:43:36 yokozuna kernel: pci3:  on pcib3
Apr 19 11:43:36 yokozuna kernel: nvidia0:  mem 
0xfd00-0xfdff,0xd000-0xdfff,0xfc00-0xfcff at device 0.0 
on pci3
Apr 19 11:43:36 yokozuna kernel: nvidia0: [GIANT-LOCKED]
Apr 19 11:43:36 yokozuna kernel: nvidia0: [ITHREAD]
Apr 19 11:43:36 yokozuna kernel: pcib4:  at device 28.0 on 
pci0
Apr 19 11:43:36 yokozuna kernel: pci4:  on pcib4
Apr 19 11:43:36 yokozuna kernel: pcib5:  at device 2.0 on 
pci4
Apr 19 11:43:36 yokozuna kernel: pci5:  on pcib5
Apr 19 11:43:36 yokozuna kernel: amr0:  mem 
0xfaff-0xfaff,0xfea8-0xfeaf irq 24 at device 0.0 on pci5
Apr 19 11:43:36 yokozuna kernel: amr0: [ITHREAD]
Apr 19 11:43:36 yokozuna kernel: amr0: delete logical drives supported by 
controller
Apr 19 11:43:36 yokozuna kernel: amr0:  Firmware 414C, BIOS H429, 512MB RAM
Apr 19 11:43:36 yokozuna kernel: uhci0:  port 
0xd880-0xd89f irq 16 at device 29.0 on pci0
Apr 19 11:43:36 yokozuna kernel: uhci0: [GIANT-LOCKED]
Apr 19 11:43:36 yokozuna kernel: uhci0: [ITHREAD]
Apr 19 11:43:36 yokozuna kernel: usb0:  on uhci0
Apr 19 11:43:36 yokozuna kernel: usb0: USB revision 1.0
Apr 19 11:43:36 yokozuna kernel: uhub0:  on usb0
Apr 19 11:43:36 yokozuna kernel: uhub0: 2 ports with 2 removable, self powered
Apr 19 11:43:36 yokozuna kernel: uhci1:  port 
0xdc00-0xdc1f irq 19 at device 29.1 on pci0
Apr 19 11:43:36 yoko

Re: FreeBSD 7.0 not executing /usr/local/etc/rc.d/ at startup

2008-04-19 Thread Marco Beishuizen
On Sat, 19 Apr 2008 02:07:09 +0200
Marco Beishuizen <[EMAIL PROTECTED]> wrote:

> Hi,
> 
> Since I upgraded to 7.0, it seams that my /etc/rc.conf isn't read
> anymore at startup. At least partly. Things that do not start anymore
> are:
> - oss
> - dbus
> - hald
> - avahi
> 
> They are all gnome related. I have in my rc.conf: oss_enable="YES",
> hald_enable="YES", avahi_daemon_enable="YES and dbus_enable="YES". The
> gnome FAQ mentiones to put gnome_enable="YES" in the rc.conf but that
> doesn't work at all.

After some searching it seems that none of the scripts
in /usr/local/etc/rc.d/ are being executed at startup. All scripts have
the extension .sh, have permission 755 and in rc.conf I have
local_startup="/usr/local/etc/rc.d".

I have no clue why they are not being executed.

-- 
The hand that feeds the chicken every day finally wrings its neck
instead, thus proving that more sophisticated views about the
uniformity of nature would have been useful to the chicken.

-- Bertrand Russell, "On Induction"
___
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.0 not executing /usr/local/etc/rc.d/ at startup

2008-04-19 Thread Marco Beishuizen
On Sat, 19 Apr 2008 07:44:59 -0600
Eric <[EMAIL PROTECTED]> wrote:

> are you changing the kernel security level in your rc.conf file? if
> so, comment it out and reboot. that was an issue i had on a 6.x box
> recently and commenting out the security level change fixed it

No, I didn't change that.
I've attached my rc.conf. If I start all scripts by hand there are no
errors and they run fine. But it would be a lot easier if they run on
booting.

Marco.

-- 
CCI Power 6/40: one board, a megabyte of cache, and an attitude...


rc.conf
Description: Binary data
___
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.0 not executing /usr/local/etc/rc.d/ at startup

2008-04-19 Thread Marco Beishuizen
On Sat, 19 Apr 2008 07:44:59 -0600
Eric <[EMAIL PROTECTED]> wrote:

> are you changing the kernel security level in your rc.conf file? if
> so, comment it out and reboot. that was an issue i had on a 6.x box
> recently and commenting out the security level change fixed it

When I do a "sysctl -a | grep kern.securelevel" I get:
"kern.securelevel: -1". Shouldn't this be 0 or 1?

-- 
Hale Mail Rule, The:
When you are ready to reply to a letter, you will lack at least
one of the following:
(a) A pen or pencil or typewriter.
(b) Stationery.
(c) Postage stamp.
(d) The letter you are answering.
___
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.0 not executing /usr/local/etc/rc.d/ at startup

2008-04-19 Thread Marco Beishuizen
On Sat, 19 Apr 2008 17:20:36 +0300
Manolis Kiagias <[EMAIL PROTECTED]> wrote:

> securelevel -1 is fine. This is the default:
> quote from init(8):
> 
>  -1Permanently insecure mode - always run the system in level 0
> mode. This is the default initial value.
> 
> Your problem lies elsewhere. I've looked at your rc.conf, and I can't 
> really say I can see anything except this:
> 
> accf_http_load="YES"
> 
> which should be in /boot/loader.conf (?)
> You have a lot of stuff, I would suggest you comment out most of them 
> and put them back in one by one.

There wasn't this much stuff before, but after upgrading to 7.0 I got a
lot of boot messages saying that _enable "is not set properly". So
then I had to insert all those statements _enable="NO". After that
all those messages went away.

-- 
It is much harder to find a job than to keep one.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [solved] FreeBSD 7.0 not executing /usr/local/etc/rc.d/ at startup

2008-04-19 Thread Marco Beishuizen
On Sat, 19 Apr 2008 17:40:13 +0300
Manolis Kiagias <[EMAIL PROTECTED]> wrote:

> Ah!!! It just clicked! You got a lot of _enable="NO"
> This is rather unusual - you usually override something from 
> /etc/defaults/rc.conf with a "YES"
> 
> Your /etc/defaults/rc.conf has missing entries. It probably was not 
> upgraded properly (during the mergemaster phase?)
> 
> For example, /etc/defaults/rc.conf normally has this:
> 
> zfs_enable="NO" # Set to YES to automatically mount ZFS file
> systems
> 
> but yours doesn't, that's why you had to put it in /etc/rc.conf by
> hand.
> 
> I suggest you try with an /etc/defaults/rc.conf from the installation 
> media (I can send you mine if you wish)

Yes, this was it! I ran mergemaster again and it seems
that no new /etc/defaults/rc.conf was installed. After installing
the new one (and deleting the ="NO"-ones in /etc/rc.conf) everything
started like before.

Thanks a lot for all the help.

Marco

-- 
I suppose some of the variation between Boston drivers and the rest of
the country is due to the progressive Massachusetts Driver Education
Manual which I happen to have in my top desk drawer.  Some of the Tips
for Better Driving are worth considering, to wit:

[131.16d]:
"Directional signals are generally not used except during
vehicle inspection; however, a left-turn signal is appropriate when
making a U-turn on a divided highway."

[96.7b]:
"When paying tolls, remember that it is necessary to release the
quarter a full 3 seconds before passing the basket if you are
traveling more than 60 MPH."

[110.13]:
"When traveling on a one-way street, stay to the right, so as
not to interfere with oncoming traffic."
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


OpenOffice and "Environment error: "JAVA_HOME" should not be defined"

2008-04-29 Thread Marco Beishuizen
Hi,

When I try to install OO from the ports I get the message "Environment
error: "JAVA_HOME" should not be defined".

Does anyone know how to get rid of this?

Thanks,

Marco

-- 
Alas, I am dying beyond my means.
-- Oscar Wilde [as he sipped champagne on his deathbed]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: OpenOffice and "Environment error: "JAVA_HOME" should not be defined"

2008-04-29 Thread Marco Beishuizen
On Tue, 29 Apr 2008 20:27:47 -0300
Mario Lobo <[EMAIL PROTECTED]> wrote:
> 
> unset JAVA_HOME
> make install
> 

Yes, this seems to work. Thanks.

Marco

-- 
If the weather is extremely bad, church attendance will be down.
If the weather is extremely good, church attendance will be down.
If the bulletin covers are in short supply, however,
church attendance will exceed all expectations.
-- Reverend Chichester
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


problems with hald

2008-05-14 Thread Marco Beishuizen
Hi,

My hald is crashing constantly. It's started when booting by rc.conf and
then it crashes immediately with no further error messages. It crashes
also when I start it manually. The problem is quite severe because it
even caused two kernel panics.

I'm running 7.0-Stable and the hal version is 0.5.11rc2.

Thanks in advance,

Marco
-- 
Classical music is the kind we keep thinking will turn into a tune.
-- Kin Hubbard, "Abe Martin's Sayings"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: problems with hald, keyring manager and power management

2008-05-14 Thread Marco Beishuizen
On Wed, 14 May 2008 22:36:49 +0200
Marco Beishuizen <[EMAIL PROTECTED]> wrote:

> Hi,
> 
> My hald is crashing constantly. It's started when booting by rc.conf
> and then it crashes immediately with no further error messages. It
> crashes also when I start it manually. The problem is quite severe
> because it even caused two kernel panics.
> 
> I'm running 7.0-Stable and the hal version is 0.5.11rc2.

In the Gnome control center the "keyring manager" is also crashing and
the "power management" isn't starting up (but doesn't seem to crash).

I'm not sure if this is related with the hald issue but it all happened
at the same time.

-- 
Halley's Comet: It came, we saw, we drank.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


link_elf: symbol ata_controlcmd undefined

2012-04-13 Thread Marco Beishuizen

Hi,

I noticed some messages when booting:
...
link_elf: symbol ata_controlcmd undefined
KLD file atapicam.ko - could not finalize loading
...

My /boot/loader.conf includes:
...
atapicam_load="YES"
hw.ata.atapi_dma="1"
...

Entering kldload atapicam gives:
kldload: can't load atapicam: No such file or directory

Has anyone an idea how to load atapicam.ko?

I'm running FreeBSD-9.0-STABLE.

Thanks,

Marco
--
Several years ago, some smart businessmen had an idea: Why not build a
big store where a do-it-yourselfer could get everything he needed at
reasonable prices?  Then they decided, nah, the hell with that, let's
build a home center.  And before long home centers were springing up
like crabgrass all over the United States.
-- Dave Barry, "The Taming of the Screw"
___
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: link_elf: symbol ata_controlcmd undefined

2012-04-13 Thread Marco Beishuizen

On Fri, 13 Apr 2012, the wise Polytropon wrote:


In FreeBSD 9, loading atapicam should not be neccessary,
as it is now part of the GENERIC kernel and has "merged
the ATA and SCSI functionality" for disks and optical
devices. Try removing it from loader.conf and try again.
(Note possible device name changing ad -> ada unless
you're using labels.)


I just removed the lines from loader.conf and the messages are gone. 
Everything seems to work fine too. I already changed the device name to 
ada in fstab, but never removed the obsolete lines in loader.conf.


Thanks for the info.

Marco

--
Man has never reconciled himself to the ten commandments.
___
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"


vpn using pptpclient in FreeBSD

2011-08-30 Thread Marco Beishuizen

Hi,

I'm trying to set up a vpn connection to the university library by using 
pptpclient. In other OS's this takes around 10 seconds, but in FreeBSD 
this seems very difficult to do, and I've no idea why. It looks like 
there is a connection made, but after a minute or two it just disconnects 
and still unable to access the vpn.


My ppp.conf is:
EUR:
 set authname "x...@.xx"
 set authkey "xxx"
 set timeout 0
 set ifaddr 0 0
 add vpn-eur-pptp.eur.nl HISADDR
 disable ipv6cp

The messages log says:
Jun  2 22:12:16 yokozuna pptp[40950]: anon log[main:pptp.c:314]: The 
synchronous pptp option is NOT activated
Jun  2 22:12:16 yokozuna pptp[40955]: anon log[ctrlp_rep:pptp_ctrl.c:251]: 
Sent control packet type is 1 'Start-Control-Connection-Request'
Jun  2 22:12:16 yokozuna pptp[40955]: anon 
log[ctrlp_disp:pptp_ctrl.c:739]: Received Start Control Connection Reply
Jun  2 22:12:16 yokozuna pptp[40955]: anon 
log[ctrlp_disp:pptp_ctrl.c:773]: Client connection established.
Jun  2 22:12:17 yokozuna pptp[40955]: anon log[ctrlp_rep:pptp_ctrl.c:251]: 
Sent control packet type is 7 'Outgoing-Call-Request'
Jun  2 22:12:17 yokozuna pptp[40955]: anon 
log[ctrlp_disp:pptp_ctrl.c:858]: Received Outgoing Call Reply.
Jun  2 22:12:17 yokozuna pptp[40955]: anon 
log[ctrlp_disp:pptp_ctrl.c:897]: Outgoing call established (call ID 0, 
peer's call ID 58282).

Jun  2 22:12:17 yokozuna kernel: tun0: link state changed to UP
Jun  2 22:13:17 yokozuna pptp[40955]: anon log[logecho:pptp_ctrl.c:677]: 
Echo Request received.
Jun  2 22:13:17 yokozuna pptp[40955]: anon log[ctrlp_rep:pptp_ctrl.c:251]: 
Sent control packet type is 6 'Echo-Reply'
Jun  2 22:15:17 yokozuna pptp[40955]: anon 
log[pptp_handle_timer:pptp_ctrl.c:1050]: closing control connection due to 
missing echo reply
Jun  2 22:15:17 yokozuna pptp[40955]: anon log[ctrlp_rep:pptp_ctrl.c:251]: 
Sent control packet type is 12 'Call-Clear-Request'
Jun  2 22:15:17 yokozuna pptp[40955]: anon 
log[pptp_conn_close:pptp_ctrl.c:430]: Closing PPTP connection
Jun  2 22:15:17 yokozuna pptp[40955]: anon log[ctrlp_rep:pptp_ctrl.c:251]: 
Sent control packet type is 3 'Stop-Control-Connection-Request'
Jun  2 22:15:17 yokozuna pptp[40955]: anon 
log[call_callback:pptp_callmgr.c:79]: Closing connection (call state)
Jun  2 22:15:47 yokozuna pptp[40956]: anon 
warn[decaps_hdlc:pptp_gre.c:204]: short read (0): No buffer space 
available

Jun  2 22:15:47 yokozuna kernel: tun0: link state changed to DOWN

After a lot of searching and googling I never found the answer. Has anyone 
here succeeded in setting up a working pptp vpn connection?


Thanks in advance,
Marco

--
Kiss me twice.  I'm schizophrenic.
___
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: vpn using pptpclient in FreeBSD

2011-08-31 Thread Marco Beishuizen

On Wed, 31 Aug 2011, the wise krad wrote:


have you tried mpd? I always found pptpclient a bit prone to issues

http://www.freebsd.org/doc/handbook/pppoa.html


Yes I did some time ago, but I found it so complicated that I never got it 
working. Pptpclient seems a lot simpler so I wanted to try this one first.


Regards,
Marco

--
You'll be sorry...
___
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: vpn using pptpclient in FreeBSD

2011-08-31 Thread Marco Beishuizen

On Wed, 31 Aug 2011, the wise Mike Tancsa wrote:


use mpd5 from the ports. It is well supported and works very well both
as a client and server.

There is a sample config in the mpd.conf.example where all you need to
do is change the userid and passwd and server IP...

pptp_client:
#
# PPTP client: only outgoing calls, auto reconnect,
# ipcp-negotiated address, one-sided authentication,
# default route points on ISP's end
#

   create bundle static B1
   set iface route default
   set ipcp ranges 0.0.0.0/0 0.0.0.0/0

   create link static L1 pptp
   set link action bundle B1
   set auth authname MyLogin
   set auth password MyPass
   set link max-redial 0
   set link mtu 1460
   set link keep-alive 20 75
   set pptp peer 1.2.3.4
   set pptp disable windowing
   open


I used the mpd.conf above but mpd5 doesn't work either. It looks like it 
makes a connection but I don't have a vpn connection and it didn't log in.


I do get a lot of output though:

...
process 9290 started, version 5.5 (r...@yokozuna.lan 17:08 30-Jul-2011)
CONSOLE: listening on 127.0.0.1 5005
web: listening on 0.0.0.0 5006
[B1] Bundle: Interface ng0 created
[L1] [L1] Link: OPEN event
[L1] LCP: Open event
[L1] LCP: state change Initial --> Starting
[L1] LCP: LayerStart
[L1] PPTP call successful
[L1] Link: UP event
[L1] LCP: Up event
[L1] LCP: state change Starting --> Req-Sent
[L1] LCP: SendConfigReq #1
[L1]   ACFCOMP
[L1]   PROTOCOMP
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 1b3bd364
[L1] LCP: SendConfigReq #2
[L1]   ACFCOMP
[L1]   PROTOCOMP
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 1b3bd364
[L1] LCP: rec'd Configure Reject #2 (Req-Sent)
[L1]   ACFCOMP
[L1]   PROTOCOMP
[L1] LCP: SendConfigReq #3
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 1b3bd364
[L1] LCP: rec'd Configure Nak #3 (Req-Sent)
[L1]   ACCMAP 0x000a
[L1] LCP: SendConfigReq #4
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 1b3bd364
[L1] LCP: rec'd Configure Ack #4 (Req-Sent)
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 1b3bd364
[L1] LCP: state change Req-Sent --> Ack-Rcvd
[L1] LCP: rec'd Configure Request #1 (Ack-Rcvd)
[L1]   AUTHPROTO CHAP MSOFTv2
[L1] LCP: SendConfigAck #1
[L1]   AUTHPROTO CHAP MSOFTv2
[L1] LCP: state change Ack-Rcvd --> Opened
[L1] LCP: auth: peer wants CHAP, I want nothing
[L1] LCP: LayerUp
[L1] CHAP: rec'd CHALLENGE #1 len: 21
[L1]   Name: ""
[L1] CHAP: Using authname ""
[L1] CHAP: sending RESPONSE #1 len: 69
[L1] CHAP: rec'd CHALLENGE #2 len: 21
[L1]   Name: ""
[L1] CHAP: Using authname "xx"
[L1] CHAP: sending RESPONSE #2 len: 69
[L1] CHAP: rec'd SUCCESS #2 len: 46
[L1]   MESG: S=6FF41EBC586F72996FE28623516DEB70E57D6B5D
[L1] LCP: authorization successful
[L1] Link: Matched action 'bundle "B1" ""'
[L1] Link: Join bundle "B1"
[B1] Bundle: Status update: up 1 link, total bandwidth 64000 bps
[B1] IPCP: Open event
[B1] IPCP: state change Initial --> Starting
[B1] IPCP: LayerStart
[B1] IPCP: Up event
[B1] IPCP: state change Starting --> Req-Sent
[B1] IPCP: SendConfigReq #1
[B1]   IPADDR 0.0.0.0
[B1]   COMPPROTO VJCOMP, 16 comp. channels, no comp-cid
[B1] IPCP: rec'd Configure Request #0 (Req-Sent)
[B1]   IPADDR 130.115.3.34
[B1] 130.115.3.34 is OK
[B1] IPCP: SendConfigAck #0
[B1]   IPADDR 130.115.3.34
[B1] IPCP: state change Req-Sent --> Ack-Sent
[L1] rec'd unexpected protocol CCP, rejecting
[B1] IPCP: SendConfigReq #2
[B1]   IPADDR 0.0.0.0
[B1]   COMPPROTO VJCOMP, 16 comp. channels, no comp-cid
[B1] IPCP: rec'd Configure Reject #2 (Ack-Sent)
[B1]   COMPPROTO VJCOMP, 16 comp. channels, no comp-cid
[B1] IPCP: SendConfigReq #3
[B1]   IPADDR 0.0.0.0
[B1] IPCP: rec'd Configure Nak #3 (Ack-Sent)
[B1]   IPADDR 130.115.77.13
[B1] 130.115.77.13 is OK
[B1] IPCP: SendConfigReq #4
[B1]   IPADDR 130.115.77.13
[B1] IPCP: rec'd Configure Ack #4 (Ack-Sent)
[B1]   IPADDR 130.115.77.13
[B1] IPCP: state change Ack-Sent --> Opened
[B1] IPCP: LayerUp
[B1]   130.115.77.13 -> 130.115.3.34
[B1] IFACE: Add route 0.0.0.0/0 130.115.3.34 failed: File exists
[B1] IFACE: Up event
[L1] LCP: no reply to 1 echo request(s)
[L1] PPTP call terminated
[L1] Link: DOWN event
[L1] LCP: Down event
[L1] LCP: state change Opened --> Starting
[L1] Link: Leave bundle "B1"
[B1] Bundle: Status update: up 0 links, total bandwidth 9600 bps
[B1] IPCP: Close event
[B1] IPCP: state change Opened --> Closing
[B1] IPCP: SendTerminateReq #5
[B1] IPCP: LayerDown
[B1] IFACE: Down event
[B1] IPCP: Down event
[B1] IPCP: LayerFinish
[B1] Bundle: No NCPs left. Closing links...
[B1] IPCP: state change Closing --> Initial
[L1] LCP: LayerDown
[L1] Link: reconnection attempt 1 in 4 seconds
[L1] Link: reconnection attempt 1
[L1] PPTP call successful
[L1] Link: UP event
[L1] LCP: Up event
[L1] LCP: state change Starting --> Req-Sent
[L1] LCP: SendConfigReq #5
[L1]   ACFCOMP
[L1]   PROTOCOMP
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM e39245f6
[L1] LCP: 

Re[2]: vpn using pptpclient in FreeBSD

2011-09-01 Thread Marco Beishuizen

On Thu, 1 Sep 2011, the wise Коньков Евгений wrote:


Notice: [B1] IFACE: Add route 0.0.0.0/0 130.115.3.34 failed: File exists
You already have default route in your system
why you set up the default again?
Notice in conf:
 set iface route default


With help from Mike Tancsa I've changed the config a bit and getting less 
errors now, but still not a working vpn connection. My mpd.conf is now:

...
# Default configuration is "pptp_client"

default:
load pptp_client

pptp_client:
#
# PPTP client: only outgoing calls, auto reconnect,
# ipcp-negotiated address, one-sided authentication,
# default route points on ISP's end
#

create bundle static B1
set iface route 130.115.0.0/16
set ipcp ranges 0.0.0.0/0 0.0.0.0/0

set bundle enable compression
set ccp yes mppc
set mppc yes e40
set mppc yes e128
set bundle enable crypt-reqd
set mppc yes stateless

create link static L1 pptp
set link action bundle B1
set auth authname xx
set auth password x
set link max-redial 0
set link mtu 1460
set link keep-alive 20 75
set pptp peer vpn-eur-pptp.eur.nl
set pptp disable windowing
open
...

It looks like it's setting up a correct connection, but the site of the 
library I would like to access isn't accessible when mpd5 is running:

...
process 2965 started, version 5.5 (r...@yokozuna.lan 17:08 30-Jul-2011)
CONSOLE: listening on 127.0.0.1 5005
web: listening on 0.0.0.0 5006
[B1] Bundle: Interface ng0 created
[L1] [L1] Link: OPEN event
[L1] LCP: Open event
[L1] LCP: state change Initial --> Starting
[L1] LCP: LayerStart
[L1] PPTP call successful
[L1] Link: UP event
[L1] LCP: Up event
[L1] LCP: state change Starting --> Req-Sent
[L1] LCP: SendConfigReq #1
[L1]   ACFCOMP
[L1]   PROTOCOMP
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 0a9219e0
[L1] LCP: SendConfigReq #2
[L1]   ACFCOMP
[L1]   PROTOCOMP
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 0a9219e0
[L1] LCP: rec'd Configure Reject #2 (Req-Sent)
[L1]   PROTOCOMP
[L1] LCP: SendConfigReq #3
[L1]   ACFCOMP
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 0a9219e0
[L1] LCP: rec'd Configure Reject #3 (Req-Sent)
[L1]   ACFCOMP
[L1] LCP: SendConfigReq #4
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 0a9219e0
[L1] LCP: rec'd Configure Nak #4 (Req-Sent)
[L1]   ACCMAP 0x000a
[L1] LCP: SendConfigReq #5
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 0a9219e0
[L1] LCP: rec'd Configure Ack #5 (Req-Sent)
[L1]   ACCMAP 0x000a
[L1]   MRU 1500
[L1]   MAGICNUM 0a9219e0
[L1] LCP: state change Req-Sent --> Ack-Rcvd
[L1] LCP: rec'd Configure Request #1 (Ack-Rcvd)
[L1]   AUTHPROTO CHAP MSOFTv2
[L1] LCP: SendConfigAck #1
[L1]   AUTHPROTO CHAP MSOFTv2
[L1] LCP: state change Ack-Rcvd --> Opened
[L1] LCP: auth: peer wants CHAP, I want nothing
[L1] LCP: LayerUp
[L1] CHAP: rec'd CHALLENGE #1 len: 21
[L1]   Name: ""
[L1] CHAP: Using authname "x"
[L1] CHAP: sending RESPONSE #1 len: 69
[L1] CHAP: rec'd CHALLENGE #2 len: 21
[L1]   Name: ""
[L1] CHAP: Using authname "xx"
[L1] CHAP: sending RESPONSE #2 len: 69
[L1] rec'd proto IPCP during authenticate phase
[L1] rec'd proto CCP during authenticate phase
[L1] CHAP: sending RESPONSE #2 len: 69
[L1] CHAP: rec'd SUCCESS #2 len: 46
[L1]   MESG: S=F1619D8A3373D2F43E6652E992CA564D66B1C1A4
[L1] LCP: authorization successful
[L1] Link: Matched action 'bundle "B1" ""'
[L1] Link: Join bundle "B1"
[B1] Bundle: Status update: up 1 link, total bandwidth 64000 bps
[B1] IPCP: Open event
[B1] IPCP: state change Initial --> Starting
[B1] IPCP: LayerStart
[B1] CCP: Open event
[B1] CCP: state change Initial --> Starting
[B1] CCP: LayerStart
[B1] IPCP: Up event
[B1] IPCP: state change Starting --> Req-Sent
[B1] IPCP: SendConfigReq #1
[B1]   IPADDR 0.0.0.0
[B1]   COMPPROTO VJCOMP, 16 comp. channels, no comp-cid
[B1] CCP: Up event
[B1] CCP: state change Starting --> Req-Sent
[B1] CCP: SendConfigReq #1
[B1]   MPPC
[B1] 0x0160:MPPE(40, 128 bits), stateless
[B1] CCP: rec'd Configure Nak #1 (Req-Sent)
[B1]   MPPC
[B1] 0x0140:MPPE(128 bits), stateless
[B1] CCP: SendConfigReq #2
[B1]   MPPC
[B1] 0x0140:MPPE(128 bits), stateless
[B1] CCP: rec'd Configure Ack #2 (Req-Sent)
[B1]   MPPC
[B1] 0x0140:MPPE(128 bits), stateless
[B1] CCP: state change Req-Sent --> Ack-Rcvd
[B1] IPCP: rec'd Configure Request #1 (Req-Sent)
[B1]   IPADDR 130.115.3.35
[B1] 130.115.3.35 is OK
[B1] IPCP: SendConfigAck #1
[B1]   IPADDR 130.115.3.35
[B1] IPCP: state change Req-Sent --> Ack-Sent
[B1] CCP: rec'd Configure Request #1 (Ack-Rcvd)
[B1]   MPPC
[B1] 0x0160:MPPE(40, 128 bits), stateless
[B1] CCP: SendConfigNak #1
[B1]   MPPC
[B1] 0x0140:MPPE(128 bits), stateless
[B1] CCP: rec'd Configure Request #2 (Ack-Rcvd)
[B1]   MPPC
[B1] 0x0140:MPPE(128 bits), stateless
[B1] CCP: SendConfigAck #2

Re[3]: vpn using pptpclient in FreeBSD

2011-09-02 Thread Marco Beishuizen

On Fri, 2 Sep 2011, the wise Коньков Евгений wrote:


set iface route 130.115.0.0/16

you say that behind tunnele thereis 130.115.0.0/16 subnet, but
MB> [B1]   130.115.85.11 -> 130.115.3.35
you have address from subnet 130.115.0.0/16 addres on local machine
so you get this message:
MB> Loop detected on ng0

add routes only for subnets that on the other end of tunnel and not
local

set iface route 130.115.0.0/16


also you may remove  'iface route' from config. and setup tunnel.
after that try to ping the other end: ping 130.115.3.35
add route by hand:
# route add /X 130.115.3.35
# route add /Y 130.115.3.35


My local machine has ip 192.168.x.x. IP 130.115.x.x is the university 
network I want to connect to. When setting the "iface route" to 
192.168.0.0/16, the connection doesn't work either:

...
[B1] IPCP: state change Ack-Sent --> Opened
[B1] IPCP: LayerUp
[B1]   130.115.77.2 -> 130.115.3.34
[B1] IFACE: Add route 192.168.1.0/24 130.115.3.34 failed: File exists
[B1] IFACE: Up event
...

With the "iface route" removed, the other end 130.115.3.34 is not 
pingable, so there is no connection in this case.


Marco
--
Don't try to have the last word -- you might get it.
-- Lazarus Long___
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[4]: vpn using pptpclient in FreeBSD

2011-09-03 Thread Marco Beishuizen

On Sat, 3 Sep 2011, the wise Коньков Евгений wrote:


Please describe your networks fully

also I ask to send output of:
ifconfig
netstat -nr


My computer has IP 192.168.1.11, and sits behind a ADSL router which has 
IP 192.168.1.1, the router is the gateway to the internet. IP adresses are 
assigned by DHCP. The vpn network of the university I would like to 
connect to has the adress vpn-eur-pptp.eur.nl. The IP range of the 
university is 130.115.x.x.


My ifconfig and netstat when mpd5 is not running:

em0: flags=8843 metric 0 mtu 1500

options=209b
ether 00:0e:0c:3d:e1:6d
inet6 fe80::20e:cff:fe3d:e16d%em0 prefixlen 64 scopeid 0x4
inet 192.168.1.11 netmask 0xff00 broadcast 192.168.1.255
nd6 options=3
media: Ethernet autoselect (1000baseT )
status: active
fwe0: flags=8802 metric 0 mtu 1500
options=8
ether 02:02:3c:06:08:57
ch 1 dma -1
fwip0: flags=8802 metric 0 mtu 1500
lladdr 0.2.3c.1.1.6.8.57.a.2.ff.fe.0.0.0.0
lo0: flags=8049 metric 0 mtu 16384
options=3
inet 127.0.0.1 netmask 0xff00
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x7
nd6 options=3

Internet:
DestinationGatewayFlagsRefs  Use  Netif Expire
default192.168.1.1UGS 059590em0
127.0.0.1  link#7 UH  0  354lo0
192.168.1.0/24 link#4 U   0   92em0
192.168.1.11   link#4 UHS 00lo0

My ifconfig and netstat when mpd5 is running:

em0: flags=8843 metric 0 mtu 1500

options=209b
ether 00:0e:0c:3d:e1:6d
inet6 fe80::20e:cff:fe3d:e16d%em0 prefixlen 64 scopeid 0x4
inet 192.168.1.11 netmask 0xff00 broadcast 192.168.1.255
nd6 options=3
media: Ethernet autoselect (1000baseT )
status: active
fwe0: flags=8802 metric 0 mtu 1500
options=8
ether 02:02:3c:06:08:57
ch 1 dma -1
fwip0: flags=8802 metric 0 mtu 1500
lladdr 0.2.3c.1.1.6.8.57.a.2.ff.fe.0.0.0.0
lo0: flags=8049 metric 0 mtu 16384
options=3
inet 127.0.0.1 netmask 0xff00
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x7
nd6 options=3
ng0: flags=88d1 metric 0 
mtu 1456

inet 130.115.77.12 --> 130.115.3.34 netmask 0x
inet6 fe80::20e:cff:fe3d:e16d%ng0 prefixlen 64 scopeid 0x8
nd6 options=3

Internet:
DestinationGatewayFlagsRefs  Use  Netif Expire
default192.168.1.1UGS 059807em0
127.0.0.1  link#7 UH  0  354lo0
130.115.0.0/16 130.115.3.34   UGS 00ng0
130.115.3.34   link#8 UH  04ng0
130.115.77.12  link#8 UHS 00lo0
192.168.1.0/24 link#4 U   0   92em0
192.168.1.11   link#4 UHS 00lo0

Hope this clears things up.

Regards,
Marco

--
If you keep your mind sufficiently open, people will throw a lot of
rubbish into it.
-- William Orton___
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[5]: vpn using pptpclient in FreeBSD

2011-09-04 Thread Marco Beishuizen

On Mon, 5 Sep 2011, the wise Коньков Евгений wrote:


As I have so, you
1. Successfully connect to university
MB> ng0: flags=88d1 metric 0
MB> mtu 1456
MB>  inet 130.115.77.12 --> 130.115.3.34 netmask 0x
MB>  inet6 fe80::20e:cff:fe3d:e16d%ng0 prefixlen 64 scopeid 0x8
MB>  nd6 options=3

2. You also have route to it
MB> 130.115.0.0/16 130.115.3.34   UGS 00ng0

so you are done, are not?


Unfortunately not, because it looks like I have a connection, but in fact 
I cannot log in to the university through the tunnel. With the above 
settings and running mpd, the university site is not pingable and 
unreachable by a browser.


Marco
--
Volcanoes have a grandeur that is grim
And earthquakes only terrify the dolts,
And to him who's scientific
There is nothing that's terrific
In the pattern of a flight of thunderbolts!
-- W. S. Gilbert, "The Mikado"___
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[6]: vpn using pptpclient in FreeBSD

2011-09-05 Thread Marco Beishuizen

On Mon, 5 Sep 2011, the wise Коньков Евгений wrote:


may be you have a problem with firewall.
try
#traceroute 


Traceroute gives:
...
traceroute vpn-eur-pptp.eur.nl
traceroute: Warning: vpn-eur-pptp.eur.nl has multiple addresses; using 
130.115.3.35
traceroute to vpn-eur-pptp.eur.nl (130.115.3.35), 64 hops max, 40 byte 
packets

 1  * * *
 2  * * *
 3  * * *
 4  * * *
 5  * * *
...

May I also add that I also have a laptop behind the ADSL router 
running windows that has no problems at all with the vpn connection. That 
is why I think the problem is with FreeBSD or the vpn software.


Marco

--
If there really was a Jewish conspiracy to run the world, my rabbi would
have let me in on it by now.  I contribute enough to the shule.
-- Saul Goodman___
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: Evolution problems...

2011-09-05 Thread Marco Beishuizen

On Mon, 5 Sep 2011, the wise Scott Ballantyne wrote:


Stop in /usr/ports/graphics/gtk-update-icon-cache.
*** Error code 1

Stop in /usr/ports/graphics/gtk-update-icon-cache.
*** Error code 1


Try deinstalling and reinstalling gtk-update-icon-cache first.

Regards,
Marco

--
My father was a God-fearing man, but he never
missed a copy of the New York Times, either.
-- E. B. White
___
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"


gthumb: "IRQ's not enabled, falling back to busy waits"

2011-10-26 Thread Marco Beishuizen

Hi,

Gthumb core dumps with:

...
IRQ's not enabled, falling back to busy waits: 2 0
Segmentation fault (core dumped)
...

Does anyone know what this means?

Thanks in advance,
Marco

--
Fortune's Real-Life Courtroom Quote #41:

Q:  Now, Mrs. Johnson, how was your first marriage terminated?
A:  By death.
Q:  And by whose death was it terminated?
___
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"


creating a bootable iso for raid BIOS flash

2012-01-06 Thread Marco Beishuizen

Hi,

I have an Intel SRCU42X raid controller that currently has firmware 
version 414D. The bios flash was done by a "system update package", from 
Intel which is an iso file that you can burn to a cd. The upgrade to 414D 
went fine.


But the newest firmware version is 414I and is not available as a bootable 
iso, only as a 414I.rom file (windows only etc.). So I thought: lets alter 
the 414D iso to the newest 414I iso, and make a new bootable iso. But this 
was harder than I thought.


I extracted the original iso file with file-roller and replaced the 
414D.rom file with 414I.rom, and modified the .bat-files references from 
414D to 414I. The files and directories in the original iso are:

-rwxr-xr-x  1 marco  wheel  7828 Feb  9  2006 LICENSE.TXT
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:19 SRCS16
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:19 SRCS28X
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:19 SRCU41L
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:19 SRCU42E
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:19 SRCU42L
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:24 SRCU42X
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:19 SRCZCRX
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:19 SROMB42E
-rwxr-xr-x  1 marco  wheel  1207 Aug 23  2004 SUP.BAT
-rwxr-xr-x  1 marco  wheel  3732 Feb 11  2006 SUP.TXT
-rwxr-xr-x  1 marco  wheel  4350 Mar 10  2006 SUP_Release_note.txt
-rwxr-xr-x  1 marco  wheel  5479 Feb 10  2006 UPDATE.BAT
-rwxr-xr-x  1 marco  wheel   244 Jan  6 11:25 VER_LOAD.BAT
drwxr-xr-x  2 marco  wheel   512 Jan  6 11:19 [BOOT]

The SRCU42X directory contains the 414I.rom file, an irflash.exe update 
utility and a run.bat batch file (running irflash.exe with reference to 
the .rom file). The [BOOT] directory contains one file: 
Bootable_HardDisk.img.


After that I tried to create the iso with:
root@yokozuna:/data2/tmp# mkisofs -r -J -b [BOOT]/Bootable_HardDisk.img 
-hard-disk-boot -o raid.iso /data2/tmp

which gives an error: mkisofs: No match

First I thought the directory name [BOOT] was weird so I changed this to 
BOOT. Running mkisofs -r -J -b BOOT/Bootable_HardDisk.img -hard-disk-boot 
-o raid.iso /data2/tmp creates an iso, but when I burn this to a cd it 
doesn't boot.


Strange thing also is the fact that the original iso has the size of 
~17MB, but the created iso by me is ~10MB. So it seems I'm missing some 
files.


So what am I doing wrong and what is the correct commandline to create a 
bootable iso for flashing a raid controller bios?


Thanks,

Marco
--
If I promised you the moon and the stars, would you believe it?
-- Alan Parsons Project
___
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: creating a bootable iso for raid BIOS flash

2012-01-07 Thread Marco Beishuizen

On Sun, 8 Jan 2012, the wise Polytropon wrote:


If this is depending on the name "[BOOT]", there are
two ways to deal with special characters in file names,
if you need to specify them on the command line:

a) use escape sequences:
-b \[BOOT\]/Bootable_HardDisk.img

b) use quoting:
-b "[BOOT]/Bootable_HardDisk.img"


I used escape sequences and that works. The "no match" error is gone.


Also read "man mkisofs" about the boot-related
options, especially -b, where

If  the  boot image is not an image of a floppy, you need to add
one of the options: -hard-disk-boot or  -no-emul-boot.   If  the
system should not boot off the emulated disk, use -no-boot.

is mentioned. Maybe consider using -G instead of -b?


I tried the -G option and removed the -hard-disk-boot option and now it 
created an iso without errors. The size is still 9MB though. I looked 
inside the original iso and the one generated by me but I really can't see 
any differences.



--
The future is a race between education and catastrophe.
-- H. G. Wells
___
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: creating a bootable iso for raid BIOS flash

2012-01-07 Thread Marco Beishuizen

On Sun, 8 Jan 2012, the wise Polytropon wrote:


Does this image boot successfully?


I don't know yet because I've used all my cd-r's :-(.
Within a few days I'm expecting some new cd-rw's and I'll let you know how 
things went.



If you compare your ISO with the original one, file sizes
should be the same for all files; are they? A reason could
be that the original one contains some "metadata" that the
creating program (which will very probably _not_ be mkisofs
as you're using) may have stored there. Things like for
example an application ID, copyright information, media
name. Maybe the original program did use a different
"mechanism" to create the ISO?

You can easily add the file sizes inside the original
ISO and compare them to your sources (which should be
equal) and see where the difference comes from. I think
it will be some file system metadata (remember that the
ISO-9660 file system occupies "invisible" space within
the ISO file).


I compared the original iso from Intel with the one generated by me and I 
really can't see any differences. My generated one is 9MB, and 8 MB of 
metadata seems a lot to me, or isn't it?. Don't know how Intel makes his 
iso's.


Regards,
Marco
--

From the moment I picked your book up until I put it down I was

convulsed with laughter.  Some day I intend reading it.
-- Groucho Marx, from "The Book of Insults"
___
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: creating a bootable iso for raid BIOS flash

2012-01-10 Thread Marco Beishuizen

On Sun, 8 Jan 2012, the wise Polytropon wrote:


Does this image boot successfully?



Unfortunately this is also a no go. I think Intel has done something 
special to their iso's, considering that I'm missing 7MB of data.


Regards,
Marco

--
Men have as exaggerated an idea of their
rights as women have of their wrongs.
-- Edgar W. Howe
___
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 hyperthreading in FreeBSD 9?

2012-01-13 Thread Marco Beishuizen

Hi,

I just upgraded from 8-STABLE to 9-STABLE on my dual Xeon (nocona). Now I 
have in my boot messages:

...
root: /etc/rc.d/sysctl: WARNING: sysctl machdep.hlt_logical_cpus does not 
exist.
root: /etc/rc.d/sysctl: WARNING: sysctl machdep.hyperthreading_allowed 
does not exist.

...

So isn't hyperthreading not available anymore in FreeBSD 9?

Regards,
Marco

--
If you want me to be a good little bunny
just dangle some carats in front of my nose.
-- Lauren Bacall
___
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: no hyperthreading in FreeBSD 9?

2012-01-14 Thread Marco Beishuizen

On Fri, 13 Jan 2012, the wise Mark Blackman wrote:


On 13 Jan 2012, at 16:30, Marco Beishuizen wrote:


Hi,

I just upgraded from 8-STABLE to 9-STABLE on my dual Xeon (nocona). Now I have 
in my boot messages:
...
root: /etc/rc.d/sysctl: WARNING: sysctl machdep.hlt_logical_cpus does not exist.
root: /etc/rc.d/sysctl: WARNING: sysctl machdep.hyperthreading_allowed does not 
exist.
...

So isn't hyperthreading not available anymore in FreeBSD 9?


http://svnweb.freebsd.org/base/release/9.0.0/UPDATING?r1=222852&r2=222853&;

Seems to imply HT is enabled by default and new sysctls are used to take
logical CPUs offline.

How many CPUs does your boot message suggest FreeBSD 9 is reporting?


Yeah, I just deleted the lines from sysctl.conf and it doesn't seem to 
make a difference at all (2 cpu's x 2 threads).


Sorry,
Marco
--
Who on earth would eat a charred caterpillar!?
No, no, you SINGE 'em!  You SINGE 'em and eat 'em!
___
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"


ipv6 in FreeBSD 9

2012-01-14 Thread Marco Beishuizen

Hi,

In 8.2 ipv6 was enabled by adding ipv6_enable="YES" in rc.conf, and all 
worked fine. In FreeBSD 9 that changed to 
ipv6_activate_all_interfaces="YES". But now there are still some error 
messages at boot time, and ipv6 doesn't seem to work correctly:


...
root: /etc/rc: WARNING: $ipv6_firewall_enable is not set properly - see 
rc.conf(5).
root: /etc/rc: WARNING: $ipv6_enable is not set 
properly - see rc.conf(5).

...

I do not use a static IP adress, but DHCP. Wat do I need to do more 
to enable ipv6?


Thanks,

Marco
--
FORTUNE PRESENTS FAMOUS LAST WORDS: #4

Socrates:   I DRANK WHAT!?!?
Tarzan: Who greased the grape veee
Al Capone:  There's a violin in my violin case!
Pilot, TWA Fl. #343:What's a mountain goat doing 'way up here?
___
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: ipv6 in FreeBSD 9

2012-01-14 Thread Marco Beishuizen

On Sat, 14 Jan 2012, the wise Yuri Pankov wrote:


In 8.2 ipv6 was enabled by adding ipv6_enable="YES" in rc.conf, and all
worked fine. In FreeBSD 9 that changed to
ipv6_activate_all_interfaces="YES". But now there are still some error
messages at boot time, and ipv6 doesn't seem to work correctly:

...
root: /etc/rc: WARNING: $ipv6_firewall_enable is not set properly - see
rc.conf(5).
root: /etc/rc: WARNING: $ipv6_enable is not set
properly - see rc.conf(5).
...

I do not use a static IP adress, but DHCP. Wat do I need to do more
to enable ipv6?


This works for me:

ifconfig_em0_ipv6="inet6 accept_rtadv"
ip6addrctl_policy="ipv6_prefer"

No other IPv6-related settings done anywhere else.


No didn't work. Still the same error messages.

Marco

--
Kamikazes do it once.
___
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: ipv6 in FreeBSD 9

2012-01-15 Thread Marco Beishuizen

On Sun, 15 Jan 2012, the wise Erik Nørgaard wrote:

Don't use ipv6, but reading above: Did you replace ipv6_enable with 
ipv6_activate_all_interfaces? because the error seems to tell you that you 
must keep ipv6_enable


I replaced it with the new lines because according to the manpage 
ipv6_enable is deprecated. But why shouldn't I use ipv6?


Or, maybe there was an error with mergemaster? old scripts, new kernel 
variables?


I ran mergemaster, but didn't get any error messages. Afaik all scripts in 
/etc are new.


Regards,
Marco

--
Kin, n.:
An affliction of the blood.___
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: ipv6 in FreeBSD 9

2012-01-15 Thread Marco Beishuizen

On Sun, 15 Jan 2012, the wise Erik Nørgaard wrote:


Don't use ipv6, but reading above: Did you replace ipv6_enable with
ipv6_activate_all_interfaces? because the error seems to tell you that
you must keep ipv6_enable


I replaced it with the new lines because according to the manpage
ipv6_enable is deprecated. But why shouldn't I use ipv6?


Sorry, meant to say, I don't use ipv6 so I can't do much debugging.


Aaah, :-), perhaps I should have read better.


Or, maybe there was an error with mergemaster? old scripts, new kernel
variables?


I ran mergemaster, but didn't get any error messages. Afaik all scripts
in /etc are new.


OK, in the error messages you posted it seems that some script checks or use 
these variables. Maybe try to run the different networking scripts manually 
and see where it fails.


Thanks for the tip. I'll do some trial and error and dig deeper.

--
Paul's Law:
You can't fall off the floor.___
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"

em0 legacy driver 1.0.3?

2012-01-29 Thread Marco Beishuizen

Hi,

I noticed that my Intel 82541GI gigabit ethernet controller uses a legacy 
driver 1.0.3, instead of the in 9.0 standard em0 driver 7.3.2.


Why is this and is the legacy driver as good as the standard driver?

Regards,
Marco

--
The road to Hades is easy to travel.
-- Bion
___
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"


UFS+SU+J and still background fs check?

2012-01-30 Thread Marco Beishuizen

Hi,

When booting my computer today I noticed the message at the end: starting 
background filesystem check in 60 seconds. This seems strange to me since 
SU+J is enabled on all filesystems. How is this possible? NB running 
FreeBSD 9-STABLE


Regards,
Marco
--
In most instances, all an argument
proves is that two people are present.
___
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: nvidia-settings size mismatch

2005-12-23 Thread Marco Beishuizen
On stardate Fri, 23 Dec 2005, the wise bob self entered:

> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/nvidia-settings-1.0.tar.gz:
> size mismatch:
> expected 1091361, actual 1056908
> => Couldn't fetch it - please try to retrieve this
> => port manually into /usr/ports/distfiles/ and try again.
> *** Error code 1
> 
> Stop in /usr/ports/x11/nvidia-settings.
> *** Error code 1
> 
> Stop in /usr/ports/x11/nvidia-settings.
> ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade15051.0
> make
> ** Fix the problem and try again.
> --->  Build of x11/nvidia-settings ended at: Fri, 23 Dec 2005 07:01:33 -0500
> (consumed 00:00:13)
> --->  Upgrade of x11/nvidia-settings ended at: Fri, 23 Dec 2005 07:01:33 -0500
> (consumed 00:00:13)
> --->  Listing the results (+:done / -:ignored / *:skipped / !:failed)
>! x11/nvidia-settings (nvidia-settings-1.0_6)   (checksum mismatch)
> --->  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed
> --->  Session ended at: Fri, 23 Dec 2005 07:01:33 -0500 (consumed 00:00:14)

This looks familiar :)
You have to manually fetch the nvidia-settings-1.0 and compile it with 
gmake install. 
See http://download.nvidia.com/freebsd/1.0-8174/README/chapter-05.html for 
problems with FreeBSD and nvidia-settings.

Marco

-- 
"On two occasions I have been asked [by members of Parliament!], `Pray,
Mr.  Babbage, if you put into the machine wrong figures, will the right
answers come out?'  I am not able rightly to apprehend the kind of
confusion of ideas that could provoke such a question."
-- Charles Babbage
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RAID level migration and FreeBSD slice/partitions

2006-01-28 Thread Marco Beishuizen

Hello,

I would like to add 2 SCSI disks to my RAID controller (an Intel SRCU42X, 
the new disks are Seagate Cheetahs 36GB) and migrate to RAID 5. At the 
moment the controller has 2 disks attached to it (also 2x Seagate Cheetah 
36GB) in RAID 0.

According to the documentation of the controller this should be possible, 
but my question is what happens with the size of the slice and partitions 
of FreeBSD? Do they grow or do I have a lot of empty space after the 
migration?

Hope someone knows the answer.

Thanks,

Marco

-- 
Croll's Query:
If tin whistles are made of tin, what are foghorns made of?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


problems building gnome2

2006-03-15 Thread Marco Beishuizen
Hi,

When building gnome2 from ports, it has problems building gnopernicus. It 
exits with the following messages:

/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_attr_destroy'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to `pthread_create'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to `pthread_attr_init'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to `pthread_exit'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to `pthread_equal'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_getschedparam'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_attr_setscope'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_setschedparam'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_attr_setstacksize'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_attr_setschedparam'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_attr_setdetachstate'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to `pthread_join'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_cond_timedwait'
/usr/local/lib/libgthread-2.0.so.0: undefined reference to 
`pthread_attr_getschedparam'
gmake[3]: *** [srlow_test] Error 1
gmake[3]: Leaving directory 
`/usr/ports/accessibility/gnopernicus/work/gnopernicus-0.12.0/srlow/test'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory 
`/usr/ports/accessibility/gnopernicus/work/gnopernicus-0.12.0/srlow'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory 
`/usr/ports/accessibility/gnopernicus/work/gnopernicus-0.12.0'
gmake: *** [all] Error 2
*** Error code 2

I'm trying to install gnome 2.12 on FreeBSD 6.1-PRERELEASE. My portstree is 
up to date.

Thanks,

Marco

-- 
The only thing that stops God from sending a second Flood is that
the first one was useless.
-- Nicolas Chamfort
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


system monitors and SMP on FreeBSD

2006-03-30 Thread Marco Beishuizen

Hi,

Is there a system monitor for freebsd that supports SMP? I've tried some 
(gkrellm, xosview, xsysinfo) but they all show only one cpu. Or is there a 
way to enable SMP in these monitors?

Thanks,

Marco

-- 
If you're going to walk on thin ice, you might as well dance.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: system monitors and SMP on FreeBSD

2006-03-30 Thread Marco Beishuizen
On stardate Thu, 30 Mar 2006, the wise pete wright entered:

> On 3/30/06, Marco Beishuizen <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> >
> > Is there a system monitor for freebsd that supports SMP? I've tried some
> > (gkrellm, xosview, xsysinfo) but they all show only one cpu. Or is there a
> > way to enable SMP in these monitors?
> >
> 
> if you have an SMP kernel, and multiple CPU's systat will should show
> load on a per-cpu basis.  xosview should as well, although i'm not
> sure how you compiled/installed it.

I have a SMP kernel (dmesg shows 4 cpu's because of hyperthreading). Systat 
shows all cpu's but as a system monitor I like xosview more :)

I installed xosview from the ports but couldn't find an option to enable 
smp.

Marco

-- 
Liar, n.:
A lawyer with a roving commission.
-- Ambrose Bierce, "The Devil's Dictionary"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


undefined reference to 'ngettext'

2004-06-18 Thread Marco Beishuizen
I'm trying to install xfce4 as my desktop manager on FreeBSD 4.10-STABLE. 
But when I try this from the ports I get an error message (this actually 
happens when I try to install everything that needs GTK so not only 
xfce4):

...
./.libs/libgdk_pixbuf-2.0.so: undefined reference to 'ngettext'
*** Error code 1
...
Because of this I can't install a lot of programs because it seems that a 
lot of them use GTK.

Has anyone had this problem before?
Thanks in advance,
Marco
--
"Plaese porrf raed."
-- Prof. Michael O'Longhlin, S.U.N.Y. Purchase
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


problems installing applications that need GTK

2004-06-19 Thread Marco Beishuizen
Hi,
Since I upgraded to 4.10-STABLE I have a lot of problems installing 
programs. Trying to install by FTP with sysinstall always results in 
errors and sysinstall core dumps when it's accessing the cdrom. Also 
installing from the ports results in a lot of errors.

It looks like a lot of programs need gtk20, which doesn't install 
correctly. When I try gtk20 the error is:

...
failed to load "./stock_add_16.png": Couldn't recognize the image file 
format for file './stock_add_16.png'
*** Error code 1
...

What can I do to install gtk20?
Thanks,
Marco
--
Just because everything is different doesn't mean anything has
changed.
-- Irene Peter
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: problems installing applications that need GTK

2004-06-19 Thread Marco Beishuizen
On stardate Sat, 19 Jun 2004, the wise Andy Harrison entered:
On Sat, 19 Jun 2004 18:56:57 +0200 (CEST), Marco Beishuizen
<[EMAIL PROTECTED]> wrote:
It looks like a lot of programs need gtk20, which doesn't install
correctly. When I try gtk20 the error is:
Please clarify "doesn't install correctly."
I always get the error: couldn't recognize the image file format for file 
'./stock_add_16.png'.

Marco
--
If preceded by a '-' , the timezone shall be east of the Prime
Meridian; otherwise, it shall be west (which may be indicated by
an optional preceding '+' ).
-- POSIX 2001
The "+" or "-" indicates whether the time-of-day is ahead of
(i.e., east of) or behind (i.e., west of) Universal Time.
-- RFC 2822
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: installing gFTP with gtk12 instead of gtk20

2004-06-20 Thread Marco Beishuizen
On stardate Sun, 20 Jun 2004, the wise Jan Muenther entered:
I'm trying to install gFTP from the ports. When I do a make install, it
constantly wants to install gtk20 instead of gtk12. Gtk20 isn't installed
on my machine due to errors during the build, but gtk12 is installed.
According to the gFTP website it shouldn't be a problem to install gFTP
with gtk12, so how do I force the gFTP-port to install it with gtk12
instead of gtk20?
Interesting, from how I interpret the Makefile, I'd think 1.2 would be the
default... anyway try 'make -DWITH_GTK2=NO' and see if it works...
Unfortunately, it still wants to build and install gtk20, which doesn't 
work.

Marco
--
The income tax has made more liars out of the American people than golf
has.  Even when you make a tax form out on the level, you don't know
when it's through if you are a crook or a martyr.
-- Will Rogers
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


installing gFTP with gtk12 instead of gtk20

2004-06-20 Thread Marco Beishuizen
I'm trying to install gFTP from the ports. When I do a make install, it 
constantly wants to install gtk20 instead of gtk12. Gtk20 isn't installed 
on my machine due to errors during the build, but gtk12 is installed.

According to the gFTP website it shouldn't be a problem to install gFTP 
with gtk12, so how do I force the gFTP-port to install it with gtk12 
instead of gtk20?

PS I'm running FreeBSD-i386 4.10-STABLE.
Thanks in advance,
Marco
--
"The wages of sin are death; but after they're done taking out taxes,
it's just a tired feeling:"
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: installing gFTP with gtk12 instead of gtk20

2004-06-20 Thread Marco Beishuizen
On stardate Sun, 20 Jun 2004, the wise Geert Hendrickx entered:
The Makefile in ports/ftp/gftp has the option WITH_GTK2, which should of
course be unset if you want to compile with gtk12 (that seems to be the
default).  Maybe you have some saved options in /var/db/ports/gftp/ ?
Then remove that file and try again.
Yes, that did the trick!
Thanks,
Marco
--
A computer, to print out a fact,
Will divide, multiply, and subtract.
But this output can be
No more than debris,
If the input was short of exact.
-- Gigo
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: installing gFTP with gtk12 instead of gtk20

2004-06-20 Thread Marco Beishuizen
On stardate Sun, 20 Jun 2004, the wise Kent Stewart entered:
On Sunday 20 June 2004 03:54 am, Marco Beishuizen wrote:
I'm trying to install gFTP from the ports. When I do a make install,
it constantly wants to install gtk20 instead of gtk12. Gtk20 isn't
installed on my machine due to errors during the build, but gtk12 is
installed.
According to the gFTP website it shouldn't be a problem to install
gFTP with gtk12, so how do I force the gFTP-port to install it with
gtk12 instead of gtk20?
PS I'm running FreeBSD-i386 4.10-STABLE.

Look at the Makefile. It defaults to gtk12 unless you have gtk2 defined
some place such as /etc/make.conf. Kill the define and it should use
1.2.
The solution was not the makefile but in the file 
/var/db/ports/gftp/options. I deleted it and after that it installed 
correctly.

Thanks,
Marco
--
Real computer scientists only write specs for languages that might run
on future hardware.  Nobody trusts them to write specs for anything homo
sapiens will ever be able to fit on a single planet.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Linux emulator core dumps at install

2004-06-27 Thread Marco Beishuizen
I tried to install the Linux emulator from the ports on FreeBSD 
4.10-stable (i386) but it crashes when it installs:

...
===> Installing for linux_base-7.1_7
===> Generating temporary packing list
kern.fallback_elf_brand: 3 -> 3
glibc-common-2.2.4-33.i386.rpm
package glibc not listed in conflict index
glibc-2.2.4-33.i386.rpm
execution of glibc-2.2.4-33 script failed, exit status 0
*** Error code 1
...
Is there a solution for this?
Thanks,
Marco
--
Blore's Razor:
Given a choice between two theories, take the one which is
funnier.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


No sound from audio cd's

2004-12-15 Thread Marco Beishuizen
Hi,

I don't know how to get sound from audio cd's. Normal sound works fine
(from mp3, movies etc.). I have an audio cable attached between the DVD
player (Plextox PX-712A) and the soundcard (Creative Audigy2), but that
doesn't help. All sound is maximized to 100% in mixer (not muted). The
CD-player recognizes the cd and tracks on it, and plays the cd, except
there is no sound.

Does anyone have an idea what it could be?

Thanks,
Marco

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


Re: No sound from audio cd's

2004-12-18 Thread Marco Beishuizen
On Fri, 2004-12-17 at 23:36, Lowell Gilbert wrote:
> Marco Beishuizen <[EMAIL PROTECTED]> writes:
> 
> > I don't know how to get sound from audio cd's. Normal sound works fine
> > (from mp3, movies etc.). I have an audio cable attached between the DVD
> > player (Plextox PX-712A) and the soundcard (Creative Audigy2), but that
> > doesn't help. All sound is maximized to 100% in mixer (not muted). The
> > CD-player recognizes the cd and tracks on it, and plays the cd, except
> > there is no sound.
> 
> Maybe the audio cable is digital rather than analog?

No the cable is an analog one. I also replaced it with a new one in case
the cable was broken, but that didn't make a difference either.

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


Re: Firefox headaches

2004-12-18 Thread Marco Beishuizen
On Sat, 2004-12-18 at 21:53, Louis LeBlanc wrote:
> Something's not right with firefox.
> 
> Now that I've got the printing problems more or less solved, it
> crashes almost every time I hit a page with flash.
> 
> I've got the latest (from ports updated yesterday) native, and
> flashplugin-firefox port.  Certain websites crash or lock it up at
> seemingly random points.
> 
> By crash, I mean I get a firefox-bin.core file in my home directory.
> By lock up, I mean it simply stops responding - indefinitely.  Once I
> just quit for the night and next morning all I had was the window
> outline.
> 
> Case in point: http://www.big-boys.com/  This one ALWAYS takes it out.
> 
> Sometimes when loading the main page, sometimes when clicking out to
> another bookmark (different domain altogether) and pretty much anytime
> an onsite link is clicked.
> 
> I have rebuilt and reinstalled the flash plugin since portupgrading
> firefox.  I also deinstalled and reinstalled both additions - Noia
> theme and TabBrowser extension - latest of both.
> 
> Anyone else?
> 
> I don't really want to switch back to mozilla, but I may have to.

Yes, I have the sam experiences. But in my case all mozilla based
browsers (Mozilla, Firefox, Galeon) crash at sites like that. Browsing
over the internet with those browsers is almost impossible for me, they
crash at every site with (bad?) javascript or flash, and that are a lot
of sites. Now I use Opera again, which is very stable.

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


fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Marco Beishuizen
Hi,
I have a problem with fsck. After a lockup of X.org I couldn't use my 
keyboard anymore and I had to reset the computer. When it rebooted fsck 
didn't start immediately, but started after the login in the background. 
After some checks fsck stops working but stays a running process (in 
"getblk" state).
Everything seems normal then but when I start X, after a while the system 
locks up again and I have to reset the machine again. If I don't start X 
but shutdown from the console it doesn't shut down because some "processes 
couldn't be killed", and the only option is to reset.

Does anyone has an idea how I can repair my filesystems?
Thanks,
Marco
--
"As part of the conversion, computer specialists rewrote 1,500
programs; a process that traditionally requires some debugging."
-- USA Today, referring to the IRS switchover to a new
   computer system.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Marco Beishuizen
On stardate Wed, 22 Dec 2004, the wise O. Hartmann entered:
Please try to boot your system in single user mode (type '4' in the start 
screen, where the countdown can be watched)
an do a 'fsck -y'. Then watch whether your box gets stuck or.
If it also get stuck in single user mode, please report again. I'm very 
interestes in this!
Thanks for the reply,
In single user mode it didn't get stuck and it looks like it repaired some 
things. In the /usr, /home and /var filesystems "lost+found" directories 
were created with some files in them. Also a "fsck_snapshot"-file was 
created in /home/.snap/

Now I'm curious what to do with the files in the lost+found directories; 
can I delete them safely or do I have to do something with it? Are 
the filesystems really repaired and ok again or will the system crash some 
day because some files are still broken?

The system works again but I'm not very confident it stays this way. I'm 
thinking of installing 4.10-R again.

Marco
--
"When you are in it up to your ears, keep your mouth shut."
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Marco Beishuizen
On stardate Wed, 22 Dec 2004, the wise O. Hartmann entered:
Dear Marco.
Thanks. In my case, FreeBSD 5.3 dies in single user mode on nearly each disk 
activity (it is obviously a FreeBSD 5.3-issue with
my ASUS CUR-DLS based system).

Please take a look at fsck_ffs(8) man page. There is at the end of the 
description of the options an explanation of the lost+find facility. 
Obviously orphaned files and directories (and in most cases those which are 
expected to be some of them) are gathered and reconnected in lost+found. My 
'periodic' cron-job deletes the contents of lost+found every 7 days.
Oliver
Well the problem didn't dissappear. I was just checking the filesystem with 
the midnight commander, and suddenly mc froze in "ufs"-state. Now I'm 
running fsck again.

--
Idiot Box, n.:
The part of the envelope that tells a person where to place the
stamp when they can't quite figure it out for themselves.
-- Rich Hall, "Sniglets"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: fsck locks up SMP system (5.3-REL)

2004-12-22 Thread Marco Beishuizen
On stardate Wed, 22 Dec 2004, the wise Peter Risdon entered:
Well the problem didn't dissappear. I was just checking the filesystem with 
the midnight commander, and suddenly mc froze in "ufs"-state. Now I'm 
running fsck again.

What's being logged? Lots of dma errors in /var/log/messages?
Peter.
No, nothing strange is logged. Only sendmail things, which are normal for 
my system.

Marco
--
Loud burping while walking around the airport is prohibited in
Halstead, Kansas.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


portupgrade failure

2005-01-08 Thread Marco Beishuizen
Hi,
I tried to upgrade firefox with portupgrade, but it fails with the 
following error:

[EMAIL PROTECTED]># portupgrade firefox
Updating the ports index ... Generating INDEX.tmp - please wait..^Cfailed to 
generate INDEX!
index generation error
/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:482:in `open_db': database file 
error (PortsDB::DBError)
from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:634:in `port'
from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:822:in 
`all_depends_list'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:915:in `tsort_build'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:907:in `each'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:907:in `tsort_build'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:929:in `sort_build'
from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:933:in `sort_build!'
from /usr/local/sbin/portupgrade:674:in `main'
from /usr/local/sbin/portupgrade:207:in `initialize'
from /usr/local/sbin/portupgrade:207:in `new'
from /usr/local/sbin/portupgrade:207:in `main'
from /usr/local/sbin/portupgrade:1845
Does anyone know what the problem is?
Thanks,
Marco
--
U:  There's a U -- a Unicorn!
Run right up and rub its horn.
Look at all those points you're losing!
UMBER HULKS are so confusing.
-- The Roguelet's ABC
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: portupgrade failure

2005-01-08 Thread Marco Beishuizen
On stardate Sat, 8 Jan 2005, the wise Joshua Lokken entered:
You may be able to make this problem go away by doing:
# cd /usr/ports
# make fetchindex
Yes, this did the trick. I should have read /usr/ports/UPDATING though, 
because the answer was in it...

Thanks for the answers.
Marco
--
Minnie Mouse is a slow maze learner.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Acroread7

2005-03-23 Thread Marco Beishuizen
On stardate Wed, 23 Mar 2005, the wise Andreas Davour entered:
I have hit upon another problem with my new system. Acroread is now version 7 
(what was wrong with the previous version, Adobe? *shrug*) and since it is a 
Linux binary it naturally depends on Linux libraries. But, some of those 
libraries are missing. Anyone having the same problem?

I searched google and the mailing lists for a solution, and found some that 
suggested telling the Linux ldconfig the localtion of the FreeBSD library 
files, but that wont work.

Is the dependancies for the port broken, or have I missed something again?
/andreas
I've problems with linux libraries too (also after an update of my 
portstree). I get:

...
/compat/linux/usr/local/Adobe/Acrobat7.0/Reader/intellinux/bin/acroread: 
error while loading shared libraries: libXrandr.so.2: cannot open shared 
object file: No such file or directory

[EMAIL PROTECTED] $ locate libXrandr.so.2
/usr/X11R6/lib/libXrandr.so.2
...
Is this the same problem you're having?
Marco
--
The advertisement is the most truthful part of a newspaper
-- Thomas Jefferson
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Acroread7

2005-03-23 Thread Marco Beishuizen
On stardate Wed, 23 Mar 2005, the wise Andreas Davour entered:
Exactly the same.
As Erik (et al) wrote, it will all be pulled in and resolved as dependencies 
if you have a sufficienyly up-to-date ports tree.

Kind of annyoing that it wasn't caught before it was comitted at all, but 
considering the total confusion that reigns right now with two different 
acroread ports it's just what can be expected.

I did a cvsup 30 minutes ago, and then it worked.
/Andreas
Hmm I also did a cvsup, but it makes no difference, I still get the sam 
error. I guess I have an other problem on my system.

Marco
--
"I'd love to go out with you, but there are important world issues that
need worrying about."
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Acroread7

2005-03-23 Thread Marco Beishuizen
On stardate Wed, 23 Mar 2005, the wise Ean Kingston entered:
Hmm I also did a cvsup, but it makes no difference, I still get the sam
error. I guess I have an other problem on my system.
You may need to do a make clean or a make distclean in the port directory
after doing a cvsup. I've found that some ports don't realize that things
have changed after a cvsup and so continue to try and build with half
built old code.
I just tried but that doesn't help either. I guess it has something to do 
with my linux emulation.

Thanks for the reply.
Marco
--
There's no room in the drug world for amateurs.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


firefox 1.0.2 build failure

2005-03-26 Thread Marco Beishuizen
Hello,
I tried to portupgrade firefox from 1.0.1 to 1.0.2, but it fails with the 
following messages:

nsFontMetricsPS.cpp: In member function `nsresult nsFontPSFreeType::Init(nsITrue
TypeFontCatalogEntry*, nsPSFontGenerator*)':
nsFontMetricsPS.cpp:1144: error: 'struct FTC_ImageTypeRec_' has no member named 
'face_id'
nsFontMetricsPS.cpp:1145: error: 'struct FTC_ImageTypeRec_' has no member named 
'width'
nsFontMetricsPS.cpp:1146: error: 'struct FTC_ImageTypeRec_' has no member named 
'height'
nsFontMetricsPS.cpp: In member function `FT_FaceRec_* nsFontPSFreeType::getFTFac
e()':
nsFontMetricsPS.cpp:1231: error: 'struct FTC_ImageTypeRec_' has no member named 
'face_id'
nsFontMetricsPS.cpp: In member function `virtual void nsFT2Type8Generator::Gener
atePSFont(FILE*)':
nsFontMetricsPS.cpp:1625: error: 'struct FTC_ImageTypeRec_' has no member named 
'face_id'
nsFontMetricsPS.cpp:1627: error: 'struct FTC_ImageTypeRec_' has no member named 
'width'
nsFontMetricsPS.cpp:1628: error: 'struct FTC_ImageTypeRec_' has no member named 
'height'
nsFontMetricsPS.cpp:1633: error: 'struct FTC_ImageTypeRec_' has no member named 
'face_id'
gmake[4]: *** [nsFontMetricsPS.o] Error 1
gmake[4]: Leaving directory `/usr/ports/www/firefox/work/mozilla/gfx/src/ps'
gmake[3]: *** [libs] Error 2
gmake[3]: Leaving directory `/usr/ports/www/firefox/work/mozilla/gfx/src'
gmake[2]: *** [libs] Error 2
gmake[2]: Leaving directory `/usr/ports/www/firefox/work/mozilla/gfx'
gmake[1]: *** [tier_9] Error 2
gmake[1]: Leaving directory `/usr/ports/www/firefox/work/mozilla'
gmake: *** [default] Error 2
*** Error code 2

Did anyone else ran into this problem?
Thanks,
Marco
--
Government spending?  I don't know what it's all about.  I don't know
any more about this thing than an economist does, and, God knows, he
doesn't know much.
-- Will Rogers
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: firefox 1.0.2 build failure

2005-03-26 Thread Marco Beishuizen
On stardate Sat, 26 Mar 2005, the wise Michael Johnson entered:
you need to update print/freetype2 to 2.1.9 and re-start the build.
(you don't have to remove firefox WRKSRC)
Michael
Yes, this worked. Thanks.
Marco
--
I call them as I see them.  If I can't see them, I make them up.
-- Biff Barf
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Info.

2004-01-14 Thread Marco Beishuizen
On stardate Tue, 13 Jan 2004, the wise Kevin R. Lee entered:

> Sorry, one more question, what does DEC Alpha stand for?

DEC stands for Digital Equipment Corporation. Alpha is the 64-bit
processor they make. Digital as a company doesn't exist anymore, Compaq
bought it some time ago.
I have a Personal Workstation 600au and FreeBSD runs fine on it :)

Marco

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


changing hostname

2004-01-14 Thread Marco Beishuizen

Hi,

I would like to change the hostname of one of my machines without a
reboot. Is it enough to change my rc.conf and run the /etc/netstart script
or do I have to do something else?

Thanks,

Marco

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


Re: changing hostname

2004-01-14 Thread Marco Beishuizen
On stardate Wed, 14 Jan 2004, the wise Jonathan T. Sage entered:

> a simple
>
> # hostname new.host.name
>
> should do what you're asking.  also add it to rc.conf so the changes
> stay on next reboot

Well, I did this and it looks fine now. Thanks!

Marco

-- 
Man is the only animal that can remain on friendly terms with the
victims he intends to eat until he eats them.
-- Samuel Butler
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


es1371: wait src ready timeout (after playing .mpg)

2004-04-06 Thread Marco Beishuizen

Hi,

After trying to play a little mpeg movie in mplayer, FreeBSD crashed
(nothing worked anymore) and I had to reboot the system.

When the system rebooted I suddenly received tons of messages:
...
es1371: wait src ready timeout 0x10 [0x]
...

And after that:
...
pcm0: ac97 codec invalid or not present (id == )
device_probe_and_attach: pcm0 attach returned 6
...

Turning the computer off for a while and booting again didn't help.

Does anyone know what happened to my soundcard?

Thanks in advance,

Marco

-- 
Endless Loop: n., see Loop, Endless.
Loop, Endless: n., see Endless Loop.
-- Random Shack Data Processing Dictionary
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


PWS 600au / Matrox G450 / XFree86-4.3.0 (fwd)

2004-05-29 Thread Marco Beishuizen
Hi,
I just installed FreeBSD 4.10-RELEASE on my PWS 600au and it comes with 
Xfree86-4.3.0. I can't seem to start X while Xfree-3.3.6 worked fine.
My PWS has a Matrox G450 PCI videocard. I tried both the generic Matrox driver 
and the G400 driver in xf86config, but get the same errors.

The errors I get when trying to start X are:
...
(WW) MGA: No matching Device section for instance (BusID PCI:1:0:0) found
(EE) No devices detected.
Fatal server error:
no screens found
...
X connection to :0.0 broken (explicit kill or server shutdown).
xauth: (argv):1: bad display name "tsunami.bsd:0" in "remove" command
Does anyone know what the problem is and how to solve this?
Thanks,
Marco
--
Faith is the quality that enables you to eat blackberry jam on a picnic
without looking to see whether the seeds move.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: PWS 600au / Matrox G450 / XFree86-4.3.0 (fwd)

2004-05-30 Thread Marco Beishuizen
On stardate Sun, 30 May 2004, the wise Thomas Schwarzkopf entered:
On Saturday 29 May 2004 17:56, Marco Beishuizen wrote:
(WW) MGA: No matching Device section for instance (BusID PCI:1:0:0)
found (EE) No devices detected.
Fatal server error:
no screens found
...
X connection to :0.0 broken (explicit kill or server shutdown).
xauth: (argv):1: bad display name "tsunami.bsd:0" in "remove" command
I had the same problem with a PC 164 but with a different videocard.
Adding a line like
BusID  "PCI:0:9:0"
to Section "Device" of my XF86Config file helped. pciconf -l can help
you to find the BusID. /var/log/XFree86.0.log should also report the
BusID of yor card.
I added the line BusID "PCI:1:0:0" and Xfree tries to start. But now my 
monitor turns to black and I get a big warning that the "signal frequency 
is out of range". Really weird because I always used the (correct) values 
for horizontal and vertical frequencies for the monitor. The only thing I 
can do at that point is to reset the computer.

Marco
--
Gray's Law of Programming:
`_n+1' trivial tasks are expected to be accomplished in the same
time as `_n' tasks.
Logg's Rebuttal to Gray's Law:
`_n+1' trivial tasks take twice as long as `_n' trivial tasks.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: PWS 600au / Matrox G450 / XFree86-4.3.0 (fwd)

2004-05-30 Thread Marco Beishuizen
On stardate Sun, 30 May 2004, the wise Jean-Francois Gobin entered:
What did he do when you press [CTRL][ALT][BACKSPACE] ?
JF
I think that killed xfree as it should but the monitor still remains black 
with the big warning. The only way to get into the cli again is to reboot 
the machine.

Marco
--
Alex Haley was adopted!
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: PWS 600au / Matrox G450 / XFree86-4.3.0 (fwd)

2004-05-30 Thread Marco Beishuizen
On stardate Sun, 30 May 2004, the wise Jean-Francois Gobin entered:
Also, it seems to me that you've got two cards in your system. What about
a small "pciconf" ?
JF
No I have only one card in it. Pciconf -l says the Matrox has BusID 1:0:0.
Marco
--
Spelling is a lossed art.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: PWS 600au / Matrox G450 / XFree86-4.3.0 (fwd)

2004-05-30 Thread Marco Beishuizen
On stardate Sun, 30 May 2004, the wise Bernd Walter entered:
On Sun, May 30, 2004 at 04:11:07PM +0200, Marco Beishuizen wrote:
On stardate Sun, 30 May 2004, the wise Jean-Francois Gobin entered:
Also, it seems to me that you've got two cards in your system. What about
a small "pciconf" ?
JF
No I have only one card in it. Pciconf -l says the Matrox has BusID 1:0:0.
I might make a difference if you put the card in a slot on bus 0.
I just tried it but unfortunately it doesn't make any difference.
--
Swahili, n.:
The language used by the National Enquirer to print their
retractions.
-- Johnny Hart
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


ifconfig in rc.conf network problems

2004-05-30 Thread Marco Beishuizen
I used to have two ifconfig lines in my rc.conf:
ifconfig_dc0="DHCP"
ifconfig_dc0="media autoselect"
The first to enable DHCP and the second to set my networkcard to 100BaseTX 
full duplex.

Now after an upgrade to 4.10-release this doesn't work anymore. When I put 
both lines in rc.conf only the second line is effective and overrides the 
first, but I want to use both DHCP and 100BaseTX. I need to use the "media 
autoselect" because the networkcard defaults to 10BaseT but I want to use 
100Mbit. When I don't use DHCP the network is unreachable. Pinging then 
gives a "no route to host".

How do I solve this problem?
Marco
--
Sweater, n.:
A garment worn by a child when its mother feels chilly.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ifconfig in rc.conf network problems

2004-05-31 Thread Marco Beishuizen
On stardate Sun, 30 May 2004, the wise Joost Bekkers entered:
On Sun, May 30, 2004 at 11:34:43PM +0200, Olaf Hoyer wrote:
2) put the media change in a separate shell script, and throw it unter
/usr/local/etc/rc.d, so that it will be executed later on
something like:
cat dc0-speedchange.sh
#!/bin/sh
ifconfig dc0 media 100baseTX
You might want to put stuff like that in /etc/start_if.dc0
It gets executed just before the ip address is set or dhclient
is started.
Yes, this did the trick.
Thanks,
Marco
--
Message will arrive in the mail.  Destroy, before the FBI sees it.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ifconfig in rc.conf network problems

2004-05-31 Thread Marco Beishuizen
On stardate Sun, 30 May 2004, the wise Warren Block entered:
On Sun, 30 May 2004, Marco Beishuizen wrote:
I used to have two ifconfig lines in my rc.conf:
ifconfig_dc0="DHCP"
ifconfig_dc0="media autoselect"
The first to enable DHCP and the second to set my networkcard to 100BaseTX 
full duplex.
Can rc.conf work that way?  rc.conf is just a shell script, and you're 
assigning values to variables, so the second declaration would overwrite the 
first.  As to why that would have worked for you...  After dhclient runs 
successfully once, some of the information is kept on disk (resolv.conf, 
default route).  Maybe it was enough?
I don't know why but it did work. Now I put the media autoselect line in 
/etc/start_if.dc0 and that works.
Thanks,

Marco
--
Vote for ME -- I'm well-tapered, half-cocked, ill-conceived and
TAX-DEFERRED!
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Gnome problems

2005-07-02 Thread Marco Beishuizen


Hi,

Since I installed a new version of "pango" none of the gnome applications 
work anymore:

...
[EMAIL PROTECTED]>$ gnumeric
/libexec/ld-elf.so.1: Shared object "libpangoft2-1.0.so.600" not found, 
required by "gnumeric"

you have mail
[EMAIL PROTECTED]>$ jpilot
/libexec/ld-elf.so.1: Shared object "libpangoxft-1.0.so.600" not found, 
required by "jpilot"

...

When I try to install a new version of gnome in order to install all 
libraries used by those programs, it crashes with:

...
BITS=64 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include 
-I/usr/local/include/libxml2 -I/usr/local/include 
-I/usr/X11R6/include/gstreamer-0.8 -DGST_DISABLE_DEPRECATED -Wall -O -pipe 
-I/usr/local/include -MT libgstdtsdec_la-gstdtsdec.lo -MD -MP -MF 
.deps/libgstdtsdec_la-gstdtsdec.Tpo -c gstdtsdec.c  -fPIC -DPIC -o 
.libs/libgstdtsdec_la-gstdtsdec.o

In file included from gstdtsdec.c:29:
../../gst-libs/gst/audio/multichannel.h:24:46: 
gst/audio/multichannel-enumtypes.h: No such file or directory

gmake: *** [libgstdtsdec_la-gstdtsdec.lo] Error 1
*** Error code 2

Stop in /usr/ports/multimedia/gstreamer-plugins-dts.
*** Error code 1
...

Now I don't know how I can make those gnome programs work again.
I'm running Xfce on FreeBSD 5.3-REL.

Thanks in advance.

Marco
--
Fuch's Warning:
If you actually look like your passport photo, you aren't well
enough to travel.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Gnome problems

2005-07-02 Thread Marco Beishuizen

On stardate Sat, 2 Jul 2005, the wise [EMAIL PROTECTED] entered:


On Sat, 02 Jul 2005 14:53:54 +0200 (CEST)
Marco Beishuizen <[EMAIL PROTECTED]> wrote:


Since I installed a new version of "pango" none of the gnome
applications  work anymore:
...
[EMAIL PROTECTED]>$ gnumeric
/libexec/ld-elf.so.1: Shared object "libpangoft2-1.0.so.600" not
found,  required by "gnumeric"


this url might be of help : http://www.freebsd.org/gnome


I tried to upgrade gnome with the script provided on the website but it 
failed. It quits when it tries to install OpenOffice. Now my Xfce is a 
total mess and I have to install all my Gnome apps manually, but it looks 
like the libraries I was looking for are installed again.


Marco
--
Parker's Law:
Beauty is only skin deep, but ugly goes clean to the bone.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Abiword messing up Xfce

2005-11-05 Thread Marco Beishuizen

Hi,

I just upgraded the Abiword port to 2.4.1. But after installation Abiword 
didn't start up, but gave an error message instead:
/libexec/ld-elf.so.1: Shared object "libgtk-x11-2.0.so.600" not found, 
required by "abiword".


I thought I just needed to start X again, so I did, but that also doesn't 
work anymore. Same message: /libexec/ld-elf.so.1: Shared object 
"libgtk-x11-2.0.so.600" not found, required by "xfce-session".


Strange thing is that libgtk-x11-2.0.so.600 is present in /usr/x11R6/lib.

Anyone an idea what to do next?

Thanks,
Marco

--
Bumper sticker:

"All the parts falling off this car are of the very finest British
manufacture"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Linuxpluginwrapper

2005-11-15 Thread Marco Beishuizen

On stardate Tue, 15 Nov 2005, the wise Hans Nieser entered:


- Install www/linuxpluginwrapper
- Install www/linux-flashplugin7
- Put following in /etc/libmap.conf

 [/usr/X11R6/lib/linux-flashplugin7/libflashplayer.so]
 libpthread.so.0 libpthread.so.2
 libdl.so.2  pluginwrapper/flash7.so
 libz.so.1   libz.so.3
 libm.so.6   libm.so.4
 libc.so.6   pluginwrapper/flash7.so

- Apply the patch at http://people.FreeBSD.org/~nork/rtld_dlsym_hack.diff to 
/usr/src/libexec/rtld-elf/rtld.c (using "patch < difffile").

- Rebuild rtld-elf:

 cd /usr/src/libexec/rtld-elf/
 make clean cleandir
 make clean cleandir
 make obj
 make depend
 make
 make install

- Link the plugin:

 ln -s /usr/X11R6/lib/linux-flashplugin7/libflashplayer.so 
/usr/X11R6/lib/browser_plugins/


I'm also trying to install the flashplugin in Firefox. Also took the 
steps above but it still doesn't work.


Any other hints? :)

Marco

--
Pascal Users:
To show respect for the 313th anniversary (tomorrow) of the
death of Blaise Pascal, your programs will be run at half speed.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Linuxpluginwrapper

2005-11-16 Thread Marco Beishuizen

On stardate Wed, 16 Nov 2005, the wise Tino Boss entered:


Marco Beishuizen wrote:


- Link the plugin:

 ln -s /usr/X11R6/lib/linux-flashplugin7/libflashplayer.so 
/usr/X11R6/lib/browser_plugins/




I have flashplugin6 working here. To install it, I also linked a second file 
called libflashplayer.xpt


Yes! The symlink to libflashplayer.xpt did the trick. I installed flash6 
before but without this symlink and it didn't work then.


Thanks for the tip.

Marco

--
"Nuclear war can ruin your whole compile."
-- Karl Lehenbauer
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Build failure devel/goffice

2005-11-18 Thread Marco Beishuizen


Hi,

In order to build gnumeric, I have to build goffice first. But when I try 
it fails with:


...
Requested 'libgsf-1 >= 1.13.3' but version of libgsf-1 is 1.11.1
...

But my libgsf, as well as libgsf-gnome, are both version 1.13.3. My 
portstree is up to date.


Does anyone has a clue how to solve this?
I'm running FreeBSD 5.4-stable.

Thanks,

Marco

--
This will be a memorable month -- no matter how hard you try to forget
it.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


enabling audio cd sound in emu10kx driver

2005-11-26 Thread Marco Beishuizen

I would like to enable sound for my dvd player so I can listen to audio 
cd's. I installed the driver for my Audigy2 in the ports (emu10kx). Sound 
is working fine, except for audio cd's.

I once had the old driver installed which came with "emuctrl", a program 
which controls the volume. Entering "emuctrl set in1 100" enabled sound for 
the cd player. But with the new driver in the ports emuctrl doesn't work 
anymore and mixer is unable to control the volume for in1.

So my question is how to enable the volume for the dvd player with this 
driver.

Thanks in advance,
Marco

-- 
The Pig, if I am not mistaken,
Gives us ham and pork and Bacon.
Let others think his heart is big,
I think it stupid of the Pig.
-- Ogden Nash
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: enabling audio cd sound in emu10kx driver

2005-11-28 Thread Marco Beishuizen
On stardate Mon, 28 Nov 2005, the wise Lowell Gilbert entered:

> Sounds like you don't have an analog audio cable; these are not coming
> installed standard as often as they used to, as Windows is doing
> digital sound by default these days.  If this is the problem, you can
> either put in such a cable yourself, or use digital audio (xmms can do
> this easily, for example).

Yes, I have the audio cable installed. I don't think that's the problem. 
The problem is that the line (the one that is called "in1" in emuctrl) 
seems closed by default, and I have to open it (or set the volume to 100) 
by using a program like emuctrl. Using mixer doesn't work because it's 
unable to open/set "in1".

Marco
-- 
A musician of more ambition than talent composed an elegy at
the death of composer Edward MacDowell.  She played the elegy for the
pianist Josef Hoffman, then asked his opinion.  "Well, it's quite
nice," he replied, but don't you think it would be better if ..."
"If what?"  asked the composer.
"If ... if you had died and MacDowell had written the elegy?"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: enabling audio cd sound in emu10kx driver

2005-11-28 Thread Marco Beishuizen
On stardate Mon, 28 Nov 2005, the wise Lowell Gilbert entered:

> I don't know anything about this driver (you said you're using the one
> from the audio/emu10kx port), but there seem to be a bunch of knobs to
> play with.  One is the analog/digital mode, which may be related (as I
> mentioned before, for a different reason, driving the audio in digital
> mode may work for you.
> 
> You could also try the native emu10k1 driver, which is supposed to
> handle the EMU10K2 and EMU10K3 chipset-based Audigy 2 cards.  You
> didn't mention if you'd done that before.  [You also didn't mention
> which version of FreeBSD you're running, which may turn out to be
> relevant.]  

I'm running FreeBSD 5.4-stable. The driver is for a Creative Audigy2.

I also tried to compile the driver into the kernel before but that fails, 
that is the reason for using the driver from the ports. Sound works fine, 
except for the dvd player. I'll look into the audio/digital mode first and 
see if it works.

Thanks,
Marco

-- 
Any fool can paint a picture, but it takes a wise person to be able to
sell it.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: enabling audio cd sound in emu10kx driver

2005-11-29 Thread Marco Beishuizen
On stardate Mon, 28 Nov 2005, the wise Lowell Gilbert entered:

> Unfortunately, there is more than one chipset in different cards that
> are called by that name.

My dmesg says:

pcm0:  port 0xee80-0xeebf irq 21 at device 4.0 on 
pci6
pcm0: 

Does this mean it has a "SigmaTel" chip? The user manual only speaks of an 
audigy2 chip.

> And "kldload snd_emu10k1" doesn't work?

This driver is loaded in my /boot/loader.conf and gives the boot messages 
in my dmesg like mentioned above.

-- 
Hollywood is where if you don't have happiness you send out for it.
-- Rex Reed
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


  1   2   >