weird samba error

2009-01-09 Thread Aggelidis Nikos
hi to all the list,

i have a question concerning samba and freebsd:

whenever i use the option username map = /usr/local/etc/samba/smbusers
in my smb.conf
, and i try to connect to samba server like this

#smbclient //apollo/username
Password:
session setup failed: NT_STATUS_LOGON_FAILURE

i get this error even though i type the password correctly...

here is the smb.conf i use:

$cat /usr/local/etc/smb.conf
[global]
 netbios name = apollo
 workgroup = PHOME
 server string = Freebsd File Server
 dns proxy = No

 security = user
 encrypt passwords = yes
 passdb backend = smbpasswd
 smb passwd file = /usr/local/etc/samba/smbpasswd

 #*this options creates all the problems*
 #username map = /usr/local/etc/samba/smbusers

 debug timestamp = no
 log level = 1
 log file = /var/log/samba/log.%m
 max log size = 50

 hosts allow = 192.168.1., 192.168.2., 127.

[homes]
comment = Home Directories
read only = No
browseable = No

#cat /usr/local/etc/samba/smbusers

# Unix_name = SMB_Name1 SMB_Name2 ...
# map_to = map_from
root = administrator
nobody = guest smbguest pcguest
username = username anotherusername

any idea why this happens?or how i should investigate it more?

thanks in advance
-nicolas
___
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: weird samba error

2009-01-09 Thread Aggelidis Nikos
On Fri, Jan 9, 2009 at 8:29 PM, Aggelidis Nikos
aggelidis.n...@gmail.com wrote:
 hi to all the list,

i forgot to mention that i use almost the same smb.conf and smbusers
in a debian lenny and everything works, that's why i prefered to post
this message in questi...@...

best regards,
nikos
___
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: PATH braincramp

2009-01-04 Thread Aggelidis Nikos
 Giorgios, THANK YOU!

i'll second that! he is helpfull and polite, as always!
___
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: Snow in my Server

2008-12-21 Thread Aggelidis Nikos
On Fri, Dec 19, 2008 at 10:07 PM, Eitan Adler eitanadlerl...@gmail.com wrote:

 Build a bike shed over the server? :)
 make sure its green...
 --
i think blue is better suited for the job

Merry Christmas to everybody,

-nicolas
___
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: open multiple xterms with script

2008-12-04 Thread Aggelidis Nikos
Thank you George and Polytropon that seems to do the trick...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


open multiple xterms with script

2008-12-02 Thread Aggelidis Nikos
hi to all the list,

i need some help... Is it possible to open four consoles as
root(authenticate yourself once), in each one run a specific program
and do this through a script? {bash or python).
i want to open 4 xterms in the four corners of the screen. In 3 xterms
i want to run specific applications needing root privileges and the
last i want it for administrative purposes.

what i have so far:

sudo xterm -e path/to/application1 
sudo xterm -e path/to/application2 
sudo xterm -e path/to/application3 
sudo xterm

But this approach has the following problems:

1) i have only managed to get it to work as sudo not su

2) i haven't managed to position the 4 terminals correctly
in the 4 corners of the screen

3) i want to be able to close and restart a single terminal.without
running again the whole script (this i am not sure if it is even
doable). For example if one of the applications hungs, then i want to
be able to restart this application, without running the whole script
again.


thanks in advance for your help,
nicolas
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: open multiple xterms with script

2008-12-02 Thread Aggelidis Nikos
Thank you for your help!

some additional questions:

1) is there any way to give the root password once? i tried this:
#!/bin/sh

su root -c \
xterm -geometry 80x25 -title 'App 1' -e 'app1' 
xterm -geometry 80x25 -title 'App 2' -e 'app2'\


but i get this:
xterm Xt error: Can't open display: %s

2)
 Not very elegant and tidy, but should work. You could add some
 checking to the first script mentioned so it gets a clue which
 application is *not* running and restart it when called, not
 starting those that are running again (second session).

i don't think i need something so complex. Is there any way to
instruct xterm not to close after the execution of the program?


So basically the idea is open 4 terminals, execute a specific command
inside them but if the command finishes or stops, the terminal stays
{with a new prompt}.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: re changing from vista

2008-11-14 Thread Aggelidis Nikos
You have to be more specific, if you need actual help

if you are not sure that FreeBSD will work with your hardware, you may
try it and see what happens For the software part: FreeBSD has a
large collection of software often refered to as ports.But again you
have to be more specific, tell the list what you want to do... and
people will help you

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


Using grep to search a repository

2008-11-11 Thread Aggelidis Nikos
Hi to all the list,

i have a project with a lot of bash scripts in a folder hierarchy.I
haven't wrote the project myself so many times i have to search for
the definition of a function. For this purpose i decided to use grep
{recursively}.
The problem is that the project is an svn repository... so grep
returns results from .svn and it is really messes up the outcome of
grep. I tried bypassing the problem using the `--exclude=file_pattern'
but since its use is for files not directories it doesn't work So
the questions are:

1) Can i bypass certain directories{i.e. '.svn' or 'log/'}, using
grep? {or a combination of tools + grep}

2) Is there any other tool you would use for this job?

thanks in advance for your help,
-nicolas

PS: if it matters i prefer using gnu grep.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


build ImageMagick 6.4.4.1_1 from ports failed...

2008-10-29 Thread Aggelidis Nikos
hi to all the list,

i am trying to install ImageMagick 6.4.4.1_1 from the ports system.
The problem seems to be that i can't complete succesfully the tests of
imagemagick. In particular i fail in all the Magick++ tests

[snip]

FAIL: Magick++/tests/exceptions.sh
FAIL: Magick++/tests/appendImages.sh
FAIL: Magick++/tests/attributes.sh
FAIL: Magick++/tests/averageImages.sh
FAIL: Magick++/tests/coalesceImages.sh
FAIL: Magick++/tests/coderInfo.sh
FAIL: Magick++/tests/colorHistogram.sh
FAIL: Magick++/tests/color.sh
FAIL: Magick++/tests/montageImages.sh
FAIL: Magick++/tests/morphImages.sh
FAIL: Magick++/tests/readWriteBlob.sh
FAIL: Magick++/tests/readWriteImages.sh
FAIL: Magick++/demo/analyze.sh
FAIL: Magick++/demo/button.sh
FAIL: Magick++/demo/demo.sh
FAIL: Magick++/demo/flip.sh
FAIL: Magick++/demo/gravity.sh
FAIL: Magick++/demo/piddle.sh
FAIL: Magick++/demo/shapes.sh
FAIL: Magick++/demo/zoom_bessel.sh
FAIL: Magick++/demo/zoom_blackman.sh
FAIL: Magick++/demo/zoom_box.sh
FAIL: Magick++/demo/zoom_catrom.sh
FAIL: Magick++/demo/zoom_cubic.sh
FAIL: Magick++/demo/zoom_gaussian.sh
FAIL: Magick++/demo/zoom_hamming.sh
FAIL: Magick++/demo/zoom_hanning.sh
FAIL: Magick++/demo/zoom_hermite.sh
FAIL: Magick++/demo/zoom_lanczos.sh
FAIL: Magick++/demo/zoom_mitchell.sh
FAIL: Magick++/demo/zoom_point.sh
FAIL: Magick++/demo/zoom_quadratic.sh
FAIL: Magick++/demo/zoom_sample.sh
FAIL: Magick++/demo/zoom_scale.sh
FAIL: Magick++/demo/zoom_sinc.sh
FAIL: Magick++/demo/zoom_triangle.sh

[snip]

===
36 of 699 tests failed
Please report to http://www.imagemagick.org
===
*** Error code 1

Stop in /usr/ports/graphics/ImageMagick/work/ImageMagick-6.4.4.
*** Error code 1




What i've tried so far:

* i tried to install using
   portugrade -P -N ImageMagick and then by using
   cd /usr/ports/graphics/ImageMagick/  make install clean
* updated the ports
* installed or updated to the last version all the tools listed from
freshports.org as Required To Build or Required To Run
  Required To Build: lang/perl5.8, devel/pkg-config,
print/ghostscript8-nox11
  Required To Run: lang/perl5.8, devel/pkg-config, print/ghostscript8-nox11
* finally i updated to  libtool-1.5.26 because in
/usr/ports/graphics/ImageMagick/work/ImageMagick-6.4.4/Magick++/tests/attributes.sh
in the comments is mentioned that libtool is needed...

Any ideas will be great! even if they are just directions for where to
look from here...because i am out of ideas..

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


Re: build ImageMagick 6.4.4.1_1 from ports failed...

2008-10-29 Thread Aggelidis Nikos
Here are the configurations options:

=== The following configuration options are available for
ImageMagick-6.4.4.1_1:
 X11=on X11 support
 IMAGEMAGICK_TESTS=on Run bundled self-tests after build
 IMAGEMAGICK_OPENMP=off OpenMP for SMP (needs threads)
 IMAGEMAGICK_PERL=on Perl support
 IMAGEMAGICK_MODULES=off Modules support (broken)
 IMAGEMAGICK_BZLIB=on Bzlib support
 IMAGEMAGICK_16BIT_PIXEL=on 16bit pixel support
 IMAGEMAGICK_DJVU=off DJVU format support (needs threads)
 IMAGEMAGICK_LCMS=on LCMS support
 IMAGEMAGICK_HDRI=off High Dynamic Range Images (HDRI)
 IMAGEMAGICK_TTF=on Freetype support
 IMAGEMAGICK_FONTCONFIG=on Fontconfig support
 IMAGEMAGICK_JPEG=on JPG format support
 IMAGEMAGICK_OPENEXR=off OpenEXR support (needs threads)
 IMAGEMAGICK_PNG=on PNG format support
 IMAGEMAGICK_TIFF=on TIFF format support
 IMAGEMAGICK_FPX=on FPX format support
 IMAGEMAGICK_JBIG=on JBIG format support
 IMAGEMAGICK_JPEG2000=on JPEG2000 format support
 IMAGEMAGICK_DOT=off GraphViz dot graphs support
 IMAGEMAGICK_WMF=off WMF format support
 IMAGEMAGICK_SVG=off SVG format support
 IMAGEMAGICK_PDF=on PDF format support
 IMAGEMAGICK_GSLIB=off libgs (Postscript SHLIB) support
=== Use 'make config' to modify these settings

 what platform and FBSD version?

#uname -a: FreeBSD apollo 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb
24 19:59:52 UTC 2008
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

 did you build with perl support?
yes


 If I remember well, this is a known issue.  Change to the port's directory,
 execute make config, and deselect IMAGEMAGICK_TESTS from the options dialog.
 It should build and install fine.

oh i didn't know this, but Anton stated that
 I've passed all tests on i386

So you think i should disable the tests and recompile?

thank you all for your help so far,
nikos
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: build ImageMagick 6.4.4.1_1 from ports failed...

2008-10-29 Thread Aggelidis Nikos
On Wed, Oct 29, 2008 at 2:02 PM, Anton Shterenlikht [EMAIL PROTECTED] wrote:
 In any case you can build and install without tests,
 and then do 'make check' separately.

 I'm building IM on i386 7.0-stable and 8.0-current.
 Will let you know how the tests go soon.

 Post also your /etc/make.conf


here it is:
NO_OPENSSH = YES
# added by use.perl 2008-10-28 20:44:42
PERL_VER=5.8.8
PERL_VERSION=5.8.8

i will try and build without the tests
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: build ImageMagick 6.4.4.1_1 from ports failed...

2008-10-29 Thread Aggelidis Nikos
On Wed, Oct 29, 2008 at 3:34 PM, Jeremy Chadwick [EMAIL PROTECTED] wrote:
 Your NO_OPENSSH = YES line is broken, by the way.  You have a space
 between the H and the =.

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


Re: build ImageMagick 6.4.4.1_1 from ports failed...

2008-10-29 Thread Aggelidis Nikos
On Wed, Oct 29, 2008 at 3:49 PM, Anton Shterenlikht [EMAIL PROTECTED] wrote:

 perhaps you just haven't built perlmagick, or use some old libraries -
 just a guess.

I haven't build perlmagick. I only tried to build imagemagick {because
it was required by kile}...

Could it be this? The problems that i find are at the test of
magick++ i pass successfully every other test...

 I'm surprised you haven't got at least this in your /etc/make.conf

 CFLAGS= -O -pipe
 MAKE_SHELL=sh
 BDECFLAGS=  -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \
-Wcast-qual -Wchar-subscripts -Winline \
-Wmissing-prototypes -Wnested-externs -Wpointer-arith \
-Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings
 COPTFLAGS= -O -pipe
 INSTALL=install -C
i have the default make.conf if i recall correctly... should i add them?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problems building port, missing library(?)

2008-09-05 Thread Aggelidis Nikos
Hi to all the list,

i tried to install gtk-murrine-engine from ports...

So i first updated them:

* removed the old ports directory to start fresh and then did
csup -L 2 -h cvsup.fr.FreeBSD.org /usr/share/examples/cvsup/ports-supfile

*i then typed
[EMAIL PROTECTED] /usr]# portupgrade -P -N gtk-murrine-engine

and i got the following output:

[snip]
/usr/bin/ld: cannot find -lgio-2.0
gmake: *** [libgiofam.la] Error 1
*** Error code 2

Stop in /usr/ports/devel/gio-fam-backend.
** Command failed [exit code 1]: /usr/bin/script -qa
/tmp/portupgrade.69428.0 env make reinstall
** Fix the installation problem and try again.
** Listing the failed packages (*:skipped / !:failed)
! x11-themes/gtk-murrine-engine (install error)
---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed

so then i tried installing gio-fam-backend

so i typed:

[EMAIL PROTECTED] /usr]# portupgrade -P -N gio-fam-backend
/usr/bin/ld: cannot find -lgio-2.0
gmake: *** [libgiofam.la] Error 1
*** Error code 2

Stop in /usr/ports/devel/gio-fam-backend.
** Command failed [exit code 1]: /usr/bin/script -qa
/tmp/portupgrade.93689.0 env make
** Fix the problem and try again.
** Listing the failed packages (*:skipped / !:failed)
! devel/gio-fam-backend (unknown build error)
---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed


i think the important part is:
/usr/bin/ld: cannot find -lgio-2.0

any ideas why this happened and how can i fix it?

thanks in advance for your time,
-nicolas
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: The Design and Implementation of the FreeBSD Operating System

2008-07-23 Thread Aggelidis Nikos
On Wed, Jul 23, 2008 at 12:06 AM, Gonzalo Nemmi [EMAIL PROTECTED] wrote:
 On Tuesday 22 July 2008 15:23:15 Erik Trulsson wrote:
 On Tue, Jul 22, 2008 at 11:09:17AM -0400, FreeBSD Questions wrote:
  This book was printed in August 2004.  This predates FBSD 5, and I
  know there were some significant changes between the 4.x and 5.x
  branches.  We've progressed further and are now into version 7.  How
  well does this book apply to more current versions of FreeBSD, such as
  version 7?

 The 2004 edition of that book does cover FreeBSD 5.2  (says so clearly on
 the cover anyway.) This means that all the major changes between 4.x and
 5.x should be included in it.
 There have been many changes in FreeBSD since then, of course, but most of
 those changes have been fairly evolutionary in nature, so most of the book
 should still apply reasonably well.

 Actually .. I'd be more than willing to buy an updated version of that book
 too .. I _do_ undertand your point of view but to be honest, I'd rather buy a
 new copy that prints everything up to _yesterday_ and that has at least some
 hints into tomorrow ...

 Yet your point is completly valid one.. and that's why The Design and
 Implementation of the FreeBSD Operating System is the only book that I've
 been hesitant on buying so far ... Lucas (Absolute FreeBSD, 2nd Edition),
 Lavigne (The Best of FreeBSD Basics), Kong (BSD rootkits),  Lehey (Download
 edition:) ) are all over my desktop as I write this mail, and I consult them
 daily ... Farrokhi (Network Administration with FreeBSD) and Hong (Building a
 Server with FreeBSD 7) are the ones coming in the next batch ...

 So far .. there are only three books I would have bought but I didn't because
 I thought the situation could improve ... those are: The Design and
 Implementation of the FreeBSD Operating System, BSD Hacks and The FreeBSD
 HandBook... same reason for all of them .. too old by now (although I think
 I'll buy BSD Hacks anyways .. I just can't resist buying Lavigne books :( )

 (let alone the fact that I would rather buy them all through freebsdmall.com
 that from amazon .. I think freebsdmall would do good if they would offer the
 whole Reed's Media library and the No Starch Press BSD related titles ... i
 would surely buy everything from them =P)

 Finally; Editor, Publisher, _Dear_Writer_: if you guys are hesitant .. I think
 there's at least two copies of an updated version of The Design and
 Implementation ..  already sold with a lot more on the way :)

 --
 Blessings
 Gonzalo Nemmi

I couldn't agree more with Gonzalo... i find myself in the exact same position.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: weird restarts when compiling

2008-07-14 Thread Aggelidis Nikos
The voltages as the BIOS reports them:

Vcore = 1.258 V
+3.30 V  = 3.274V
+5.00 V = 5.121V
+12.00 V = 11.870V

i hope by the end of the day i will be able to test the system with a
1100watt Tagan PSU {a friend just bought a monster pc!}.

I will then run: make buildworld...

-nikos


PS: i can interup the process of builworld without causing any
problems to the system correct?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


weird restarts when compiling

2008-07-13 Thread Aggelidis Nikos
Hi to all the list, i 've been using FreeBSD for almost a month ,and i
have this weird problem. Sometimes when i try to compile a program the
computer will hard-reset itself, like someone pulled of the plug...
For example yesterday i was trying to install jdk1.6 + eclipse, and
while i was compiling eclipse {more precisely -if i remember
correctly-  the diablo-jdk needed for eclipse} the computer rebooted
itself.

The load of the computer was: 2-3xterms, 1 Konversation irc client
,several opera9.51 windows, 1-2 konqueror windows, and 1-2 Firefox
widows. I have a dual core box with 2GB of memory and i use freebsd7
32bit. The computer was online for 8hours with almost the same load
{minus the compilation-procedure}.

* Has anyone had problems like this?
* What can i do to investigate a bit more what was the situation
before the restart?
* Is there anyway to solve this problem.


thanks for your help,
nikos

PS: i could blame the power company but the above problem has happened
before{several times} when i tried to compile big programs like
firefox or do a pkgdb -Fu, so i don't think it is this.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: weird restarts when compiling

2008-07-13 Thread Aggelidis Nikos
Thanks for your answers Manolis and Mike. In the beginning i didn't
suspect hardware because it happened only at compilation procedures.
Now i realize that every other task i do isn't really demanding.

 Look through /var/log/messages.
i get this: Jul 13 09:00:00 apollo newsyslog[1018]: logfile turned
over due to size100K

* CPU overheating
- Is there anyway to check for cpu temperatures within freebsd?
- I 've used the pc for like 8 hours in a really hot day but it
didn't restart...if this can be considered as an indication.

*Memory
- i used memtest ,from an ubuntu live cd, to check the memory and
everything works fine according to it.

*PSU
I have a 400Watt PSU... maybe this is inadequate. I will try to swap
it for something stronger to see how it goes.

In general where are there any stress tests i can do, to test the PSU
and some major subsystems of the computer?

thanks in advance,
nikos

PS: this was a ready-made pc that had it's p4 processor upgraded to a
dual core. It also got a new motherboard and 2G of ddr2. It has an old
nvidia GeForce fx 5200, and a 400watt nameless PSU. I only have
freebsd,which i installed a month ago, on it.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: weird restarts when compiling

2008-07-13 Thread Aggelidis Nikos
Since i can't buy a new PSU today... I kept testing:

i tried compile


and i got a reboot again:

this time i checked /var/log/messages and i have this:

...
Jul 13 13:41:20 apollo syslogd: kernel boot file is /boot/kernel/kernel
Jul 13 13:41:20 apollo kernel: panic: vm_fault: fault on nofault
entry, addr: c3a16000
Jul 13 13:41:20 apollo kernel: cpuid = 0
Jul 13 13:41:20 apollo kernel: Uptime: 4h50m11s
Jul 13 13:41:20 apollo kernel: Physical memory: 2035 MB
Jul 13 13:41:20 apollo kernel: Dumping 218 MB: 203 187 171 155 139 123
107 91 75 59 43 27 11Copyrigh
t (c) 1992-2008 The FreeBSD Project.
...

i also installed xmbmon to measure temperatures... i haven't seen
anything above 60C so i guess it isn't the BIOS rebooting the computer
due to cpu temperature..
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: weird restarts when compiling

2008-07-13 Thread Aggelidis Nikos
running mprime-torture i get:

Beginning a continuous self-test to check your computer.
Please read stress.txt.  Hit ^C to end this test.
Test 1, 4000 Lucas-Lehmer iterations of M19922945 using 1024K FFT length.
Test 2, 4000 Lucas-Lehmer iterations of M19922943 using 1024K FFT length.
Test 3, 4000 Lucas-Lehmer iterations of M19374367 using 1024K FFT length.
Test 4, 4000 Lucas-Lehmer iterations of M19174369 using 1024K FFT length.
FATAL ERROR: Rounding was 0.5, expected less than 0.4
Hardware failure detected, consult stress.txt file.
Torture Test ran 9 minutes - 1 errors, 0 warnings.

so maybe it isn't even a psu problem but a cpu one?

I'd make a list of what your voltages are (go into the BIOS and see) and 
provide them here.

i will do that.

thanks everyone for your assistance so far!
-nikos
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: weird restarts when compiling

2008-07-13 Thread Aggelidis Nikos

 Not really. All modern CPUs have  BIST (built-in self tests) that run even
 before the BIOS starts, and it would be really rare to actually have a
 working system with a faulty CPU. Errors in mprime usually indicate some
 other problem, such as bad memory, bad BIOS settings, overheating or an
 incompatibility of CPU/motherboard etc.
 Going back to what you said previously, you got an Nvidia 5200 graphics
 card? Were these ever produced for PCI express or are you using a) a normal
 PCI one or b)You got one of these weird mobos that have both AGP and PCI
 express? As I understand there are no AGP-only motherboards for core2duo.
Yes i have a weird mobo that has both AGP and PCI. The nvidia is an AGP one.
The mobo wasn't my choise :( but when the changed the false cpu with a
dual core they didn't want to
change the graphics card as well.

Can this mobo create problems?

 Another thought: Sometimes  the CPU cooler is not entirely seated, resulting
 in bad thermal contact of the heatsink/CPU assembly. This is not unusual in
 the 775 socket since the mechanism requires quite some pressure to lock and
 some people are afraid to apply it ;)


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


Re: usb mouse is detected by fbsd 7 but not X

2008-06-30 Thread Aggelidis Nikos
I had the same problem when 2 weeks ago i installed FreeBSD7.

the solution was:

# Xorg -configure to create an default xorg.conf file.

{http://www.freebsd.org/doc/en/books/handbook/x-config.html}

Apparently for the mouse to work it needs a default{at least} xorg.conf file.

-nicolas

PS: If this is regular behaviour of X11 shouldn't a note be made in
the handbook?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]