remove all ports

2011-05-08 Thread Dino Vliet
Hi freebsd people,
just to make sure I don't end up with a unworkable system I want to ask the 
list if I'm on the right track.

I have this workstation running FreeBSD 8.1 and have used it as an 
application/database server for most of the last 2 years. Do to my assignment 
being finished I want to rearrange stuff, without going to a re-install as 
everything has been setup to my liking (gmirror etc etc).

Over time a few ports  were installed, for which I have no use now. I figured 
out the alternatives I have are:

A) remove all ports Except the ones I would like to keep
B) remove all ports and then
 reinstall the ports that I would like to keep

What are the commands for option A en B (assuming bash, weka, postgresql*, 
screen, gawk, rsync, jdk would have to
 stay?)

For option A I tried pkg_deinstall -r xorg-minimal-7.5.1 but only that port got 
removed and not the ports I found after I did pkg_info -r xorg-minimal-7.5.1

Brgds
Dino

___
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


how to concatenate 2 pdf files to 1?

2011-04-29 Thread Dino Vliet
Dear freebsd userlist,
here an application type of question. I have two pdf files and want to make 1 
out of them by concatenating them. Does anyone have an idea how to do that on 
unix/linux as I don't have the pdf editor from Adobe.

So fileA.pd en fileB.pdf should become fileC.pdf (where C is A+B)

Brgds
Dino
___
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


shell programming question: help with expr command

2011-04-09 Thread Dino Vliet
Hi folks,
I'm having trouble with a little shell script. Can somebody explain me why I 
get 3 times expr: syntax  error in my console after I run this little script?

#! /usr/local/bin/bash
# testscript 

var1=trees.J48 #other value will be rules.Jrip, rules.DecisionTable
len=${#var1}
ind=`expr index $var1 s`
pos=`expr $len - $ind`
out=`expr substr $var1 $ind $pos` 

I would expect (and want the following to happen):

$ind should contain 6
$pos should contain 3
$out should contain J48 (other values will have to be Jrip,DecisionTable)

Can anyone help me with this?

Thanks

___
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


thread cpu time measurement is not supported (java application weka error message)

2010-08-05 Thread Dino Vliet
Folks,
when running an experiment in weka in freebsd ports I get this error:
thread cpu time measurement is not supported
In the console I see this:
ava.lang.UnsupportedOperationException: Thread CPU time measurement is not 
supported        
sun.management.ThreadImpl.isThreadCpuTimeEnabled(ThreadImpl.java:80)        
weka.experiment.ClassifierSplitEvaluator.getResult(ClassifierSplitEvaluator.java:685)  
      
weka.experiment.CrossValidationResultProducer.doRun(CrossValidationResultProducer.java:367)  
      
weka.experiment.AveragingResultProducer.doRun(AveragingResultProducer.java:296)  
      weka.experiment.Experiment.nextIteration(Experiment.java:539)        
weka.gui.experiment.RunPanel$ExperimentRunner.run(RunPanel.java:181)
        at 
sun.management.ThreadImpl.isThreadCpuTimeEnabled(ThreadImpl.java:80)        at 
weka.experiment.ClassifierSplitEvaluator.getResult(ClassifierSplitEvaluator.java:685)  
      at 
weka.experiment.CrossValidationResultProducer.doRun(CrossValidationResultProducer.java:367)  
      at 
weka.experiment.AveragingResultProducer.doRun(AveragingResultProducer.java:296)  
      at weka.experiment.Experiment.nextIteration(Experiment.java:539)        
at weka.gui.experiment.RunPanel$ExperimentRunner.run(RunPanel.java:181)Done...
My java environment is:
weka-3.6.3javavmwrapper-2.3.5jdk-1.6.0.3p4_15
What seems to be the problem 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


how to parse output of application?

2010-08-03 Thread Dino Vliet
Dear freebsd list,

Can you help me with this task I have? I have a lot of files in a subdirectory 
containing the following text:

Correctly Classified Instances 3018117   56.6808 %
Incorrectly Classified Instances   2306643   43.3192 %
Kappa statistic  0.2443
Mean absolute error  0.4304
Root mean squared
 error  0.4586
Relative absolute error    124.1251 %
Root relative squared error    110.1308 %
Total Number of Instances  5324760 


=== Detailed Accuracy By Class ===

TP Rate   FP Rate   Precision   Recall  F-Measure   ROC Area  Class
  0.618 0.343  0.681 0.618 0.648  0.697    1
  0.519 0.244  0.617
 0.519 0.564  0.693    2
  0.296 0.141  0.056 0.296 0.094  0.66 3


=== Confusion Matrix ===

   a   b   c   -- classified as
 1784321  684983  416649 |   a = 1
  787342 1190428  314537 |   b = 2
   49255   53877   43368 |   c = 3

I need to parse this file to get in a csv file the following information:

Correctly Classified Instances, Kappa statistic, Total Number of Instances, 
Precision {1}, Recall {1}, F-Measure
 {1},Precision {2}, Recall {2}, F-Measure {2},Precision {3}, Recall {3}, 
F-Measure {3},a,b,c,a,b,c,a,b,c
56.6808,
 0.2443, 5324760, 0.681,0.618,0.648,0.617,0.519,0.564, 
0.056,0.296,0.094,1784321,684983,416649,787342,1190428,314537,49255,53877,43368

Does anyone have an idea how this could be accomplished?

I not that great in programming so writing a ruby or shell script do do this 
would take me weeks:-(

Thanks
Dino



___
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


system is under attack (what can I do more?)

2010-06-18 Thread Dino Vliet
Dear freebsd list,
My server, which is a amd64 system running freebsd 8.0 is currently under 
attack from a botnet or something. Take a look at my /var/log/auth.log file:

Jun 18 12:00:00 dual newsyslog[34486]: logfile turned over due to size100K
Jun 18 12:00:44 dual sshd[34500]: Address 78.5.23.41 maps to 
78-5-23-41-static.albacom.net, but this does not map back to the address - 
POSSIBLE BREAK-IN ATTEMPT!
Jun 18 12:00:44 dual sshd[34500]: Invalid user po from 78.5.23.41
Jun 18 12:00:44 dual sshd[34500]: error: PAM: authentication error for illegal 
user po from 78.5.23.41
Jun 18 12:00:44 dual sshd[34500]: Failed keyboard-interactive/pam for invalid 
user po from 78.5.23.41 port 1 ssh2
Jun 18 12:02:17 dual sshd[34503]: Invalid user pol from 211.138.112.241
Jun 18 12:02:17 dual sshd[34503]: error: PAM: authentication error for illegal 
user pol from 211.138.112.241
Jun 18 12:02:17 dual sshd[34503]: Failed keyboard-interactive/pam for invalid 
user pol from 211.138.112.241 port 59172 ssh2
Jun 18 12:03:36 dual sshd[34506]: Invalid user polo from 210.59.145.5
Jun 18 12:03:36 dual sshd[34506]: error: PAM: authentication error for illegal 
user polo from 210.59.145.5
Jun 18 12:03:36 dual sshd[34506]: Failed keyboard-interactive/pam for invalid 
user polo from 210.59.145.5 port 56517 ssh2
Jun 18 12:04:34 dual sshd[34509]: Invalid user poning from 58.68.131.50
Jun 18 12:04:35 dual sshd[34509]: error: PAM: authentication error for illegal 
user poning from 58.68.131.50
Jun 18 12:04:35 dual sshd[34509]: Failed keyboard-interactive/pam for invalid 
user poning from 58.68.131.50 port 55580 ssh2
Jun 18 12:06:11 dual sshd[34514]: User pop from 220.191.131.209 not allowed 
because not listed in AllowUsers
Jun 18 12:06:12 dual sshd[34514]: error: PAM: authentication error for illegal 
user pop from 220.191.131.209
Jun 18 12:06:12 dual sshd[34514]: Failed keyboard-interactive/pam for invalid 
user pop from 220.191.131.209 port 50786 ssh2
Jun 18 12:08:44 dual sshd[34517]: Invalid user popo from 92.79.130.80
Jun 18 12:08:44 dual sshd[34517]: error: PAM: authentication error for illegal 
user popo from 92.79.130.80
Jun 18 12:08:44 dual sshd[34517]: Failed keyboard-interactive/pam for invalid 
user popo from 92.79.130.80 port 34021 ssh2
Jun 18 12:08:51 dual sshd[34520]: User pop from 190.41.164.23 not allowed 
because not listed in AllowUsers
Jun 18 12:08:52 dual sshd[34520]: error: PAM: authentication error for illegal 
user pop from 190.41.164.23
Jun 18 12:08:52 dual sshd[34520]: Failed keyboard-interactive/pam for invalid 
user pop from 190.41.164.23 port 26359 ssh2
Jun 18 12:10:30 dual sshd[34525]: Invalid user poppy from 222.68.200.116
Jun 18 12:10:31 dual sshd[34525]: error: PAM: authentication error for illegal 
user poppy from 222.68.200.116
Jun 18 12:10:31 dual sshd[34525]: Failed keyboard-interactive/pam for invalid 
user poppy from 222.68.200.116 port 56770 ssh2
Jun 18 12:11:56 dual sshd[34540]: Invalid user porno from 81.74.38.142
Jun 18 12:11:56 dual sshd[34540]: error: PAM: authentication error for illegal 
user porno from 81.74.38.142
Jun 18 12:11:56 dual sshd[34540]: Failed keyboard-interactive/pam for invalid 
user porno from 81.74.38.142 port 10478 ssh2
Jun 18 12:13:05 dual sshd[34543]: Invalid user port from 62.218.125.149
Jun 18 12:13:05 dual sshd[34543]: error: PAM: authentication error for illegal 
user port from 62.218.125.149
Jun 18 12:13:05 dual sshd[34543]: Failed keyboard-interactive/pam for invalid 
user port from 62.218.125.149 port 54959 ssh2
Jun 18 12:14:13 dual sshd[34546]: Invalid user portal from 195.5.12.170
Jun 18 12:14:13 dual sshd[34546]: error: PAM: authentication error for illegal 
user portal from 195.5.12.170
Jun 18 12:14:13 dual sshd[34546]: Failed keyboard-interactive/pam for invalid 
user portal from 195.5.12.170 port 59904 ssh2
Jun 18 12:15:53 dual sshd[34551]: Invalid user portal from 201.24.215.217
Jun 18 12:15:53 dual sshd[34551]: error: PAM: authentication error for illegal 
user portal from 201.24.215.217
Jun 18 12:15:53 dual sshd[34551]: Failed keyboard-interactive/pam for invalid 
user portal from 201.24.215.217 port 61107 ssh2
Jun 18 12:18:20 dual sshd[34554]: Invalid user pos from 211.97.71.218
Jun 18 12:18:21 dual sshd[34554]: error: PAM: authentication error for illegal 
user pos from 211.97.71.218
Jun 18 12:18:21 dual sshd[34554]: Failed keyboard-interactive/pam for invalid 
user pos from 211.97.71.218 port 53424 ssh2
Jun 18 12:19:28 dual sshd[34557]: Invalid user pos from 200.171.22.80
Jun 18 12:19:28 dual sshd[34557]: error: PAM: authentication error for illegal 
user pos from 200.171.22.80
Jun 18 12:19:28 dual sshd[34557]: Failed keyboard-interactive/pam for invalid 
user pos from 200.171.22.80 port 56309 ssh2
Jun 18 12:21:12 dual sshd[34562]: Invalid user postfix from 165.98.133.98
Jun 18 12:21:12 dual sshd[34562]: error: PAM: authentication error for illegal 
user postfix from up.upoli.edu.ni
Jun 18 12:21:12 dual sshd[34562]: Failed keyboard-interactive/pam 

question regarding FTP_PROXY

2010-05-22 Thread Dino Vliet
Hi freebsd folks,

I'm having troubles installing some ports because I'm behind a restrictive pf 
firewall. I've heard that this could
be circumvented if I use a ftp_proxy. I have this debian server that can access 
ftp sites and I installed vsftp on
that and checked I can get to that box with ftp.

However, if I try this command from my freebsd box:

fetch: ftp://ftp.uni-erlangen.de/pub/utilities/screen/screen-4.0.3.tar.gz

I get:

Not logged in

My ftp proxy environment variable in .profile is:

FTP_PROXY=ftp://ftp:f...@192.168.2.101:21 (also tried with only 
ftp://192.168.2.101:21 but no luck)
export FTP_PROXY

Can anyone help me with this?
Thanks
Dino



  
___
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: [kde-freebsd] Stop in /usr/ports/devel/qt4-assistant

2010-05-15 Thread Dino Vliet






From: Max Brazhnikov m...@issp.ac.ru
To: kde-free...@kde.org
Cc: Dino Vliet dino_vl...@yahoo.com; freebsd-questions@freebsd.org; 
k...@freebsd.org
Sent: Fri, May 14, 2010 11:59:10 AM
Subject: Re: [kde-freebsd] Stop in /usr/ports/devel/qt4-assistant

On Thu, 13 May 2010 03:54:46 -0700 (PDT), Dino Vliet wrote:
 Hi people,
 
 I get this error when trying to install kde4 on my amd64 system. I had
  everything removed first (I didn't like the way I have installed it in the
  past) with pkg_delete -fxvir  kde and qt.
 
 The error I get is:
 
 Script started on Thu May 13 12:41:26 2010
 cd /usr/ports/x11/kde4
 weka# make install distclean
I would not recommend to use make install for kde4 or any other dependency-
heavy port. Take a look on ports-mgmt/portmaster (or portupgrade).

 ===   kdelibs-4.4.3 depends on executable: bison - found
 ===   kdelibs-4.4.3 depends on file: /usr/local/bin/assistant-qt4 - not
  found ===Verifying install for /usr/local/bin/assistant-qt4 in
  /usr/ports/devel/qt4-assistant ===  Building for qt4-assistant-4.6.2
 g++
  -Wl,-rpath-link,/usr/ports/devel/qt4-assistant/work/qt-everywhere-opensour
 ce-src-4.6.2/lib -Wl,-O1 -pthread -Wl,-rpath,/usr/local/lib/qt4
  -Wl,-rpath,/usr/local/lib/qt4 -o ../../../../bin/assistant-qt4
  .obj/release-shared/fontpanel.o  .obj/release-shared/helpviewer.o 
  .obj/release-shared/main.o  .obj/release-shared/mainwindow.o 
  .obj/release-shared/indexwindow.o  .obj/release-shared/topicchooser.o 
  .obj/release-shared/contentwindow.o  .obj/release-shared/searchwidget.o 
  .obj/release-shared/preferencesdialog.o 

Clean up ports work directories before installing/upgrading ports.

Max



Hi Max,

I did and the process went further but now I'm experiencing another problem:

===  Extracting for kdegraphics-4.4.3
= MD5 Checksum OK for KDE/kdegraphics-4.4.3.tar.bz2.
= SHA256 Checksum OK for KDE/kdegraphics-4.4.3.tar.bz2.
/bin/mkdir -p /usr/ports/graphics/kdegraphics4/work/kdegraphics-4.4.3/build
===  Patching for kdegraphics-4.4.3
===  Applying FreeBSD patches for kdegraphics-4.4.3
/usr/bin/find /usr/ports/graphics/kdegraphics4/work/kdegraphics-4.4.3 -type f 
-name CMakeLists.txt | /usr/bin/xargs  /usr/bin/sed -i.bak -e 
's|pkgconfig|../libdata/pkgconfig|'
===   kdegraphics-4.4.3 depends on executable: kpsewhich - found
===   kdegraphics-4.4.3 depends on executable: gmake - found
===   kdegraphics-4.4.3 depends on file: /usr/local/lib/qt4/libQtGui.so - found
===   kdegraphics-4.4.3 depends on file: 
/usr/local/lib/qt4/plugins/iconengines/libqsvgicon.so - found
===   kdegraphics-4.4.3 depends on file: /usr/local/bin/moc-qt4 - found
===   kdegraphics-4.4.3 depends on file: /usr/local/lib/qt4/libQtOpenGL.so - 
found
===   kdegraphics-4.4.3 depends on file: /usr/local/bin/pixeltool - found
===   kdegraphics-4.4.3 depends on file: /usr/local/bin/qmake-qt4 - found
===   kdegraphics-4.4.3 depends on file: /usr/local/bin/rcc - found
===   kdegraphics-4.4.3 depends on file: /usr/local/lib/qt4/libQtSvg.so - found
===   kdegraphics-4.4.3 depends on file: /usr/local/bin/uic-qt4 - found
===   kdegraphics-4.4.3 depends on file: /usr/local/bin/automoc4 - found
===   kdegraphics-4.4.3 depends on file: /usr/local/bin/cmake - found
===   kdegraphics-4.4.3 depends on executable: gs - found
===   kdegraphics-4.4.3 depends on shared library: art_lgpl_2.5 - found
===   kdegraphics-4.4.3 depends on shared library: fontconfig.1 - found
===   kdegraphics-4.4.3 depends on shared library: freetype.9 - found
===   kdegraphics-4.4.3 depends on shared library: fribidi.3 - found
===   kdegraphics-4.4.3 depends on shared library: lcms.1 - found
===   kdegraphics-4.4.3 depends on shared library: paper.2 - found
===   kdegraphics-4.4.3 depends on shared library: poppler-qt4.3 - found
===   kdegraphics-4.4.3 depends on shared library: exiv2.7 - found
===   kdegraphics-4.4.3 depends on shared library: chm.0 - found
===   kdegraphics-4.4.3 depends on shared library: sane.1 - found
===   kdegraphics-4.4.3 depends on shared library: gphoto2.2 - found
===   kdegraphics-4.4.3 depends on shared library: djvulibre.22 - found
===   kdegraphics-4.4.3 depends on shared library: qimageblitz.4 - found
===   kdegraphics-4.4.3 depends on shared library: spectre.1 - found
===   kdegraphics-4.4.3 depends on shared library: qca.2 - found
===   kdegraphics-4.4.3 depends on shared library: epub.0 - found
===   kdegraphics-4.4.3 depends on shared library: glut.3 - found
===   kdegraphics-4.4.3 depends on shared library: kimproxy.5 - found
===  Configuring for kdegraphics-4.4.3
/bin/mkdir -p /usr/ports/graphics/kdegraphics4/work/kdegraphics-4.4.3/build
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check

Stop in /usr/ports/devel/qt4-assistant

2010-05-13 Thread Dino Vliet
Hi people,

I get this error when trying to install kde4 on my amd64 system. I had 
everything removed first (I didn't like the way I have installed it in the 
past) with pkg_delete -fxvir  kde and qt.

The error I get is:

Script started on Thu May 13 12:41:26 2010
cd /usr/ports/x11/kde4
weka# make install distclean

===   kde4-4.4.3 depends on file: /usr/local/kde4/bin/kdebugdialog - not found
===Verifying install for /usr/local/kde4/bin/kdebugdialog in 
/usr/ports/x11/kdebase4-runtime
===   kdebase-runtime-4.4.3 depends on executable: gmake - found
===   kdebase-runtime-4.4.3 depends on file: /usr/local/lib/qt4/libQtCore.so - 
found
===   kdebase-runtime-4.4.3 depends on file: /usr/local/lib/qt4/libQtDBus.so - 
found
===   kdebase-runtime-4.4.3 depends on file: /usr/local/bin/moc-qt4 - found
===   kdebase-runtime-4.4.3 depends on file: /usr/local/lib/qt4/libQtOpenGL.so 
- not found
===Verifying install for /usr/local/lib/qt4/libQtOpenGL.so in 
/usr/ports/x11/qt4-opengl
===   Returning to build of kdebase-runtime-4.4.3
===   kdebase-runtime-4.4.3 depends on file: /usr/local/lib/qt4/libphonon.so - 
not found
===Verifying install for /usr/local/lib/qt4/libphonon.so in 
/usr/ports/multimedia/phonon
===   Returning to build of kdebase-runtime-4.4.3
===   kdebase-runtime-4.4.3 depends on file: /usr/local/bin/qmake-qt4 - found
===   kdebase-runtime-4.4.3 depends on file: /usr/local/bin/rcc - found
===   kdebase-runtime-4.4.3 depends on file: /usr/local/bin/uic-qt4 - found
===   kdebase-runtime-4.4.3 depends on file: /usr/local/bin/automoc4 - not 
found
===Verifying install for /usr/local/bin/automoc4 in 
/usr/ports/devel/automoc4
===   Returning to build of kdebase-runtime-4.4.3
===   kdebase-runtime-4.4.3 depends on file: /usr/local/bin/cmake - found
===   kdebase-runtime-4.4.3 depends on shared library: xine.1 - found
===   kdebase-runtime-4.4.3 depends on shared library: slp.1 - found
===   kdebase-runtime-4.4.3 depends on shared library: attica.0 - found
===   kdebase-runtime-4.4.3 depends on shared library: ssh.4 - found
===   kdebase-runtime-4.4.3 depends on shared library: lzma.0 - found
===   kdebase-runtime-4.4.3 depends on shared library: intl - found
===   kdebase-runtime-4.4.3 depends on shared library: kimproxy.5 - not found
===Verifying install for kimproxy.5 in /usr/ports/x11/kdelibs4
===   kdelibs-4.4.3 depends on file: /usr/local/lib/libhspell.a - found
===   kdelibs-4.4.3 depends on file: 
/usr/local/share/ontology/core/rdf.ontology - found
===   kdelibs-4.4.3 depends on executable: gmake - found
===   kdelibs-4.4.3 depends on executable: bison - found
===   kdelibs-4.4.3 depends on file: /usr/local/bin/assistant-qt4 - not found
===Verifying install for /usr/local/bin/assistant-qt4 in 
/usr/ports/devel/qt4-assistant
===  Building for qt4-assistant-4.6.2
g++ 
-Wl,-rpath-link,/usr/ports/devel/qt4-assistant/work/qt-everywhere-opensource-src-4.6.2/lib
 -Wl,-O1 -pthread -Wl,-rpath,/usr/local/lib/qt4 -Wl,-rpath,/usr/local/lib/qt4 
-o ../../../../bin/assistant-qt4 .obj/release-shared/fontpanel.o  
.obj/release-shared/helpviewer.o  .obj/release-shared/main.o  
.obj/release-shared/mainwindow.o  .obj/release-shared/indexwindow.o  
.obj/release-shared/topicchooser.o  .obj/release-shared/contentwindow.o  
.obj/release-shared/searchwidget.o  .obj/release-shared/preferencesdialog.o  
.obj/release-shared/filternamedialog.o  .obj/release-shared/centralwidget.o  
.obj/release-shared/installdialog.o  .obj/release-shared/bookmarkmanager.o  
.obj/release-shared/remotecontrol.o  .obj/release-shared/cmdlineparser.o  
.obj/release-shared/aboutdialog.o  .obj/release-shared/qtdocinstaller.o  
.obj/release-shared/moc_fontpanel.o  .obj/release-shared/moc_helpviewer.o  
.obj/release-shared/moc_mainwindow.o 
 .obj/release-shared/moc_indexwindow.o  .obj/release-shared/moc_topicchooser.o  
.obj/release-shared/moc_contentwindow.o  .obj/release-shared/moc_searchwidget.o 
 .obj/release-shared/moc_preferencesdialog.o  
.obj/release-shared/moc_filternamedialog.o  
.obj/release-shared/moc_centralwidget.o  
.obj/release-shared/moc_installdialog.o  
.obj/release-shared/moc_bookmarkmanager.o  
.obj/release-shared/moc_remotecontrol.o  .obj/release-shared/moc_aboutdialog.o  
.obj/release-shared/moc_qtdocinstaller.o  .obj/release-shared/qrc_assistant.o  
.obj/release-shared/qrc_assistant_images.o-L/usr/local/lib/qt4 
-L/usr/ports/devel/qt4-assistant/work/qt-everywhere-opensource-src-4.6.2/lib 
-L/usr/local/lib 
-L/usr/ports/devel/qt4-assistant/work/qt-everywhere-opensource-src-4.6.2/plugins/sqldrivers
 -lQtHelp -L/usr/local/lib/qt4 
-L/usr/ports/devel/qt4-assistant/work/qt-everywhere-opensource-src-4.6.2/lib 
-L/usr/local/lib -lQtWebKit -lphonon -lQtXmlPatterns -lQtSql -lQtXml
 -lQtGui -lQtNetwork -lQtCore
/usr/bin/ld: cannot find -lQtHelp
*** Error code 1
1 error
*** Error code 1

Stop in /usr/ports/devel/qt4-assistant.
*** Error code 1

Stop in /usr/ports/x11/kdelibs4.
*** Error code 1

Stop in 

error upgrading kdeedu4

2010-04-01 Thread Dino Vliet
Hi people,
portupgrade kdeedu gives the following error:

Warning: name horizontalSpacer_2 is already used
[ 92%] Generating chemset.cmi
[ 92%] Generating chemset.cmx
[ 92%] Generating parser.cmi
[ 92%] Generating parser.cmx
[ 92%] Generating lexer.cmx
[ 92%] Generating datastruct.cmi
[ 92%] Generating datastruct.cmx
[ 92%] Generating chem.cmi
[ 92%] Generating chem.cmx
File /usr/ports/misc/kdeedu4/work/kdeedu-4.3.5/kalzium/src/solver/chem.ml, 
line 54, characters 43-54:
Warning Y: unused variable nb_elements.
[ 92%] Generating calc.cmi
[ 92%] Generating calc.cmx
[ 92%] Generating solver.o
File _none_, line 1, characters 0-1:
Error: Files /usr/local/lib/ocaml/facile/facile.cmxa
   and /usr/local/lib/ocaml/stdlib.cmxa
   make inconsistent assumptions over interface Buffer
*** Error code 2

Stop in /usr/ports/misc/kdeedu4/work/kdeedu-4.3.5/build.
*** Error code 1

Stop in /usr/ports/misc/kdeedu4/work/kdeedu-4.3.5/build.
*** Error code 1

Stop in /usr/ports/misc/kdeedu4/work/kdeedu-4.3.5/build.
*** Error code 1

Stop in /usr/ports/misc/kdeedu4.
** Command failed [exit code 1]: /usr/bin/script -qa 
/tmp/portupgrade20100401-6702-pjyjgo-0 env UPGRADE_TOOL=portupgrade 
UPGRADE_PORT=kdeedu-4.3.5 UPGRADE_PORT_VER=4.3.5 make
** Fix the problem and try again.
** Listing the failed packages (-:ignored / *:skipped / !:failed)
! misc/kdeedu4 (kdeedu-4.3.5)   (unknown build error)


What do I do now? 
I have a amd64 system running freebsd 8. 
pkg_info gives:ORBit2-2.14.17  High-performance CORBA ORB with support for 
the C language
OpenEXR-1.6.1_2 A high dynamic-range (HDR) image file format  
R-2.10.1_4  A language for statistical computing and graphics 
aalib-1.4.r5_4  An ascii art library  
aiksaurus-1.2.1_2   A set of libraries and applications which provide a thesaur
akonadi-1.2.1_2 Storage server for kdepim  
amspsfnt-1.0_5  AMSFonts PostScript Fonts (Adobe Type 1 format)
apr-ipv6-gdbm-db42-1.3.9.1.3.9_1 Apache Portability Library
aspell-0.60.6_2 Spelling checker with better suggestion logic than ispell  
atk-1.28.0  A GNOME accessibility toolkit (ATK)
autoconf-2.62   Automatically configure source code on many Un*x platforms 
autoconf-wrapper-20071109 Wrapper script for GNU autoconf  
automake-1.10.1 GNU Standards-compliant Makefile generator (1.10)  
automake-1.5_5,1GNU Standards-compliant Makefile generator (1.5)   
automake-1.9.6_3GNU Standards-compliant Makefile generator (1.9)   
automake-wrapper-20071109 Wrapper script for GNU automake  
automoc4-0.9.88_1   Automatic moc for Qt 4 packages
avahi-app-0.6.25_2  Service discovery on a local network   
bash-4.0.35 The GNU Project's Bourne Again SHell   
bdftopcf-1.0.1  Convert X font from BDF to PCF 
bigreqsproto-1.0.2  BigReqs extension headers  
binutils-2.20.1 GNU binary tools   
bison-2.4.1,1   A parser generator from FSF, (mostly) compatible with Yacc 
bitstream-vera-1.10_4 Bitstream Vera TrueType font collection  
blas-1.0_4  Basic Linear Algebra, level 1, 2, and 3
boost-jam-1.41.0Build tool from the boost.org  
boost-libs-1.41.0_1 Free portable C++ libraries (without Boost.Python) 
boost-python-libs-1.41.0 Framework for interfacing Python and C++  
ca_root_nss-3.12.4  The root certificate bundle from the Mozilla Project   
cabextract-1.2  A program to extract Microsoft cabinet (.CAB) files
cairo-1.8.8_1,1 Vector graphics library with cross-device output support   
cdparanoia-3.9.8_8  A CDDA extraction tool (also known as ripper)  
cfitsio-3.100_1 Library for reading and writing files in FITS data format  
chmlib-0.40 A library for dealing with Microsoft ITSS/CHM format files 
cln-1.3.1   Class Library for Numbers  
clucene-0.9.21  CLucene is a C++ port of Lucene
cm-super-0.3.4_3Computer Modern Font Families in Type 1 Fonts  
cmake-2.8.0_3   A cross-platform Makefile generator
cmpsfont-1.0_6  Computer Modern PostScript Fonts (Adobe Type 1 format) 
compat7x-amd64-7.2.702000.200906.1 A convenience package to install the 
compat7x libraries
compositeproto-0.4  Composite extension headers 
  
consolekit-0.4.1_2  Framework for defining and tracking users   
  
cups-client-1.4.2_4 Common UNIX Printing System: Library cups   
  
cups-image-1.4.2_5  Common 

Re: Thousands of ssh probes

2010-03-05 Thread Dino Vliet
Thousands of ssh probes
Friday, March 5, 2010 1:54 PM
From: 
John j...@starfire.mn.org
To: 
freebsd-questions@freebsd.org
My nightly security logs have thousands upon thousands of ssh probes
in them.  One day, over 6500.  This is enough that I can actually
feel it in my network performance.  Other than changing ssh to
a non-standard port - is there a way to deal with these?  Every
day, they originate from several different IP addresses, so I can't
just put in a static firewall rule.  Is there a way to get ssh
to quit responding to a port or a way to generate a dynamic pf
rule in cases like this?
-- 

John Lind
j...@starfire.mn.org

*
Hi John,
I'm using pf as a firewall on FreeBSD. I used this handy website:
http://www.bgnett.no/~peter/pf/en/bruteforce.html and especially this part:

max-src-conn is the number of simultaneous connections you allow from one host. 
In this example, I've set it at 100, in your setup you may want a slightly 
higher or lower value.

max-src-conn-rate is the rate of new connections allowed from any single host, 
here 15 connections per 5 seconds. Again, you are the one to judge what suits 
your setup.

I then looked at ssh itself. Key-based authentication only is what I'm allowing 
on my network now and I have put the AllowUsers directive in my sshd_config.
At the moment I'm so paranoid that I'm reading into this Mandatory Access 
Control part of the handbook as well.
Good luck,Dino



  
___
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


libswt on amd64 freebsd 8.0

2010-02-17 Thread Dino Vliet
Hi folks,
My current machine is a amd64 system running freebsd 8.0. For a java 
application I need libswt and wanted to know if there is a native version for 
freebsd amd64. Also I need to know which port install this library, so what I 
should install to get it.
BrgdsDino




  
___
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


sshd: did this one get a password prompt?

2010-02-12 Thread Dino Vliet
Hi freebsd people,
My sshd_config file doesn' t have root listed in the AllowUsers directive.So 
everytime I see entries like the following in my logs:
Feb 12 01:23:54 dual sshd[11016]: User root from 208.75.83.30 not allowed 
because not listed in AllowUsers
Feb 12 04:07:43 dual sshd[11775]: Did not receive identification string from 
218.65.110.180
Feb 12 04:11:05 dual sshd[11790]: User root from 218.65.110.180 not allowed 
because not listed in AllowUsers

That looks  normal
However,today I saw the following entries in my log:
Did not receive identification string from 202.98.244.20
Feb 12 14:06:12 dual sshd[12837]: User root from 202.98.244.20 not allowed 
because not listed in AllowUsers
Feb 12 14:06:13 dual sshd[12837]: error: PAM: authentication error for illegal 
user root from 202.98.244.20
Feb 12 14:06:13 dual sshd[12837]: Failed keyboard-interactive/pam for invalid 
user root from 202.98.244.20 port 34209 ssh2
Feb 12 14:06:14 dual sshd[12837]: error: PAM: authentication error for illegal 
user root from 202.98.244.20
Feb 12 14:06:14 dual sshd[12837]: Failed keyboard-interactive/pam for invalid 
user root from 202.98.244.20 port 34209 ssh2
Feb 12 14:06:18 dual sshd[12841]: User root from 202.98.244.20 not allowed 
because not listed in AllowUsers
Feb 12 14:06:19 dual sshd[12841]: error: PAM: authentication error for illegal 
user root from 202.98.244.20
Feb 12 14:06:19 dual sshd[12841]: Failed keyboard-interactive/pam for invalid 
user root from 202.98.244.20 port 34245 ssh2
Feb 12 14:06:20 dual sshd[12841]: error: PAM: authentication error for illegal 
user root from 202.98.244.20
Feb 12 14:06:20 dual sshd[12841]: Failed keyboard-interactive/pam for invalid 
user root from 202.98.244.20 port 34245 ssh2


That  scared  me because I didn' t think a root session would get a password 
prompt, because of the fact that I have configured my sshd_config file where 
AllowUsers doesn' t contain root!
The other thing that scared me was that I have this section in my pf file for 
ssh traffic:(max-src-conn 3, max-src-conn-rate 2/30, overload bruteforce 
flush global)
It seems to me that this 202.98.244 violated that long ago but still it lasted 
a few times before this address was added to the bruteforce table.
What do you think?
Thanks in advanced.




___
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


Newbie gmirror questions

2010-01-16 Thread Dino Vliet
Forwarded Message: Newbie gmirror questions
Newbie gmirror questions
Saturday, January 16, 2010 12:34 AM
From: 
Mike Clarke jmc-freeb...@milibyte.co.uk
To: 
freebsd-questions@freebsd.org

I'm about to upgrade to more disk space and I'm tempted use this as an 
opportunity to get two disks and implement gmirror. Before I go ahead 
there's a few aspects of mirroring I'm not sure about and would 
appreciate some advice.

I'm using grub for multi booting. Does this introduce any problems if I 
want to boot into Windows or Linux on one of the other partitions?

The gmirror manpage describes the procedure for handling kernel dumps 
using the prefer balance algorithm in the early stages of booting and 
then switching to round-robin in the /etc/rc.local script. It then goes 
on to say that If on the next boot a component with a higher priority 
will be available, the prefer algorithm will choose to read from it and 
savecore(8) will find nothing. Does this only arise if I've made some 
change to the configuration of the mirror between the dump and the 
reboot or is there some instances when the priority automatically 
changes?

Some of the articles I've read about gmirror suggest setting the balance 
to round-robin while others just leave this at the default setting of 
split. Am I right in assuming that round-robin would give better 
performance, and does it make much noticeable difference in real terms. 
In particular am I likely to see a reduction in performance using 
gmirror compared with what I would get with just a normal single disk.

Finally, recent articles say to set kern.geom.debugflags to 17 when 
creating a mirror on a mounted drive while older articles say to set it 
to 16. Although I'll probably be creating the mirror on my disks before 
copying my system onto them so I don't really need to worry about 
setting this flag but I'm curious to know the difference between using 
the two values.

-- 
Mike Clarke

**
Hi Mike,
I' ve just (ok, two weeks ago) completed a gmirror setup so can tell about what 
I know about this process However, my setup is not the same as yours because I' 
m not in a multi boot situation. I let others give their opinion regarding GRUB.
I do guess that your OS-es are on a separate disk and in FreeBSD you will 
create a mirror with the two identical disks using gmirror. I've used 
round-robin because that's what the handbook suggested.
I used kern.geom.debugflags = 17 because I looked at the handbook and guessed 
the other articles which suggested 16 were not up to date and it worked 
flawlessly.
BrgdsDino




  
___
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


pf headaches: why won' t it let me fetch from ftp servers?

2010-01-07 Thread Dino Vliet
Dear freebsd list,
I have the following pf.conf file:
tcp_services = { ftp, ssh, domain, www, auth, https }
udp_services = { ftp, domain, ntp }
icmp_types   = echoreq
block all
pass inet proto icmp all icmp-type $icmp_types keep state
#pass in proto tcp to any port 22 keep state
pass out proto tcp to any port $tcp_services keep state
#pass out proto tcp to any port 25 keep state
#pass out proto tcp to any port 465 keep state
#pass out proto tcp to any port 587 keep state
pass out proto tcp to any port 5999 keep state
#pass out all keep state
#pass out proto tcp to any keep state
pass out proto udp to any port $udp_services

However,if I try to fetch a file from a ftp server as in the followining 
example:fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/bash/FAQ
I get the result: Operation not permitted
My first question is: What is causing this? If I stop pf, then I' m able to 
fetch it. 
My second question is:Is my ruleset looking fine, as i want to block everything 
and only let some specific services go out. Or need t be tightened more?
BrgdsDino





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


Re: tweak FreeBSD 8 for optimal java/weka performance

2010-01-05 Thread Dino Vliet


--- On Mon, 1/4/10, Greg Lewis gle...@eyesbeyond.com wrote:


From: Greg Lewis gle...@eyesbeyond.com
Subject: Re: tweak FreeBSD 8 for optimal java/weka performance
To: Dino Vliet dino_vl...@yahoo.com
Cc: freebsd-questions@freebsd.org, gle...@freebsd.org, si...@olofsson.de
Date: Monday, January 4, 2010, 11:28 PM


On Mon, Jan 04, 2010 at 06:54:22AM -0800, Dino Vliet wrote:
 Dear freebsd people,
 ?
 in a few days I will install freebsd 8.0 amd64 on my 8GB RAM dual core
 machine and use the system as a application server. I will install
 the /usr/ports/textproc/weka toolkit, a program written in java. I
 will use the diablo jdk port in /usr/ports/java.
 ?
 Due to the nature of the research I will be doing I will need to max
 out my machine for optimal java performance. For example, I will use
 the?-Xmx7g flag frequently to set?the maximun java heap size?to 7GB.
 ?
 Are there any other tweaks I should think of to get as much RAM for
 my java programs?
 Like building custom and small kernel, in order to minimize te size
 of the kernel?
 ?

I'd recommend using openjdk6 instead of Diablo if you want to maximise
performance.  Diablo is getting old and isn't available natively for 8.x
(its runs as a compatible binary with the compat7x port installed).

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

-- 
Greg Lewis                          Email   : gle...@eyesbeyond.com
Eyes Beyond                         Web     : http://www.eyesbeyond.com
Information Technology              FreeBSD : gle...@freebsd.org
Thanks for the advice, but isn't weka depandent on diablo-jdk-1.6.0.07.02_7, so 
I guess I'll have to do something (change makefile to what?) before I install 
weka? 
 
Thanks
Dino



___
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


tweak FreeBSD 8 for optimal java/weka performance

2010-01-04 Thread Dino Vliet
Dear freebsd people,
 
in a few days I will install freebsd 8.0 amd64 on my 8GB RAM dual core machine 
and use the system as a application server. I will install the 
/usr/ports/textproc/weka toolkit, a program written in java. I will use the 
diablo jdk port in /usr/ports/java.
 
Due to the nature of the research I will be doing I will need to max out my 
machine for optimal java performance. For example, I will use the -Xmx7g flag 
frequently to set the maximun java heap size to 7GB.
 
Are there any other tweaks I should think of to get as much RAM for my java 
programs?
Like building custom and small kernel, in order to minimize te size of the 
kernel?
 
Let me know,
thanks in advanced,
Dino



___
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 jail: web and database server config questions

2009-10-13 Thread Dino Vliet

Dear Freebsd people,
 
To consolditae on resources I have configured a machine to run both a web and 
database server (powering my database driven website). 
 
Due to security concerns I'm contemplating on introducing a jailed environment 
on this machine and want to know if this would be feasible. I have a few 
questions for the freebsd community regarding this approach and hope someone 
would give me some advice.
 
Is it advisable/wise/okay/clever to run a webserver on my host system and a 
database server on my jailed system? The webserver will need to connect to the 
database system on startup and update the database based on client access.
 
However, if a machine gets compromised, it would rather be the webserver, 
therefore running the webserver in the jailed environment seems better to me. 
But how could that be done, if the webserver requires to connect through tcp/ip 
to the database server running on the host system? I thought that a key-feature 
of a jailed system is that it can't access resources outside the jail. 
 
And how do I go around when I need to update my host system due to a security 
advisory. I heard the jailed environment will not be affected? So basically 
that means I would need to create a new jail everytime I recompile (as that's 
the way I'm using to stay current)
 
Hope to hear from you,
Brgds
Dino



___
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: tcllib error while installing tcllib on amd64 system running freebsd 7.0

2009-06-11 Thread Dino Vliet


--- On Mon, 6/8/09, Lowell Gilbert freebsd-questions-lo...@be-well.ilk.org 
wrote:

From: Lowell Gilbert freebsd-questions-lo...@be-well.ilk.org
Subject: Re: tcllib error while installing tcllib on amd64 system running 
freebsd 7.0
To: Dino Vliet dino_vl...@yahoo.com
Cc: freebsd-questions@freebsd.org, m...@freebsd.org, m...@aldan.algebra.com
Date: Monday, June 8, 2009, 10:56 PM

Dino Vliet dino_vl...@yahoo.com writes:

 [*   ]  [8.6b1] comm    comm.test!Connect to remote failed: couldn't 
 open socket: connection timed out 

Taking a look in the comm.test file, it looks to me like you already had
something on port 12345, so an attempt to open such a port failed.

-- 
Lowell Gilbert, embedded/networking software engineer, Boston area
        http://be-well.ilk.org/~lowell/


Hi thanks for your answer but I didn't manage to solve this by looking at your 
file.

My open ports:
[r...@dual /usr/ports/devel/tcllib]# netstat -na | grep tcp
tcp4   0  0  192.168.2.103.22   192.168.2.100.43051    ESTABLISHED
tcp4   0  0  127.0.0.1.65033    *.*    LISTEN
tcp4   0  0  192.168.2.103.22   192.168.2.100.43050    ESTABLISHED
tcp4   0  0  127.0.0.1.25   *.*    LISTEN
tcp4   0  0  *.22   *.*    LISTEN
tcp6   0  0  *.22   *.*    LISTEN
tcp4   0  0  127.0.0.1.5432 *.*    LISTEN
tcp6   0  0  ::1.5432   *.*    LISTEN

vi work/tcllib-1.11/modules/comm/comm.test

Going to the port line gives me: (I changed it manually to 47557)

test comm-5.0 {-port already in use} {
    # First start a server on port 12345
    set port 47557
    catch {set shdl [socket -server foo $port]}
    catch {::comm::comm new bar -port $port -listen 1 -local 0} msg
    catch {close $shdl}
    unset -nocomplain shdl port
    set msg
} {couldn't open socket: address already in use}

The error message I get is:

[*   ]  [8.6b1] comm    comm.test!Connect to remote failed: couldn't open 
socket: connection timed out
!while executing
!::comm::comm_cmd_send ::comm::comm 65033 {slaveat 51332}
!(uplevel body line 1)
!invoked from within
!uplevel 1 [linsert $args 0 $method $chan]
!(procedure ::comm::comm line 6)
!invoked from within
!::comm::comm send [lindex $argv 2] [list slaveat [::comm::comm self]]
!(file /usr/ports/devel/tcllib/work/tcllib-1.11/spawn line 9)


Can there be an issue because I have the pf firewall enabled which blocks all?

Brgds
Dino




___
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


tcllib error while installing tcllib on amd64 system running freebsd 7.0

2009-06-06 Thread Dino Vliet
Hi all,

On my AMD 64 system running freebsd 7.0 I try to install tcllib. I have up to 
date ports and have installed tcl86-threaded first. 

pkg_info | grep threads gives:

tcl-threads-8.6.b.1_4 Tool Command Language

Installing tcllib gives the following error:

[ *  ]  [8.6b1] cmdline PASS typed-cmdline-7.30
[ *  ]  [8.6b1] cmdline  typed-cmdline-7.31
[ *  ]  [8.6b1] cmdline PASS typed-cmdline-7.31
[ *  ]  [8.6b1] cmdline  typed-cmdline-7.32
[ *  ]  [8.6b1] cmdline PASS typed-cmdline-7.32
[*   ]  [8.6b1] cmdline  typed-cmdline-7.33
[*   ]  [8.6b1] cmdline PASS typed-cmdline-7.33
[    ]  [8.6b1] cmdline ~~   T   137 P   131 S 6 F 0 
 [*   ]  [8.6b1]
[*   ]  [8.6b1] comm   
[*   ]  [8.6b1] comm    comm.test!Connect to remote failed: couldn't open 
socket: connection timed out 
!while executing 
!::comm::comm_cmd_send ::comm::comm 62029 {slaveat 54030} 
!(uplevel body line 1) 
!invoked from within 
!uplevel 1 [linsert $args 0 $method $chan] 
!(procedure ::comm::comm line 6) 
!invoked from within 
!::comm::comm send [lindex $argv 2] [list slaveat [::comm::comm self]] 
!(file /usr/ports/devel/tcllib/work/tcllib-1.11/spawn line 9) 
^Z^C^Z[1] + Suspended   make install distclean
# exit
You have stopped jobs.
# exit

What is happening here? I hope someone has a clue.

Brgds
Dino




___
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


memtest question on 8 GB RAM AMD64 system

2009-04-09 Thread Dino Vliet
Dear freebsd people,

I have just installed 4 x 2gb kingston memory banks (Kingston HyperX 4GB 800mhz 
DDR2 Non-ECC CL5 (5-5-5-15) DIMM) onto my AMD 64 system with a X2 5200 CPU. The 
motherboard I have in this system is MSI K9AG Neo2-Digital.

The system boots fine and I wanted to try memtest to see if there would be 
errors. So I installed that /usr/ports/sysutils/memtest port and did 

# memtest 2400

The output I got is:
Continuing with unlocked memory; testing will be slower and less reliable.

...
pagesize 4096
pagesizemask is 0xf000
want 2400MB (2516582400 bytes)
got   2400MB (2516582400 bytes), trying mlock ...failed for unknown reason
Loop 1:
.

In my /etc/rc/conf file I had added these lines in the past (when I had 4gb RAM 
installed in it)

sysctl -w kern.ipc.shmmax=1954311424
sysctl -w kern.ipc.shmall=238000

What is the case here? Why is memtest failing to use mlock? How can I 
eventually make sure I can run memtest with 8000mb? 

The purpose of this machine is that it will be used for a various data 
intensive tasks where I need to be able to allocate as much memory possible. I 
am running a postgresql database server on it as well to store my source data.

Brgds
Dino




___
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


kldload: can't load /usr/local/modules/fuse.ko: Exec format error fusefs-ntfs-1.2531

2008-12-03 Thread Dino Vliet
Hi people,

I can't use my maxtor basic 640gb external harddrive on Freebsd amd64 running 
7.0 because when I try to load fusefs with this command, kldload 
/usr/local/modules/fuse.ko I get the following error:

kldload: can't load /usr/local/modules/fuse.ko: Exec format error

Adding fusefs_enable=YES to /etc/rc.conf and fuse_load=YES to 
/boot/loader.conf and rebooting doesn't help either, because then that error 
message is printed on the console.

uname -a gives:
FreeBSD zouk.telfort.nl 7.0-RELEASE-p6 FreeBSD 7.0-RELEASE-p6 #1: Thu Nov 27 
13:42:17 CET 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  amd64

pkg_info | grep fuse gives:

fusefs-kmod-0.3.9.p1.20080208_4 Kernel module for fuse
fusefs-libs-2.7.3   FUSE allows filesystem implementation in userspace
fusefs-ntfs-1.2531  Mount NTFS partitions (read/write) and disk images

Does anyone have a clue as to what is causing this behavior?
I prefer to keep the external harddisk in ntfs format, although I could easily 
reformat it as ufs or ext3 because my whole system environment consists of bsd 
and linux. But I don't know if I will violate maxtor's guarantee.

So I hope someone can help me with this.

Brgds
Dino








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


Re: kldload: can't load /usr/local/modules/fuse.ko: Exec format error fusefs-ntfs-1.253

2008-12-03 Thread Dino Vliet


--- On Wed, 12/3/08, Scot Hetzel [EMAIL PROTECTED] wrote:
From: Scot Hetzel [EMAIL PROTECTED]
Subject: Re: kldload: can't load /usr/local/modules/fuse.ko: Exec format error 
 fusefs-ntfs-1.253
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED], freebsd-questions@freebsd.org, [EMAIL PROTECTED]
Date: Wednesday, December 3, 2008, 12:17 PM

On 12/3/08, Dino Vliet [EMAIL PROTECTED] wrote:
 Hi people,

  I can't use my maxtor basic 640gb external harddrive on Freebsd amd64
running 7.0 because when I try to load fusefs with this command, kldload
/usr/local/modules/fuse.ko I get the following error:

  kldload: can't load /usr/local/modules/fuse.ko: Exec format error

  Adding fusefs_enable=YES to /etc/rc.conf and
fuse_load=YES to /boot/loader.conf and rebooting doesn't help
either, because then that error message is printed on the console.

  uname -a gives:
  FreeBSD zouk.telfort.nl 7.0-RELEASE-p6 FreeBSD 7.0-RELEASE-p6 #1: Thu Nov
27 13:42:17 CET 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC 
amd64

  pkg_info | grep fuse gives:

  fusefs-kmod-0.3.9.p1.20080208_4 Kernel module for fuse
  fusefs-libs-2.7.3   FUSE allows filesystem implementation in userspace
  fusefs-ntfs-1.2531  Mount NTFS partitions (read/write) and disk images

  Does anyone have a clue as to what is causing this behavior?

How did you install the fusefs-kmod was it from a package or did you
build it through the ports system?

The most likely cause of this error is due to the fuse.ko module was
not built against the same source as your kernel.  Rebuild fusefs-kmod
and that should resolve the problem.

Scot

Hi Scot,

I installed it from ports. I think as a dependency on fusefs-ntfs?
I will rebuild my system as I upgraded lately from 6.3 to 7, but 
I'm sure I just followed the handbook and did everything allright.
Will post the results when I try this again afterwards.

Brgds
Dino



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


Re: kldload: can't load /usr/local/modules/fuse.ko: Exec format error fusefs-ntfs-1.2531

2008-12-03 Thread Dino Vliet


--- On Wed, 12/3/08, Kevin Kinsey [EMAIL PROTECTED] wrote:
From: Kevin Kinsey [EMAIL PROTECTED]
Subject: Re: kldload: can't load /usr/local/modules/fuse.ko: Exec format error 
 fusefs-ntfs-1.2531
To: [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Date: Wednesday, December 3, 2008, 3:56 PM

Dino Vliet wrote:
 Hi people,
 
 kldload: can't load /usr/local/modules/fuse.ko: Exec format error


What does 
$file /usr/local/modules/fuse.ko

 say, and do you have Linux support built and enabled?

Kevin Kinsey
-- A failure will not appear until a unit has passed final inspection.



***
Hi Kevin,

That command gives the following result on my system:

file /usr/local/modules/fuse.ko 
/usr/local/modules/fuse.ko: ELF 64-bit LSB relocatable, x86-64, version 1 
(FreeBSD), not stripped

I don't have linux support build and enabled. Is it necessary? 

Thanks
Dino



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


Re: kldload: can't load /usr/local/modules/fuse.ko: Exec format error fusefs-ntfs-1.253 SOLVED

2008-12-03 Thread Dino Vliet


--- On Wed, 12/3/08, Scot Hetzel [EMAIL PROTECTED] wrote:
From: Scot Hetzel [EMAIL PROTECTED]
Subject: Re: kldload: can't load /usr/local/modules/fuse.ko: Exec format error 
 fusefs-ntfs-1.253
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED], freebsd-questions@freebsd.org, [EMAIL PROTECTED]
Date: Wednesday, December 3, 2008, 12:17 PM

On 12/3/08, Dino Vliet [EMAIL PROTECTED] wrote:
 Hi people,

  I can't use my maxtor basic 640gb external harddrive on Freebsd amd64
running 7.0 because when I try to load fusefs with this command, kldload
/usr/local/modules/fuse.ko I get the following error:

  kldload: can't load /usr/local/modules/fuse.ko: Exec format error

  Adding fusefs_enable=YES to /etc/rc.conf and
fuse_load=YES to /boot/loader.conf and rebooting doesn't help
either, because then that error message is printed on the console.

  uname -a gives:
  FreeBSD zouk.telfort.nl 7.0-RELEASE-p6 FreeBSD 7.0-RELEASE-p6 #1: Thu Nov
27 13:42:17 CET 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC 
amd64

  pkg_info | grep fuse gives:

  fusefs-kmod-0.3.9.p1.20080208_4 Kernel module for fuse
  fusefs-libs-2.7.3   FUSE allows filesystem implementation in userspace
  fusefs-ntfs-1.2531  Mount NTFS partitions (read/write) and disk images

  Does anyone have a clue as to what is causing this behavior?

How did you install the fusefs-kmod was it from a package or did you
build it through the ports system?

The most likely cause of this error is due to the fuse.ko module was
not built against the same source as your kernel.  Rebuild fusefs-kmod
and that should resolve the problem.

Scot

Hi all,

this did the trick, thanks!
I rebuild my kernel and had to rebuild that port as well.
Was sure I had done a portupgrade -fa before, but still it
seemed I had to rebuild the port first.

After this, I could start fusefs with the script in rc.d 
and after rebooting it recognized that option as well.

Now I managed to mount my external disk with that as well,
so everything is ok:-)

Thanks again,

Dino



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


error after make buildworld when upgrading RELENG_7_0 to RELENG_6_3

2008-11-25 Thread Dino Vliet
Dear freebsd list,

I wanted to upgrade freebsd releng_6_3 to releng_7_0 with
 cvsup because I'm running a custom kernel. 

I've started the process by dropping into single user mode,
issuing the script command to catch the output and then
going to the /usr/src directory. There I did a make buildworld
The error message I get is:

(part of the error message)
..
building static cpp library
ranlib libcpp.a
=== gnu/usr.bin/cc/libdecnumber (all)
cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I. 
-DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\/usr/obj/usr/src/tmp/usr\ 
-I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc/config 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/include 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libcpp/include
 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber 
 -I/usr/obj/usr/src/tmp/legacy/usr/include -c 
/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber/decNumber.c
cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I. 
-DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\/usr/obj/usr/src/tmp/usr\ 
-I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc/config 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/include 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libcpp/include
 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber 
 -I/usr/obj/usr/src/tmp/legacy/usr/include -c 
/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber/decContext.c
cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I. 
-DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\/usr/obj/usr/src/tmp/usr\ 
-I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc/config 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/include 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libcpp/include
 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber 
 -I/usr/obj/usr/src/tmp/legacy/usr/include -c 
/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber/decUtility.c
cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I. 
-DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\/usr/obj/usr/src/tmp/usr\ 
-I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc/config 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/include 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libcpp/include
 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber 
 -I/usr/obj/usr/src/tmp/legacy/usr/include -c 
/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber/decimal32.c
cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I. 
-DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\/usr/obj/usr/src/tmp/usr\ 
-I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc/config 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/include 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libcpp/include
 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber 
 -I/usr/obj/usr/src/tmp/legacy/usr/include -c 
/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber/decimal64.c
cc -O2 -fno-strict-aliasing -pipe -I/usr/src/gnu/usr.bin/cc/libdecnumber -I. 
-DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\/usr/obj/usr/src/tmp/usr\ 
-I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../cc_tools 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcc/config 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/include 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libcpp/include
 
-I/usr/src/gnu/usr.bin/cc/libdecnumber/../../../../contrib/gcclibs/libdecnumber 
 

install gamin in stead of fam

2008-11-20 Thread Dino Vliet
Dear Freebsd list,

How would you solve the following task at hand?

I would like to install gamin on my amd64 system running freebsd 6.3 in stead 
of fam, I've been using the latter since installing openoffice (on the net I 
found a
guide saying I should put WITH_FAM_SYSTEM=fam in my /etc/make.conf)

Which packages require fam is found by issuing the following command:

pkg_info -R fam* gives:

Information for fam-2.6.10_3:

Required by:
ImageMagick-6.4.5.5
ORBit2-2.14.14
Terminal-0.2.8.3
Thunar-0.9.3
at-spi-1.22.1_2
atk-1.22.0_1
avahi-0.6.23
avahi-app-0.6.23
bluefish-1.0.7_5
claws-mail-3.5.0_1
consolekit-0.2.10_3
dbus-glib-0.76
desktop-file-utils-0.15_1
dia-gnome-0.96.1_6,1
enchant-1.4.0_1
evolution-2.22.3.1
evolution-data-server-2.22.3_1
evolution-exchange-2.22.3
evolution-webcal-2.21.92_2
firefox-2.0.0.18,1
g-wrap-1.9.6_4,1
gail-1.22.3
gconf2-2.22.0_1
gdl-0.7.11_2
gdm-2.20.8
gdvrecv-1.2_4
gio-fam-backend-2.16.5
gnome-icon-theme-2.22.0_1
gnome-keyring-2.22.3_1
gnome-mount-0.8_2
gnome-spell-1.0.8_2
gnome-vfs-2.22.0_2
graphviz-2.20.3
gstreamer-0.10.21
gstreamer-plugins-0.10.21,3
gtk-2.12.11_1
gtk-engines2-2.14.3
gtk-xfce-engine-2.4.3
gtkhtml3-3.18.3
gtksourceview2-2.2.2
gtkspell-2.0.14
gvfs-0.2.5
hal-0.5.11_1
html2ps-letter-1.0.b5_1,1
inkscape-0.46_3
jdk-1.5.0.14p8_4,1
kdelibs-3.5.10
kmymoney2-0.8.9_2
libIDL-0.8.11
libbonobo-2.22.0_1
libbonoboui-2.22.0_2
libcroco-0.6.1_1
libexo-0.3.4_2
libgda3-3.0.4_1
libgksu-1.3.8_3
libgksuui-1.0.7_3
libglade2-2.6.3
libgnome-2.22.0_1
libgnomecanvas-2.20.1.1_2
libgnomecups-0.2.3_1,1
libgnomeprint-2.18.4_2
libgnomeprintui-2.18.2_2
libgnomeui-2.22.1_2
libgsf-1.14.8_2
libgtkhtml-2.11.1_2
libnotify-0.4.4_2
liboobs-2.22.0_1
librsvg2-2.22.3
libsexy-0.1.11_1
libsoup-2.2.105_3
libsoup-2.4.1_1
libwnck-2.22.3
libwpd-0.8.14_1
libxfce4gui-4.4.3
libxfce4mcs-4.4.3
libxfce4util-4.4.3
libxklavier-3.5_2,1
linc-1.0.3_7
mousepad-0.2.14
notification-daemon-0.3.7_3
nvu-1.0_7
openoffice.org-3.0.0
orage-4.4.3
pango-1.20.5
pgadmin3-1.8.4
policykit-0.9_1
policykit-gnome-0.9
poppler-gtk-0.8.7
py25-dbus-0.83.0_1
py25-gobject-2.14.2_2
py25-gstreamer-0.10.12
py25-gtk-2.12.1_1
py25-orbit-2.14.3_1
py25-zenmap-4.76
shared-mime-info-0.51
swt-3.1.1_3
system-tools-backends-2.6.0_1
vte-0.16.14_1
wv2-0.2.3_2
wxgtk2-2.4.2_16
wxgtk2-2.6.3_5
wxgtk2-2.8.9
wxgtk2-common-2.6.3_4
wxgtk2-common-2.8.9
wxgtk2-contrib-common-2.6.3_3
wxgtk2-contrib-common-2.8.9
wxgtk2-unicode-2.6.3_5
wxgtk2-unicode-2.8.9
wxgtk2-unicode-contrib-2.6.3_3
wxgtk2-unicode-contrib-2.8.9
wxsvg-1.0.b7.2_2
xf86-input-acecad-1.2.1_1
xf86-input-calcomp-1.1.1_1
xf86-input-citron-2.2.1_1
xf86-input-digitaledge-1.1.0_1
xf86-input-dmc-1.1.1_1
xf86-input-dynapro-1.1.1_1
xf86-input-elo2300-1.1.1_1
xf86-input-elographics-1.1.0_1
xf86-input-fpit-1.1.0_1
xf86-input-hyperpen-1.1.0_1
xf86-input-jamstudio-1.1.0_1
xf86-input-joystick-1.2.3_1
xf86-input-keyboard-1.2.2_2
xf86-input-magellan-1.1.1_1
xf86-input-magictouch-1.0.0.5_2
xf86-input-microtouch-1.1.1_1
xf86-input-mouse-1.2.3_2
xf86-input-mutouch-1.1.0_1
xf86-input-palmax-1.1.0_1
xf86-input-penmount-1.2.1_1
xf86-input-spaceorb-1.1.1_1
xf86-input-summa-1.1.0_1
xf86-input-tek4957-1.1.0_1
xf86-input-void-1.1.1_1
xf86-video-apm-1.1.1_2
xf86-video-ark-0.6.0_2
xf86-video-ati-6.9.0
xf86-video-chips-1.1.1_2
xf86-video-cirrus-1.1.0_2
xf86-video-cyrix-1.1.0_2
xf86-video-dummy-0.2.0_2
xf86-video-fbdev-0.3.1_2
xf86-video-glint-1.1.1_4
xf86-video-i128-1.2.1_2
xf86-video-i740-1.1.0_2
xf86-video-i810-1.7.4
xf86-video-imstt-1.1.0_2
xf86-video-mach64-6.8.0
xf86-video-mga-1.4.9,1
xf86-video-neomagic-1.1.1_2
xf86-video-newport-0.2.1_2
xf86-video-nsc-2.8.3_1
xf86-video-nv-2.1.12
xf86-video-r128-6.8.0
xf86-video-rendition-4.1.3_2
xf86-video-s3-0.5.0_2
xf86-video-s3virge-1.9.1_2
xf86-video-savage-2.1.3_1
xf86-video-siliconmotion-1.5.1_1
xf86-video-sis-0.10.0
xf86-video-tdfx-1.3.0_3
xf86-video-tga-1.1.0_2
xf86-video-trident-1.2.3_2
xf86-video-tseng-1.1.1_2
xf86-video-vesa-1.3.0_2
xf86-video-vga-4.1.0_2
xf86-video-via-0.2.2_3
xf86-video-vmware-10.15.2_1
xf86-video-voodoo-1.1.1_2
xfce-4.4.3
xfce4-appfinder-4.4.3
xfce4-desktop-4.4.3
xfce4-mcs-manager-4.4.3
xfce4-mcs-plugins-4.4.3
xfce4-mixer-4.4.3
xfce4-panel-4.4.3
xfce4-print-4.4.3
xfce4-session-4.4.3
xfce4-utils-4.4.3
xfce4-wm-4.4.3
xorg-7.3_2
xorg-drivers-7.3_3
xorg-server-1.4.2,1
zenity-2.22.1_1


The approaches I can think of are:

1) get rid of fam and everything that requires it with pkg_deinstall -R
fam* , then adjust /etc/make.conf to have WITH_FAM_SYSTEM=gamin and
reinstall all above packages one by one

2) write a shell script to automate all those steps above


So my question boils down to this, am I on the good track? Are there
other alternatives (or caveats)

Thanks


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


Re: yelp install error on amd64 running freebsd 6.3

2008-11-04 Thread Dino Vliet

Forwarded Message: Re: yelp install error on amd64 running 
freebsd 6.3




Tuesday, November 4, 2008 7:32 PM





From: 

Mel [EMAIL PROTECTED]
 





To: 

freebsd-questions@freebsd.org, [EMAIL PROTECTED]


On Tuesday 04 November 2008 19:19:44 Dino Vliet wrote:
 Dear freebsd people,
 who is able to help me with this problem I have on my machine (a amd64
 system running freebsd 6.3).

What did you do back in April, when you had the exact same problem?

-- 
Mel

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

**

I moved:-)
No seriously, I never solved it,  because I relocated and didn't have internet 
access for a long time, I didn't look into it anymore. I tried to resolve it 
though in april, but the resolutions given to me didn't bring me closer to a 
solution.  

Have any thoughts?





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


Re: openacs-5.4.3 on freebsd 6.3 AMD configuration problem SOLVED

2008-11-02 Thread Dino Vliet




Friday, October 31, 2008 11:24 PM





From: 

Dino Vliet [EMAIL PROTECTED]
 





To: 

[EMAIL PROTECTED]

Cc: 

freebsd-questions@freebsd.org

Hi
I'm a new user of openacs-5.4.3 and want to try it out on my amd64
system running Freebsd 6.3 and having postgresql-server-8.2.9
installed. The port installs fine and I have set openacs_enable=YES
in /etc/rc.conf to have it start at boot time.

The first time configuration does not give the expected results as my browser 
indicates this:

OpenACS Installation
    

    Installing the OpenACS kernel data model...

But nothing happens anymore. 

The last part of the file  /usr/local/openacs/log/error.log:

[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nsmain: AOLserver/4.5.0 
starting
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nsmain: security info: 
uid=1005, euid=1005, gid=80, egid=80
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nsmain: max files: 
FD_SETSIZE = 1024, rl_cur = 11095, rl_max = 11095
[31/Oct/2008:22:33:14][1073.5292032][-main-] Warning: nsmain: rl_max  
FD_SETSIZE
[31/Oct/2008:22:33:14][1073.5292032][-main-]
Error: pidfile: failed to open pid file
'/usr/local/aolserver/log/nspid.openacs': 'Permission denied'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: encoding: loaded: utf-8
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: fastpath[openacs]: mapped 
GET /
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: fastpath[openacs]: mapped 
HEAD /
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: fastpath[openacs]: mapped 
POST /
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: adp[openacs]: mapped GET 
/*.adp
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: adp[openacs]: mapped HEAD 
/*.adp
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: adp[openacs]: mapped POST 
/*.adp
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nssock.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nslog.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nslog: opened 
'/usr/local/openacs/log/openacs.log'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nssha1.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nscache.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nscache module version 1.5 
server: openacs
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nsdb.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nspostgres.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: PostgreSQL loaded.
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: conf: 
[ns/server/openacs]enabletclpages = 0
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: XOTcl version 1.6.1 loaded
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Loading OpenACS, rooted at 
/usr/local/openacs
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Sourcing 
/usr/local/openacs/packages/acs-bootstrap-installer/bootstrap.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-]
Notice: Bootstrap: sourcing
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-]
Notice: Bootstrap: sourcing
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-]
Notice: Bootstrap: sourcing
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-]
Notice: Bootstrap: sourcing
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-]
Notice: Bootstrap: sourcing
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Database API: Default 
database (dbn) is: 'default'
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Database API: Using ALL 
database pools for OpenACS.
[31/Oct/2008:22:33:20][1073.5292032][-main-]
Notice: Database API: The following pools are available for OpenACS:
pool2 pool3 pool1
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: dbdrv: opening database 
'postgres:localhost::openacs'
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Opening openacs on 
localhost
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Ns_PgOpenDb(postgres):  
Openned connection to localhost::openacs.
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice

openacs-5.4.3 on freebsd 6.3 AMD configuration problem

2008-10-31 Thread Dino Vliet
Hi I'm a new user of openacs-5.4.3 and want to try it out on my amd64 system 
running Freebsd 6.3 and having postgresql-server-8.2.9 installed. The port 
installs fine and I have set openacs_enable=YES in /etc/rc.conf to have it 
start at boot time.

The first time configuration does not give the expected results as my browser 
indicates this:

OpenACS Installation


Installing the OpenACS kernel data model...

But nothing happens anymore. 

The last part of the file  /usr/local/openacs/log/error.log:

[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nsmain: AOLserver/4.5.0 
starting
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nsmain: security info: 
uid=1005, euid=1005, gid=80, egid=80
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nsmain: max files: 
FD_SETSIZE = 1024, rl_cur = 11095, rl_max = 11095
[31/Oct/2008:22:33:14][1073.5292032][-main-] Warning: nsmain: rl_max  
FD_SETSIZE
[31/Oct/2008:22:33:14][1073.5292032][-main-] Error: pidfile: failed to open pid 
file '/usr/local/aolserver/log/nspid.openacs': 'Permission denied'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: encoding: loaded: utf-8
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: fastpath[openacs]: mapped 
GET /
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: fastpath[openacs]: mapped 
HEAD /
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: fastpath[openacs]: mapped 
POST /
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: adp[openacs]: mapped GET 
/*.adp
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: adp[openacs]: mapped HEAD 
/*.adp
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: adp[openacs]: mapped POST 
/*.adp
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nssock.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nslog.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nslog: opened 
'/usr/local/openacs/log/openacs.log'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nssha1.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nscache.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: nscache module version 1.5 
server: openacs
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nsdb.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: modload: loading 
'/usr/local/aolserver/bin/nspostgres.so'
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: PostgreSQL loaded.
[31/Oct/2008:22:33:14][1073.5292032][-main-] Notice: conf: 
[ns/server/openacs]enabletclpages = 0
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: XOTcl version 1.6.1 loaded
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Loading OpenACS, rooted at 
/usr/local/openacs
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Sourcing 
/usr/local/openacs/packages/acs-bootstrap-installer/bootstrap.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Bootstrap: sourcing 
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/00-proc-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Bootstrap: sourcing 
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/10-utilities-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Bootstrap: sourcing 
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/20-db-bootstrap-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Bootstrap: sourcing 
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/30-apm-load-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Bootstrap: sourcing 
/usr/local/openacs/packages/acs-bootstrap-installer/tcl/40-db-query-dispatcher-procs.tcl
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Database API: Default 
database (dbn) is: 'default'
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Database API: Using ALL 
database pools for OpenACS.
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Database API: The 
following pools are available for OpenACS: pool2 pool3 pool1
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: dbdrv: opening database 
'postgres:localhost::openacs'
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Opening openacs on 
localhost
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Ns_PgOpenDb(postgres):  
Openned connection to localhost::openacs.
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: dbdrv: opening database 
'postgres:localhost::openacs'
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Opening openacs on 
localhost
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Ns_PgOpenDb(postgres):  
Openned connection to localhost::openacs.
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: dbdrv: opening database 
'postgres:localhost::openacs'
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: Opening openacs on 
localhost
[31/Oct/2008:22:33:20][1073.5292032][-main-] Notice: 

error installing kmymoney2 on amd64 system running freebsd 6.3

2008-10-18 Thread Dino Vliet
Hi freebsd peeps,

Who can help me sort this error out when I try to installl kmymoney2 on my 
amd64 system. The error I get is:

test ! -f sk.gmo || touch sk.gmo
rm -f es_AR.gmo; /usr/local/bin/msgfmt -o es_AR.gmo ./es_AR.po
test ! -f es_AR.gmo || touch es_AR.gmo
rm -f pt_BR.gmo; /usr/local/bin/msgfmt -o pt_BR.gmo ./pt_BR.po
test ! -f pt_BR.gmo || touch pt_BR.gmo
rm -f es.gmo; /usr/local/bin/msgfmt -o es.gmo ./es.po
test ! -f es.gmo || touch es.gmo
rm -f fr.gmo; /usr/local/bin/msgfmt -o fr.gmo ./fr.po
test ! -f fr.gmo || touch fr.gmo
rm -f nl.gmo; /usr/local/bin/msgfmt -o nl.gmo ./nl.po
test ! -f nl.gmo || touch nl.gmo
rm -f pt.gmo; /usr/local/bin/msgfmt -o pt.gmo ./pt.po
test ! -f pt.gmo || touch pt.gmo
rm -f en_GB.gmo; /usr/local/bin/msgfmt -o en_GB.gmo ./en_GB.po
test ! -f en_GB.gmo || touch en_GB.gmo
rm -f ca.gmo; /usr/local/bin/msgfmt -o ca.gmo ./ca.po
test ! -f ca.gmo || touch ca.gmo
rm -f gl.gmo; /usr/local/bin/msgfmt -o gl.gmo ./gl.po
test ! -f gl.gmo || touch gl.gmo
rm -f ru.gmo; /usr/local/bin/msgfmt -o ru.gmo ./ru.po
test ! -f ru.gmo || touch ru.gmo
rm -f zh_CN.gmo; /usr/local/bin/msgfmt -o zh_CN.gmo ./zh_CN.po
test ! -f zh_CN.gmo || touch zh_CN.gmo
gmake[2]: Leaving directory 
`/usr/ports/finance/kmymoney2/work/kmymoney2-0.8.9/po'
Making all in doc
gmake[2]: Entering directory 
`/usr/ports/finance/kmymoney2/work/kmymoney2-0.8.9/doc'
Making all in en
gmake[3]: Entering directory 
`/usr/ports/finance/kmymoney2/work/kmymoney2-0.8.9/doc/en'
if test -n /usr/local/bin/meinproc; then echo /usr/local/bin/meinproc --check 
--cache index.cache.bz2 --stylesheet 
/usr/local/share/apps/ksgmltools2/customization/kde-chunk.xsl ./index.docbook; 
/usr/local/bin/meinproc --check --cache index.cache.bz2 --stylesheet 
/usr/local/share/apps/ksgmltools2/customization/kde-chunk.xsl ./index.docbook; 
fi
/usr/local/bin/meinproc --check --cache index.cache.bz2 --stylesheet 
/usr/local/share/apps/ksgmltools2/customization/kde-chunk.xsl ./index.docbook
gzip -9 -c -N ../../doc/en/kmymoney2.1  kmymoney2.1.gz
make get-files
make: don't know how to make w. Stop
gmake[3]: *** [index.docbook.tex] Error 2
gmake[3]: Leaving directory 
`/usr/ports/finance/kmymoney2/work/kmymoney2-0.8.9/doc/en'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory 
`/usr/ports/finance/kmymoney2/work/kmymoney2-0.8.9/doc'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/usr/ports/finance/kmymoney2/work/kmymoney2-0.8.9'
gmake: *** [all] Error 2
*** Error code 2

Stop in /usr/ports/finance/kmymoney2.


uname -a
FreeBSD amd_desktop.telfort.nl 6.3-RELEASE-p4 FreeBSD 6.3-RELEASE-p4 #21: Wed 
Oct  1 08:07:27 CEST 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/MYKERNEL  
amd64

What's wrong?

Brgds
Dino





__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


usb keeps disconnecting on Freebsd 6.3 amd box

2008-10-14 Thread Dino Vliet
Hi peeps,

On my AMD64 box running freebsd 6.3 I have a lot of trouble with my usb ports 
lately. I have attached a samsung ml-1610 printer to one usb port, but I do 
experience the same when I plug in a usb stick (kingston data traveller).

Take a look at what dmesg says:

module_register_init: MOD_LOAD (logo_saver, 0xb4ecf3d0, 0) error 19
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: offline
ulpt0: 

warning message when starting opera-9.60.20081004 on amd64

2008-10-11 Thread Dino Vliet
Hi All,

when I start opera on my amd64 machine running freebsd 6.3 I get the following 
warning message on my console:

[: missing ]
grep: ]: No such file or directory
exec: /usr/local/share/opera/bin//operapluginwrapper.linux: not found
opera: Search operapluginwrapper: No response from wrapper after five seconds. 
Probe stopped.
opera: Shared object libjvm.so not found, required by opera

It i strange it asks me for a .linux file, while I'm on freebsd.

uname -a
FreeBSD amd_desktop.telfort.nl 6.3-RELEASE-p4 FreeBSD 6.3-RELEASE-p4 #21: Wed 
Oct  1 08:07:27 CEST 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/MYKERNEL  
amd64

And opera itself gives me the following warning message about my plugins:

Opera encountered a problem during plug-in setup.

Plug-ins will not work properly.

Check your installation.

 
Could not start plug-in executable 'operapluginwrapper'

 
 
Searched directory:

 
/usr/local/share/opera/bin/

The version of opera I'm using is:
pkg_info | grep opera
opera-9.60.20081004 Blazingly fast, full-featured, standards-compliant browser,

Does anyone know what's wrong on my system and what I could do?
As a consequence, the java plugin is not working on opera while it does work on 
firefox.

Brgds
Dino





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


Re: gmirror prerequisite question SOLVED

2008-10-06 Thread Dino Vliet
 I've bought a secondary HDD to attach to my server running freebsd 7.0.
 I want to enable gmirror on it (will reinstall everything from scratch),

you don't have to.

but I want to know if my hardware is setup correctly as a prerequisite for 
doing this operation.

 The command

 dmesg | grep Seagate

 Yields:

 ad4: 76319MB Seagate ST380815AS 3.AAC at ata2-master UDMA33
 ad6: 76319MB Seagate ST380815AS 3.AAC at ata3-master UDMA33

yes it is.
 
*
Thanks for all your help! I managed to install it on my working system and it 
was a fairly simple procedure. Now I need to restructure my system because I've 
installed it as a desktop system, but want to use the system more like a server 
(database  ruby  weka ). So I will need to deinstall all installed packages 
like KDE4.1, Xorg, Firefox etc etc.
Will still need to figure that out (assuming a pkg_delete -a is what I need)
Brgds
Dino



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


gmirror prerequisite question

2008-10-04 Thread Dino Vliet
Hey freebsd list,

I've bought a secondry HDD to attach to my server running freebsd 7.0. I want 
to enable gmirror on it (will reinstall everything from scratch), but I want to 
know if my hardware is setup correctly as a prerequisite for doing this 
operation.

The command 

dmesg | grep Seagate 

Yields:

ad4: 76319MB Seagate ST380815AS 3.AAC at ata2-master UDMA33
ad6: 76319MB Seagate ST380815AS 3.AAC at ata3-master UDMA33

Can I assume everything is ok now and can I start the reinstallation? Why I'm 
in doubt is because of the master/slave thing I was expecting but that seems 
something of the IDE world as I have bought two Sata hard drives and connected 
it with sata cables to my motherboard.

But just checking to be sure.

Brgds and thanks in advanced!
Dino



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


Re: error compiling kernel

2008-10-01 Thread Dino Vliet


--- On Mon, 9/29/08, Frank Shute [EMAIL PROTECTED] wrote:
From: Frank Shute [EMAIL PROTECTED]
Subject: Re: error compiling kernel
To: Dino Vliet [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Date: Monday, September 29, 2008, 2:31 PM

On Sun, Sep 28, 2008 at 11:09:01PM -0700, Dino Vliet wrote:

 Hi all,
 
 In an effort to compile a new kernel on my amd64 system running
 freebsd 6.3 I get the following error message after the make
 buildkernel KERNCONF=MYKERNEL step.
 
 The error I get is:
 
 /usr/src/sys/dev/usb/udbp.c: 426: undefined reference to
'ng_parse_int32_type' udbp.o (.rodata +
0xc0):/usr/src/sys/dev/usb/udbp.c: 438: undefined reference to
'ng_parse_int32_type'
 
 *** Error code 1
 Stop in /usr/obj/usr/src/sys/MYKERNEL
 *** Error code 1
 Stop in /usr/src
 *** Error code 1
 Stop in /usr/src
 
 My kernel configuration called MYKERNEL looks like this:
 
 #
 # GENERIC -- Generic kernel configuration file for FreeBSD/amd64
 #
snip
 
 options   SCHED_ULE   # ULE scheduler
 #options  SCHED_4BSD  # 4BSD scheduler

snip

 What is causing this error?
 
 Brgds
 Dino
 devicefwe # Ethernet over FireWire (non-standard!)

Dino,

I don't know if it's possibly related but IIRC the SCHED_ULE scheduler
is deprecated for use in 6.* (I stand to be corrected!:) although I
believe it works with 7.*

So I suggest trying SCHED_4BSD and see if that works better.

As to the specific error, it looks like you might need:

options NETGRAPH

in your kernel conf. See: netgraph(4)

You might also want to use the tag: RELENG_6_4 for your source
supfile. I'm pretty sure there is a 6.4 branch now the BETA has come
out.

Regards,

-- 

 Frank 


 Contact info: http://www.shute.org.uk/misc/contact.html 


Hi Frank,

It worked!
Thanks for the tips. I've reenabled sched_bsd and added 
options NETGRAPH. The latter is strange though, because I managed 
to compile the p1 kernel in the past without it, so why would that
fail now?

Anyway, it worked so I can look at my other problems now.
This machine was disconnected from the internet a few months so I
had a very long package list that needed to be updated.

Thanks for your reply!

Dino



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


Re: Setting up gmirror

2008-10-01 Thread Dino Vliet
Wednesday, October 1, 2008 6:34 AM




From: 

Andrew Falanga [EMAIL PROTECTED]



To: 
freebsd-questions@freebsd.org freebsd-questions@freebsd.org


Hi,

I've just finished setting up a new web server, and if I get my DNS
stuff correct hopefully an e-mail server too, for my church.
Originally, the intention was to use RAID1 on the MOBO.  However, the
RAID controller on the MOBO consistently tried to make the SATA DVD
drive part of the RAID array and wouldn't boot the FreeBSD boot disk.
So, at the suggestion of another respondent here, I've decided to use
gmirror.

Now, it seems that gmirror is, perhaps, newer to FreeBSD than the
software RAID stuff in the Handbook.  That mentions ccd(4) and doesn't
make any mention of gmirror(8).  It seems like gmirror is rather easy
to work with, and more important, easy to recover from is hardware
fails.  In any event, I want to make sure I'm understanding the manual
page correctly because I don't have anything else to test this on
except the churches computer.  We have two Seagate 250gb SATA drives.
Identical drive models so their sizes are the same.  Is this the
command, from gmirror(8), the one I'll want to use?

     Create a mirror on disk with valid data (note that the last sector of the
     disk will be overwritten).  Add another disk to this mirror, so it will
     be synchronized with existing disk:

       gmirror label -v -b round-robin data da0
       gmirror insert data da1


Though in my case, da0 and da1 will be ad4 and ad5.  This seems to be
the one I'm looking for, I'm just scared of wiping out more than I
bargain for.

Andy

-- 
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

**
 
Hi Andy,
 
Although I assume you can't start from scratch, I think the article on this 
topic by the famous Dru Lavigne is very good:
 
http://www.onlamp.com/pub/a/bsd/2005/11/10/FreeBSD_Basics.html
 
This is what I've used to do it.
Now I did a google search and found:
 
http://www.onlamp.com/pub/a/bsd/2005/11/10/FreeBSD_Basics.html?page=2
 
And gmirror is in the handbook, if found it in:
 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/geom-mirror.html
 
So these sources will give you a lot of knowledge.
 
I swear by gmirror, I had very good experience with it and will use it in the 
future again. I just need to find some time to attach the two identical HDD's 
to my via c7 system.
 
Brgds
Dino




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


problems installing package gnucash dependecies

2008-09-30 Thread Dino Vliet
Hi all,

I try to install this gnucash package on my amd64 system running freebsd 6.3 
and get the following output:

 pkg_add -r gnucash
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.3-release/Latest/gnucash.tbz...
 Done.
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.3-release/All/cdrtools-2.01_6.tbz...
 Done.
pkg_add: package 'cdrtools-2.01_6' conflicts with cjk-cdrtools-2.01.20041227_2
pkg_add: please use pkg_delete first to remove conflicting package(s) or -f to 
force installation
pkg_add: pkg_add of dependency 'cdrtools-2.01_6' failed!
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.3-release/All/gamin-0.1.9.tbz...
 Done.
pkg_add: package 'gamin-0.1.9' conflicts with fam-2.6.10_3
pkg_add: please use pkg_delete first to remove conflicting package(s) or -f to 
force installation
pkg_add: pkg_add of dependency 'gamin-0.1.9' failed!
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.3-release/All/libgsf-gnome-1.14.7.tbz...
 Done.
pkg_add: could not find package cdrtools-2.01_6 !
pkg_add: could not find package gamin-0.1.9 !
pkg_add: pkg_add of dependency 'libgsf-gnome-1.14.7' failed!
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.3-release/All/goffice-0.4.3_1.tbz...
 Done.
pkg_add: could not find package cdrtools-2.01_6 !
pkg_add: could not find package gamin-0.1.9 !
pkg_add: could not find package libgsf-gnome-1.14.7 !
pkg_add: pkg_add of dependency 'goffice-0.4.3_1' failed!
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.3-release/All/yelp-2.20.0.tbz...
 Done.
pkg_add: could not find package cdrtools-2.01_6 !
pkg_add: could not find package gamin-0.1.9 !
pkg_add: pkg_add of dependency 'yelp-2.20.0' failed!
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.3-release/All/gnucash-docs-2.2.0_2.tbz...
 Done.
pkg_add: could not find package cdrtools-2.01_6 !
pkg_add: could not find package gamin-0.1.9 !
pkg_add: could not find package yelp-2.20.0 !
pkg_add: pkg_add of dependency 'gnucash-docs-2.2.0_2' failed!
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.3-release/All/gtkhtml3-3.12.3_2.tbz...
 Done.
pkg_add: could not find package cdrtools-2.01_6 !
pkg_add: could not find package gamin-0.1.9 !
pkg_add: pkg_add of dependency 'gtkhtml3-3.12.3_2' failed!

# pkg_info | grep -e cdrtools gives 
    
cjk-cdrtools-2.01.20041227_2 CD/CD-R[W] and ISO-9660 image creation and 
extraction tools

/etc/make.conf gives:
WITH_FAM_SYSTEM=fam
X11BASE=${LOCALBASE}
#WITH_GHOSTSCRIPT_GNU=yes
# added by use.perl 2008-09-16 09:45:34
PERL_VER=5.8.8
PERL_VERSION=5.8.8
WITH_CUPS=YES
CUPS_OVERWRITE_BASE=YES
WITHOUT_LPR=YES

I think I added fam because of the fact that I have built openoffice.org on 
numerous occasions.

Hope somebody can help.

Brgds
Dino





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


error compiling kernel

2008-09-29 Thread Dino Vliet
Hi all,

In an effort to compile a new kernel on my amd64 system running freebsd 6.3 I 
get the following error message after the make buildkernel KERNCONF=MYKERNEL 
step.

The error I get is:

/usr/src/sys/dev/usb/udbp.c: 426: undefined reference to 'ng_parse_int32_type' 
udbp.o (.rodata + 0xc0):/usr/src/sys/dev/usb/udbp.c: 438: undefined reference 
to 'ng_parse_int32_type'

*** Error code 1
Stop in /usr/obj/usr/src/sys/MYKERNEL
*** Error code 1
Stop in /usr/src
*** Error code 1
Stop in /usr/src

My kernel configuration called MYKERNEL looks like this:

#
# GENERIC -- Generic kernel configuration file for FreeBSD/amd64
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ../../conf/NOTES and NOTES files.
# If you are in doubt as to the purpose or necessity of a line, check first
# in NOTES.
#
# $FreeBSD: src/sys/amd64/conf/GENERIC,v 1.439.2.6.2.1 2005/10/28 19:22:41 jhb 
Exp $

machine amd64
cpu HAMMER
ident   MYKERNEL

# To statically compile in device wiring instead of /boot/device.hints
#hints  GENERIC.hints # Default places to look for devices.

makeoptions DEBUG=-g# Build kernel with gdb(1) debug symbols

options SCHED_ULE   # ULE scheduler
#optionsSCHED_4BSD  # 4BSD scheduler
options PREEMPTION  # Enable kernel thread preemption
options INET# InterNETworking
options INET6   # IPv6 communications protocols
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates support
options UFS_ACL # Support for access control lists
options UFS_DIRHASH # Improve performance on big directories
options MD_ROOT # MD is a potential root device
options NFSCLIENT   # Network Filesystem Client
options NFSSERVER   # Network Filesystem Server
options NFS_ROOT# NFS usable as /, requires NFSCLIENT
options NTFS# NT File System
options MSDOSFS # MSDOS Filesystem
options CD9660  # ISO 9660 Filesystem
options PROCFS  # Process filesystem (requires PSEUDOFS)
options PSEUDOFS# Pseudo-filesystem framework
options GEOM_GPT# GUID Partition Tables.
options COMPAT_43   # Needed by COMPAT_LINUX32
options COMPAT_IA32 # Compatible with i386 binaries
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
options COMPAT_FREEBSD5 # Compatible with FreeBSD5
options COMPAT_LINUX32  # Compatible with i386 linux binaries 
#optionsSCSI_DELAY=5000 # Delay (in ms) before probing SCSI
options KTRACE  # ktrace(1) support
options SYSVSHM # SYSV-style shared memory
options SYSVMSG # SYSV-style message queues
options SYSVSEM # SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time 
extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options AHC_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~128k to driver.
options AHD_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~215k to driver.
options ADAPTIVE_GIANT  # Giant mutex is adaptive.

# Workarounds for some known-to-be-broken chipsets (nVidia nForce3-Pro150)
device  atpic   # 8259A compatability

# Linux 32-bit ABI support
options LINPROCFS   # Cannot be a module yet.
options EXT2FS  # Linux ext2 filesystem support

# Bus support.
device  acpi
device  pci

# Floppy drives
device  fdc

# ATA and ATAPI devices
device  ata
device  atapicam
device  atadisk # ATA disk drives
device  ataraid # ATA RAID drives
device  atapicd # ATAPI CDROM drives
device  atapifd # ATAPI floppy drives
device  atapist # ATAPI tape drives
options ATA_STATIC_ID   # Static device numbering


# atkbdc0 controls 

Re: stop in usr/ports/www/firefox3

2008-09-29 Thread Dino Vliet
Hi Laci,
 
I did portsnap fetch update so I guess that should do the trick.
 
Or not?
 
Brgds
Dino

--- On Mon, 9/29/08, Dánielisz László [EMAIL PROTECTED] wrote:

From: Dánielisz László [EMAIL PROTECTED]
Subject: Re: stop in usr/ports/www/firefox3
To: [EMAIL PROTECTED], freebsd-questions@freebsd.org, [EMAIL PROTECTED]
Date: Monday, September 29, 2008, 2:14 PM






Hi,

Do you cvsup-ed your system?

Laci



- Original Message 
From: Dino Vliet [EMAIL PROTECTED]
To: freebsd-questions@freebsd.org; [EMAIL PROTECTED]
Sent: Sunday, September 28, 2008 2:25:15 PM
Subject: stop in usr/ports/www/firefox3

Hi peeps,

I want to install firefox3 beside my working firefox2 port on my amd64 system 
running freebsd 6.3 but the installation fails here:

../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x13b8): In
function `nsACString::SetLength(unsigned int)': : undefined reference
to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x13ea):
In function `nsACString::BeginWriting(char**, char**, unsigned int)': :
undefined reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x14f8):
In function `nsACString::BeginWriting(unsigned int)': : undefined
reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x151d):
In function `nsACString::EndWriting()': : undefined reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1aac):
In function
`nsDependentSubstring_external::nsDependentSubstring_external(nsAString
const, unsigned int)': : undefined reference to
`NS_StringContainerInit2' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1b14):
In function
`nsDependentSubstring_external::nsDependentSubstring_external(nsAString
const, unsigned int, unsigned int)': : undefined reference to
`NS_StringContainerInit2' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1b68):
In function
`nsDependentCSubstring_external::nsDependentCSubstring_external(nsACString
const, unsigned int)': : undefined reference to
`NS_CStringContainerInit2' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1bd0):
In function
`nsDependentCSubstring_external::nsDependentCSubstring_external(nsACString
const, unsigned int, unsigned int)': : undefined reference to
`NS_CStringContainerInit2' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1c73):
In function `CompressWhitespace(nsAString)': : undefined reference to
`NS_StringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1e13):
In function `ToLowerCase(nsACString const, nsACString)': : undefined
reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1e93):
In function `ToUpperCase(nsACString const, nsACString)': : undefined
reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsCRTGlue.o)(.text+0x14f):
In function `NS_strndup(unsigned short const*, unsigned int)': :
undefined reference to
`NS_Alloc' ../../../../dist/lib/libxpcomglue_s.a(nsCRTGlue.o)(.text+0x1d1):
In function `NS_strdup(char const*)': : undefined reference to
`NS_Alloc' ../../../../dist/lib/libxpcomglue_s.a(nsMemory.o)(.text+0x1d):
In function `nsMemory::Clone(void const*, unsigned long)': : undefined
reference to `NS_Alloc' gmake[5]: *** [libimgicon.so] Error 1 gmake[5]:
Leaving directory
`/usr/ports/www/firefox3/work/mozilla/modules/libpr0n/decoders/icon'
gmake[4]: *** [tools] Error 2 gmake[4]: Leaving directory
`/usr/ports/www/firefox3/work/mozilla/modules/libpr0n/decoders'
gmake[3]: *** [tools] Error 2 gmake[3]: Leaving directory
`/usr/ports/www/firefox3/work/mozilla/modules/libpr0n' gmake[2]: ***
[tools_tier_gecko] Error 2 gmake[2]: Leaving directory
`/usr/ports/www/firefox3/work/mozilla' gmake[1]: *** [tier_toolkit]
Error 2 gmake[1]: Leaving directory
`/usr/ports/www/firefox3/work/mozilla' gmake: *** [default] Error 2 ***
Error code 2

Stop in /usr/ports/www/firefox3.
*** Error code 1

Stop in /usr/ports/www/firefox3.
[EMAIL PROTECTED] /usr/ports/www/firefox3]# 

What is wrong here?

uname -a:
FreeBSD zouk.alice.nl 6.3-RELEASE-p1 FreeBSD 6.3-RELEASE-p1 #18: Thu Mar 20 
21:01:24 CET 2008 root@:/usr/obj/usr/src/sys/MYKERNEL  amd64


Hope somebody can help.

Brgds
Dino




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





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


stop in usr/ports/www/firefox3

2008-09-28 Thread Dino Vliet
Hi peeps,

I want to install firefox3 beside my working firefox2 port on my amd64 system 
running freebsd 6.3 but the installation fails here:

../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x13b8): In
function `nsACString::SetLength(unsigned int)': : undefined reference
to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x13ea):
In function `nsACString::BeginWriting(char**, char**, unsigned int)': :
undefined reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x14f8):
In function `nsACString::BeginWriting(unsigned int)': : undefined
reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x151d):
In function `nsACString::EndWriting()': : undefined reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1aac):
In function
`nsDependentSubstring_external::nsDependentSubstring_external(nsAString
const, unsigned int)': : undefined reference to
`NS_StringContainerInit2' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1b14):
In function
`nsDependentSubstring_external::nsDependentSubstring_external(nsAString
const, unsigned int, unsigned int)': : undefined reference to
`NS_StringContainerInit2' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1b68):
In function
`nsDependentCSubstring_external::nsDependentCSubstring_external(nsACString
const, unsigned int)': : undefined reference to
`NS_CStringContainerInit2' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1bd0):
In function
`nsDependentCSubstring_external::nsDependentCSubstring_external(nsACString
const, unsigned int, unsigned int)': : undefined reference to
`NS_CStringContainerInit2' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1c73):
In function `CompressWhitespace(nsAString)': : undefined reference to
`NS_StringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1e13):
In function `ToLowerCase(nsACString const, nsACString)': : undefined
reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsStringAPI.o)(.text+0x1e93):
In function `ToUpperCase(nsACString const, nsACString)': : undefined
reference to
`NS_CStringGetMutableData' 
../../../../dist/lib/libxpcomglue_s.a(nsCRTGlue.o)(.text+0x14f):
In function `NS_strndup(unsigned short const*, unsigned int)': :
undefined reference to
`NS_Alloc' ../../../../dist/lib/libxpcomglue_s.a(nsCRTGlue.o)(.text+0x1d1):
In function `NS_strdup(char const*)': : undefined reference to
`NS_Alloc' ../../../../dist/lib/libxpcomglue_s.a(nsMemory.o)(.text+0x1d):
In function `nsMemory::Clone(void const*, unsigned long)': : undefined
reference to `NS_Alloc' gmake[5]: *** [libimgicon.so] Error 1 gmake[5]:
Leaving directory
`/usr/ports/www/firefox3/work/mozilla/modules/libpr0n/decoders/icon'
gmake[4]: *** [tools] Error 2 gmake[4]: Leaving directory
`/usr/ports/www/firefox3/work/mozilla/modules/libpr0n/decoders'
gmake[3]: *** [tools] Error 2 gmake[3]: Leaving directory
`/usr/ports/www/firefox3/work/mozilla/modules/libpr0n' gmake[2]: ***
[tools_tier_gecko] Error 2 gmake[2]: Leaving directory
`/usr/ports/www/firefox3/work/mozilla' gmake[1]: *** [tier_toolkit]
Error 2 gmake[1]: Leaving directory
`/usr/ports/www/firefox3/work/mozilla' gmake: *** [default] Error 2 ***
Error code 2

Stop in /usr/ports/www/firefox3.
*** Error code 1

Stop in /usr/ports/www/firefox3.
[EMAIL PROTECTED] /usr/ports/www/firefox3]# 

What is wrong here?

uname -a:
FreeBSD zouk.alice.nl 6.3-RELEASE-p1 FreeBSD 6.3-RELEASE-p1 #18: Thu Mar 20 
21:01:24 CET 2008 root@:/usr/obj/usr/src/sys/MYKERNEL  amd64


Hope somebody can help.

Brgds
Dino




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


Re: package info is corrupt

2008-09-23 Thread Dino Vliet


--- On Mon, 9/22/08, Greg Larkin [EMAIL PROTECTED] wrote:
From: Greg Larkin [EMAIL PROTECTED]
Subject: Re: package info is corrupt
To: [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Date: Monday, September 22, 2008, 9:55 PM

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dino Vliet wrote:
 Hi freebsd peeps,
 
 Who can help me out with this problem I have with corrupted ports:
 
 # pkg_info | grep corrupt
 pkg_info: the package info for package 'cairomm-1.4.8_2' is
corrupt
 pkg_info: the package info for package
'gnome-system-monitor-2.22.1_1' is corrupt
[...]
 
 # cd cairomm-1.
 cairomm-1.4.8_2/ cairomm-1.6.4/   
 
 I have two versions installed. The 
 
  # cd cairomm-1.4.8_2/
 # ls -la
 total 52
 -rw-r--r--1 root  wheel 23 Apr 12 16:29 +COMMENT
 -rw-r--r--1 root  wheel 54 Apr 12 16:29 +DESC
 -rw-r--r--1 root  wheel  17501 Apr 12 16:29 +MTREE_DIRS
 drwxr-xr-x2 root  wheel512 Jun 21 09:36 .
 drwxr-xr-x  988 root  wheel  28160 Sep 22 20:21 ..
 
 My system is a amd64 system running Freebsd.
 #uname -a:
 
 FreeBSD zouk.alice.nl 6.3-RELEASE-p1 FreeBSD 6.3-RELEASE-p1 #18: Thu Mar
20 21:01:24 CET 2008 root@:/usr/obj/usr/src/sys/MYKERNEL  amd64
 
 How should I solve this issue?
 
 Brgds
 Dino

Hi Dino,

Please try the following command:

pkgdb -F

That command will walk you through the package database, asking you to
fix any problems it finds.  If you run into any problems, please post a
follow-up to the list.

Regards,
Greg
- --
Greg Larkin

http://www.FreeBSD.org/   - The Power To Serve
http://www.sourcehosting.net/ - Ready. Set. Code.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFI1/gX0sRouByUApARAmd0AJ9jALcOIQieF6KKgyqLRFsm0xq2LwCbBxRE
HHSNgEq3gQaofw0bHvbgTlc=
=VFj1
-END PGP SIGNATURE-

Well,

I tried your suggestion, but here it didn't do anything:

#pkgdb -F
---  Checking the package registry database
#

What now? I tried to deinstall one of them, but no luck:

[EMAIL PROTECTED] /var/db/pkg/gtkmm-2.12.7]# pkg_deinstall gtkmm
** No matching package found.

[EMAIL PROTECTED] /var/db/pkg/gtkmm-2.12.7]# cat +COMMENT 
C++ wrapper for Gtk+, Pango, Atk

[EMAIL PROTECTED] /var/db/pkg/gtkmm-2.12.7]# cat +DESC 
C++ wrapper for Gtk+, Pango and Atk.

WWW: http://gtkmm.sourceforge.net/
[EMAIL PROTECTED] /var/db/pkg/gtkmm-2.12.7]# 





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


package info is corrupt

2008-09-22 Thread Dino Vliet
Hi freebsd peeps,

Who can help me out with this problem I have with corrupted ports:

# pkg_info | grep corrupt
pkg_info: the package info for package 'cairomm-1.4.8_2' is corrupt
pkg_info: the package info for package 'gnome-system-monitor-2.22.1_1' is 
corrupt
pkg_info: the package info for package 'gtkmm-2.12.7' is corrupt
pkg_info: the package info for package 'inkscape-0.46_1' is corrupt
pkg_info: the package info for package 'libxml++-2.22.0' is corrupt
pkg_info: the package info for package 'xterm-234' is corrupt
pkg_info: the package info for package 'yasm-0.6.2' is corrupt
pkg_info: the package info for package 'zenity-2.22.1' is corrupt

Take for instance the firs in that list, cairomm.

# pkg_info | grep cairomm
pkg_info: the package info for package 'cairomm-1.4.8_2' is corrupt
cairomm-1.6.4   C++ interface to cairo
pkg_info: the package info for package 'gnome-system-monitor-2.22.1_1' is 
corrupt
pkg_info: the package info for package 'gtkmm-2.12.7' is corrupt
pkg_info: the package info for package 'inkscape-0.46_1' is corrupt
pkg_info: the package info for package 'libxml++-2.22.0' is corrupt
pkg_info: the package info for package 'xterm-234' is corrupt
pkg_info: the package info for package 'yasm-0.6.2' is corrupt
pkg_info: the package info for package 'zenity-2.22.1' is corrupt

# cd cairomm-1.
cairomm-1.4.8_2/ cairomm-1.6.4/   

I have two versions installed. The 

 # cd cairomm-1.4.8_2/
# ls -la
total 52
-rw-r--r--    1 root  wheel 23 Apr 12 16:29 +COMMENT
-rw-r--r--    1 root  wheel 54 Apr 12 16:29 +DESC
-rw-r--r--    1 root  wheel  17501 Apr 12 16:29 +MTREE_DIRS
drwxr-xr-x    2 root  wheel    512 Jun 21 09:36 .
drwxr-xr-x  988 root  wheel  28160 Sep 22 20:21 ..

My system is a amd64 system running Freebsd.
#uname -a:

FreeBSD zouk.alice.nl 6.3-RELEASE-p1 FreeBSD 6.3-RELEASE-p1 #18: Thu Mar 20 
21:01:24 CET 2008 root@:/usr/obj/usr/src/sys/MYKERNEL  amd64

How should I solve this issue?

Brgds
Dino








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


Stop in /usr/ports/graphics/ImageMagick/work/ImageMagick-6.4.3/PerlMagick

2008-09-12 Thread Dino Vliet
Hi folks,

on my adm64 dual core system running freebsd I get the following error when 
installing the port, /usr/porst/graphics/ImageMagick:

t/write...ok
t/x11/readXlib: connection to :0.0 refused by server
Xlib: No protocol specified

t/x11/readok
t/x11/write...Xlib: connection to :0.0 refused by server
Xlib: No protocol specified

t/x11/write...FAILED test 1
    Failed 1/2 tests, 50.00% okay
t/zlib/read...ok
t/zlib/write..ok
Failed Test   Stat Wstat Total Fail  Failed  List of Failed
---
t/x11/write.t    2    1  50.00%  1
Failed 1/27 test scripts, 96.30% okay. 1/345 subtests failed, 99.71% okay.
*** Error code 2

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

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

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

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

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

Stop in /usr/ports/multimedia/kino.
*** Error code 1

Stop in /usr/ports/multimedia/kino.

the application I'm trying to install at the end is Kino.

Hope anyone can help me out

Brds
Dino




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


(no subject)

2008-09-12 Thread Dino Vliet
Hi folks,

on my adm64 dual core system running freebsd I get the following error when 
installing the port, /usr/porst/graphics/ImageMagick:

t/write...ok
t/x11/readXlib: connection to :0.0 refused by server
Xlib: No protocol specified

t/x11/readok
t/x11/write...Xlib: connection to :0.0 refused by server
Xlib: No protocol specified

t/x11/write...FAILED test 1
    Failed 1/2 tests, 50.00% okay
t/zlib/read...ok
t/zlib/write..ok
Failed Test   Stat Wstat Total Fail  Failed  List of Failed
---
t/x11/write.t    2    1  50.00%  1
Failed 1/27 test scripts, 96.30% okay. 1/345 subtests failed, 99.71% okay.
*** Error code 2

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

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

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

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

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

Stop in /usr/ports/multimedia/kino.
*** Error code 1

Stop in /usr/ports/multimedia/kino.

the application I'm trying to install at the end is Kino.

Hope anyone can help me out

Brds
Dino




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


Stop in /usr/ports/graphics/ImageMagick/work/ImageMagick-6.4.3/PerlMagick

2008-09-12 Thread Dino Vliet

Forwarded Message: Stop in 
/usr/ports/graphics/ImageMagick/work/ImageMagick-6.4.3/PerlMagick



Stop in 
/usr/ports/graphics/ImageMagick/work/ImageMagick-6.4.3/PerlMagick
Friday, September 12, 2008 8:47 AM





From: 

Dino Vliet [EMAIL PROTECTED]
 





To: 

freebsd-questions@freebsd.org, [EMAIL PROTECTED]


Hi folks,

on
my adm64 dual core system running freebsd I get the following error
when installing the port, /usr/porst/graphics/ImageMagick:

t/write...ok
t/x11/readXlib: connection to :0.0 refused by server
Xlib: No protocol specified

t/x11/readok
t/x11/write...Xlib: connection to :0.0 refused by server
Xlib: No protocol specified

t/x11/write...FAILED test 1
    Failed 1/2 tests, 50.00% okay
t/zlib/read...ok
t/zlib/write..ok
Failed Test   Stat Wstat Total Fail  Failed  List of Failed
---
t/x11/write.t    2    1  50.00%  1
Failed 1/27 test scripts, 96.30% okay. 1/345 subtests failed, 99.71% okay.
*** Error code 2

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

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

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

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

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

Stop in /usr/ports/multimedia/kino.
*** Error code 1

Stop in /usr/ports/multimedia/kino.

the application I'm trying to install at the end is Kino.

Hope anyone can help me out

Brds
Dino

***

Hi all,

Solved this.
I had to use google and found an issue with Xlib and where the selftest failed. 
I had to re-enable root logins for my shiny kde4.1 desktop and after that as 
root I rebuild this port and everything went smooth! Now I can finally use my 
dual core power to start manipulating those video files.

Thanks though for the help (no answer got me thinking, it should be something 
obvious:-)

Brgds
Dino




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


svgalib-1.4.3_5 is only for i386, while you are running amd64.

2008-09-11 Thread Dino Vliet
Hi folks,

On my adm64 dualcore system running freebsd 7 I want to install 
/usr/ports/multmedia/kino. However the port stops because of this:

==    Verifying install for gs in /usr/ports/print/ghostscript8
NOTE: Default paper size will be A4.
===  Found saved configuration for ghostscript8-8.62_5
===  Extracting for ghostscript8-8.62_5
= MD5 Checksum OK for ghostscript/ghostscript-8.62.tar.bz2.
= SHA256 Checksum OK for ghostscript/ghostscript-8.62.tar.bz2.
= MD5 Checksum OK for ghostscript/epag-3.09.tar.gz.
= SHA256 Checksum OK for ghostscript/epag-3.09.tar.gz.
/usr/bin/tar -C /usr/ports/print/ghostscript8/work/ghostscript-8.62 -xzf 
/usr/ports/distfiles/ghostscript/epag-3.09.tar.gz
/bin/ln -s -f epag-3.09 /usr/ports/print/ghostscript8/work/ghostscript-8.62/epag
install  -o root -g wheel -m 444 
/usr/ports/print/ghostscript8/files/epag.contrib.mak 
/usr/ports/print/ghostscript8/work/ghostscript-8.62/src/epag.contrib.mak
===  Patching for ghostscript8-8.62_5
===  Applying FreeBSD patches for ghostscript8-8.62_5
/usr/bin/sed -i.bak -e 's|%%DATADIR%%|/usr/local/share/ghostscript|g ;  
s|%%GS_VERSION%%|8.62|g'  
/usr/ports/print/ghostscript8/work/ghostscript-8.62/contrib/japanese/dmp_site.ps
===   ghostscript8-8.62_5 depends on executable: gmake - found
===   ghostscript8-8.62_5 depends on file: /usr/local/libdata/pkgconfig/xt.pc 
- found
===   ghostscript8-8.62_5 depends on file: 
/usr/local/libdata/pkgconfig/xext.pc - found
===   ghostscript8-8.62_5 depends on shared library: jpeg.9 - found
===   ghostscript8-8.62_5 depends on shared library: png.5 - found
===   ghostscript8-8.62_5 depends on shared library: vga.1 - not found
===    Verifying install for vga.1 in /usr/ports/graphics/svgalib
===  svgalib-1.4.3_5 is only for i386, while you are running amd64.
*** Error code 1

Stop in /usr/ports/graphics/svgalib.
*** Error code 1

Stop in /usr/ports/print/ghostscript8.
*** Error code 1

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

Stop in /usr/ports/multimedia/kino.
*** Error code 1

Stop in /usr/ports/multimedia/kino.

What is wrong here?

Brgds
Dino




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


libjvm.so not found on amd64 system running freebsd 7

2008-09-07 Thread Dino Vliet
Hi all,due to this opera errer I get when I want to test the working of my java 
browser plugin I get a message that libjvm.so is not found on my amd64 box 
running freebsd 7.The commands I type are:[EMAIL PROTECTED] /usr/ports/math]# 
ldd /usr/local/diablo-jdk1.6.0/jre/lib/amd64/libjava.so
/usr/local/diablo-jdk1.6.0/jre/lib/amd64/libjava.so:
/libexec/ld-elf.so.1: /usr/local/diablo-jdk1.6.0/jre/lib/amd64/libjava.so: 
Unexpected  inconsistency: dependency libjvm.so not found
/usr/local/diablo-jdk1.6.0/jre/lib/amd64/libjava.so: exit status 1
[EMAIL PROTECTED] /usr/ports/math]# ldd 
/usr/local/jdk1.6.0/jre/lib/amd64/libjava.so
/usr/local/jdk1.6.0/jre/lib/amd64/libjava.so:
/libexec/ld-elf.so.1: /usr/local/jdk1.6.0/jre/lib/amd64/libjava.so: Unexpected  
inconsistency: dependency libjvm.so not found
/usr/local/jdk1.6.0/jre/lib/amd64/libjava.so: exit status 1
[EMAIL PROTECTED] /usr/ports/math]# whereis libjvm.so
libjvm.so:

The question is, is there something wrong with my java installation?
[EMAIL PROTECTED] /usr/ports/math]# pkg_info | grep Java
diablo-jdk-1.6.0.07.02 Java Development Kit 1.6.0_07.02
diablo-jre-1.6.0.07.02 Java Runtime Environment 1.6.0_07.02
javavmwrapper-2.3.2 Wrapper script for various Java Virtual Machines
jdk-1.6.0.3p4_3 Java Development Kit 1.6.0
netbeans55-5.5.1_1  A free and open-source IDE for Java
weka-3.4.13 Data Mining Software in Java

What should I do to let this opera error message go away?opera: Shared object 
libjvm.so not found, required by opera





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


upgrading kdeartwork to version 4.1.1 fetch error in ports

2008-09-04 Thread Dino Vliet
Hi peeps,I want to upgrade my kde41 installation and the kdeartwork port gives 
me troubles. I can't seem to fetch the files due to some checksum mismatch. Can 
you help me out?The commands I entered and the output is here:# portversion -l 
 
# kdeartwork   
  
# portupgrade -aRr   
---  Upgrading 'kdeartwork-4.1.0_1' to 'kdeartwork-4.1.1' 
(x11-themes/kdeartwork4) 
---  Building '/usr/ports/x11-themes/kdeartwork4'  
    
===  Cleaning for kdeartwork-4.1.1 
    
===  Vulnerability check disabled, database not found  
    
===  Found saved configuration for kdeartwork-4.1.1
===  Extracting for kdeartwork-4.1.1
= MD5 Checksum mismatch for KDE/kdeartwork-4.1.1.tar.bz2.
= SHA256 Checksum mismatch for KDE/kdeartwork-4.1.1.tar.bz2.
===  Refetch for 1 more times files: KDE/kdeartwork-4.1.1.tar.bz2 
KDE/kdeartwork-4.1.1.tar.bz2
===  Vulnerability check disabled, database not found
===  Found saved configuration for kdeartwork-4.1.1
= kdeartwork-4.1.1.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/KDE.
= Attempting to fetch from ftp://ftp.kde.org/pub/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from http://ftp.scarlet.be/pub/kde/stable/4.1.1/src/.
fetch: http://ftp.scarlet.be/pub/kde/stable/4.1.1/src/kdeartwork-4.1.1.tar.bz2: 
Forbidden
= Attempting to fetch from http://mirrors.isc.org/pub/kde/stable/4.1.1/src/.
fetch: 
http://mirrors.isc.org/pub/kde/stable/4.1.1/src/kdeartwork-4.1.1.tar.bz2: Not 
Found
= Attempting to fetch from 
ftp://ftp.gtlib.cc.gatech.edu/pub/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from 
ftp://ftp.informatik.hu-berlin.de/pub/Mirrors/ftp.kde.org/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from 
http://ftp.gtlib.cc.gatech.edu/pub/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from ftp://ftp.oregonstate.edu/pub/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from ftp://ftp.solnet.ch/mirror/KDE/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from ftp://gd.tuwien.ac.at/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from http://gd.tuwien.ac.at/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from ftp://kde.mirrors.tds.net/pub/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from 
http://kde.mirrors.tds.net/pub/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from 
ftp://ftp.rz.uni-wuerzburg.de/pub/unix/kde/stable/4.1.1/src/.
fetch: 
ftp://ftp.rz.uni-wuerzburg.de/pub/unix/kde/stable/4.1.1/src/kdeartwork-4.1.1.tar.bz2:
 File unavailable (e.g., file not found, no access)
= Attempting to fetch from http://mirrors.dotsrc.org/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from ftp://mirrors.dotsrc.org/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from ftp://ibiblio.org/pub/mirrors/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from 
http://ibiblio.org/pub/mirrors/kde/stable/4.1.1/src/.
fetch: 
http://ibiblio.org/pub/mirrors/kde/stable/4.1.1/src/kdeartwork-4.1.1.tar.bz2: 
Moved Permanently
= Attempting to fetch from http://kambing.vlsm.org/kde/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from http://mirrors.evolva.ro/kdeftp/stable/4.1.1/src/.
fetch: kdeartwork-4.1.1.tar.bz2: local modification time does not match remote
= Attempting to fetch from 
ftp://ftp.iasi.roedu.net/pub/mirrors/ftp.kde.org/stable/4.1.1/src/.


[EMAIL PROTECTED] /usr/ports/graphics/digikam]# portversion -l   
   
kdeartwork 
    
[EMAIL PROTECTED] /usr/ports/graphics/digikam]# portupgrade -aRr
   
---  Upgrading 'kdeartwork-4.1.0_1' to 'kdeartwork-4.1.1' 
(x11-themes/kdeartwork4) 
---  Building '/usr/ports/x11-themes/kdeartwork4'  
    

disaster recovery: I can't login

2008-04-19 Thread Dino Vliet

   Hi folks,
   Yesterday disaster struck after I wanted to remove Gnome and issued
   the following command:
pkg_deinstall -R x11/gnome* -x evolution
I went to sleep and when I woke up I rebooted and got the login 
screen iso my normal graphical GDM. I logged in as I normally do
 and thought I was logged in because I saw a line saying I had 
mail, but then the line below that one said:
/usr/local/bin/bash was not found.
As root I coudn't login as well, so I sat a while looking at my
screen and looking for options.
I grapped a netbsd 4.0 live cd and booted but now I need some
help how to proceed.
I wanted to use netbsd to mount my ffs harddrive and change
 the /etc/passwd file to /bin/sh
Then I would be able to see the damage.
However, I don't know how the mount_ffs on Netbsd because
 that
 OS is obviously using a different /dev naming scheme because I
 excpected it to be something like /dev/ad*.
Does anyone happen to know the right command? Or should I head on to the
Netbsd mailinglist?
And if someone knows what created this mess, let me know as well.
And if you happen to know other options, don hesitate to react as 
well.
I also have some suse and ubuntu live-cd's but didn't use them because
I don't know how well they support ffs.
Thanks in advanced,
Dino
Thanks in advanced
 _

   Be a better friend, newshound, and know-it-all with Yahoo! Mobile.
   [1]Try it now.

References

   1. 
http://us.rd.yahoo.com/evt=51733/*http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: port seahorse won't upgrade properly

2008-04-16 Thread Dino Vliet


Jeremy Messenger [EMAIL PROTECTED] wrote:  On Tue, 15 Apr 2008 17:04:00 
-0500, Dino Vliet 
wrote:

 Uuuhhh, ok, you've got me here, I'm LOST.

 What KEYRING option? I didn't recall (dis)abling any option.

If you didn't tweak it then you didn't clean your ports tree before run it.

 I just want to install seahorse via the make install distclean command 
 in the seahorse port directory and keep getting an error.

 Just tried it tonight again and this was the result:
 checking whether the c++ linker (/usr/bin/ld) supports shared 
 libraries... yes
 checking dynamic linker characteristics... freebsd6.3 ld.so
 checking how to hardcode library paths into programs... immediate
 appending configuration tag F77 to libtool
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... no
 checking for f77 option to produce PIC... -fPIC
 checking if f77 PIC flag -fPIC works... yes
 checking if f77 static flag -static works... yes
 checking if f77 supports -c -o file.o... yes
 checking whether the f77 linker (/usr/bin/ld) supports shared 
 libraries... yes
 checking dynamic linker characteristics... freebsd6.3 ld.so
 checking how to hardcode library paths into programs... immediate
 checking for library containing strerror... none required
 checking for gcc... (cached) cc
 checking whether we are using the GNU C compiler... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for cc option to accept ISO C89... (cached) none needed
 checking dependency style of cc... (cached) gcc3
 checking for gcc... (cached) cc
 checking whether we are using the GNU C compiler... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for cc option to accept ISO C89... (cached) none needed
 checking dependency style of cc... (cached) gcc3
 checking for ANSI C header files... (cached) yes
 checking whether we are using the GNU C++ compiler... (cached) yes
 checking whether c++ accepts -g... (cached) yes
 checking dependency style of c++... (cached) gcc3
 checking for glib-genmarshal... /usr/local/bin/glib-genmarshal
 checking for glib-mkenums... /usr/local/bin/glib-mkenums
 checking for intltool = 0.35.0... 0.36.2 found
 checking for perl... /usr/bin/perl
 checking for XML::Parser... ok
 checking for pkg-config... /usr/local/bin/pkg-config
 checking pkg-config is at least version 0.9.0... yes
 checking what warning flags to pass to the C compiler...
 checking what language compliance flags to pass to the C compiler...
 checking what warning flags to pass to the C++ compiler... -Wall 
 -Wno-unused
 checking what language compliance flags to pass to the C++ compiler...
 checking for DEPENDENCIES... yes
 checking for DBUS... yes
 checking for dbus-binding-tool... /usr/local/bin/dbus-binding-tool
 Using config source xml:merged:/usr/local/etc/gconf/gconf.xml.defaults 
 for schema installation
 Using $(sysconfdir)/gconf/schemas as install directory for schema files
 checking for gconftool-2... /usr/local/bin/gconftool-2
 checking for mkdtemp... yes
 checking for which engine to use... mozilla
 checking for gawk... (cached) gawk
 checking which gecko to use... firefox
 checking manual gecko home set... checking for compiler -fshort-wchar 
 option... yes
 checking whether to enable C++ RTTI... no
 checking whether we have a gtk 2 gecko build... yes
 checking whether we have a gecko debug build... no
 checking whether we have a xpcom glue... no
 checking for gecko version... 1.8.1
 checking nspr in gecko... no
 checking nspr in system... yes
 checking whether we can compile and run XPCOM programs... no
 configure: error: Cannot compile and run XPCOM programs
 See `config.log' for more details.
 === Script configure failed unexpectedly.
 Please run the gnomelogalyzer, available from
 http://www.freebsd.org/gnome/gnomelogalyzer.sh;, which will diagnose the
 problem and suggest a solution. If - and only if - the gnomelogalyzer 
 cannot
 solve the problem, report the build failure to the FreeBSD GNOME team at
 [EMAIL PROTECTED], and attach (a)
 /usr/ports/www/epiphany/work/epiphany-2.22.1.1/config.log, (b) the 
 output
 of the failed make command, and (c) the gnomelogalyzer output. Also, it 
 might
 be a good idea to provide an overview of all packages installed on your 
 system
 (i.e. an `ls /var/db/pkg`). Put your attachment up on any website,
 copy-and-paste into http://freebsd-gnome.pastebin.com, or use send-pr(1) 
 with
 the attachment. Try to avoid sending any attachments to the mailing list
 ([EMAIL PROTECTED]), because attachments sent to FreeBSD mailing lists 
 are
 usually discarded by the mailing list software.
 *** Error code 1
 Stop in /usr/ports/www/epiphany.
 *** Error code 1
 Stop in /usr/ports/security/seahorse.
 *** Error code 1
 Stop in /usr/ports/security/seahorse.

 So still no solution for seahorse.
 Hope you know what's wrong and how it can be solved.

This is different problem now, it's not gnome

Re: yelp won't upgrade properly

2008-04-15 Thread Dino Vliet


Jeremy Messenger [EMAIL PROTECTED] wrote: On Mon, 14 Apr 2008 13:28:40 -0500, 
Dino Vliet   
wrote:

 Ok thanks for the suggestions,

 I've started with Yelp but am getting this error when doing a make  
 install distclean.

 [EMAIL PROTECTED] /usr/ports/x11/yelp]# make install distclean
 ===  Building for yelp-2.22.1
 gmake  all-recursive
 gmake[1]: Entering directory `/usr/ports/x11/yelp/work/yelp-2.22.1'
 Making all in src
 gmake[2]: Entering directory `/usr/ports/x11/yelp/work/yelp-2.22.1/src'
 gmake  all-am
 gmake[3]: Entering directory `/usr/ports/x11/yelp/work/yelp-2.22.1/src'
 /bin/sh ../libtool --tag=CXX --mode=link c++ -fno-rtti  -fshort-wchar  
 -O2 -fno-strict-aliasing -pipe -Wall -Wno-unused  -Wno-ctor-dtor-privacy  
 -Wno-non-virtual-dtor -O2 -fno-strict-aliasing -pipe  -L/usr/local/lib  
 -o yelp -R/usr/local/lib/firefox  yelp-Yelper.o yelp-yelp-base.o  
 yelp-yelp-bookmarks.o yelp-yelp-debug.o yelp-yelp-error.o  
 yelp-yelp-gecko-utils.o yelp-yelp-html.o yelp-yelp-io-channel.o  
 yelp-yelp-settings.o yelp-yelp-utils.o yelp-yelp-window.o  
 yelp-yelp-marshal.o yelp-yelp-main.o yelp-yelp-print.o yelp-yelp-page.o  
 yelp-yelp-transform.o yelp-yelp-gecko-services.o yelp-yelp-document.o  
 yelp-yelp-toc.o yelp-yelp-docbook.o yelp-yelp-db-print.o  
 yelp-yelp-man-parser.o yelp-yelp-man.o yelp-yelp-info.o  
 yelp-yelp-info-parser.o yelp-gtkentryaction.o yelp-yelp-search.o  
 yelp-yelp-search-parser.o -pthread -L/usr/local/lib -lglade-2.0  
 -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnomevfs-2 -lgnomecanvas-2  
 -lgnome-2 -lpopt -lbonobo-2 -lbonobo-activation -lORBit-2 -lart_lgpl_2
  -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0  
 -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite  
 -lXdamage -lcairo -lpangoft2-1.0 -lpango-1.0 -lfreetype -lfontconfig  
 -lX11 -lXfixes -lgconf-2 -lgthread-2.0 -lgmodule-2.0 -lexslt -lxslt -lz  
 -lm -lgcrypt -lgpg-error -lxml2 -lstartup-notification-1 -ldbus-glib-1  
 -ldbus-1 -lgobject-2.0 -lglib-2.0 -liconv -lrarian -lz -lbz2  -lSM  
 -lICE  -L/usr/local/lib -lX11  -Wl,-rpath,/usr/local/lib/firefox  
 -pthread -L/usr/local/lib/firefox -L/usr/local/lib -lgtkembedmoz -lxpcom  
 -lplds4 -lplc4 -lnspr4
 c++ -fno-rtti -fshort-wchar -O2 -fno-strict-aliasing -pipe -Wall  
 -Wno-unused -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -O2  
 -fno-strict-aliasing -pipe -o yelp yelp-Yelper.o yelp-yelp-base.o  
 yelp-yelp-bookmarks.o yelp-yelp-debug.o yelp-yelp-error.o  
 yelp-yelp-gecko-utils.o yelp-yelp-html.o yelp-yelp-io-channel.o  
 yelp-yelp-settings.o yelp-yelp-utils.o yelp-yelp-window.o  
 yelp-yelp-marshal.o yelp-yelp-main.o yelp-yelp-print.o yelp-yelp-page.o  
 yelp-yelp-transform.o yelp-yelp-gecko-services.o yelp-yelp-document.o  
 yelp-yelp-toc.o yelp-yelp-docbook.o yelp-yelp-db-print.o  
 yelp-yelp-man-parser.o yelp-yelp-man.o yelp-yelp-info.o  
 yelp-yelp-info-parser.o yelp-gtkentryaction.o yelp-yelp-search.o  
 yelp-yelp-search-parser.o -pthread -Wl,-rpath -Wl,/usr/local/lib/firefox  
 -pthread  -L/usr/local/lib /usr/local/lib/libglade-2.0.so  
 /usr/local/lib/libgnomeui-2.so /usr/local/lib/libgio-2.0.so  
 /usr/local/lib/libgnome-keyring.so /usr/local/lib/libjpeg.so  
 /usr/local/lib/libbonoboui-2.so
  /usr/local/lib/libgnomecanvas-2.so /usr/local/lib/libgailutil.so  
 /usr/local/lib/libpixman-1.so /usr/local/lib/libgnome-2.so  
 /usr/local/lib/libgnomevfs-2.so -lssl -lcrypto -lutil  
 /usr/local/lib/libesd.so -laudiofile /usr/local/lib/libpopt.so  
 /usr/local/lib/libbonobo-2.so /usr/local/lib/libbonobo-activation.so  
 /usr/local/lib/libORBitCosNaming-2.so /usr/local/lib/libart_lgpl_2.so  
 /usr/local/lib/libgtk-x11-2.0.so /usr/local/lib/libgdk-x11-2.0.so  
 /usr/local/lib/libatk-1.0.so /usr/local/lib/libgdk_pixbuf-2.0.so  
 /usr/local/lib/libpangocairo-1.0.so /usr/local/lib/libXinerama.so  
 /usr/local/lib/libXi.so /usr/local/lib/libXrandr.so  
 /usr/local/lib/libXcursor.so /usr/local/lib/libXcomposite.so  
 /usr/local/lib/libXext.so /usr/local/lib/libXdamage.so  
 /usr/local/lib/libcairo.so /usr/local/lib/libglitz.so -lpng  
 /usr/local/lib/libXrender.so /usr/local/lib/libpangoft2-1.0.so  
 /usr/local/lib/libpango-1.0.so /usr/local/lib/libfontconfig.so  
 /usr/local/lib/libfreetype.so /usr/local/lib/libexpat.so
  /usr/local/lib/libXfixes.so /usr/local/lib/libgconf-2.so  
 /usr/local/lib/libORBit-2.so /usr/local/lib/libgthread-2.0.so  
 /usr/local/lib/libgmodule-2.0.so /usr/local/lib/libexslt.so  
 /usr/local/lib/libxslt.so /usr/local/lib/libgcrypt.so  
 /usr/local/lib/libgpg-error.so /usr/local/lib/libxml2.so -lm  
 /usr/local/lib/libstartup-notification-1.so  
 /usr/local/lib/libdbus-glib-1.so /usr/local/lib/libdbus-1.so -pthread  
 /usr/local/lib/libgobject-2.0.so /usr/local/lib/libglib-2.0.so -licui18n  
 /usr/local/lib/libintl.so /usr/local/lib/libpcre.so  
 /usr/local/lib/libiconv.so /usr/local/lib/librarian.so -lz -lbz2  
 /usr/local/lib/libSM.so /usr/local/lib/libICE.so  
 /usr/local/lib/libX11.so /usr/local

Re: port seahorse won't upgrade properly

2008-04-15 Thread Dino Vliet


Jeremy Messenger [EMAIL PROTECTED] wrote: On Mon, 14 Apr 2008 13:36:18 -0500, 
Dino Vliet   
wrote:

 I've continued with the seahorse problem. In /usr/ports/UPDATING I  
 couldn't find anything regarding seahorse!

The gnome-keyring-manager is in /usr/ports/MOVED for gnome-keyring-manager  
- seahorse. For some reason, your portupgrade doesn't remove and replace  
to seahorse by itself. I don't know what happened.

 So I removed gnome-keyring-manager as you suggested.
 Then I did a portsnap fetch update.

 I then tried to install seahorse but got the following error:

 ===   epiphany-2.22.1.1 depends on shared library: ORBit-2.0 - found
 ===   epiphany-2.22.1.1 depends on shared library: pango-1.0.0 - found
 ===  Configuring for epiphany-2.22.1.1

 checking what language compliance flags to pass to the C++ compiler...
 checking for DEPENDENCIES... configure: error: Package requirements (
   glib-2.0 = 2.16.0
   gmodule-2.0
   gio-unix-2.0 = 2.16.0
   gtk+-2.0 = 2.12.0
   gtk+-unix-print-2.0 = 2.12.0
   libxml-2.0 = 2.6.12
   libxslt = 1.1.7
   libgnome-2.0 = 2.14.0
   libgnomeui-2.0 = 2.14.0
   libglade-2.0 = 2.3.1   gconf-2.0
   gnome-desktop-2.0 = 2.9.91
   libstartup-notification-1.0 = 0.5
   libnotify = 0.4
   ) were not met:
 Package gnome-keyring-1 was not found in the pkg-config search path.
 Perhaps you should add the directory containing `gnome-keyring-1.pc'
 to the PKG_CONFIG_PATH environment variable
 Package 'gnome-keyring-1', required by 'libgnomeui', not found


 What now?

 I really don't have a clue.

 Hope you can help me out,

Let me guess, you have selected to disable KEYRING option? It looks like  
this part is our fault. In Seahorse 2.22, it no longer provide option,  
which it required to have gnome-keyring dependency. I will fix it when I  
get back this afternoon by remove KEYRING option and depend on  
gnome-keyring. Meaning time, you can re-enable KEYRING and it should  
install Seahorse.

Cheers,
Mezz

 brgds
 Dino


-- 
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]

Uuuhhh, ok, you've got me here, I'm LOST.
What KEYRING option? I didn't recall (dis)abling any option. 
I just want to install seahorse via the make install distclean command in the 
seahorse port directory and keep getting an error.

Just tried it tonight again and this was the result:

checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... freebsd6.3 ld.so
checking how to hardcode library paths into programs... immediate
appending configuration tag F77 to libtool
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for f77 option to produce PIC... -fPIC
checking if f77 PIC flag -fPIC works... yes
checking if f77 static flag -static works... yes
checking if f77 supports -c -o file.o... yes
checking whether the f77 linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... freebsd6.3 ld.so
checking how to hardcode library paths into programs... immediate
checking for library containing strerror... none required
checking for gcc... (cached) cc
checking whether we are using the GNU C compiler... (cached) yes
checking whether cc accepts -g... (cached) yes
checking for cc option to accept ISO C89... (cached) none needed
checking dependency style of cc... (cached) gcc3
checking for gcc... (cached) cc
checking whether we are using the GNU C compiler... (cached) yes
checking whether cc accepts -g... (cached) yes
checking for cc option to accept ISO C89... (cached) none needed
checking dependency style of cc... (cached) gcc3
checking for ANSI C header files... (cached) yes
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether c++ accepts -g... (cached) yes
checking dependency style of c++... (cached) gcc3
checking for glib-genmarshal... /usr/local/bin/glib-genmarshal
checking for glib-mkenums... /usr/local/bin/glib-mkenums
checking for intltool = 0.35.0... 0.36.2 found
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for pkg-config... /usr/local/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking what warning flags to pass to the C compiler... 
checking what language compliance flags to pass to the C compiler... 
checking what warning flags to pass to the C++ compiler... -Wall -Wno-unused
checking what language compliance flags to pass to the C++ compiler... 
checking for DEPENDENCIES... yes
checking for DBUS... yes
checking for dbus-binding-tool... /usr/local/bin/dbus-binding-tool
Using config source xml:merged:/usr/local/etc/gconf

yelp won't upgrade properly

2008-04-14 Thread Dino Vliet


Jeremy Messenger [EMAIL PROTECTED] wrote: On Sun, 13 Apr 2008 15:56:11 -0500, 
Dino Vliet   
wrote:



 Jeremy Messenger  wrote: On Sat, 12 Apr 2008 14:45:47  
 -0500, Dino Vliet
 wrote:

 Folks,

 I've tried to upgrade my ports and get the following error from
 gnome-applets everytime I do a portupgrade gnome-applets:

 ain.c:42: error: structure has no member named `gconf'
 main.c:46: error: structure has no member named `gweather_pref'
 main.c:46: error: structure has no member named `gconf'
 gmake[2]: *** [main.o] Error 1
 gmake[2]: Leaving directory
 `/usr/ports/x11/gnome-applets/work/gnome-applets-2.22.1/gweather'
 gmake[1]: *** [install-recursive] Error 1
 gmake[1]: Leaving directory
 `/usr/ports/x11/gnome-applets/work/gnome-applets-2.22.1/gweather'
 gmake: *** [install-recursive] Error 1
 *** Error code 2

 Stop in /usr/ports/x11/gnome-applets.
 *** Error code 1

 Stop in /usr/ports/x11/gnome-applets.
 *** Error code 1

 Stop in /usr/ports/x11/gnome-applets.
 ** Command failed [exit code 1]: /usr/bin/script -qa
 /tmp/portupgrade.38565.0 env UPGRADE_TOOL=portupgrade
 UPGRADE_PORT=gnome-applets-2.20.1 UPGRADE_PORT_VER=2.20.1 make
 WITH_FAM_SYSTEM=fam reinstall
 ---  Restoring the old version

 ** Fix the installation problem and try again.
 [Updating the pkgdb  in /var/db/pkg ... - 988 packages
 found (-0 +1) . done]
 ** Listing the failed packages (-:ignored / *:skipped / !:failed)
 ! x11/gnome-applets (gnome-applets-2.20.1)  (install error)
 ** Could not clean up temporary directory: Directory not empty -
 /var/tmp/portupgradeOdM6jXk4


 I'm seeing this on my AMD64 freebsd 6.3 system.

 Does anyone have ideas?

 Did you follow the /usr/ports/UPDATING?

 Cheers,
 Mezz

 Thanks

 Now I did and chek out the mess:

 ** Fix the problem and try again.
 ** Listing the failed packages (-:ignored / *:skipped / !:failed)
 - graphics/ImageMagick (marked as IGNORE)
 - java/diablo-jdk15 (marked as IGNORE)
 - japanese/lynx (marked as IGNORE)
 - java/jdk15 (marked as IGNORE)
 - textproc/p5-Text-ParseWords (port directory error)
 - x11-servers/xorg-printserver (marked as IGNORE)
 ! devel/ccrtp (ccrtp-1.5.2) (unknown build error)
 * devel/libzrtpcpp (libzrtpcpp-0.9.2)
 * net/twinkle (twinkle-1.0_4)
 * multimedia/libxine (libxine-1.1.7_3)
 ! x11/yelp (yelp-2.18.1_1)  (linker error)
 * finance/gnucash-docs (gnucash-docs-2.2.0)
 * finance/gnucash (gnucash-2.2.0)
 ! security/seahorse (gnome-keyring-manager-2.20.0)   
 (configure error)

 What is next?

It doesn't show anything. You need to do it again to get actually error.  
The portupgrade has option to save build log or you can go to each port  
and do it by hand to get build error log. As for the seahorse part, are  
you sure you have complete ports tree up to date? The portupgrade is  
supposed to delete gnome-keyring-manager. If you still have it, remove it  
by manual and redo it.

Cheers,
Mezz


-- 
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
Ok thanks for the suggestions,

I've started with Yelp but am getting this error when doing a make install 
distclean.

[EMAIL PROTECTED] /usr/ports/x11/yelp]# make install distclean
===  Building for yelp-2.22.1
gmake  all-recursive
gmake[1]: Entering directory `/usr/ports/x11/yelp/work/yelp-2.22.1'
Making all in src
gmake[2]: Entering directory `/usr/ports/x11/yelp/work/yelp-2.22.1/src'
gmake  all-am
gmake[3]: Entering directory `/usr/ports/x11/yelp/work/yelp-2.22.1/src'
/bin/sh ../libtool --tag=CXX --mode=link c++ -fno-rtti  -fshort-wchar -O2 
-fno-strict-aliasing -pipe -Wall -Wno-unused  -Wno-ctor-dtor-privacy 
-Wno-non-virtual-dtor -O2 -fno-strict-aliasing -pipe  -L/usr/local/lib -o yelp 
-R/usr/local/lib/firefox  yelp-Yelper.o yelp-yelp-base.o yelp-yelp-bookmarks.o 
yelp-yelp-debug.o yelp-yelp-error.o yelp-yelp-gecko-utils.o yelp-yelp-html.o 
yelp-yelp-io-channel.o yelp-yelp-settings.o yelp-yelp-utils.o 
yelp-yelp-window.o yelp-yelp-marshal.o yelp-yelp-main.o yelp-yelp-print.o 
yelp-yelp-page.o yelp-yelp-transform.o yelp-yelp-gecko-services.o 
yelp-yelp-document.o yelp-yelp-toc.o yelp-yelp-docbook.o yelp-yelp-db-print.o 
yelp-yelp-man-parser.o yelp-yelp-man.o yelp-yelp-info.o yelp-yelp-info-parser.o 
yelp-gtkentryaction.o yelp-yelp-search.o yelp-yelp-search-parser.o -pthread 
-L/usr/local/lib -lglade-2.0 -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnomevfs-2 
-lgnomecanvas-2 -lgnome-2 -lpopt -lbonobo-2 -lbonobo-activation -lORBit-2 
-lart_lgpl_2
 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lXext 
-lXrender -lXinerama -lXi -lXrandr -lXcursor -lXcomposite -lXdamage -lcairo 
-lpangoft2-1.0 -lpango-1.0 -lfreetype -lfontconfig -lX11 -lXfixes -lgconf-2 
-lgthread-2.0 -lgmodule-2.0 -lexslt -lxslt -lz -lm -lgcrypt -lgpg-error -lxml2 
-lstartup-notification-1 -ldbus-glib-1 -ldbus-1 -lgobject-2.0

Re: port seahorse won't upgrade properly

2008-04-14 Thread Dino Vliet


Jeremy Messenger [EMAIL PROTECTED] wrote: On Sun, 13 Apr 2008 15:56:11 -0500, 
Dino Vliet   
wrote:



 Jeremy Messenger  wrote: On Sat, 12 Apr 2008 14:45:47  
 -0500, Dino Vliet
 wrote:

 Folks,

 I've tried to upgrade my ports and get the following error from
 gnome-applets everytime I do a portupgrade gnome-applets:

 ain.c:42: error: structure has no member named `gconf'
 main.c:46: error: structure has no member named `gweather_pref'
 main.c:46: error: structure has no member named `gconf'
 gmake[2]: *** [main.o] Error 1
 gmake[2]: Leaving directory
 `/usr/ports/x11/gnome-applets/work/gnome-applets-2.22.1/gweather'
 gmake[1]: *** [install-recursive] Error 1
 gmake[1]: Leaving directory
 `/usr/ports/x11/gnome-applets/work/gnome-applets-2.22.1/gweather'
 gmake: *** [install-recursive] Error 1
 *** Error code 2

 Stop in /usr/ports/x11/gnome-applets.
 *** Error code 1

 Stop in /usr/ports/x11/gnome-applets.
 *** Error code 1

 Stop in /usr/ports/x11/gnome-applets.
 ** Command failed [exit code 1]: /usr/bin/script -qa
 /tmp/portupgrade.38565.0 env UPGRADE_TOOL=portupgrade
 UPGRADE_PORT=gnome-applets-2.20.1 UPGRADE_PORT_VER=2.20.1 make
 WITH_FAM_SYSTEM=fam reinstall
 ---  Restoring the old version

 ** Fix the installation problem and try again.
 [Updating the pkgdb  in /var/db/pkg ... - 988 packages
 found (-0 +1) . done]
 ** Listing the failed packages (-:ignored / *:skipped / !:failed)
 ! x11/gnome-applets (gnome-applets-2.20.1)  (install error)
 ** Could not clean up temporary directory: Directory not empty -
 /var/tmp/portupgradeOdM6jXk4


 I'm seeing this on my AMD64 freebsd 6.3 system.

 Does anyone have ideas?

 Did you follow the /usr/ports/UPDATING?

 Cheers,
 Mezz

 Thanks

 Now I did and chek out the mess:

 ** Fix the problem and try again.
 ** Listing the failed packages (-:ignored / *:skipped / !:failed)
 - graphics/ImageMagick (marked as IGNORE)
 - java/diablo-jdk15 (marked as IGNORE)
 - japanese/lynx (marked as IGNORE)
 - java/jdk15 (marked as IGNORE)
 - textproc/p5-Text-ParseWords (port directory error)
 - x11-servers/xorg-printserver (marked as IGNORE)
 ! devel/ccrtp (ccrtp-1.5.2) (unknown build error)
 * devel/libzrtpcpp (libzrtpcpp-0.9.2)
 * net/twinkle (twinkle-1.0_4)
 * multimedia/libxine (libxine-1.1.7_3)
 ! x11/yelp (yelp-2.18.1_1)  (linker error)
 * finance/gnucash-docs (gnucash-docs-2.2.0)
 * finance/gnucash (gnucash-2.2.0)
 ! security/seahorse (gnome-keyring-manager-2.20.0)   
 (configure error)

 What is next?

It doesn't show anything. You need to do it again to get actually error.  
The portupgrade has option to save build log or you can go to each port  
and do it by hand to get build error log. As for the seahorse part, are  
you sure you have complete ports tree up to date? The portupgrade is  
supposed to delete gnome-keyring-manager. If you still have it, remove it  
by manual and redo it.

Cheers,
Mezz


-- 
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
I've continued with the seahorse problem. In /usr/ports/UPDATING I couldn't 
find anything regarding seahorse!

So I removed gnome-keyring-manager as you suggested.
Then I did a portsnap fetch update.

I then tried to install seahorse but got the following error:
===   epiphany-2.22.1.1 depends on shared library: ORBit-2.0 - found
===   epiphany-2.22.1.1 depends on shared library: pango-1.0.0 - found
===  Configuring for epiphany-2.22.1.1
checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
checking for gawk... gawk
checking whether gmake sets $(MAKE)... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... amd64-portbld-freebsd6.3
checking host system type... amd64-portbld-freebsd6.3
checking for style of include used by gmake... GNU
checking for gcc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking dependency style of cc... gcc3
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes

Re: port gnome-applets won't upgrade properly

2008-04-13 Thread Dino Vliet


Jeremy Messenger [EMAIL PROTECTED] wrote: On Sat, 12 Apr 2008 14:45:47 -0500, 
Dino Vliet   
wrote:

 Folks,

 I've tried to upgrade my ports and get the following error from  
 gnome-applets everytime I do a portupgrade gnome-applets:

 ain.c:42: error: structure has no member named `gconf'
 main.c:46: error: structure has no member named `gweather_pref'
 main.c:46: error: structure has no member named `gconf'
 gmake[2]: *** [main.o] Error 1
 gmake[2]: Leaving directory  
 `/usr/ports/x11/gnome-applets/work/gnome-applets-2.22.1/gweather'
 gmake[1]: *** [install-recursive] Error 1
 gmake[1]: Leaving directory  
 `/usr/ports/x11/gnome-applets/work/gnome-applets-2.22.1/gweather'
 gmake: *** [install-recursive] Error 1
 *** Error code 2

 Stop in /usr/ports/x11/gnome-applets.
 *** Error code 1

 Stop in /usr/ports/x11/gnome-applets.
 *** Error code 1

 Stop in /usr/ports/x11/gnome-applets.
 ** Command failed [exit code 1]: /usr/bin/script -qa  
 /tmp/portupgrade.38565.0 env UPGRADE_TOOL=portupgrade  
 UPGRADE_PORT=gnome-applets-2.20.1 UPGRADE_PORT_VER=2.20.1 make  
 WITH_FAM_SYSTEM=fam reinstall
 ---  Restoring the old version

 ** Fix the installation problem and try again.
 [Updating the pkgdb  in /var/db/pkg ... - 988 packages  
 found (-0 +1) . done]
 ** Listing the failed packages (-:ignored / *:skipped / !:failed)
 ! x11/gnome-applets (gnome-applets-2.20.1)  (install error)
 ** Could not clean up temporary directory: Directory not empty -  
 /var/tmp/portupgradeOdM6jXk4


 I'm seeing this on my AMD64 freebsd 6.3 system.

 Does anyone have ideas?

Did you follow the /usr/ports/UPDATING?

Cheers,
Mezz

 Thanks


-- 
[EMAIL PROTECTED]  -  [EMAIL PROTECTED]
FreeBSD GNOME Team
http://www.FreeBSD.org/gnome/  -  [EMAIL PROTECTED]
Now I did and chek out the mess:

** Fix the problem and try again.
** Listing the failed packages (-:ignored / *:skipped / !:failed)
- graphics/ImageMagick (marked as IGNORE)
- java/diablo-jdk15 (marked as IGNORE)
- japanese/lynx (marked as IGNORE)
- java/jdk15 (marked as IGNORE)
- textproc/p5-Text-ParseWords (port directory error)
- x11-servers/xorg-printserver (marked as IGNORE)
! devel/ccrtp (ccrtp-1.5.2) (unknown build error)
* devel/libzrtpcpp (libzrtpcpp-0.9.2)
* net/twinkle (twinkle-1.0_4)
* multimedia/libxine (libxine-1.1.7_3)
! x11/yelp (yelp-2.18.1_1)  (linker error)
* finance/gnucash-docs (gnucash-docs-2.2.0)
* finance/gnucash (gnucash-2.2.0)
! security/seahorse (gnome-keyring-manager-2.20.0)  (configure 
error)

What is next?

brgds



 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


port gnome-applets won't upgrade properly

2008-04-12 Thread Dino Vliet
Folks,

I've tried to upgrade my ports and get the following error from gnome-applets 
everytime I do a portupgrade gnome-applets:

ain.c:42: error: structure has no member named `gconf'
main.c:46: error: structure has no member named `gweather_pref'
main.c:46: error: structure has no member named `gconf'
gmake[2]: *** [main.o] Error 1
gmake[2]: Leaving directory 
`/usr/ports/x11/gnome-applets/work/gnome-applets-2.22.1/gweather'
gmake[1]: *** [install-recursive] Error 1
gmake[1]: Leaving directory 
`/usr/ports/x11/gnome-applets/work/gnome-applets-2.22.1/gweather'
gmake: *** [install-recursive] Error 1
*** Error code 2

Stop in /usr/ports/x11/gnome-applets.
*** Error code 1

Stop in /usr/ports/x11/gnome-applets.
*** Error code 1

Stop in /usr/ports/x11/gnome-applets.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.38565.0 
env UPGRADE_TOOL=portupgrade UPGRADE_PORT=gnome-applets-2.20.1 
UPGRADE_PORT_VER=2.20.1 make WITH_FAM_SYSTEM=fam reinstall
---  Restoring the old version

** Fix the installation problem and try again.
[Updating the pkgdb format:bdb_btree in /var/db/pkg ... - 988 packages found 
(-0 +1) . done]
** Listing the failed packages (-:ignored / *:skipped / !:failed)
! x11/gnome-applets (gnome-applets-2.20.1)  (install error)
** Could not clean up temporary directory: Directory not empty - 
/var/tmp/portupgradeOdM6jXk4


I'm seeing this on my AMD64 freebsd 6.3 system.

Does anyone have ideas?

Thanks


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


port yelp won't upgrade properly

2008-04-12 Thread Dino Vliet
Hi folks,

when I try to upgrade yelp on my amd64 system running freebsd 6.3 I get the 
following error:

c++ -fno-rtti -fshort-wchar -O2 -fno-strict-aliasing -pipe -Wall -Wno-unused 
-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -O2 -fno-strict-aliasing -pipe -o 
yelp yelp-Yelper.o yelp-yelp-base.o yelp-yelp-bookmarks.o yelp-yelp-debug.o 
yelp-yelp-error.o yelp-yelp-gecko-utils.o yelp-yelp-html.o 
yelp-yelp-io-channel.o yelp-yelp-settings.o yelp-yelp-utils.o 
yelp-yelp-window.o yelp-yelp-marshal.o yelp-yelp-main.o yelp-yelp-print.o 
yelp-yelp-page.o yelp-yelp-transform.o yelp-yelp-gecko-services.o 
yelp-yelp-document.o yelp-yelp-toc.o yelp-yelp-docbook.o yelp-yelp-db-print.o 
yelp-yelp-man-parser.o yelp-yelp-man.o yelp-yelp-info.o yelp-yelp-info-parser.o 
yelp-gtkentryaction.o yelp-yelp-search.o yelp-yelp-search-parser.o -pthread 
-Wl,-rpath -Wl,/usr/local/lib/firefox -pthread  -L/usr/local/lib 
/usr/local/lib/libglade-2.0.so /usr/local/lib/libgnomeui-2.so 
/usr/local/lib/libgio-2.0.so /usr/local/lib/libgnome-keyring.so 
/usr/local/lib/libjpeg.so /usr/local/lib/libbonoboui-2.so
 /usr/local/lib/libgnomecanvas-2.so /usr/local/lib/libgailutil.so 
/usr/local/lib/libpixman-1.so /usr/local/lib/libgnome-2.so 
/usr/local/lib/libgnomevfs-2.so -lssl -lcrypto -lutil /usr/local/lib/libesd.so 
-laudiofile /usr/local/lib/libpopt.so /usr/local/lib/libbonobo-2.so 
/usr/local/lib/libbonobo-activation.so /usr/local/lib/libORBitCosNaming-2.so 
/usr/local/lib/libart_lgpl_2.so /usr/local/lib/libgtk-x11-2.0.so 
/usr/local/lib/libgdk-x11-2.0.so /usr/local/lib/libatk-1.0.so 
/usr/local/lib/libgdk_pixbuf-2.0.so /usr/local/lib/libpangocairo-1.0.so 
/usr/local/lib/libXinerama.so /usr/local/lib/libXi.so 
/usr/local/lib/libXrandr.so /usr/local/lib/libXcursor.so 
/usr/local/lib/libXcomposite.so /usr/local/lib/libXext.so 
/usr/local/lib/libXdamage.so /usr/local/lib/libcairo.so 
/usr/local/lib/libglitz.so -lpng /usr/local/lib/libXrender.so 
/usr/local/lib/libpangoft2-1.0.so /usr/local/lib/libpango-1.0.so 
/usr/local/lib/libfontconfig.so /usr/local/lib/libfreetype.so 
/usr/local/lib/libexpat.so
 /usr/local/lib/libXfixes.so /usr/local/lib/libgconf-2.so 
/usr/local/lib/libORBit-2.so /usr/local/lib/libgthread-2.0.so 
/usr/local/lib/libgmodule-2.0.so /usr/local/lib/libexslt.so 
/usr/local/lib/libxslt.so /usr/local/lib/libgcrypt.so 
/usr/local/lib/libgpg-error.so /usr/local/lib/libxml2.so -lm 
/usr/local/lib/libstartup-notification-1.so /usr/local/lib/libdbus-glib-1.so 
/usr/local/lib/libdbus-1.so -pthread /usr/local/lib/libgobject-2.0.so 
/usr/local/lib/libglib-2.0.so -licui18n /usr/local/lib/libintl.so 
/usr/local/lib/libpcre.so /usr/local/lib/libiconv.so 
/usr/local/lib/librarian.so -lz -lbz2 /usr/local/lib/libSM.so 
/usr/local/lib/libICE.so /usr/local/lib/libX11.so /usr/local/lib/libXau.so 
/usr/local/lib/libXdmcp.so -lrpcsvc -L/usr/local/lib/firefox -lgtkembedmoz 
-lxpcom -lplds4 -lplc4 -lnspr4   -Wl,--rpath -Wl,/usr/local/lib -Wl,--rpath 
-Wl,/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib/firefox
yelp-Yelper.o(.text+0x26d): In function `Yelper::Find(char const*)':
: undefined reference to `NS_CStringContainerInit2'
yelp-yelp-gecko-services.o(.text+0x631): In function 
`PrintListener::SetPrintSettings(_YelpPrintInfo*, int, nsIPrintSettings*)':
: undefined reference to `NS_StringContainerInit2'
yelp-yelp-gecko-services.o(.text+0x6f4): In function 
`PrintListener::SetPrintSettings(_YelpPrintInfo*, int, nsIPrintSettings*)':
: undefined reference to `NS_CStringContainerInit2'
yelp-yelp-gecko-services.o(.text+0x8fd): In function 
`PrintListener::SetPrintSettings(_YelpPrintInfo*, int, nsIPrintSettings*)':
: undefined reference to `NS_CStringContainerInit2'
yelp-yelp-gecko-services.o(.text+0x9cf): In function 
`PrintListener::SetPrintSettings(_YelpPrintInfo*, int, nsIPrintSettings*)':
: undefined reference to `NS_CStringContainerInit2'
yelp-yelp-gecko-services.o(.text+0xa1e): In function 
`PrintListener::SetPrintSettings(_YelpPrintInfo*, int, nsIPrintSettings*)':
: undefined reference to `NS_CStringContainerInit2'
yelp-yelp-gecko-services.o(.text+0xa6d): In function 
`PrintListener::SetPrintSettings(_YelpPrintInfo*, int, nsIPrintSettings*)':
: undefined reference to `NS_CStringContainerInit2'
yelp-yelp-gecko-services.o(.text+0xabc): more undefined references to 
`NS_CStringContainerInit2' follow
/usr/local/lib/libgtkembedmoz.so: undefined reference to `NS_InitXPCOM3'
gmake[3]: *** [yelp] Error 1
gmake[3]: Leaving directory `/usr/ports/x11/yelp/work/yelp-2.22.1/src'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory `/usr/ports/x11/yelp/work/yelp-2.22.1/src'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/usr/ports/x11/yelp/work/yelp-2.22.1'
gmake: *** [all] Error 2
*** Error code 2

Stop in /usr/ports/x11/yelp.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.92482.0 
env UPGRADE_TOOL=portupgrade UPGRADE_PORT=yelp-2.18.1_1 
UPGRADE_PORT_VER=2.18.1_1 make WITH_FAM_SYSTEM=fam
** Fix the problem and try 

error when upgrading gnome-panel on FreeBSD 6.3 (AMD64)

2008-03-26 Thread Dino Vliet
Whenever I try to upgrade my gnome-panel port on my amd64 system running 
freebsd 6.3 I get the ollowing error:

clock_applet-clock.o(.text+0x2ac2): In function `location_weather_updated_cb':
: undefined reference to `weather_info_get_icon_name'
clock_applet-clock.o(.text+0x3008): In function 
`parse_and_set_temperature_string':
: undefined reference to `gweather_prefs_parse_temperature'
clock_applet-clock.o(.text+0x3048): In function `parse_and_set_speed_string':
: undefined reference to `gweather_prefs_parse_speed'
clock_applet-clock.o(.text+0x5b40): In function `display_properties_dialog':
: undefined reference to `gweather_prefs_get_temp_display_name'
clock_applet-clock.o(.text+0x5c4d): In function `display_properties_dialog':
: undefined reference to `gweather_prefs_get_speed_display_name'
clock_applet-clock-location-tile.o(.text+0x9ee): In function 
`weather_info_setup_tooltip':
: undefined reference to `weather_info_get_icon_name'
clock_applet-clock-location-tile.o(.text+0xd26): In function 
`update_weather_icon':
: undefined reference to `weather_info_get_icon_name'
gmake[5]: *** [clock-applet] Error 1
gmake[5]: Leaving directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.22.0/applets/clock'
gmake[4]: *** [all-recursive] Error 1
gmake[4]: Leaving directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.22.0/applets/clock'
gmake[3]: *** [all] Error 2
gmake[3]: Leaving directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.22.0/applets/clock'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.22.0/applets'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/usr/ports/x11/gnome-panel/work/gnome-panel-2.22.0'
gmake: *** [all] Error 2
*** Error code 2

Stop in /usr/ports/x11/gnome-panel.
*** Error code 1

Stop in /usr/ports/x11/gnome-panel.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.40940.0 
env UPGRADE_TOOL=portupgrade UPGRADE_PORT=gnome-panel-2.20.3 
UPGRADE_PORT_VER=2.20.3 make WITH_FAM_SYSTEM=fam
** Fix the problem and try again.
** Listing the failed packages (-:ignored / *:skipped / !:failed)
! x11/gnome-panel (gnome-panel-2.20.3)  (linker error)

What should I do?

Brgds
Dino


   
-
Looking for last minute shopping deals?  Find them fast with Yahoo! Search.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


uninstall all of Gnome with expections

2008-03-22 Thread Dino Vliet
Hi folks,

lately I've been thinking about removing all of Gnome, which has served as my 
primary desktop for years. The reasons is the broken upgrades I experience 
everytime Gnome updates and the fact that I will move to KDE4.

At the moment I would just like to use Xfce4.

I want to remove all of Gnome, except evolution.

Will this command do the trick?

pkg_deinstall -R x11/gnome2 -x evolution

Hope you can help me out.

Brgds
Dino



   
-
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


java plugin for Firefox on AMD64 running FreeBSD 6.3

2008-03-21 Thread Dino Vliet
Hi folks,

I'm lost at finding a solution for getting the java plugin to work in Firefox 
2.11 on my AMD64 system running FreeBSD 6.3.

I've upgraded my ports and the diablo-jdk version is:
pkg_info | grep diablo
diablo-jdk-1.5.0.07.01_9 Java Development Kit 1.5.0_07.01

The handbook said I needed the JRE so I installed that as well:

pkg_info | grep diablo
diablo-jdk-1.5.0.07.01_9 Java Development Kit 1.5.0_07.01
diablo-jre-1.5.0.07.01_9 Java Runtime Environment 1.5.0_07.01

But now I need to do this in order to see the java plugin activated when I 
press about:plugins:

# ln -s /usr/local/diablo-jre1.5.0/plugin/i386/ns7/libjavaplugin_oji.so \
/usr/local/lib/browser_plugins/

But I don't have a plugin directory in the 
  /usr/local/diablo-jre1.5.0 directory, so I won't have that file 
libjavaplugin_oji.so either.
 

So what am I doing wrong?

Thanks in advanced,
Dino

 


 
   
-
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: java plugin for Firefox on AMD64 running FreeBSD 6.3

2008-03-21 Thread Dino Vliet
Jung-uk Kim [EMAIL PROTECTED] wrote: On Friday 21 March 2008 08:46 am, Dino 
Vliet wrote:
 Hi folks,

 I'm lost at finding a solution for getting the java plugin to work
 in Firefox 2.11 on my AMD64 system running FreeBSD 6.3.

 I've upgraded my ports and the diablo-jdk version is:
 pkg_info | grep diablo
 diablo-jdk-1.5.0.07.01_9 Java Development Kit 1.5.0_07.01

 The handbook said I needed the JRE so I installed that as well:

 pkg_info | grep diablo
 diablo-jdk-1.5.0.07.01_9 Java Development Kit 1.5.0_07.01
 diablo-jre-1.5.0.07.01_9 Java Runtime Environment 1.5.0_07.01

 But now I need to do this in order to see the java plugin activated
 when I press about:plugins:

 # ln -s
 /usr/local/diablo-jre1.5.0/plugin/i386/ns7/libjavaplugin_oji.so \
 /usr/local/lib/browser_plugins/

 But I don't have a plugin directory in the
   /usr/local/diablo-jre1.5.0 directory, so I won't have that file
 libjavaplugin_oji.so either.

diablo-jdk/-jre does not have Mozilla plugin for amd64.  You have to 
build *JDK* from ports with plugin support, i.e., ports/java/jdk15 or 
ports/java/jdk16.

Jung-uk Kim


Works Perfect:-)
I've installed jdk15 and the plugin worked immediately.
Thanks a lot, because this means I can continue using my FreeBSD desktop iso 
switching to a linux pc whenever I needed to work at home.

Ciao
Dino

   
-
Never miss a thing.   Make Yahoo your homepage.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Failed Upgrading 'gnucash-2.2.0' to 'gnucash-2.2.3_2'

2008-03-15 Thread Dino Vliet

Hi folks,
I'm updating my ports and ran across this error message when I update
   
my freebsd 6.2 amd64 system. When upgrading gnucash I get the following error:


mkdir .libs
c++ -O2 -fno-strict-aliasing -pipe -o .libs/ofxconnect cmdline.o nodeparser.o 
ofxpartner.o ofxconnect.o -rpath=/usr/local/lib  -L/usr/local/lib 
../lib/.libs/libofx.so /usr/local/lib/libosp.so /usr/local/lib/libintl.so 
-lpthread /usr/local/lib/libcurl.so -L/usr/lib /usr/local/lib/libssh2.so -lssl 
-lcrypto /usr/local/lib/libxml++-1.0.so /usr/local/lib/libxml2.so -lz 
/usr/local/lib/libiconv.so -lm  -Wl,--rpath -Wl,/usr/local/lib
creating ofxconnect
gmake[2]: Leaving directory 
`/usr/ports/finance/libofx/work/libofx-0.9.0/ofxconnect'
gmake[1]: Leaving directory `/usr/ports/finance/libofx/work/libofx-0.9.0'
===  Installing for libofx-0.9.0
===   Generating temporary packing list
===  Checking if finance/libofx already installed
===   libofx-0.9.0 is already installed
  You may wish to ``make deinstall'' and install this port again
  by ``make reinstall'' to upgrade it properly.
  If you really wish to overwrite the old port of finance/libofx
  without deleting it first, set the variable FORCE_PKG_REGISTER
  in your environment or the make install command line.
*** Error code 1

Stop in /usr/ports/finance/libofx.
*** Error code 1

Stop in /usr/ports/finance/gnucash.
*** Error code 1

Stop in /usr/ports/finance/gnucash.
** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.36334.1 
env UPGRADE_TOOL=portupgrade UPGRADE_PORT=gnucash-2.2.0 UPGRADE_PORT_VER=2.2.0 
make WITH_FAM_SYSTEM=fam
** Fix the problem and try again.
** Listing the failed packages (-:ignored / *:skipped / !:failed)
! finance/gnucash (gnucash-2.2.0)   (unknown build error)


I've tried make deinstalling libofx, reinstalling, etc etc, all with no success.
What can I do to fix this?
/usr/ports/UPDATING doesn't have an entry for gnucash nor libofx

Thanks in advanced,
Dino


   
-
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


error when upgrading gnome-panel on FreeBSD 6.2 (AMD64)

2008-03-10 Thread Dino Vliet
Hi folks,
I'm updating my ports and ran across this error message when I update  my 
freebsd 6.2  amd64 system.

When upgrading gnome-panel  I get the following error:

Making install in gnome-panel  
 gmake[1]: Entering directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.20.3/gnome-panel'  
 gmake  install-am  
 gmake[2]: Entering directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.20.3/gnome-panel'  
 gmake[3]: Entering directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.20.3/gnome-panel'  
 test -z /usr/local/bin || /usr/local/bin/gmkdir -p /usr/local/bin  
   /bin/sh /usr/ports/x11/gnome-panel/work/gnome-libtool --mode=install install 
 -s -o root -g wheel -m 555 'gnome-panel' '/usr/local/bin/gnome-panel' 
 install -o root -g wheel -m 555 -s gnome-panel /usr/local/bin/gnome-panel  
   /bin/sh /usr/ports/x11/gnome-panel/work/gnome-libtool --mode=install install 
 -s -o root -g wheel -m 555 'gnome-desktop-item-edit' 
'/usr/local/bin/gnome-desktop-item-edit'  
 install -o root -g wheel -m 555 -s gnome-desktop-item-edit 
/usr/local/bin/gnome-desktop-item-edit  
 if test -z  ; then \  
 for p in panel-compatibility.schemas panel-global.schemas 
panel-general.schemas panel-toplevel.schemas panel-object.schemas ; do \  
 
GCONF_CONFIG_SOURCE=xml:merged:/usr/local/etc/gconf/gconf.xml.defaults 
/usr/local/bin/gconftool-2 --makefile-install-rule ../gnome-panel/$p ; \  
 done ; \  
 /usr/local/bin/gconftool-2 --direct 
--config-source=xml:merged:/usr/local/etc/gconf/gconf.xml.defaults --load 
./panel-default-setup.entries ; \  
 /usr/local/bin/gconftool-2 --direct 
--config-source=xml:merged:/usr/local/etc/gconf/gconf.xml.defaults --load 
./panel-default-setup.entries /apps/panel ; \  
 fi  
 /libexec/ld-elf.so.1: Shared object libicui18n.so.36 not found, required by 
gconftool-2 
 /libexec/ld-elf.so.1: Shared object libicui18n.so.36 not found, required by 
gconftool-2 
 /libexec/ld-elf.so.1: Shared object libicui18n.so.36 not found, required by 
gconftool-2 
 /libexec/ld-elf.so.1: Shared object libicui18n.so.36 not found, required by 
gconftool-2 
 /libexec/ld-elf.so.1: Shared object libicui18n.so.36 not found, required by 
gconftool-2 
 /libexec/ld-elf.so.1: Shared object libicui18n.so.36 not found, required by 
gconftool-2 
 /libexec/ld-elf.so.1: Shared object libicui18n.so.36 not found, required by 
gconftool-2 
 gmake[3]: *** [install-data-local] Error 1  
 gmake[3]: Leaving directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.20.3/gnome-panel'  
 gmake[2]: *** [install-am] Error 2  
 gmake[2]: Leaving directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.20.3/gnome-panel'  
 gmake[1]: *** [install] Error 2  
 gmake[1]: Leaving directory 
`/usr/ports/x11/gnome-panel/work/gnome-panel-2.20.3/gnome-panel'  
 gmake: *** [install-recursive] Error 1  
 *** Error code 2  
 
 
 Stop in /usr/ports/x11/gnome-panel.  
 *** Error code 1  
 
 
 Stop in /usr/ports/x11/gnome-panel.  
 *** Error code 1  
 

What is happening here? What can I do to solve this? 

   
-
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


geom gmirror question

2007-12-06 Thread Dino Vliet
  Forwarded Message 

From:  Dino Vliet [EMAIL PROTECTED]CC:  [EMAIL PROTECTED]
To:  freebsd-questions@freebsd.orgDate:  Sat, 7 Apr 2007 03:55:20 -0700 
(PDT)Subject:  hardware problems?..how to disable geom?Plain Text 
Attachment [ Scan and Save to Computer ] 


Hi folks,I have sinned:-(I have (for testing purposes) activated geom 
for mirroring on my   freebsd 6.2 via c3 cpu system. However, I used two 
different brand IDE   harddisks but identical in capacity.I have:  ad0: 
76319MB MAXTOR STM3802110A 3.AAK at ata0-master UDMA100  ad3: 76319MB 
Seagate ST3802110A 3.AAJ at ata1-slave UDMA100At first everything worked, 
but lately I have noticed some weird   things:  1) In the beginning the gmirror 
status command was showing the complete   status for the components ad0 or ad3 
(it was altering I guess due to   the round robin thing I choose)   However 
since a few weeks, only the ad0 component shows the complete   status(the 
only thing I did in between was removing the seagate harddisk once   to try to 
go to a pc mall and buy a second one but when I returned I   just reattached it 
(I hadn't switched the pc on though in the mean time   so I don't think it's an 
issue))2) I started to have problems building the
 ports and make buildword3) bash core dumped on my (I couldn't log in 
nomaly anymore and had to   use csh)4) now I see that rsyncd, freshclam and 
clamav are core dumping when   the machine boots up:  GEOM_MIRROR: Device gm0: 
provider ad3 detected.  GEOM_MIRROR: Device gm0: provider ad3 activated.  
GEOM_MIRROR: Device gm0: provider ad0 activated.  GEOM_MIRROR: Device gm0: 
provider mirror/gm0 launched.  Trying to mount root from ufs:/dev/mirror/gm0s1a 
 pid 896 (rsync), uid 0: exited on signal 4 (core dumped)  pid 928 (clamd), uid 
0: exited on signal 4 (core dumped)  pid 934 (freshclam), uid 0: exited on 
signal 4 (core dumped)  So I want to bring the machine back to its normal 
state by doing this:a) remove seagate harddisk  b) remove the mirror  c) 
see if everything works fine again because I don't want to reinstall   (I CAN 
GET AWAY WITH THIS RIGHT?)The question is, how di I get rid of the mirror? 
Or is it better to   order a new seagate harddisk, get rid
 of the maxtor harddisk and install   the new seagate harddisk in stead of the 
maxtor one and rebuild the   mirror?Thanks for your kind help  
***

 

Hi folks,

 

I've bought my new hardware and want to give this another try. 

On the documentation sacttered around on the net I read that

it's better to have 3 harddisks where one is for the main os

and the other two are mirrored in stead of a situation where

the OS resides on one of the two mirrored disks.

Can you give me some advice on this?

I have three identical seagate harddisks and want to put two 

in a mirror setup with the OS on it, and use the other as 

spare drive, in case sonmething goes wrong.

 

Thanks in advanced

Dino Vliet

   
-
Never miss a thing.   Make Yahoo your homepage.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Xorg impossible problems

2007-11-17 Thread Dino Vliet
Coleman Kane [EMAIL PROTECTED] wrote: Dino Vliet wrote:
 Toni Schmidbauer  wrote: At Sat, 22 Sep 2007 02:43:11 -0700 (PDT),
 Dino Vliet wrote:
   
from time to time, Xorg crashes and won't restart (especially when I'm 
 using firefox) and I have found firefox.core, gnash.core and metacity.core 
 files in my home directory afterwards
 

 i actually have the same problems, but i'm using the nv driver (quadro
 fx 560). i think this is somehow related to xorg and
 gnash/firefox. can you try to disable the gnash plugin in firefox? i'm
 not completely sure but xorg seems to be more stable since then.

 toni
   
What version of pixman do you have installed? I experienced the same
problems under pixman 0.9.5, and found that they are fixed in 0.9.6.
FreeBSD has since updated the related port to match the new version.

In my case, evince and swfdec were causing the crashing pretty reliably.
I originally attributed the problem to swfdec, but after some GDBing, I
found that it was happening in pixman.

PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=117854
--
Coleman Kane


Hi there,

I've checked what I'm using and it is:

 pkg_info | grep pixman
pixman-0.9.6Low-level pixel manipulation library


So I'm already using this version while experiencing those problems. I'm so 
glad I removed everything because now my workstation is stable again and that's 
a huge relief for me.

Brgds
Dino

   
-
Be a better pen pal. Text or chat with friends inside Yahoo! Mail. See how.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Xorg impossible problems

2007-11-14 Thread Dino Vliet

Toni Schmidbauer [EMAIL PROTECTED] wrote: At Sat, 22 Sep 2007 02:43:11 -0700 
(PDT),
Dino Vliet wrote:
from time to time, Xorg crashes and won't restart (especially when I'm 
 using firefox) and I have found firefox.core, gnash.core and metacity.core 
 files in my home directory afterwards

i actually have the same problems, but i'm using the nv driver (quadro
fx 560). i think this is somehow related to xorg and
gnash/firefox. can you try to disable the gnash plugin in firefox? i'm
not completely sure but xorg seems to be more stable since then.

toni
-- 
Wer es einmal so weit gebracht hat, dass er nicht | toni at it-austria dot net
mehr irrt, der hat auch zu arbeiten aufgehoert| Toni Schmidbauer
-- Max Planck |

Thanks Toni,

I was running gnash indeed and found it out the hard way. I was experiencing 
this bad behavior because I was running securelevel 3 ass well so Xorg kept 
crashing like crazy and I couldn't do anything else.

I finally gave up on gnash and hopefully everything will work better now.

Thanks for your help. This message of yours made me uninstall gnash and I think 
for the better.

Brgds
Dino

   
-
Get easy, one-click access to your favorites.  Make Yahoo! your homepage.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


pkgdb -Ff and autoconf question...how do I respond?

2007-10-27 Thread Dino Vliet
Dear FreeBSD folks,

I want to upgrade my ports but as I'm following the
/usr/ports/UPDATING file, it advised me to run the
command pkgdb -Ff.

When I do I get this:

pkgdb -Ff
---  Checking the package registry database
Duplicated origin: devel/autoconf261 - autoconf-2.53_4
autoconf-2.61_2
Unregister any of them? [no]

I don't know how to respond actually. The questioned
packages are installed:

pkg_info | grep autoconf
autoconf-2.13.000227_6 Automatically configure source
code on many Un*x platforms 
autoconf-2.53_4 Automatically configure source
code on many Un*x platforms 
autoconf-2.61_2 Automatically configure source
code on many Un*x platforms 
autoconf-wrapper-20070404 Wrapper script for GNU
autoconf


What is wisdom here? Which one of them can I
unregister?

Thanks in advanced.


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


help, make installworld fails!!!!!!

2007-10-07 Thread Dino Vliet
Gents,

I'm about to experience the first problem with FreeBSD after I've tried to 
upgrade my kernel to the latest sources because of the security advisories.  I 
have a custom kernel running FreeBSD version 6.2 on a amd64 system.

My procedure was:


step 1) change the src-supfile file to get the version of freebsd you want

step 2) Change file /usr/src/sys/amd64/conf/MYKERNEL to get the kernel options 
you want

step 3) cp /usr/src/sys/amd64/conf/MYKERNEL /root/kernels/MYKERNEL
 (make a backup of the kernel configuration in a seperate directory)

step 4) cvsup -g -L 2 src-supfile (check if MYKERNEL is still in
 /usr/src/sys/amd64/conf directory otherwise copy from /root/kernels
 directory)

step 5) shutdown now and go into single user mode

step 6) look at step 11

step 7) cd /usr/src and make buildworld

step 8) make buildkernel KERNCONF=MYKERNEL

step 9) make installkernel KERNCONF=MYKERNEL

step 10) reboot into single user mode

step 11) Then, when the system starts a /bin/sh shell instance,
 type:

# adjkerntz -i
# fsck -p
# mount -u /
# mount -a

step 12) cd /usr/src

step 13) mergemaster -p (pre buildworld mode, look into
 /usr/src/UPDATING to check if you have to do this before step 7!!)

step 14) make installworld

step 15) mergemaster -i

step 16) exit and reboot
***

However, at step 14 I ran out of luck as I got the following error:

mkdir -p /tmp/install.gurnx5I7
for prog in [ awk cap_mkdb cat chflags chmod chown  date echo egrep find grep 
install-info  ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl  test true 
uname wc zic; do  cp `which $prog` /tmp/install.gurnx5I7;  done
cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj  MACHINE_ARCH=amd64  MACHINE=amd64  
CPUTYPE=  GROFF_BIN_PATH=/usr/obj/usr/src/tmp/legacy/usr/bin  
GROFF_FONT_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/groff_font  
GROFF_TMAC_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/tmac  
PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/usr/obj/usr/src/tmp/usr/sbin:/usr/obj/usr/src/tmp/usr/bin:/usr/obj/usr/src/tmp/usr/games:/tmp/install.gurnx5I7
 make -f Makefile.inc1 reinstall
--
 Making hierarchy
--
cd /usr/src; make -f Makefile.inc1 hierarchy
cd /usr/src/etc;make distrib-dirs
mtree -eU  -f /usr/src/etc/mtree/BSD.root.dist -p /
mtree -eU  -f /usr/src/etc/mtree/BSD.var.dist -p /var
mtree -eU  -f /usr/src/etc/mtree/BSD.usr.dist -p /usr
mtree -eU  -f /usr/src/etc/mtree/BSD.include.dist  -p /usr/include
mtree -deU  -f /usr/src/etc/mtree/BIND.chroot.dist  -p /var/named
mtree -deU  -f /usr/src/etc/mtree/BSD.sendmail.dist -p /
cd /; rm -f /sys; ln -s usr/src/sys sys
cd /usr/share/man/en.ISO8859-1; ln -sf ../man* .
cd /usr/share/man;  set - `grep ^[a-zA-Z] /usr/src/etc/man.alias`;  while [ 
$# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift;  done
cd /usr/share/openssl/man;  set - `grep ^[a-zA-Z] /usr/src/etc/man.alias`;  
while [ $# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift;  done
cd /usr/share/openssl/man/en.ISO8859-1; ln -sf ../man* .
cd /usr/share/nls;  set - `grep ^[a-zA-Z] /usr/src/etc/nls.alias`;  while [ 
$# -gt 0 ] ;  do  rm -rf $1;  ln -s $2 $1;  shift; shift;  done

--
 Installing everything
--
cd /usr/src; make -f Makefile.inc1 install
=== share/info (install)
=== include (install)
creating osreldate.h from newvers.sh
touch: not found
*** Error code 127

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

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

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

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

Stop in /usr/src.

So what do I have to do now? How do I proceed next?
Hope somebody can help me out,

thanks
Dino

 
   
-
Fussy? Opinionated? Impossible to please? Perfect.  Join Yahoo!'s user panel 
and lay it on us.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Xorg impossible problems

2007-09-22 Thread Dino Vliet
Mi fellow freebsd enthousiasts,

I have this interesting Xorg problems which I can't seem to eliminate and I 
therefore hope some of you can guide me in the right direction.

On my amd64 system running freebsd 6.2 with a nvidia card using the vesa 
driver, I'm experiencing Xorg crashes and weirdness ever since the big Xorg 
upgrade (which I finished successfully I thought)

At the moment I'm seeing the following behavior:


   from time to time, Xorg crashes and won't restart (especially when I'm using 
firefox) and I have found firefox.core, gnash.core and metacity.core files in 
my home directory afterwards
   when Xorg crashes, in the past it would restart X by itself but not anymore. 
Now I'm seeing messages like Failed to start X server several times in a short 
time period; disabling display : 0
   If I remove gdm_enalbe=Yes from my /etc/rc.conf file and reboot I get into 
the console. Since after the upgrade I can't startx then to start my desktop 
because I get errors like no devices found, no screens found
   in my console, since after the upgrade, I can't do Xorg -configure as root 
to let it create a Xorg skeleton file which I can use to tailor to my needs. 
This was also possible in the past

So, I hope somebody can help me out? Would it be an option for me to remove all 
Xorg packages and all of gnome (would like to start with Xfce4 in stead) and 
then refresh my ports and install the new Xorg 7.3? Would that help me?

Some things about my system:

pkg_info | grep xorg   
xorg-7.3_1  X.Org complete distribution metaport
xorg-apps-7.3   X.org apps meta-port
xorg-cf-files-1.0.2_2 X.org cf files for use with imake builds
xorg-docs-1.4,1 X.org documentation files
xorg-drivers-7.3X.org drivers meta-port
xorg-fonts-100dpi-7.3 X.Org 100dpi bitmap fonts
xorg-fonts-7.3  X.org fonts meta-port
xorg-fonts-75dpi-7.3 X.Org 75dpi bitmap fonts
xorg-fonts-cyrillic-7.3 X.Org Cyrillic bitmap fonts
xorg-fonts-miscbitmaps-7.3 X.Org miscellaneous bitmap fonts
xorg-fonts-truetype-7.3 X.Org TrueType fonts
xorg-fonts-type1-7.3 X.Org Type1 fonts
xorg-libraries-7.3_1 X.org libraries meta-port
xorg-nestserver-1.4,1 Nesting X server from X.Org
xorg-printserver-1.2.0,1 X Print server from X.Org
xorg-protos-7.3 X.org protos meta-port
xorg-server-1.4,1   X.Org X server and related programs
xorg-vfbserver-1.4,1 X virtual framebuffer server from X.Org

The end of my Xorg.0.log file after a Xorg -configure as root:

No devices to configure.  Configuration failed.

No devices to configure.  Configuration failed.


The error I get at the end of Xorg.0.log file after the crashes or when I do a 
startx at the console

Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: kbd
(II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.1.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.7
(II) VESA: driver for VESA chipsets: vesa
(WW) xf86EnableIO: Failed to open /dev/io for extended I/O(EE) No devices 
detected.

Fatal server error:
no screens found

And finally my xorg.conf file:

Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/local/lib/X11/rgb
ModulePath   /usr/local/lib/xorg/modules
FontPath /usr/local/lib/X11/fonts/misc/
FontPath /usr/local/lib/X11/fonts/TTF/
FontPath /usr/local/lib/X11/fonts/Type1/
FontPath /usr/local/lib/X11/fonts/75dpi/
FontPath /usr/local/lib/X11/fonts/100dpi/
Fontpath /usr/local/share/ghostscript/fonts/
EndSection

Section Module
Load  extmod
Load  glx
Load  dri
Load  dbe
Load  record
Load  xtrap
Load  type1
Load  freetype
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
[EMAIL PROTECTED] /usr/home/rgilaard]$ cat /etc/X11/xorg.conf
Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/local/lib/X11/rgb
ModulePath   /usr/local/lib/xorg/modules
FontPath /usr/local/lib/X11/fonts/misc/
FontPath /usr/local/lib/X11/fonts/TTF/
FontPath /usr/local/lib/X11/fonts/Type1/
FontPath /usr/local/lib/X11/fonts/75dpi/
FontPath /usr/local/lib/X11/fonts/100dpi/
Fontpath /usr/local/share/ghostscript/fonts/
EndSection

Section Module
Load  extmod
Load  glx

Re: max resolution with vesa driver on amd64 system running FreeBSD 6.2

2007-07-23 Thread Dino Vliet

Florent Thoumie [EMAIL PROTECTED] wrote:  Yuri Pankov wrote:
 On Sat, Jul 14, 2007 at 02:21:09AM -0700, Dino Vliet wrote:
 Hi folks,

 I'm having problems with my monitor on freebsd. The vesa driver uses 
 1024X768 while the monitor is capable of doing 1680x1050.

 Observed here as well:

 https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nv/+bug/5801

 Using the nv driver is no option because it freezes my system and I have to 
 turn the power down to start booting the system again.

 Am I in a problematic situation now because:

 1) Vesa isn't capable of using higher resolutions?
 2) I can use NV because the driver isn't ok on my amd64 system
 3) Nvidia doesn't provide a FreeBSD version of their nvidia driver on AMD64 
 based systems?

 Brgds

 
 Not an answer you want but.. Try using xf86-video-nv 2.1.2 (as opposed
 to 1.2.2.1, which is in ports now). All you need to do is change
 PORTVERSION to 2.1.2 in x11-drivers/xf86-video-nv/Makefile, delete
 distinfo and `make fetch makesum install'.

No need to change the Makefile anymore, it's in ports.

-- 
Florent Thoumie
[EMAIL PROTECTED]
FreeBSD Committer

I already have it installed and I updated it today. Will try to change it to nv 
iso vesa driver and see what's happening. I knew my whole desktop was freezing 
when I used the nv driver together with the geforce 6200 GPU on my amd64 
system. Will look if I don't get these anymore.

Thanks


-
  Pinpoint customers who are looking for what you sell.   Unfortunately there 
was no improvement in this driver (nv) and I'm still experiencing stability 
problems when using it. The whole system freezes and the only options I have 
are:
   
  1) remotely log into machine
  2) pull the electricity cable from the pc because he even doesn't react on 
the ctrl-alt-del combination
   
  Brgds
  
 

   
-
Shape Yahoo! in your own image.  Join our Network Research Panel today!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


gdb error message

2007-07-23 Thread Dino Vliet
Dear folks,

whenever I try to attach gdb to my firefox settings because I'm expecting 
firefox to be the source of my stability problems (I always find a gnash.core 
and a firefox.core file in my home directory) I get the following error message:

gdb --quiet
(gdb) attach 11808
Attaching to process 11808
/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/solib-svr4.c:1443: 
internal-error: legacy_fetch_link_map_offsets called without legacy link_map 
support enabled.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n) n

/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/solib-svr4.c:1443: 
internal-error: legacy_fetch_link_map_offsets called without legacy link_map 
support enabled.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Create a core file of GDB? (y or n) y

/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/solib-svr4.c:1443: 
internal-error: legacy_fetch_link_map_offsets called without legacy link_map 
support enabled.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n) y

/usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/solib-svr4.c:1443: 
internal-error: legacy_fetch_link_map_offsets called without legacy link_map 
support enabled.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Create a core file of GDB? (y or n) y
Abort trap: 6 (core dumped)


What could be the source and what could I do to solve this?
Thanks in advanced

   
-
Park yourself in front of a world of choices in alternative vehicles.
Visit the Yahoo! Auto Green Center.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: max resolution with vesa driver on amd64 system running FreeBSD 6.2

2007-07-21 Thread Dino Vliet

Florent Thoumie [EMAIL PROTECTED] wrote: Yuri Pankov wrote:
 On Sat, Jul 14, 2007 at 02:21:09AM -0700, Dino Vliet wrote:
 Hi folks,

 I'm having problems with my monitor on freebsd. The vesa driver uses 
 1024X768 while the monitor is capable of doing 1680x1050.

 Observed here as well:

 https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nv/+bug/5801

 Using the nv driver is no option because it freezes my system and I have to 
 turn the power down to start booting the system again.

 Am I in a problematic situation now because:

 1) Vesa isn't capable of using higher resolutions?
 2) I can use NV because the driver isn't ok on my amd64 system
 3) Nvidia doesn't provide a FreeBSD version of their nvidia driver on AMD64 
 based systems?

 Brgds

 
 Not an answer you want but.. Try using xf86-video-nv 2.1.2 (as opposed
 to 1.2.2.1, which is in ports now). All you need to do is change
 PORTVERSION to 2.1.2 in x11-drivers/xf86-video-nv/Makefile, delete
 distinfo and `make fetch makesum install'.

No need to change the Makefile anymore, it's in ports.

-- 
Florent Thoumie
[EMAIL PROTECTED]
FreeBSD Committer

I already have it installed and I updated it today. Will try to change it to nv 
iso vesa driver and see what's happening. I knew my whole desktop was freezing 
when I used the nv driver together with the geforce 6200 GPU on my amd64 
system. Will look if I don't get these anymore.

Thanks


   
-
Pinpoint customers who are looking for what you sell. 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


after Xorg upgrade...X crashes unexpectedly and randomly

2007-07-15 Thread Dino Vliet
Dear FreeBSD people,

I've upgraded Xorg a while ago and since then I've been experiencing random 
Xorg crashes all over.

My system is a amd 64 CPU running FreeBSD 6.2 where uname -a gives:

FreeBSD zouk.tiscali.nl 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #14: Sun Jun  3 
10:40:42 CEST 2007 root@:/usr/obj/usr/src/sys/MYKERNEL  amd64

The contents of my /etc/make.conf is:

(II) Loading extension DEC-XTRAP
(II) LoadModule: type1
(II) Loading /usr/local/lib/xorg/modules/fonts//libtype1.so
(II) Module type1: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.0.2
Module class: X.Org Font Renderer 
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: freetype
(II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so
(II) Module freetype: vendor=X.Org Foundation  the After X-TT Project
compiled for 7.2.0, module version = 2.1.0
Module class: X.Org Font Renderer 
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: vesa
(II) Loading /usr/local/lib/xorg/modules/drivers//vesa_drv.so
(II) Module vesa: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.3.0
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: mouse
(II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.1.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: kbd
(II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.1.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.7
(II) VESA: driver for VESA chipsets: vesa
(WW) xf86EnableIO: Failed to open /dev/io for extended I/O(EE) No devices 
detected.

Fatal server error:
no screens found


My Xorg.conf file looks like:

#   VendorName  nVidia Corporation
BoardName   Unknown Board
BusID   PCI:5:0:0
#   Option  UseFBDev  true
EndSection

Section Screen   
Identifier Screen0
Device Card0
MonitorMonitor0
DefaultDepth 24
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0 
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
Depth 16
EndSubSection
SubSection Display
Viewport   0 0
Depth 24
Modes   1680x1050 1280x768 1024x768
EndSubSection
EndSection


Hope somebody can help me out with this one.

Brgds


WITH_FAM_SYSTEM=fam
# added by use.perl 2006-11-15 07:04:46
PERL_VER=5.8.8
PERL_VERSION=5.8.8
X11BASE=${LOCALBASE}
WITH_GHOSTSCRIPT_GNU=yes

The crash behaves in the following way. I'm using gnome as a windowmanager and 
I can be busy in firefox (in fact I observed it oly when I was browsing but I 
guess it could happen during other activities as well) when all of a sudden the 
windows goes black and am in a console seeing this error message:

Login: Jul 15 12:51:07 zouk gdm[1082]: Error reinitializing server

Then the follwing message is repeated two times:

Jul 15 12:51:08 zouk gdm[10143]: gdm_slave_xio error_handler: Fatal X error- 
Restarting: 0

Then another error message:

Jul 15 12:51:14 zouk gdm[1074]: Failed to start X server several times in a 
short time period: disabling display : 0

My Xorg.log file looks like this:
 

 
   
-
Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: after Xorg upgrade...X crashes unexpectedly and randomly

2007-07-15 Thread Dino Vliet
Dino Vliet [EMAIL PROTECTED] wrote: Dear FreeBSD people,

I've upgraded Xorg a while ago and since then I've been experiencing random 
Xorg crashes all over.

My system is a amd 64 CPU running FreeBSD 6.2 where uname -a gives:

FreeBSD zouk.tiscali.nl 6.2-RELEASE-p5 FreeBSD 6.2-RELEASE-p5 #14: Sun Jun  3 
10:40:42 CEST 2007 root@:/usr/obj/usr/src/sys/MYKERNEL  amd64

The contents of my /etc/make.conf is:

(II) Loading extension DEC-XTRAP
(II) LoadModule: type1
(II) Loading /usr/local/lib/xorg/modules/fonts//libtype1.so
(II) Module type1: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.0.2
Module class: X.Org Font Renderer 
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: freetype
(II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so
(II) Module freetype: vendor=X.Org Foundation  the After X-TT Project
compiled for 7.2.0, module version = 2.1.0
Module class: X.Org Font Renderer 
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: vesa
(II) Loading /usr/local/lib/xorg/modules/drivers//vesa_drv.so
(II) Module vesa: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.3.0
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 1.1
(II) LoadModule: mouse
(II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.1.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: kbd
(II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor=X.Org Foundation
compiled for 7.2.0, module version = 1.1.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.7
(II) VESA: driver for VESA chipsets: vesa
(WW) xf86EnableIO: Failed to open /dev/io for extended I/O(EE) No devices 
detected.

Fatal server error:
no screens found


My Xorg.conf file looks like:

#   VendorName  nVidia Corporation
BoardName   Unknown Board
BusID   PCI:5:0:0
#   Option  UseFBDev  true
EndSection

Section Screen   
Identifier Screen0
Device Card0
MonitorMonitor0
DefaultDepth 24
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0 
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
Depth 16
EndSubSection
SubSection Display
Viewport   0 0
Depth 24
Modes   1680x1050 1280x768 1024x768
EndSubSection
EndSection


Hope somebody can help me out with this one.

Brgds


WITH_FAM_SYSTEM=fam
# added by use.perl 2006-11-15 07:04:46
PERL_VER=5.8.8
PERL_VERSION=5.8.8
X11BASE=${LOCALBASE}
WITH_GHOSTSCRIPT_GNU=yes

The crash behaves in the following way. I'm using gnome as a windowmanager and 
I can be busy in firefox (in fact I observed it oly when I was browsing but I 
guess it could happen during other activities as well) when all of a sudden the 
windows goes black and am in a console seeing this error message:

Login: Jul 15 12:51:07 zouk gdm[1082]: Error reinitializing server

Then the follwing message is repeated two times:

Jul 15 12:51:08 zouk gdm[10143]: gdm_slave_xio error_handler: Fatal X error- 
Restarting: 0

Then another error message:

Jul 15 12:51:14 zouk gdm[1074]: Failed to start X server several times in a 
short time period: disabling display : 0

My Xorg.log file looks like this:
 

 
   
-
Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-x11
To unsubscribe, send any mail to [EMAIL PROTECTED]
some additional things are:

My GPU is a nvidia Geforce 6200 TC configured with the vesa driver (the nv 
driver freezes my system and Nvidia doesn't provide their nvidia driver  to 
work under FreeBSD so I'm stuck with that vesa driver)

I can't use Xorg -configure and get the following error (taken from script 
output):

Script started on Sun Jul 15 15:05:23 2007
[EMAIL PROTECTED] exitXorg -configurerebootls 
*.docvi /etc/rc.conf  Xorg -configure

X Window System Version 7.2.0
Release Date: 22 January 2007
X Protocol Version 11, Revision 0, Release 7.2
Build Operating System: FreeBSD 6.1-RELEASE-p16 amd64 
Current Operating

max resolution with vesa driver on amd64 system running FreeBSD 6.2

2007-07-14 Thread Dino Vliet
Hi folks,

I'm having problems with my monitor on freebsd. The vesa driver uses 1024X768 
while the monitor is capable of doing 1680x1050.

Observed here as well:

https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nv/+bug/5801

Using the nv driver is no option because it freezes my system and I have to 
turn the power down to start booting the system again.

Am I in a problematic situation now because:

1) Vesa isn't capable of using higher resolutions?
2) I can use NV because the driver isn't ok on my amd64 system
3) Nvidia doesn't provide a FreeBSD version of their nvidia driver on AMD64 
based systems?

Brgds


 
   
-
Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, 
photos  more. 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


gdvrecv produces very BIG FILES

2007-07-10 Thread Dino Vliet
Dear all,
   
  I managed to connect my new canon mini dv camera to my firewire port on my 
freebsd amd64 machine and used gdvrecv to transfer the first 2 minutes of my 
first recording (did I mention I really like FreeBSD and I'm so glad it's 
possible t do this first step:-)
   
  However, this 2 minutes recording produced a dv file of +/512MB in size. I 
have a 60 minute casette so in theorie I would get a 15GB dv file? Right? Is 
that normal, to have this big sized files as a result?
   
   
  ps Unfortunately Kino didn't compile sucessfully on my FreeBSD box, so I had 
to revert to my Linux partition and process the file there (I already asked the 
port maintainer of Kino what I could do to get it working on my amd64 system_
   
   

   
-
Ready for the edge of your seat? Check out tonight's top picks on Yahoo! TV. 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


multimedia/gstreamer-plugins80 problem

2007-06-03 Thread Dino Vliet
After I upgraded xorg, I had troubles upgrading this port. Can anyone help me 
with this because I get the following error message on my system (amd64, 
running freebsd 6.2)

../../gst-libs -I../../gst-libs -D_LARGEFILE_SOURCE
-D_FILE_OFFSET_BITS=64 -D_REENTRANT -I/usr/local/include/gstreamer-0.8
-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include
-I/usr/local/include/libxml2 -I/usr/local/include
-DGST_DISABLE_DEPRECATED -Wall -I/usr/local/include/ -O2
-fno-strict-aliasing -pipe -I/usr/local/include -MT
libgstcacasink_la-gstcacasink.lo -MD -MP
-MF .deps/libgstcacasink_la-gstcacasink.Tpo -c gstcacasink.c  -fPIC
-DPIC -o .libs/libgstcacasink_la-gstcacasink.o
gstcacasink.c: In function `gst_cacasink_sinkconnect':
gstcacasink.c:280: warning: implicit declaration of function
`caca_free_bitmap'
gstcacasink.c:283: warning: implicit declaration of function
`caca_create_bitmap'
gstcacasink.c:287: warning: assignment makes pointer from integer
without a cast
gstcacasink.c: In function `gst_cacasink_chain':
gstcacasink.c:339: warning: implicit declaration of function
`caca_clear'
gstcacasink.c:340: warning: implicit declaration of function
`caca_draw_bitmap'
gstcacasink.c:342: warning: implicit declaration of function
`caca_refresh'
gstcacasink.c: In function `gst_cacasink_set_property':
gstcacasink.c:361: warning: implicit declaration of function
`caca_set_dithering'
gstcacasink.c:361: error: `CACA_DITHERING_NONE' undeclared (first use in
this function)
gstcacasink.c:361: error: (Each undeclared identifier is reported only
once
gstcacasink.c:361: error: for each function it appears in.)
gstcacasink.c:367: warning: implicit declaration of function
`caca_set_feature'
gstcacasink.c:367: error: `CACA_ANTIALIASING_MAX' undeclared (first use
in this function)
gstcacasink.c:371: error: `CACA_ANTIALIASING_MIN' undeclared (first use
in this function)
gstcacasink.c: In function `gst_cacasink_open':
gstcacasink.c:419: warning: implicit declaration of function `caca_init'
gstcacasink.c:421: warning: implicit declaration of function
`caca_get_width'
gstcacasink.c:422: warning: implicit declaration of function
`caca_get_height'
gstcacasink.c:424: error: `CACA_ANTIALIASING_MAX' undeclared (first use
in this function)
gstcacasink.c:426: error: `CACA_DITHERING_NONE' undeclared (first use in
this function)
gstcacasink.c: In function `gst_cacasink_close':
gstcacasink.c:443: warning: implicit declaration of function `caca_end'
gmake[3]: *** [libgstcacasink_la-gstcacasink.lo] Error 1
gmake[3]: Leaving directory
`/usr/ports/multimedia/gstreamer-plugins80/work/gst-plugins-0.8.12/ext/libcaca'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory
`/usr/ports/multimedia/gstreamer-plugins80/work/gst-plugins-0.8.12/ext'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory
`/usr/ports/multimedia/gstreamer-plugins80/work/gst-plugins-0.8.12'
gmake: *** [all] Error 2
*** Error code 2

Stop in /usr/ports/multimedia/gstreamer-plugins80.
** Command failed [exit code 1]: /usr/bin/script
-qa /tmp/portupgrade.98993.0 env UPGRADE_TOOL=portupgrade
UPGRADE_PORT=gstreamer-plugins80-0.8.12_2,1 UPGRADE_PORT_VER=0.8.12_2,1
make WITH_FAM_SYSTEM=fam
** Fix the problem and try again.
** Listing the failed packages (*:skipped / !:failed)
! multimedia/gstreamer-plugins80
(gstreamer-plugins80-0.8.12_2,1)  (compiler error)
---  Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed

Does anyone know what to do next?

   
-
Shape Yahoo! in your own image.  Join our Network Research Panel today!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


portupgrade -o print/ghostscript-gpl ghostscript-gnu doesn't work

2007-06-03 Thread Dino Vliet
Hi peeps,

on my amd64 system which I just upgraded to 6.2 (from 6.1) I wanted to upgrade 
my ports ass well. Looking into the /usr/ports/UPDATING file I saw the 
following announcement:

20070405:
  AFFECTS: users of print/ghostscript-*
  AUTHOR: [EMAIL PROTECTED]

  The default ghostscript port is changed from ghostscript-gnu to
  ghostscript-gpl. To upgrade

  portupgrade -o print/ghostscript-gpl ghostscript-gnu
  portmaster -o print/ghostscript-gpl ghostscript-gnu

  If you want to use the ghostscript-gnu as default, put
  WITH_GHOSTSCRIPT_GNU=yes in your make.conf.

I tried to upgrade this port with the recommended command:
portupgrade -o print/ghostscript-gpl ghostscript-gnu

But the result is that nothing happens and my ghostscript-gnu port is still 
installed:

$ pkg_info | grep ghost
ggv-2.12.0_1GNOME 2 ghostscript viewer
ghostscript-gnu-7.07_16 GNU Postscript interpreter

What did I miss?

Thnaks in advanced


   
-
Building a website is a piece of cake. 
Yahoo! Small Business gives you all the tools to get online.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


random xorg crashes after xorg upgrade to 7.2

2007-06-03 Thread Dino Vliet
Hi peeps,
now that I've succesfully upgraded my xorg to 7.2 I'm experiencing random 
problems. Sometimes closing a firefox tab causes xorg to crash or changing the 
screen resolution in gnome to a lower value. 

When it crashes, I'm thrown into the command line where I can only reboot.

I really don't know where to look.

I have the xorg-upgrade script in my possession and pkg_info | grep xorg gives:

xorg-7.2X.Org complete distribution metaport
xorg-apps-7.2   X.org apps meta-port
xorg-cf-files-1.0.2_2 X.org cf files for use with imake builds
xorg-docs-1.3,1 X.org documentation files
xorg-drivers-7.2X.org drivers meta-port
xorg-fonts-100dpi-7.2 X.Org 100dpi bitmap fonts
xorg-fonts-7.2  X.org fonts meta-port
xorg-fonts-75dpi-7.2 X.Org 75dpi bitmap fonts
xorg-fonts-cyrillic-7.2 X.Org Cyrillic bitmap fonts
xorg-fonts-miscbitmaps-7.2 X.Org miscellaneous bitmap fonts
xorg-fonts-truetype-7.2 X.Org TrueType fonts
xorg-fonts-type1-7.2 X.Org Type1 fonts
xorg-libraries-7.2_1 X.org libraries meta-port
xorg-nestserver-1.2.0,1 Nesting X server from X.Org
xorg-printserver-1.2.0,1 X Print server from X.Org
xorg-protos-7.2 X.org protos meta-port
xorg-server-1.2.0_2,1 X.Org X server and related programs
xorg-vfbserver-1.2.0,1 X virtual framebuffer server from X.Org


My (unchanged) xorg conf looks like:

Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/X11R6/lib/X11/rgb
ModulePath   /usr/local/lib/xorg/modules
FontPath /usr/X11R6/lib/X11/fonts/misc/
FontPath /usr/X11R6/lib/X11/fonts/TTF/
FontPath /usr/X11R6/lib/X11/fonts/Type1/
FontPath /usr/X11R6/lib/X11/fonts/CID/
FontPath /usr/X11R6/lib/X11/fonts/75dpi/
FontPath /usr/X11R6/lib/X11/fonts/100dpi/
FontPath /usr/local/share/ghostscript/fonts/
EndSection

Section Module
Load  extmod
Load  glx
Load  dri
Load  dbe
Load  record
Load  xtrap
Load  type1
Load  freetype
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
OptionProtocol auto
OptionDevice /dev/sysmouse
EndSection

Section Monitor
#DisplaySize  340   270# mm
Identifier   Monitor0
VendorName   HWP
ModelNamehp L1720
 ### Uncomment if you don't want to default to DDC:
HorizSync31.0 - 80.0
VertRefresh  56.0 - 75.0
OptionDPMS
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option SWcursor   # [bool]
#Option HWcursor   # [bool]
#Option NoAccel# [bool]
#Option ShadowFB   # [bool]
#Option UseFBDev   # [bool]
#Option Rotate # [str]
#Option VideoKey   # i
#Option FlatPanel  # [bool]
#Option FPDither   # [bool]
#Option CrtcNumber # i
#Option FPScale# [bool]
#Option FPTweak# i
Identifier  Card0
Driver  vesa
#VendorName  nVidia Corporation
BoardName   Unknown Board
BusID   PCI:5:0:0
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
DefaultDepth 24
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
Depth 16
EndSubSection
SubSection Display
Viewport   0 0
Depth 24
Modes 1280x1024 1024x768
EndSubSection
EndSection


And the Xorg error log shows :


X Window System Version 7.2.0
Release Date: 22 January 2007
X Protocol Version 11, Revision 0, Release 7.2
Build Operating System: FreeBSD 6.1-RELEASE-p16 amd64 
Current Operating System: FreeBSD zouk.tiscali.nl 6.2-RELEASE-p5 FreeBSD 
6.2-RELEASE-p5 #14: Sun Jun  3 10:40:42 CEST 2007 
root@:/usr/obj/usr/src/sys/MYKERNEL amd64
Build Date: 28 May 2007
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: 

hardware problems?..how to disable geom?

2007-04-07 Thread Dino Vliet
Hi folks,

I have sinned:-(

I have (for testing purposes) activated geom for mirroring on my freebsd 6.2 
via c3 cpu system. However, I used two different brand IDE harddisks but 
identical in capacity.

I have:
ad0: 76319MB MAXTOR STM3802110A 3.AAK at ata0-master UDMA100
ad3: 76319MB Seagate ST3802110A 3.AAJ at ata1-slave UDMA100

At first everything worked, but lately I have noticed some weird things:
1) In the beginning the gmirror status command was showing the complete status 
for the components ad0 or ad3 (it was altering I guess due to the round robin 
thing I choose) 
However since a few weeks, only the ad0 component shows the complete status

(the only thing I did in between was removing the seagate harddisk once to try 
to go to a pc mall and buy a second one but when I returned I just reattached 
it (I hadn't switched the pc on though in the mean time so I don't think it's 
an issue))

2) I started to have problems building the ports and make buildword

3) bash core dumped on my (I couldn't log in nomaly anymore and had to use csh)

4) now I see that rsyncd, freshclam and clamav are core dumping when the 
machine boots up:
GEOM_MIRROR: Device gm0: provider ad3 detected.
GEOM_MIRROR: Device gm0: provider ad3 activated.
GEOM_MIRROR: Device gm0: provider ad0 activated.
GEOM_MIRROR: Device gm0: provider mirror/gm0 launched.
Trying to mount root from ufs:/dev/mirror/gm0s1a
pid 896 (rsync), uid 0: exited on signal 4 (core dumped)
pid 928 (clamd), uid 0: exited on signal 4 (core dumped)
pid 934 (freshclam), uid 0: exited on signal 4 (core dumped)


So I want to bring the machine back to its normal state by doing this:

a) remove seagate harddisk
b) remove the mirror
c) see if everything works fine again because I don't want to reinstall (I CAN 
GET AWAY WITH THIS RIGHT?)

The question is, how di I get rid of the mirror? Or is it better to order a new 
seagate harddisk, get rid of the maxtor harddisk and install the new seagate 
harddisk in stead of the maxtor one and rebuild the mirror?

Thanks for your kind help





 

Food fight? Enjoy some healthy debate 
in the Yahoo! Answers Food  Drink QA.
http://answers.yahoo.com/dir/?link=listsid=396545367
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


portupgrade -rf gettext problems

2007-03-22 Thread Dino Vliet
Hi folks,

I saw this in usr/ports/UPDATING:

20070318:
  AFFECTS: users of devel/gettext (ie: YOU)
  AUTHOR: [EMAIL PROTECTED]

  As a result of the upgrade to gettext-0.16.1, the shared library version
  of libintl has changed, so you will need to rebuild all ports that
  depend on gettext (ie: most of them, sorry).

  portupgrade -rf gettext


When I issued this last command, portupgrade -rf gettext I get this result:

---  Packages processed: 182 done, 0 ignored, 79 skipped and 7 failed
** Could not clean up temporary directory: Directory not empty - 
/var/tmp/portupgradeRtIfghsG

So, what to do next? Should I continue this command until all packages are 
processed and none of them skipped and failed? Or can I continue upgrading all 
my ports as from now?

Thanks in advanced






 

Expecting? Get great news right away with email Auto-Check. 
Try the Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/newmail_tools.html 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


make buildworld error

2007-03-20 Thread Dino Vliet
Hi folks,

on my pc ,

CPU: VIA C3 Samuel 2 (796.10-MHz 686-class CPU)
  Origin = CentaurHauls  Id = 0x673  Stepping = 3
  Features=0x803035FPU,DE,TSC,MSR,MTRR,PGE,MMX
real memory  = 503250944 (479 MB)
avail memory = 483028992 (460 MB)


I get the following error after I issue a make buildworld:

buf -lbsdxml -lutil
gzip -cn /usr/src/sbin/geom/core/geom.8  geom.8.gz
=== sbin/geom/class (all)
=== sbin/geom/class/concat (all)
cc -fpic -DPIC -O2 -fno-strict-aliasing -pipe  
-I/usr/src/sbin/geom/class/concat/../.. -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -c 
/usr/src/sbin/geom/class/concat/geom_concat.c -o geom_concat.So
cc -fpic -DPIC -O2 -fno-strict-aliasing -pipe  
-I/usr/src/sbin/geom/class/concat/../.. -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings 
-Wswitch -Wshadow -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline 
-Wnested-externs -Wredundant-decls -c 
/usr/src/sbin/geom/class/concat/../../misc/subr.c -o subr.So
building shared library geom_concat.so
gzip -cn /usr/src/sbin/geom/class/concat/gconcat.8  gconcat.8.gz
=== sbin/geom/class/eli (all)
cc -fpic -DPIC -O2 -fno-strict-aliasing -pipe  
-I/usr/src/sbin/geom/class/eli/../../../../sys 
-I/usr/src/sbin/geom/class/eli/../.. -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -c 
/usr/src/sbin/geom/class/eli/../../../../sys/geom/eli/g_eli_crypto.c -o 
g_eli_crypto.So
cc -fpic -DPIC -O2 -fno-strict-aliasing -pipe  
-I/usr/src/sbin/geom/class/eli/../../../../sys 
-I/usr/src/sbin/geom/class/eli/../.. -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -c 
/usr/src/sbin/geom/class/eli/../../../../sys/geom/eli/g_eli_key.c -o 
g_eli_key.So
cc -fpic -DPIC -O2 -fno-strict-aliasing -pipe  
-I/usr/src/sbin/geom/class/eli/../../../../sys 
-I/usr/src/sbin/geom/class/eli/../.. -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -c 
/usr/src/sbin/geom/class/eli/../../../../sys/geom/eli/pkcs5v2.c -o pkcs5v2.So
cc -fpic -DPIC -O2 -fno-strict-aliasing -pipe  
-I/usr/src/sbin/geom/class/eli/../../../../sys 
-I/usr/src/sbin/geom/class/eli/../.. -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes 
-Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -c 
/usr/src/sbin/geom/class/eli/../../../../sys/crypto/sha2/sha2.c -o sha2.So
/usr/src/sbin/geom/class/eli/../../../../sys/crypto/sha2/sha2.c:641: error: 
syntax error before '*' token
/usr/src/sbin/geom/class/eli/../../../../sys/crypto/sha2/sha2.c:644: error: 
syntax error before '' token
/usr/src/sbin/geom/class/eli/../../../../sys/crypto/sha2/sha2.c:645: error: 
syntax error before '' token
/usr/src/sbin/geom/class/eli/../../../../sys/crypto/sha2/sha2.c:645: warning: 
type defaults to `int' in declaration of `context'
/usr/src/sbin/geom/class/eli/../../../../sys/crypto/sha2/sha2.c:645: warning: 
type defaults to `int' in declaration of `data'
/usr/src/sbin/geom/class/eli/../../../../sys/crypto/sha2/sha2.c:645: error: 
syntax error before ')' token
*** Error code 1

Stop in /usr/src/sbin/geom/class/eli.
*** Error code 1

Stop in /usr/src/sbin/geom/class.
*** Error code 1

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

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

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

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

Stop in /usr/src.
[EMAIL PROTECTED] /usr/src]#

I do have enabled geom and have a raid array:
mirror/gm0  COMPLETE  ad0
  ad3

What could be the problem here?
Thanks in advanced for your valuable time





 

Need Mail bonding?
Go to the Yahoo! Mail QA for great tips from Yahoo! Answers users.
http://answers.yahoo.com/dir/?link=listsid=396546091
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


tweaking kern.ipc.shmmax

2007-02-28 Thread Dino Vliet
Hi peeps,

I have a amd64 system running freebsd6.1 with 3 GB ram. I want to use this a s 
my primary reserach database and installed postgresql on it. There they are 
talking about increasing some shared buffers value.

However, if I do increase that shared buffer value to even 64MB (while I hoped 
to increase it up to 256MB), in the var/log/messages file I get this error:

Feb 28 23:43:09 zouk postgres[826]: [1-1] FATAL:  could not create shared 
memory segment: Cannot allocate memory
Feb 28 23:43:09 zouk postgres[826]: [1-2] DETAIL:  Failed system call was 
shmget(key=5432001, size=71942144, 03600).
Feb 28 23:43:09 zouk postgres[826]: [1-3] HINT:  This error usually means that 
PostgreSQL's request for a shared memory segment exceeded available memory or 
swap space.
Feb 28 23:43:09 zouk postgres[826]: [1-4]  To reduce the request size 
(currently 71942144 bytes), reduce PostgreSQL's shared_buffers parameter 
(currently 8192) and/or its
Feb 28 23:43:09 zouk postgres[826]: [1-5]  max_connections parameter (currently 
3).
Feb 28 23:43:09 zouk postgres[826]: [1-6]   The PostgreSQL documentation 
contains more information about shared memory configuration.


However, look at the values I have put in my /etc/rc.conf file:

sysctl -w kern.ipc.shmmax=1954311424
sysctl -w kern.ipc.shmall=16384

I don't understand why the value that seems smaller, 71942144, doesn't fit in 
the shmmax value.

Can anyone be of assistance? Do I need to rebuild my kernel? Someone advised in 
2006 that these value should be in your kernel:
 options PMAP_SHPGPERPROC=201
options KVA_PAGES=260

The fact is that tha both are not in my current kernel, but even if they did, I 
wouldn't know which values to give them.
Can anyone help me out?

Thanks





 

Any questions? Get answers on any topic at www.Answers.yahoo.com.  Try it now.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


burning a cd or dvd doesn't work

2007-02-25 Thread Dino Vliet
Hi folks,

I thought I followed all the steps in the handbook to try to burn a cd or dvd 
from my freebsd 6.1 amd64 system but these commands show the problems I'm 
experiencing:

[EMAIL PROTECTED] /usr/ports/devel/g-wrap]# camcontrol devlist
LITE-ON DVD SOHD-16P9S FS09  at scbus1 target 0 lun 0 (cd0,pass0)
PHILIPS DVDR1640P P3.4   at scbus1 target 1 lun 0 (cd1,pass1)

[EMAIL PROTECTED] /usr/ports/devel/g-wrap]# cdrecord dev=1,1,0 -checkdrive
Cdrecord-Clone 2.01 (amd64-unknown-freebsd6.1) Copyright (C) 1995-2004 J�rg 
Schilling
scsidev: '1,1,0'
scsibus: 1 target: 1 lun: 0
cdrecord: Operation not permitted. Cannot open SCSI driver.
cdrecord: For possible targets try 'cdrecord -scanbus'.
cdrecord: For possible transport specifiers try 'cdrecord dev=help'.

[EMAIL PROTECTED] /usr/ports/devel/g-wrap]# cdrecord -scanbus
Cdrecord-Clone 2.01 (amd64-unknown-freebsd6.1) Copyright (C) 1995-2004 J�rg 
Schilling
cdrecord: Operation not permitted. Error opening /dev/pass0 Cam error 
'cam_real_open_device: couldn't open passthr. Cannot open SCSI driver.
cdrecord: For possible targets try 'cdrecord -scanbus'.
cdrecord: For possible transport specifiers try 'cdrecord dev=help'.

[EMAIL PROTECTED] /usr/ports/devel/g-wrap]# dmesg | grep cd1
acd1: DVDR PHILIPS DVDR1640P/P3.4 at ata1-slave UDMA33
cd1 at ata1 bus 0 target 1 lun 0
cd1: PHILIPS DVDR1640P P3.4 Removable CD-ROM SCSI-0 device 
cd1: 33.000MB/s transfers
cd1: Attempt to query device size failed: NOT READY, Medium not present


What am I missing?








 

Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


linuxpluginwrapper error in ports

2007-02-23 Thread Dino Vliet
Hi peeps,

on my i386 system I'm trying to compile the port linuxpluginwrapper.
I'm receiving this error when doing that:

===   Generating temporary packing list
===  Checking if accessibility/linux-atk already installed
cd /usr/ports/accessibility/linux-atk/work  /usr/bin/find * -type d -exec 
/bin/mkdir -p /compat/linux/{} \;
cd /usr/ports/accessibility/linux-atk/work  /usr/bin/find * ! -type d | 
/usr/bin/cpio -pm -R root:wheel /compat/linux
1372 blocks
===   Running ldconfig
/compat/linux/sbin/ldconfig -r /compat/linux
ELF binary type 3 not known.
/compat/linux/sbin/ldconfig: 1: Syntax error: ( unexpected
*** Error code 2

Stop in /usr/ports/accessibility/linux-atk.
*** Error code 1

Stop in /usr/ports/x11-toolkits/linux-gtk2.
*** Error code 1

Stop in /usr/ports/multimedia/linux-realplayer.
*** Error code 1

Stop in /usr/ports/www/linuxpluginwrapper.


What is wrong?

I'm doing this because I've installed opera-linuxplugin, then installed 
linux-flashplugin9.
However, I still can't watch a youtube video so therese seems to be an error.

Hope somebody can help.
Brgds



 

Looking for earth-friendly autos? 
Browse Top Cars by Green Rating at Yahoo! Autos' Green Center.
http://autos.yahoo.com/green_center/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


X won start anymore

2007-02-18 Thread Dino Vliet
Hi folks,

here I am again:-(
This time, it is X which is causing troubles and I didn do anything. It worked 
for the last months without any problems and the last actions I did were:

1) portsnap fetch update and then a portupgrade -aRr
2) changed my BIOS to enable S.M.A.R.T. on my harddisk
3) changed my BIOS to enable some sort of virus protection

After I rebooted I saw the following error at my console:

..zouk gdm[873]: gdm_slave_xioerror_handler: Fatal X error - Restarting : 0
This repeated 3 times and it said something about Failed to start X server 
several times in a short time period; disabling display :0

I was then trown at the command line (Yippee:-)

So, I went to the /etc/X11/ directory and looked at my xorg.conf file. Didn see 
anything strange in it (mind you, I haven changed it lately and it has been 
running for months without a problem)

Then I did the startx command and saw this error message:

...using config file: etc/X11/xorg.conf 
(EE) No devices detected

Fatal server error:
no screens found

My xorg.conf looks like this:
Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath  /usr/X11R6/lib/X11/rgb
ModulePath   /usr/X11R6/lib/modules
FontPath /usr/X11R6/lib/X11/fonts/misc/
FontPath /usr/X11R6/lib/X11/fonts/TTF/
FontPath /usr/X11R6/lib/X11/fonts/Type1/
FontPath /usr/X11R6/lib/X11/fonts/CID/
FontPath /usr/X11R6/lib/X11/fonts/75dpi/
FontPath /usr/X11R6/lib/X11/fonts/100dpi/
FontPath /usr/local/share/ghostscript/fonts/
EndSection

Section Module
Load  extmod
Load  glx
Load  dri
Load  dbe
Load  record
Load  xtrap
Load  type1
Load  freetype
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/sysmouse
EndSection

Section Monitor
#DisplaySize  340   270 # mm
Identifier   Monitor0
VendorName   HWP
ModelNamehp L1720
 ### Uncomment if you don't want to default to DDC:
HorizSync31.0 - 80.0
VertRefresh  56.0 - 75.0
Option  DPMS
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz
### [arg]: arg optional
#Option SWcursor  # [bool]
#Option HWcursor  # [bool]
#Option NoAccel   # [bool]
#Option ShadowFB  # [bool]
#Option UseFBDev  # [bool]
#Option Rotate# [str]
#Option VideoKey  # i
#Option FlatPanel # [bool]
#Option FPDither  # [bool]
#Option CrtcNumber# i
#Option FPScale   # [bool]
#Option FPTweak   # i
Identifier  Card0
Driver  vesa
#VendorName  nVidia Corporation
BoardName   Unknown Board
BusID   PCI:5:0:0
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
DefaultDepth 24
SubSection Display
Viewport   0 0
Depth 1
EndSubSection
SubSection Display
Viewport   0 0
Depth 4
EndSubSection
SubSection Display
Viewport   0 0
Depth 8
EndSubSection
SubSection Display
Viewport   0 0
Depth 15
EndSubSection
SubSection Display
Viewport   0 0
Depth 16
EndSubSection
SubSection Display
Viewport   0 0
Depth 24
Modes   1280x1024 1024x768
EndSubSection
EndSection

and the var/log/Xorg.0.log file looks like:

X Window System Version 6.9.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 6.9
Build Operating System: FreeBSD 6.1 amd64 [ELF] 
Current Operating System: FreeBSD zouk.tiscali.nl 6.1-RELEASE-p11 FreeBSD 
6.1-RELEASE-p11 #12: Wed Jan 17 21:06:43 CET 2007 [EMAIL 
PROTECTED]:/usr/obj/usr/src/sys/MYKERNEL amd64
Build Date: 29 January 2007
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
  

Re: X won start anymore

2007-02-18 Thread Dino Vliet
I am running a securelevel (3 in my case) but have been doing it since months...
What's really odd, is that after I dual booted Ubuntu just now, and restarting 
and opting for freebsd I first got this rare message about the kernel that 
couldn't be booted. Then I did a ctrl-alt-del and restarted and opted for 
freebsd again and voila.I could get back into X!!!
I don't know what was happening, I am suspecting maybe bad hardware and started 
backing things up.

Thanks in advanced though, I am working with GDM right now and I just don't 
know what happened!!


- Original Message 
From: Christian Walther [EMAIL PROTECTED]
To: Dino Vliet [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Sunday, February 18, 2007 1:56:48 PM
Subject: Re: X won start anymore

On 18/02/07, Dino Vliet [EMAIL PROTECTED] wrote:
[...]
 (WW) xf86EnableIO: Failed to open /dev/io for extended I/O(EE) No devices 
 detected.

 Fatal server error:
 no screens found
[...]

You're sure you didn't set securelevel to something  0?
X can't work without having access to /dev/io, so having a kernel in
secure mode and X running isn't possible.





 

No need to miss a message. Get email on-the-go 
with Yahoo! Mail for Mobile. Get started.
http://mobile.yahoo.com/mail
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


jail question

2007-02-11 Thread Dino Vliet
Hi folks,

I'm installing a nice system to use as my multimedia
box and already succeeded with geom-mirror. I want to
use a jail to isolate the p2p applications like 
amule/emule and want to make sure that they only write
to an encrypted disk (currently RTFM on geli and gbde)

However, I was wondering what happens with a jail if I
update the host system due to a security issue or
something else (recompile kernel and install world).
Do I need to define the jail again? If not, won't the
files in the jail stay at their previous versions
although the host system has been updated to a new
version?

Or should I just RTFM on jails and come back a few
weeks from now:-)

Thanks in advanced.



 

It's here! Your new message!  
Get new email alerts with the free Yahoo! Toolbar.
http://tools.search.yahoo.com/toolbar/features/mail/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


portsnap portupgrade

2007-02-11 Thread Dino Vliet
Hi peeps,

I've completed a new install of freebsd6.2 and started running portsnap as 
described in the handbook (the sequence portsnap fetch, portsnap extract and 
then finally portsnap fetch update).
At that time I expected that the ports tree would be update.

However, I expected portupgrade to be in the new location 
/usr/ports/ports-mgmt/portupgrade but instead I still saw it at 
/usr/ports/sysutils/portupgrade. 

(I've had problems with that one the last weeks so I'm reluctant to use that).

But what is the case here? Does the way I've used portsnap not update the ports 
tree properly?

Thanks again,





 

8:00? 8:25? 8:40? Find a flick in no time 
with the Yahoo! Search movie showtime shortcut.
http://tools.search.yahoo.com/shortcuts/#news
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


backup solution

2007-02-10 Thread Dino Vliet
Hi peeps,

I'm busy preparing my via c3 system to utilize it as a
backup file server.

On the motherboard I have two IDE channels and
currenntly they have installed a IDE hard disk and a
dvd-rom. However, I have bought an extra IDE cable
where I will put two IDE hard disks in a master-slave
or cable select relation and put that on one of the
IDE banks. The other IDE bank I will use to put the
primary disk and the dvd-rom in a master-slave or
cable-select relation.

Then I will install freebsd on the first disk and will
use the two spare IDE-disks on the same cable as a
geom-mirror. 

I will use the system then as a central node with
rsync to do daily backups of my main data that is
scattered around on different desktops on my lan.

Does anyone have tips regarding this kind o
installation?

Do I also need a specialised tool like bacula for the
way I want to use it?

Brgds
Dino


 

Cheap talk?
Check out Yahoo! Messenger's low PC-to-Phone call rates.
http://voice.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


problems with cvsup on cvsup2 server

2007-01-31 Thread Dino Vliet
Hi guys,

look at this terrible error I got from portupgrade

[EMAIL PROTECTED] /usr/home/dino]# portupgrade -n
gnome-desktop
---  Session started at: Wed, 31 Jan 2007 23:22:24
+0100
[missing key: categories] [Updating the portsdb
format:bdb_btree in /usr/ports ... - 16409 port
entries found
.1000.2000.3000.4000.5000.6000.7000.8000.9000.1.11000.12000.13000.14000.15000.16000
. done]
missing key: categories: Cannot read the portsdb!
---  Session ended at: Wed, 31 Jan 2007 23:22:31
+0100 (consumed 00:00:06)
/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:548:in
`open_db': database file error (PortsDB::DBError)
from
/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:702:in
`port'
from
/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:890:in
`all_depends_list'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:809:in
`tsort_build'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:801:in
`each'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:801:in
`tsort_build'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:823:in
`sort_build'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:827:in
`sort_build!'
from /usr/local/sbin/portupgrade:721:in `main'
from
/usr/local/lib/ruby/1.8/optparse.rb:755:in
`initialize'
from /usr/local/sbin/portupgrade:220:in `new'
from /usr/local/sbin/portupgrade:220:in `main'
from /usr/local/sbin/portupgrade:2084

What's wrong?




 

Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


slib-guile problems when installing port

2007-01-20 Thread Dino Vliet
Folks,

I have this problem when trying to install the port
slib-guile:

===  Checking if lang/slib-guile already installed
/bin/ln -shf /usr/local/share/slib
/usr/local/share/guile/1.6/slib
cd /usr/local/share/guile/1.6/slib  
/usr/local/bin/guile -q -l guile.init -c  (require
'new-catalog)
ERROR: In procedure open-file:
ERROR: No such file or directory:
/usr/lib/slib/require
*** Error code 2

Stop in /usr/ports/lang/slib-guile.
[EMAIL PROTECTED] /usr/ports/lang/slib-guile]# pkg_add -r
slib-guile
Error: FTP Unable to get
ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.1-release/Latest/slib-guile.tbz:
File unavailable (e.g., file not found, no access)
pkg_add: unable to fetch
'ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-6.1-release/Latest/slib-guile.tbz'
by URL
[EMAIL PROTECTED] /usr/ports/lang/slib-guile]# exit
exit

What can I do to install it correctly?
I have a amd64 system running freebsd 6.1

Thanks in advanced


 

The fish are biting. 
Get more visitors on your site using Yahoo! Search Marketing.
http://searchmarketing.yahoo.com/arp/sponsoredsearch_v2.php
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Xorg/Gnome/KDE freeze on latest release

2007-01-17 Thread Dino Vliet
Forwarded Message
From:   Gobbledegeek [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
To: freebsd-questions@freebsd.org
Date:   Thu, 18 Jan 2007 01:07:45 +0530
Subject:Re: Xorg/Gnome/KDE freeze on latest release

Plain Text Attachment [ Scan and Save to Computer |
Save to Yahoo! Briefcase ]

PS:  This can happen some 10-15 mins  into an  X
session, not always
immediately on login. Suspect applications are firefox
1.5.0.8  and
firefox2.0 and  Konqueror. Seems to happen soon after
launching  any
of these applications.

Regards

On 1/18/07, Gobbledegeek [EMAIL PROTECTED]
wrote:
 Hello  All

 I've been seeing system freezes  on  freebsd 6.2
Release and also the
 older RC2. Absolutely  No errors reported in logs.
Suddenly the  
mouse
 cursor movement is reduced to a crawl,  and the
keyboard freezes.
 Mouse-clicks do not  launch any applications or 
switch tasks.  I
 cannot switch back to  vty1/2/3...  or any console
and had to resort
 to  cold-starting a dozen times to recover from the
hangs in the last
 few days, dirtying my filesystem in the process each
time.. sometimes
 had  to  reinstall corrupted kde/xorg packages

 I'm writing this mail from windows, so I  do not
have the uname and
 Xorg logs with version numbers, but from memory its

 freebsd 6.2 release#3 i386 machine.  Xorg release
6.9. KDE version 
3.5.4 .

 In  case my version number recall is mistaken -
Gnome/KDE  are the
 versions obtained  remotely on the 15th of  Jan. I
did cvsup and
 buildworld steps today 17th of Jan. The problem has
remained since
 RC2. I  did not  have X during RC1, so I don't know 
if it  was
 present  in that release.

 This is on an athlon64 cpu soc 754 with nforce3
250gb chipset with
 Radeon  7500. DRI is loading correctly  on startup. 
No hangs on
 windoz, so its not a hardware issue. Unless its got
to do with
 freebsd  drivers for usb wireless (iBall)
keyb/mouse.  But the system
 never hangs if I don't  load X/Gnome/KDE.
Sound/Artsd seems to work
 fine.

 I see this  on both  regular 4.4BSd and ULE
scheduler based kernels

 Please reply-to-all as I am not  subscribed.

 --
 Rgrds
 GobbledeGeek
 [Everything but Gobbledegook.. !!]



-- 
Rgrds
GobbledeGeek
[Everything but Gobbledegook.. !!]


I once had these same problems on a slightly different
machine (amd64 with nforce4 motherboard and nvidia
6600TC GPU). The problem was in the Xorg driver. You
should try to narrow it down and disable Xorg and see
if you are still noticizing freezes. (In my case, it
would only behave like this in combination with X)

My solution was to run the vesa driver in xorg and I
have never had any problems  anymore.

Good luck.


 

Now that's room service!  Choose from over 150,000 hotels
in 45,000 destinations on Yahoo! Travel to find your fit.
http://farechase.yahoo.com/promo-generic-14795097
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


let somebody watch my actions over the network

2007-01-14 Thread Dino Vliet
Hi peeps,

I have this question about administering a freebsd box
through ssh.

I am helping a friend of mine configuring his freebsd
6.1 system. But he lives in anothe rpart of the town
so we are working through ssh. But because he wants to
learn by looking over my shoulder at the things I
do, he asked me if I knew a tool or a way to make that
happen.

So basically, if I login through ssh, he wants to sit
behind the machine and see what actions I'm doing. And
because we talk over skype, we could have this whole
interactin going on while I'm configuring his machine.

How could I accomplish something like this? Does
anyone have an idea?
Two tools come to my mind, screen and nxserver but
still I don't have a clue how to accomplish this.
Hope someone can point me in a good direction.

Brgds
Dino


 

The fish are biting. 
Get more visitors on your site using Yahoo! Search Marketing.
http://searchmarketing.yahoo.com/arp/sponsoredsearch_v2.php
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


advice on compiling a new kernel upgrading to the latest sources

2007-01-14 Thread Dino Vliet
Hi folks,
from different sources I have written my steps to
compile a new kernel  upgrade to the latest sources.
Can anyone have a look into them and tell me if I
won't run into troubles or if there are better ways to
achieve the same?

Upgrade procedure to the newest freebsd kernel and
userland.

1.Make sure that the cvsup file (src-supfile) is
adjusted in the right way.
2.Cd /usr/src/sys/amd64/conf which contains the file
MYKERNEL
3.MYKERNEL is then adjusted, if necessary and copied
to root/kernels/MYKERNEL
4.Copy everything under /etc to /root/etc
5.cvsup -g -L 2  src-supfile 
6.cd /usr/src
7.make cleanworld 
8.make buildworld
9.make buildkernel KERNCONF=MYKERNEL
10.Go into single user mode
11.If the new kernel doesn't boot reboot and hit the
space bar at the boot prompt and boot kernel.old If
the new kernel boots OK mount -a 
12.cd /usr/src

13.make installkernel KERNCONF=MYKERNEL
14.Go into single user mode
15.cd /usr/src
16.mergemaster -p
17.make installworld
18.mergemaster -i
19.exit and reboot

Is this ok? Or have I forgot about something?
I'm running a freebsd 6.1 machine on a amd64 system
with an adjusted kernel called MYKERNEL.

Thanks inadvanced,
Dino


 

Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: advice on compiling a new kernel upgrading to the latest sources

2007-01-14 Thread Dino Vliet

--- Giorgos Keramidas [EMAIL PROTECTED]
wrote:

 On:56, Dino Vliet
 [EMAIL PROTECTED] wrote:
  Hi folks,
  from different sources I have written my steps to
 compile a new kernel
   upgrade to the latest sources.
 
 Your instructions, however, are different from what
 /usr/src/UPDATING
 contains.
 
 Please, make *sure* you read `/usr/src/UPDATING'
 very carefully.
 Especially the commands of the section ``To upgrade
 in-place ...''
 and *all* the footnotes they reference.
 
  Can anyone have a look into them and tell me if I
 won't run into
  troubles or if there are better ways to achieve
 the same?
 
  Upgrade procedure to the newest freebsd kernel and
 userland.
 
  1.Make sure that the cvsup file (src-supfile) is
 adjusted in the right
  way.
 
 That's ok.
 
  2. Cd /usr/src/sys/amd64/conf which contains the
 file MYKERNEL
 
 No it doesn't.  CVSup will delete the files it
 doesn't know about, so
 you should *SAVE a copy* of your favorite kernel
 config file outside of
 the source tree and *copy* it into
 `/usr/src/sys/amd64/conf' after CVSup
 finishes updates the sources.
 
  3.MYKERNEL is then adjusted, if necessary and
 copied to
  root/kernels/MYKERNEL
 
 Nice :)
 
  4.Copy everything under /etc to /root/etc
 
 Why?  This isn't mentioned in `/usr/src/UPDATING'
 and it doesn't really
 help much if you manage to trash your /lib and
 /usr/lib trees.  A better
 suggestion is to ``make sure you have good level 0
 dumps'', as suggested
 by ``/usr/src/UPDATING''.
 
  5.cvsup -g -L 2  src-supfile
 
 You've deleted MYKERNEL here.
 
  6. cd /usr/src
  7. make cleanworld
 
 The ``make cleanworld'' command is unnecessary if
 you haven't been
 building stuff manually inside the tree.
 
  8. make buildworld
  9. make buildkernel KERNCONF=MYKERNEL
 
 You can do both at the same time, with:
 
   # cd /usr/src
   # make KERNCONF=MYKERNEL buildworld buildkernel
 
  10. Go into single user mode
 
 You forgot to install the new kernel *before*
 rebooting here.  This
 should be done with:
 
   # cd /usr/src
   # make KERNCONF=MYKERNEL installkernel
 
  11. If the new kernel doesn't boot reboot and hit
 the space bar at the
  boot prompt and boot kernel.old If the new kernel
 boots OK mount -a 
 
 No, mount -a is not enough.  Please read the
 `UPDATING' file.  The
 full sequence of commands would be something like:
 
 (escape to loader prompt)
 (at the OK prompt of the boot loader, type):
 
   boot -s
 
 Then, when the system starts a /bin/sh shell
 instance, type:
 
   # adjkerntz -i
   # fsck -p
   # mount -u /
   # mount -a
 
  12. cd /usr/src
  13. make installkernel KERNCONF=MYKERNEL
 
 It is too late to install a new kernel here, if you
 didn't do it
 *before* rebooting into single user mode.  The whole
 'exercise' of
 installing the new kernel and booting into single
 user mode is meant to
 provide a level of testing for the new kernel.
 
 If you haven't installed it and booted into the old
 kernel, some things
 may fail to install later on, you don't know if the
 new kernel actually
 works, etc.
 
  14. Go into single user mode
 
 You *ARE* in single-user mode already.
 
  15. cd /usr/src
  16. mergemaster -p
  17. make installworld
  18. mergemaster -i
  19. exit and reboot
 
 These look fine.
 
  Is this ok? Or have I forgot about something?  I'm
 running a freebsd
  6.1 machine on a amd64 system with an adjusted
 kernel called MYKERNEL.
 
 Please read ``/usr/src/UPDATING''.  Then read it
 again.  Let the text
 and all its footnotes sink in, and if you don't
 understand *why* a
 particular step exists, or what a specific step is
 supposed to do, feel
 free to ask.
 
 We are here to help you update the system, but we
 are *also* here to
 help you understand the why, when, how and what for
 of each step of the
 process :-)
 
 - Giorgos
 
 

Thanks for your help!
I am glad I asked before doing it, so now I can check
out the resources given and try to learn why things
are they way they are.

Your post gave me a lit of valuable insights and I
will have to print everything out and read it
carefully.

I really like the FreeBSD way though (have just
donated  to the foundation because of the nice way
people like you treat this cry for help:-)

Thanks again!
Dino


 

Sucker-punch spam with award-winning protection. 
Try the free Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/features_spam.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


error when doing make installworld

2006-12-24 Thread Dino Vliet
Hi peeps,

I have tried to update my src with cvsup and got stuck
because of an error while doing make installworld.

My system is an amd64 machine running freebsd 6.1 and
I have performed the steps without problems:
-make buildworld
-make buildkernel kernconf=mykkernel
-make installkernel kernconf=mykernel

Normally I would then immediately follow this sequence
with a mergemaster -p, make installworld and
mergemaster -i and then reboot.

However, this time I decided to check the handbook and
saw that it recommended to do a boot into single user
mode between the step -make installkernel
kernconf=mykernel AND the step mergemaster -p.

So I did it and when I rebooted and saw the beastie
splash screen, I hit option 4. Then I had to press
enter to get to the shell. When I did I noticed I
couldn't cd into the /usr/src directory because the
/usr/src directory was missing! 

So I rebooted again into multi-user mode and here I
tried the mergemaster -p but it failed with:

=== lib/libcom_err/doc (install)
lockf -k /usr/share/info/dir  install-info --quiet 
--defsection=Programming  development tools. 
--defentry=* libcom_err: (com_err).A Common
Error Description Library for UNIX.  com_err.info
/usr/share/info/dir
install -o root -g wheel -m 444  com_err.info.gz
/usr/share/info
=== lib/libcrypt (install)
install -C -o root -g wheel -m 444   libcrypt.a
/usr/lib
install -C -o root -g wheel -m 444   libcrypt_p.a
/usr/lib
install -s -o root -g wheel -m 444   -fschg -S 
libcrypt.so.3 /lib
install: rename: /lib/[EMAIL PROTECTED] to /lib/libcrypt.so.3:
Operation not permitted
*** Error code 71

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

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

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

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

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

Stop in /usr/src.
[EMAIL PROTECTED] /usr/src]# 


So, what to do now???

O yeah, I've been running my system from
securelevel=3, so maybe that has something to do with
this also.

Any help will be appreciated...

(Yes, it's Christmas eve, I know, but hey that gives
me a lot of time to check things out).

Thanks

ps is this bad? Should I start evacuate all my
important files while I'm still able to?

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: error when doing make installworld

2006-12-24 Thread Dino Vliet
Hi Beech,

many thanks for your clear help. I will try that in a
few moments

However, I wanted to ask you something else becuase of
your quote:

Doing a make installworld before finding out if the
new kernel will boot will bite you big time at some
point

Unquote

How am I able to find out if the new kernel will boot
then? Because I have done this a few times
alreadybut I don't like to be biten:-)
A nice Christmas eve too:-)

Dino


--- Beech Rintoul [EMAIL PROTECTED] wrote:

 On Sunday 24 December:46, Dino Vliet wrote:
  Hi peeps,
 
  I have tried to update my src with cvsup and got
 stuck
  because of an error while doing make installworld.
 
  My system is an amd64 machine running freebsd 6.1
 and
  I have performed the steps without problems:
  -make buildworld
  -make buildkernel kernconf=mykkernel
  -make installkernel kernconf=mykernel
 
  Normally I would then immediately follow this
 sequence
  with a mergemaster -p, make installworld and
  mergemaster -i and then reboot.
 
  However, this time I decided to check the handbook
 and
  saw that it recommended to do a boot into single
 user
  mode between the step -make installkernel
  kernconf=mykernel AND the step mergemaster -p.
 
  So I did it and when I rebooted and saw the
 beastie
  splash screen, I hit option 4. Then I had to press
  enter to get to the shell. When I did I noticed I
  couldn't cd into the /usr/src directory because
 the
  /usr/src directory was missing!
 
 The filesystem is not mounted in single  user mode.
 You need to do 
 a mount -a which will read /etc/fstab and mount
 the slices. After that you 
 can cd normally. Also, you should not do a make
 installworld in multi-user. 
 You should do that step in single user before you
 run mergemaster. Doing a 
 make installworld before finding out if the new
 kernel will boot will bite 
 you big time at some point. Believe me I've been
 there.
 
 Beech
 
  So I rebooted again into multi-user mode and here
 I
  tried the mergemaster -p but it failed with:
 
  === lib/libcom_err/doc (install)
  lockf -k /usr/share/info/dir  install-info --quiet
  --defsection=Programming  development tools.
  --defentry=* libcom_err: (com_err).A
 Common
  Error Description Library for UNIX.  com_err.info
  /usr/share/info/dir
  install -o root -g wheel -m 444  com_err.info.gz
  /usr/share/info
  === lib/libcrypt (install)
  install -C -o root -g wheel -m 444   libcrypt.a
  /usr/lib
  install -C -o root -g wheel -m 444   libcrypt_p.a
  /usr/lib
  install -s -o root -g wheel -m 444   -fschg -S
  libcrypt.so.3 /lib
  install: rename: /lib/[EMAIL PROTECTED] to
 /lib/libcrypt.so.3:
  Operation not permitted
  *** Error code 71
 
  Stop in /usr/src/lib/libcrypt.
  *** Error code 1
 
  Stop in /usr/src/lib.
  *** Error code 1
 
  Stop in /usr/src.
  *** Error code 1
 
  Stop in /usr/src.
  *** Error code 1
 
  Stop in /usr/src.
  *** Error code 1
 
  Stop in /usr/src.
  [EMAIL PROTECTED] /usr/src]#
 
 
  So, what to do now???
 
  O yeah, I've been running my system from
  securelevel=3, so maybe that has something to do
 with
  this also.
 
  Any help will be appreciated...
 
  (Yes, it's Christmas eve, I know, but hey that
 gives
  me a lot of time to check things out).
 
  Thanks
 
  ps is this bad? Should I start evacuate all my
  important files while I'm still able to?
 
 -- 

---
 Beech Rintoul - Sys. Administrator -
 [EMAIL PROTECTED]
 /\   ASCII Ribbon Campaign  | Alaska Paradise
 Travel
 \ / - NO HTML/RTF in e-mail  | 201 East 9Th Avenue
 Ste.310
  X  - NO Word docs in e-mail | Anchorage, AK 99501
 / \  - Please visit Alaska Paradise -
 http://www.alaskaparadise.com

---
 
 
 
 
 
 
 
 
 
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ipod freebsd 6.1 on amd64

2006-12-04 Thread Dino Vliet
Hi peeps,

does anyone have luck using an ipod on freebsd 6.1 on
a amd64 system? I can't get mine to work. If I plug my
ipod into a usb port, look what dmesg gives me:

uhub1: device problem (SHORT_XFER), disabling port 8
uhub0: device problem (SET_ADDR_FAILED), disabling
port 8
uhub1: device problem (SET_ADDR_FAILED), disabling
port 7
uhub1: device problem (SHORT_XFER), disabling port 7
[EMAIL PROTECTED] /usr/home/dvliet]$ 

What now?





 

Need a quick answer? Get one in minutes from people who know.
Ask your question on www.Answers.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


  1   2   >