Business Proposal

2006-12-30 Thread feedback
Hello,

My name is Ali and I am the CEO of Xuqa.com, an SNS site with over 1
million visitors and 150 million pageviews each month. We have a research
business where we run thousands of online surveys on our community, and
other suitable sites for Fortune 1000 companies.

I am interested in running several thousand online surveys on your site
for research purposes. At your current traffic levels I estimate we can
bring in another US $25k in additional revenue for you per month. If this
sounds of interest, please get back to me immediately.

To contact me directly, please email me at [EMAIL PROTECTED]

Best,
Ali

Director  Founder
Xuqa.com | PeanutLabs
[EMAIL PROTECTED]



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


Re: kdebase compile failure

2006-12-30 Thread Tilman Linneweh


On Dec 29, 2006, at 11:34 PM, Vizion wrote:


progressdialog.cpp: In member function `virtual void  
ProgressDialog::ignoreCancel()':
progressdialog.cpp:90: error: `ignoreCancel' is not a member of  
`KProgressDialog'


You have an old kdelibs version installed. You have to upgrade  
kdelibs to 3.5.5 first before installing kdebase


HTH

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


Python script to create packages, sane?

2006-12-30 Thread Vinny

Hi Everyone,

OBuname:
FreeBSD 6.1-RELEASE-p3 #0: Tue Aug 22 22:42:18 EDT 2006 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/THE  i386


I'm been working with and learning the ports and packages
system.  I enjoy the challenge because this stuff can get
awfully vexing every now and then.

I just finished running 'portmanager -u -f -l' after
several days (with a little 'portmanager -u -f -l --resume'
every now and then).  I have this nicely up-to-date large (450+)
set of ports installed.  It cost a lot in terms of time.
So I want to take all these installed ports and build
packages out of them.  Enter the following python program:

== 8 ===
#!/usr/bin/env python
# make_package.py
#
# Script to create packages for currently installed ports/packages.
# Uses pkg_create with the -b option.
# It will build packages in the current working directory so a
# 'cd /usr/ports/packages/All' command would be useful before
# running it.
#
# Usage: script make_package.log  make_package.py /var/db/pkg/*
#

# needed modules
import sys, os

pkg_create = /usr/sbin/pkg_create
print '==='

dash_b = '-b'

for name in sys.argv[1:]:

#print :: , name
pkg_name = name.split('/')[-1]
print Installed package:, pkg_name

# run pkg_create command, capture errors but don't stop
print Command: , pkg_create, dash_b, pkg_name
status = os.spawnv(os.P_WAIT, pkg_create, [pkg_create, dash_b, pkg_name])
print Status:, status


== 8 ===

The results of running it are encouraging:

# cd /usr/ports/packages/All
# script make_packages.log
Script started, output file is make_packages.log
# ~/bin/make_packages.py /var/db/pkg/*
===
Installed package: GraphicsMagick-1.1.7
Command:  /usr/sbin/pkg_create -b GraphicsMagick-1.1.7
Status: 0
Installed package: ImageMagick-6.2.9.8
Command:  /usr/sbin/pkg_create -b ImageMagick-6.2.9.8
Status: 0
[... and so on for 450+ ports. only 3 errors below]

Installed package: pkgdb.db
Command:  /usr/sbin/pkg_create -b pkgdb.db
pkg_create: can't change directory to '/var/db/pkg/pkgdb.db'!
Status: 1
[of course]

Installed package: xorg-libraries-6.9.0
Command:  /usr/sbin/pkg_create -b xorg-libraries-6.9.0
tar: lib/libGL.a: Cannot stat: No such file or directory
pkg_create: make_dist: tar command failed with code 256
Status: 2
Installed package: xorg-server-6.9.0_5
Command:  /usr/sbin/pkg_create -b xorg-server-6.9.0_5
tar: lib/modules/extensions/libGLcore.so: Cannot stat: No such file or directory
pkg_create: make_dist: tar command failed with code 256
Status: 2
[...]
==

I've seen the last few types of errors with
package creation before.  I was using both portupgrade
and 'make package' commands when I encountered such
errors.  To fix them is to simply force re-installation
of the port in question.  No big deal.

A brief directory listing shows fresh packages:

/usr/ports/packages/All# ls -lat | more
total 3019778
-rw-r--r--   1 root   ports  48352 Dec 30 02:21 make_packages.log
-rw-r--r--   1 root   ports   13217116 Dec 30 02:21 zope-3.3.0.tgz
drwxr-xr-x   2 root   ports  29184 Dec 29 18:33 .
-rw-r--r--   1 root   ports1410567 Dec 29 18:33 xorg-vfbserver-6.9.0_2.tgz
-rw-r--r--   1 root   ports 176158 Dec 29 18:33 xterm-223.tgz
-rw-r--r--   1 root   ports 423100 Dec 29 18:33 xvid-1.1.2,1.tgz
[...]

To make a long story short and actually ask a question, will
building packages this way make proper packages?  Am I doing
something fundamentally wrong in this approach?  I'd like to
simply use the generated packages as a local repository for the
other FreeBSD systems I use.

Thanks for any comments.
Vinny




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


Re: Perl error with Spam Assassin?

2006-12-30 Thread Ted Mittelstaedt
SA is a black box to troubleshoot, so many interrelated stuff.
portupgrading
isn't wise on a SA server.  When I deploy SA I build the initial server from
ports as well as SA, from that point on, all SA upgrades are manual.  Once
the rest of the code on the server gets too old for production, the server
is
cycled out and replaced with a new one that's a new initial build.

I realize this won't probably help you to solve the problem but may help you
avoid it in the future.

In your case since you undoubtedly don't want to take the server down to
the bear metal, all I can recommend is make deinstall SA and all dependent
programs, including
all perl modules as well as perl itself.  Then cvsup ports, and make install
SA  Good luck with it.

Ted

- Original Message - 
From: David Kelly [EMAIL PROTECTED]
To: FreeBSD Questions [EMAIL PROTECTED]
Sent: Thursday, December 28, 2006 7:40 PM
Subject: Perl error with Spam Assassin?


 I *think* the following is coming from Spam Assassin, which is
 launched by procmail, which is launched by fetchmail (so any of those
 could be the guilty party if they use perl).

 [31161] warn: (?:(?=[\s,]))* matches null string many times in
 regex; marked by -- HERE in m/\G(?:(?=[\s,]))* -- HERE \Z/ at /usr/
 local/lib/perl5/site_perl/5.8.8/Text/Wrap.pm line 46.

 Anyone else? Any suggestion as to what I may be doing wrong? Can't
 say that I can associate the occurance of the above with any
 portupgrade or similar. Might have been a portupgrade or a buildworld
 which started the error messages.

 --
 David Kelly N4HHE, [EMAIL PROTECTED]
 
 Whom computers would destroy, they must first drive mad.

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


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


Re: problems compiling Maildrop

2006-12-30 Thread Jurjen Middendorp
http://lists.freebsd.org/pipermail/freebsd-ports/2006-September/035268.html
maybe this works? haven't tried it myself though, because make-ing the port
worked without problems...


On Fri, Dec 29, 2006 at 11:55:16AM -0500, Joe Auty wrote:

On Dec 29, 2006, at 11:38 AM, Lowell Gilbert wrote:

Joe Auty [EMAIL PROTECTED] writes:

Is it just me having problems with this port? I'd really appreciate
if somebody could confirm whether or not they are getting this error
so I know whether or not to bug the port maintainer.

It seems to build in a clean environment:

http://pointyhat.freebsd.org/errorlogs/i386-5-latest-logs/ 
maildrop-2.0.2.log




Hmmm... Any ideas what be happening for me then? I've duplicated this  
problem on another machine of mine running FBSD 5.4.


Here is the error in question:



Compiling maildirkwtest.c
Linking maildirkwtest
Compiling maildirkw.c
Linking maildirkw
/usr/local/lib/libfam.a(fam.o)(.text+0x31): In function `FAMOpen2':
: undefined reference to `operator new(unsigned int)'
/usr/local/lib/libfam.a(fam.o)(.text+0x4f): In function `FAMOpen2':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(fam.o)(.text+0x81): In function `FAMOpen2':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(fam.o)(.text+0x12e): In function `FAMClose':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(fam.o)(.text+0x225): In function `FAMMonitor 
(FAMConnection*, char const*, FAMRequest*, void*, int)':
: undefined reference to `operator delete[](void*)'
/usr/local/lib/libfam.a(fam.o)(.text+0x243): In function `FAMMonitor 
(FAMConnection*, char const*, FAMRequest*, void*, int)':
: undefined reference to `operator delete[](void*)'
/usr/local/lib/libfam.a(fam.o)(.text+0x414): In function  
`FAMMonitorCollection':
: undefined reference to `operator delete[](void*)'
/usr/local/lib/libfam.a(fam.o)(.text+0x433): In function  
`FAMMonitorCollection':
: undefined reference to `operator delete[](void*)'
/usr/local/lib/libfam.a(fam.o)(.text+0x5d3): In function  
`GroupStuff::GroupStuff()':
: undefined reference to `operator new[](unsigned int)'
/usr/local/lib/libfam.a(fam.o)(.text+0x60b): In function  
`GroupStuff::GroupStuff()':
: undefined reference to `operator new[](unsigned int)'
/usr/local/lib/libfam.a(fam.o)(.eh_frame+0x12): undefined reference  
to `__gxx_personality_v0'
/usr/local/lib/libfam.a(Client.o)(.text+0xb92): In function  
`Client::storeUserData(int, void*)':
: undefined reference to `operator new(unsigned int)'
/usr/local/lib/libfam.a(Client.o)(.text+0xbab): In function  
`Client::storeUserData(int, void*)':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(Client.o)(.text+0xc17): In function  
`Client::storeEndExist(int)':
: undefined reference to `operator new(unsigned int)'
/usr/local/lib/libfam.a(Client.o)(.text+0xc2f): In function  
`Client::storeEndExist(int)':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(Client.o)(.text+0xeca): In function  
`__static_initialization_and_destruction_0(int, int)':
: undefined reference to `std::ios_base::Init::Init()'
/usr/local/lib/libfam.a(Client.o)(.text+0xef8): In function `__tcf_0':
: undefined reference to `std::ios_base::Init::~Init()'
/usr/local/lib/libfam.a(Client.o) 
(.gnu.linkonce.t._ZN5BTreeIiPvE6removeERKi+0xfc): In function  
`BTreeint, void*::remove(int const)':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(Client.o) 
(.gnu.linkonce.t._ZN5BTreeIiPvE6insertERKiRKS0_+0x5a): In function  
`BTreeint, void*::insert(int const, void* const)':
: undefined reference to `operator new(unsigned int)'
/usr/local/lib/libfam.a(Client.o) 
(.gnu.linkonce.t._ZN5BTreeIiPvE6insertERKiRKS0_+0x87): In function  
`BTreeint, void*::insert(int const, void* const)':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(Client.o) 
(.gnu.linkonce.t._ZN5BTreeIiPvE6insertEPNS1_4NodeERKiRKS0_+0xde): In  
function `BTreeint, void*::insert(BTreeint, void*::Node*, int  
const, void* const)':
: undefined reference to `operator new(unsigned int)'
/usr/local/lib/libfam.a(Client.o) 
(.gnu.linkonce.t._ZN5BTreeIiPvE6insertEPNS1_4NodeERKiRKS0_+0xfb): In  
function `BTreeint, void*::insert(BTreeint, void*::Node*, int  
const, void* const)':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(Client.o) 
(.gnu.linkonce.t._ZN5BTreeIiPvE6insertEPNS1_4NodeERKiRKS0_+0x191): In  
function `BTreeint, void*::insert(BTreeint, void*::Node*, int  
const, void* const)':
: undefined reference to `operator new(unsigned int)'
/usr/local/lib/libfam.a(Client.o) 
(.gnu.linkonce.t._ZN5BTreeIiPvE6insertEPNS1_4NodeERKiRKS0_+0x1ae): In  
function `BTreeint, void*::insert(BTreeint, void*::Node*, int  
const, void* const)':
: undefined reference to `operator delete(void*)'
/usr/local/lib/libfam.a(Client.o) 
(.gnu.linkonce.t._ZN5BTreeIiPvE6insertEPNS1_4NodeERKiRKS0_+0x237): In  
function `BTreeint, 

PMAP_SHPGPERPROC

2006-12-30 Thread Ian Moore
Hi,
Since I upgraded to KDE 3.5.5 the other day, I've been getting the following 
messages after KDE starts:
kernel: collecting pv entries -- suggest increasing PMAP_SHPGPERPROC
I've noticed the system seems a bit unstable, it often locks up when KDE 
starts and I guess that is the reason for the instability.
I did a bit of hunting on the mailing list archives, but could only come up 
with one question that didn't shed much light on the matter. Does anyone know 
what I should do to increase PMAP_SHPGPERPROC?

I'm running 5.5-RELEASEp9 on i386.
Cheers,
-- 
Ian
gpg key: http://home.swiftdsl.com.au/~imoore/no-spam.asc


pgpevOQRJz1s5.pgp
Description: PGP signature


Compiling Blender with Python2.4 woes

2006-12-30 Thread Hans Lambermont
Hi,

I'm the Blender platform maintainer for FreeBSD, however I do not
maintain ports/graphics/blender anymore.

Blender (with gameengine enabled) compiles fine against python2.3, but
when using python2.4 or python2.5 compilation fails in a manner that I
cannot resolve.

It boils down to something that is not Blender related anymore.

A file consisting of just 3 includes :

#include vector
#include Python.h
#include iostream

fails to compile (g++ -I/usr/local/include/python2.4 testfile.cpp) with :

In file included from /usr/include/c++/3.4/ios:48,
 from /usr/include/c++/3.4/ostream:45,
 from /usr/include/c++/3.4/iostream:45,
 from testfile.cpp:3:
/usr/include/c++/3.4/bits/localefwd.h:58:34: macro isspace passed 2 
arguments, but takes just 1
In file included from /usr/include/c++/3.4/ios:48,
 from /usr/include/c++/3.4/ostream:45,
 from /usr/include/c++/3.4/iostream:45,
 from testfile.cpp:3:
/usr/include/c++/3.4/bits/localefwd.h:58: error: `std::isspace' declared as an 
`inline' variable
/usr/include/c++/3.4/bits/localefwd.h:58: error: template declaration of `bool 
std::isspace'
/usr/include/c++/3.4/bits/localefwd.h:70:34: macro isupper passed 2 
arguments, but takes just 1
etc.

This is tested with 5.4-RELEASE and 6.1-RELEASE.

Any help in resolving this is appreciated.

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


Re: What's that about?

2006-12-30 Thread Marc G. Fournier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Check out:

http://www.freebsd.org/send-pr.html

Specifically, what are you running?  Operating System version (uname) would be 
a good start ...

- --On Saturday, December 30, 2006 05:20:17 +0100 Tino Engel 
[EMAIL PROTECTED] wrote:

 0x293734f7 in pthread_testcancel () from /lib/libpthread.so.2
# 0  0x293734f7 in pthread_testcancel () from /lib/libpthread.so.2
# 1  0x2936c80f in pthread_mutexattr_init () from /lib/libpthread.so.2
# 2  0x2936f70c in pthread_setconcurrency () from /lib/libpthread.so.2
# 3  0x29365a3a in _nanosleep () from /lib/libpthread.so.2
# 4  0x293fadd5 in sleep () from /lib/libc.so.6
# 5  0x2935b3fe in sleep () from /lib/libpthread.so.2
# 6  0x287fbabe in KCrash::startDrKonqi () from /usr/local/lib/libkdecore.so.6
# 7  0x287fbe64 in KCrash::defaultCrashHandler ()
from /usr/local/lib/libkdecore.so.6
# 8  0x29360a42 in sigaction () from /lib/libpthread.so.2
# 9  0x29361ee5 in sigaction () from /lib/libpthread.so.2
# 10 0x2936ad31 in pthread_mutexattr_init () from /lib/libpthread.so.2
# 11 0x2936ad9f in pthread_mutexattr_init () from /lib/libpthread.so.2
# 12 0x29421137 in _ctx_start () from /lib/libc.so.6
# 13 0x in ?? ()
# 14 0xbfbfcf90 in ?? ()
# 15 0xbfbfccd0 in ?? ()
# 16 0x in ?? ()
# 17 0x2936ad5c in pthread_mutexattr_init () from /lib/libpthread.so.2
# 18 0x29177cfd in _XLockMutex () from /usr/X11R6/lib/libX11.so.6
# 19 0x29177a25 in XrmQGetResource () from /usr/X11R6/lib/libX11.so.6
# 20 0x29177aa9 in XrmGetResource () from /usr/X11R6/lib/libX11.so.6
# 21 0x291521f6 in XGetErrorDatabaseText () from /usr/X11R6/lib/libX11.so.6
# 22 0x2915248f in XGetErrorText () from /usr/X11R6/lib/libX11.so.6
# 23 0x28c1a92e in qt_x_errhandler () from /usr/X11R6/lib/libqt-mt.so.3
# 24 0x28765dba in KApplication::xErrhandler ()
from /usr/local/lib/libkdecore.so.6
# 25 0x28765dea in kde_x_errhandler () from /usr/local/lib/libkdecore.so.6
# 26 0x291709ed in _XError () from /usr/X11R6/lib/libX11.so.6
# 27 0x29171048 in _XReply () from /usr/X11R6/lib/libX11.so.6
# 28 0x29157ad5 in XGetWindowProperty () from /usr/X11R6/lib/libX11.so.6
# 29 0x28783fb1 in NETWinInfo::update () from /usr/local/lib/libkdecore.so.6
# 30 0x28785be3 in NETWinInfo::event () from /usr/local/lib/libkdecore.so.6
# 31 0x287df6ec in KWinModulePrivate::x11Event ()
from /usr/local/lib/libkdecore.so.6
# 32 0x2876f2e0 in KApplication::x11EventFilter ()
from /usr/local/lib/libkdecore.so.6
# 33 0x28c1a821 in qt_x11EventFilter () from /usr/X11R6/lib/libqt-mt.so.3
# 34 0x28c26f80 in QApplication::x11ProcessEvent ()
from /usr/X11R6/lib/libqt-mt.so.3
# 35 0x28c395f0 in QEventLoop::processEvents ()
from /usr/X11R6/lib/libqt-mt.so.3
# 36 0x28c9b72b in QEventLoop::enterLoop () from /usr/X11R6/lib/libqt-mt.so.3
# 37 0x28c9b684 in QEventLoop::exec () from /usr/X11R6/lib/libqt-mt.so.3
# 38 0x28c86670 in QApplication::exec () from /usr/X11R6/lib/libqt-mt.so.3
# 39 0x296f48d6 in kdemain () from /usr/local/lib/libkdeinit_konqueror.so
# 40 0x296a8642 in kdeinitmain () from /usr/local/lib/kde3/konqueror.so
# 41 0x0804e25a in execpath_avoid_loops ()
# 42 0x0804e95a in execpath_avoid_loops ()
# 43 0x0804ef69 in execpath_avoid_loops ()
# 44 0x0804f669 in main ()

 --

 Tino Engel
 Karl-Hromadnik-Str. 1
 81241 München
 Deutschland
 Email: mailto:[EMAIL PROTECTED]




- 
Marc G. Fournier   Hub.Org Networking Services (http://www.hub.org)
Email . [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (FreeBSD)

iD8DBQFFlmsZ4QvfyHIvDvMRAtOnAKDH2J8nlCQnLpdOdmSxKyuofrqNAgCdH/in
oCSWv3JiY2xQtJFRRhd+FBU=
=lj1X
-END PGP SIGNATURE-

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


Is there reference manual for sh?

2006-12-30 Thread a
I need a reference manual or specification for sh.
Where can I find it?

Elisey Babenko

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


Re: timezone question.

2006-12-30 Thread Ivan Kuznetsov

The problem may be in web-application you use. You need to modify
source code of your application. Also you can check config-files of
yor application. There may be option to tune this feature.

On 12/29/06, Marwan Sultan [EMAIL PROTECTED] wrote:

Hello List,

   I'm using some web based application, and in the related configuration
files i have choosed
   to use the machine localtime.

   But when i check the applications, i found out its still GMT time..

   Hmm however
   I copied my /usr/share/zoneinfo/local to /etc/localtime
   the output of the command #date
   will show the local country date and time, and NOT GMT.

   But the applications still showing GMT as machine localtime !!

   I deleted all the cockies, restarted web..
   no luck..
   the zero file /etc/wall_cmos_clock there and presents..

   So why the web applications still says and showing the GMT in the time
that #date command
   showing the localtime ?

   Should i change the machine bios time?
   from adjkerntz ? safe to do it?

   Any hints?
   Its 4.8R

   Marwan Sultan.

_
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

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




--
__
Yours sincerely, Kuzma aka WildSurfer
mailto: [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: kdebase compile failure

2006-12-30 Thread Vizion



 -Original Message-
 From: Tilman Linneweh [mailto:[EMAIL PROTECTED] 
 Sent: Friday, December 29, 2006 11:56 PM
 To: Vizion
 Cc: Tilman Linneweh; freebsd-questions@FreeBSD.org
 Subject: Re: kdebase compile failure
 
 
 
 On Dec 29, 2006, at 11:34 PM, Vizion wrote:
 
  progressdialog.cpp: In member function `virtual void  
  ProgressDialog::ignoreCancel()':
  progressdialog.cpp:90: error: `ignoreCancel' is not a member of  
  `KProgressDialog'
 
 You have an old kdelibs version installed. You have to upgrade  
 kdelibs to 3.5.5 first before installing kdebase
 
 HTH
 

Thanks very much tried that but got into a further probem with kdelibs3...

dns1# pwd
/usr/ports/x11/kdelibs3
dns1# make install clean
===  Building for kdelibs-3.5.5
gmake  all-recursive
gmake[1]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5'
Making all in dcop
gmake[2]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
gmake  all-recursive
gmake[3]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
Making all in KDE-ICE
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/KDE-ICE'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/KDE-ICE'
Making all in .
gmake[4]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
gmake[4]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
Making all in dcopidl
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl'
Making all in dcopidlng
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidlng'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidlng'
Making all in dcopidl2cpp
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl2cpp'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl2cpp'
Making all in client
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/client'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/client'
Making all in tests
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/tests'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/tests'
gmake[3]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
gmake[2]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
Making all in libltdl
gmake[2]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/libltdl'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/libltdl'
Making all in kdefx
gmake[2]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdefx'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdefx'
Making all in kdecore
gmake[2]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
gmake  all-recursive
gmake[3]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
Making all in malloc
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/malloc'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/malloc'
Making all in network
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/network'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/network'
Making all in svgicons
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/svgicons'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/svgicons'
Making all in .
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
Making all in kconfig_compiler
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler'
Making all in example
gmake[5]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler/example'
gmake[5]: Nothing to be done for `all'.
gmake[5]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler/example'
Making all in tests
gmake[5]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler/tests'
gmake[5]: Nothing to be done for `all'.
gmake[5]: Leaving directory 

Is there reference manual for sh?

2006-12-30 Thread Robert Huff

[EMAIL PROTECTED] writes:

  I need a reference manual or specification for sh.
  Where can I find it?

In you mean within FreeBSD, try:

man sh

or

man builtin,

As a user, the O'Reilly _UNIX in a Nutshell_ I bought many
years ago was a very wise investment.
If you want to hack the code ... the start with the code.  And
good luck.


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


Re: kdebase compile failure -compunded!

2006-12-30 Thread Vizion



 -Original Message-
 From: Tilman Linneweh [mailto:[EMAIL PROTECTED] 
 Sent: Friday, December 29, 2006 11:56 PM
 To: Vizion
 Cc: Tilman Linneweh; freebsd-questions@FreeBSD.org
 Subject: Re: kdebase compile failure
 
 
 
 On Dec 29, 2006, at 11:34 PM, Vizion wrote:
 
  progressdialog.cpp: In member function `virtual void  
  ProgressDialog::ignoreCancel()':
  progressdialog.cpp:90: error: `ignoreCancel' is not a member of  
  `KProgressDialog'
 
 You have an old kdelibs version installed. You have to upgrade  
 kdelibs to 3.5.5 first before installing kdebase
 
 HTH
 

Thanks very much tried that but got into a further probem with kdelibs3...

dns1# pwd
/usr/ports/x11/kdelibs3
dns1# make install clean
===  Building for kdelibs-3.5.5
gmake  all-recursive
gmake[1]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5'
Making all in dcop
gmake[2]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
gmake  all-recursive
gmake[3]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
Making all in KDE-ICE
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/KDE-ICE'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/KDE-ICE'
Making all in .
gmake[4]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
gmake[4]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
Making all in dcopidl
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl'
Making all in dcopidlng
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidlng'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidlng'
Making all in dcopidl2cpp
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl2cpp'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl2cpp'
Making all in client
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/client'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/client'
Making all in tests
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/tests'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/tests'
gmake[3]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
gmake[2]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop'
Making all in libltdl
gmake[2]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/libltdl'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/libltdl'
Making all in kdefx
gmake[2]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdefx'
gmake[2]: Nothing to be done for `all'.
gmake[2]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdefx'
Making all in kdecore
gmake[2]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
gmake  all-recursive
gmake[3]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
Making all in malloc
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/malloc'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/malloc'
Making all in network
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/network'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/network'
Making all in svgicons
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/svgicons'
gmake[4]: Nothing to be done for `all'.
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/svgicons'
Making all in .
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
gmake[4]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
Making all in kconfig_compiler
gmake[4]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler'
Making all in example
gmake[5]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler/example'
gmake[5]: Nothing to be done for `all'.
gmake[5]: Leaving directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler/example'
Making all in tests
gmake[5]: Entering directory 
`/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler/tests'
gmake[5]: Nothing to be done for `all'.
gmake[5]: Leaving directory 

Re: kdebase compile failure -compunded!

2006-12-30 Thread Beni
On Saturday 30 December 2006 17:01, Vizion wrote:
  -Original Message-
  From: Tilman Linneweh [mailto:[EMAIL PROTECTED]
  Sent: Friday, December 29, 2006 11:56 PM
  To: Vizion
  Cc: Tilman Linneweh; freebsd-questions@FreeBSD.org
  Subject: Re: kdebase compile failure
 
  On Dec 29, 2006, at 11:34 PM, Vizion wrote:
   progressdialog.cpp: In member function `virtual void
   ProgressDialog::ignoreCancel()':
   progressdialog.cpp:90: error: `ignoreCancel' is not a member of
   `KProgressDialog'
 
  You have an old kdelibs version installed. You have to upgrade
  kdelibs to 3.5.5 first before installing kdebase
 
  HTH

 Thanks very much tried that but got into a further probem with kdelibs3...
 
 dns1# pwd
 /usr/ports/x11/kdelibs3
 dns1# make install clean
 ===  Building for kdelibs-3.5.5
 gmake  all-recursive
 gmake[1]: Entering directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5'
 Making all in dcop
 gmake[2]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' gmake  all-recursive
 gmake[3]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' Making all in KDE-ICE
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/KDE-ICE'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/KDE-ICE'
 Making all in .
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' gmake[4]: Leaving
 directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' Making all in
 dcopidl
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl'
 Making all in dcopidlng
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidlng'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidlng'
 Making all in dcopidl2cpp
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl2cpp'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl2cpp'
 Making all in client
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/client'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/client'
 Making all in tests
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/tests'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/tests'
 gmake[3]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' gmake[2]: Leaving
 directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' Making all in
 libltdl
 gmake[2]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/libltdl'
 gmake[2]: Nothing to be done for `all'.
 gmake[2]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/libltdl'
 Making all in kdefx
 gmake[2]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdefx'
 gmake[2]: Nothing to be done for `all'.
 gmake[2]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdefx' Making all in kdecore
 gmake[2]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
 gmake  all-recursive
 gmake[3]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
 Making all in malloc
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/malloc'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/malloc'
 Making all in network
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/network'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/network'
 Making all in svgicons
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/svgicons'
 gmake[4]: Nothing to be done for `all'.
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/svgicons'
 Making all in .
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
 gmake[4]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
 Making all in kconfig_compiler
 gmake[4]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler'
 Making all in example
 gmake[5]: Entering directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler/exampl
e' gmake[5]: Nothing to be done for `all'.
 gmake[5]: Leaving directory
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler/exampl
e' Making all in tests
 gmake[5]: Entering directory
 

Re: kdebase compile failure -compunded!

2006-12-30 Thread Vizion


 -Original Message-
 From: Beni [mailto:[EMAIL PROTECTED] 
 Sent: Saturday, December 30, 2006 8:57 AM
 To: freebsd-questions@freebsd.org
 Cc: [EMAIL PROTECTED]
 Subject: Re: kdebase compile failure -compunded!
 
 
 On Saturday 30 December 2006 17:01, Vizion wrote:
   -Original Message-
   From: Tilman Linneweh [mailto:[EMAIL PROTECTED]
   Sent: Friday, December 29, 2006 11:56 PM
   To: Vizion
   Cc: Tilman Linneweh; freebsd-questions@FreeBSD.org
   Subject: Re: kdebase compile failure
  
   On Dec 29, 2006, at 11:34 PM, Vizion wrote:
progressdialog.cpp: In member function `virtual void
ProgressDialog::ignoreCancel()':
progressdialog.cpp:90: error: `ignoreCancel' is not a member of
`KProgressDialog'
  
   You have an old kdelibs version installed. You have to upgrade
   kdelibs to 3.5.5 first before installing kdebase
  
   HTH
 
  Thanks very much tried that but got into a further probem 
 with kdelibs3...
  
  dns1# pwd
  /usr/ports/x11/kdelibs3
  dns1# make install clean
  ===  Building for kdelibs-3.5.5
  gmake  all-recursive
  gmake[1]: Entering directory 
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5'
  Making all in dcop
  gmake[2]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' gmake  
 all-recursive
  gmake[3]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' Making 
 all in KDE-ICE
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/KDE-ICE'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/KDE-ICE'
  Making all in .
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' gmake[4]: Leaving
  directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' 
 Making all in
  dcopidl
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl'
  Making all in dcopidlng
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidlng'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidlng'
  Making all in dcopidl2cpp
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl2cpp'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/dcopidl2cpp'
  Making all in client
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/client'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/client'
  Making all in tests
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/tests'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop/tests'
  gmake[3]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' gmake[2]: Leaving
  directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/dcop' 
 Making all in
  libltdl
  gmake[2]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/libltdl'
  gmake[2]: Nothing to be done for `all'.
  gmake[2]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/libltdl'
  Making all in kdefx
  gmake[2]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdefx'
  gmake[2]: Nothing to be done for `all'.
  gmake[2]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdefx' Making 
 all in kdecore
  gmake[2]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
  gmake  all-recursive
  gmake[3]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
  Making all in malloc
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/malloc'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/malloc'
  Making all in network
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/network'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/network'
  Making all in svgicons
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/svgicons'
  gmake[4]: Nothing to be done for `all'.
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/svgicons'
  Making all in .
  gmake[4]: Entering directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
  gmake[4]: Leaving directory
  `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore'
  Making all in kconfig_compiler
  gmake[4]: Entering directory
  
 `/usr/ports/x11/kdelibs3/work/kdelibs-3.5.5/kdecore/kconfig_compiler'
  Making all in 

Sir

2006-12-30 Thread Styhk Web Master

it seems real producer does not support on freebsd,
i hope you can add it to freebsd. ^^
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Console messages -- turning off specific - possible?

2006-12-30 Thread Vizion
Hi

I am working on a problem. The console error message about the problem is 
repeated multiple times to the console. How do I turn off  console messages 
generated in response to a specific  error?

Thanks

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


Dealing with a stale dependency

2006-12-30 Thread Vizion
# pkdb -F

Stale dependency samba-libsmbclient-3.0.23d - heimdal-0.7.2_2 
(security/heimdal)
Install stall dependency? ([y]es/[n]o/[a]ll) [yes]

If I select yes to install then install fails because it clashes:
heimdal -0.7.2_2 conflicts with installed package kbr5-1.5.1_1

However selecting no
---
New dependency? (? to help): ?
Display all 283 possibilities? (y or n)

When I get them all I still have no idea what to do chuckles

And until I resolve it I cannot use portupgrade -a  because it insists I 
resolve this one... OK I am frustrated as well as ignorant grinz

David

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


Re: Dealing with a stale dependency

2006-12-30 Thread Beech Rintoul
On Saturday 30 December 2006 09:29, Vizion wrote:
 # pkdb -F

 Stale dependency samba-libsmbclient-3.0.23d - heimdal-0.7.2_2
 (security/heimdal) Install stall dependency? ([y]es/[n]o/[a]ll) [yes]
 
 If I select yes to install then install fails because it clashes:
 heimdal -0.7.2_2 conflicts with installed package kbr5-1.5.1_1

 However selecting no
 ---
 New dependency? (? to help): ?
 Display all 283 possibilities? (y or n)

 When I get them all I still have no idea what to do chuckles

 And until I resolve it I cannot use portupgrade -a  because it insists I
 resolve this one... OK I am frustrated as well as ignorant grinz

At the New dependency? (? to help): ? hit ^D (ctrl D) then rebuild 
samba-libsmbclient-3.0.23d.

Beech
-- 
---
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
---











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


Re: Dealing with a stale dependency

2006-12-30 Thread Vizion
 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Beech Rintoul
 Sent: Saturday, December 30, 2006 10:38 AM
 To: freebsd-questions@freebsd.org
 Cc: Vizion
 Subject: Re: Dealing with a stale dependency
 
 
 On Saturday 30 December 2006 09:29, Vizion wrote:
  # pkdb -F
 
  Stale dependency samba-libsmbclient-3.0.23d - heimdal-0.7.2_2
  (security/heimdal) Install stall dependency? 
 ([y]es/[n]o/[a]ll) [yes]
  
  If I select yes to install then install fails because it clashes:
  heimdal -0.7.2_2 conflicts with installed package kbr5-1.5.1_1
 
  However selecting no
  ---
  New dependency? (? to help): ?
  Display all 283 possibilities? (y or n)
 
  When I get them all I still have no idea what to do chuckles
 
  And until I resolve it I cannot use portupgrade -a  because 
 it insists I
  resolve this one... OK I am frustrated as well as ignorant grinz
 
 At the New dependency? (? to help): ? hit ^D (ctrl D) then rebuild 
 samba-libsmbclient-3.0.23d.


Thanks Beech 

I do not understand how to reach such a conclusion but yr help is most 
appreciated. I tried something which seemed to satisgy pkgdb but will no doubt 
have negative repercussions later -- I chose krb5-1.5.1_1 as the new dependency 
-- and had a a report Fixws!  No doubt it was the wrongchoice but I now have 
portupgrade working.. unless I hear anything from you to the contrary when this 
run  is done I will follow your instructions and trust it all works out in the 
end..

chuckles
ps where in alaska are you? I spend quite a few years in the South East


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


Sauerbraten gui edition choppy music

2006-12-30 Thread FreeBSD WickerBill

Has anyone installed the latest sauerbraten yet? I'm getting choppy music in
it but not graphics. Didn't do this on the water edition. Doesn't do it in
Cube. One caveat...a portupgrade requires that you delete your old
~/.sauerbraten directory as there are new bindings and symlinks.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



Re: Dealing with a stale dependency

2006-12-30 Thread Beech Rintoul
On Saturday 30 December 2006 09:57, Vizion wrote:
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of
  Beech Rintoul
  Sent: Saturday, December 30, 2006 10:38 AM
  To: freebsd-questions@freebsd.org
  Cc: Vizion
  Subject: Re: Dealing with a stale dependency
 
  On Saturday 30 December 2006 09:29, Vizion wrote:
   # pkdb -F
  
   Stale dependency samba-libsmbclient-3.0.23d - heimdal-0.7.2_2
   (security/heimdal) Install stall dependency?
 
  ([y]es/[n]o/[a]ll) [yes]
 
   
   If I select yes to install then install fails because it clashes:
   heimdal -0.7.2_2 conflicts with installed package kbr5-1.5.1_1
  
   However selecting no
   ---
   New dependency? (? to help): ?
   Display all 283 possibilities? (y or n)
  
   When I get them all I still have no idea what to do chuckles
  
   And until I resolve it I cannot use portupgrade -a  because
 
  it insists I
 
   resolve this one... OK I am frustrated as well as ignorant grinz
 
  At the New dependency? (? to help): ? hit ^D (ctrl D) then rebuild
  samba-libsmbclient-3.0.23d.

 Thanks Beech

 I do not understand how to reach such a conclusion but yr help is most
 appreciated. I tried something which seemed to satisgy pkgdb but will no
 doubt have negative repercussions later -- I chose krb5-1.5.1_1 as the new
 dependency -- and had a a report Fixws!  No doubt it was the wrongchoice
 but I now have portupgrade working.. unless I hear anything from you to the
 contrary when this run  is done I will follow your instructions and trust
 it all works out in the end..

 chuckles
 ps where in alaska are you? I spend quite a few years in the South East

^d deletes the dependency entirely and rebuilding the port in question will 
(hopefully) re establish the proper one. I've used this when it was not 
desirable to pkg_delete and rebuild the port. You might also take a look at 
the -O option. See man(1) portupgrade.

I'm in Anchorage.

Beech

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











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


(no subject)

2006-12-30 Thread Vizion


 -Original Message-
 From: Herbert J. Skuhra [mailto:[EMAIL PROTECTED] 
 Sent: Saturday, December 30, 2006 11:04 AM
 To: Vizion
 Subject: Re: kdebase compile failure -compunded!
 
 
 On Sat, 30 Dec 2006 9:56:26 -0800
 Vizion [EMAIL PROTECTED] wrote:
 
  Thanks again..
  
  I am trying to compile again right now but admit to being 
 puzzled about the two 
  versions of icu -- should I have icu or icu2 or both installed???
  
  It seems that portupgrade possibly deleted icu2 in favor of 
 the latest version of 
  icu but right now I am a bit uncertain.. Right now I am 
 recompiling kdelibs3 
  -- I will post the results.
  
  meanwhile Beni --thanks for your encouragement 
  
  David
 
 This should answer your question:
 
 % grep icu /usr/ports/devel/glib20/Makefile 
 LIB_DEPENDS+=   icui18n:${PORTSDIR}/devel/icu
 
 This is only required when devel/glib20 was compiled with
 '-DWITH_COLLATION_FIX'.
 
 - Herbert
 

Thank you so much.. yep mine was compiled WITH_COLLATION_FIX so that explains 
it  -- .I will change my config...I so not really need it


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


Re: Is there reference manual for sh?

2006-12-30 Thread a
On Sat, Dec 30, 2006 at 10:16:20AM -0500, Robert Huff wrote:
 
 [EMAIL PROTECTED] writes:
 
   I need a reference manual or specification for sh.
   Where can I find it?
 
   In you mean within FreeBSD, try:
 
   man sh
 
   or
 
   man builtin,
 
   As a user, the O'Reilly _UNIX in a Nutshell_ I bought many
 years ago was a very wise investment.
   If you want to hack the code ... the start with the code.  And
 good luck.
 
 
   Robert Huff

I need any online complete manual on sh, not a brief as it is man sh.
The last one doesn't describe many features both interactive (command line 
editing, using history interactively, and many others) 
and scripting (for example, conditional expressions).

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


Re: Is there reference manual for sh?

2006-12-30 Thread Vizion


 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
 Sent: Saturday, December 30, 2006 10:22 AM
 To: [EMAIL PROTECTED]
 Subject: Re: Is there reference manual for sh?
 
 
 On Sat, Dec 30, 2006 at 10:16:20AM -0500, Robert Huff wrote:
  
  [EMAIL PROTECTED] writes:
  
I need a reference manual or specification for sh.
Where can I find it?
  
  In you mean within FreeBSD, try:
  
  man sh
  
  or
  
  man builtin,
  
  As a user, the O'Reilly _UNIX in a Nutshell_ I bought many
  years ago was a very wise investment.
  If you want to hack the code ... the start with the code.  And
  good luck.
  
  
  Robert Huff
 
 I need any online complete manual on sh, not a brief as it is man sh.
 The last one doesn't describe many features both interactive 
 (command line 
 editing, using history interactively, and many others) 
 and scripting (for example, conditional expressions).
 
I would really recomend then  O'reilly Learning the Bash Shell.. esentially 
bash is backward compatible with sg (Bourne shell) and there is not really an 
online resource that I ever found to be as useful as this book

My 2 cents worth

david

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


Re: Is there reference manual for sh?

2006-12-30 Thread John Levine
I need any online complete manual on sh, not a brief as it is man sh.
The last one doesn't describe many features both interactive (command line 
editing, using history interactively, and many others) 
and scripting (for example, conditional expressions).

You're probably looking for the POSIX 1003.1 standard, Volume 2, which
is not available for free anywhere.

R's,
John

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


how to mount an already freebsd paritioned external usb drive onto a new freebsd install

2006-12-30 Thread Steve

Hi,

I was running FreebBSD 5.x until a few days ago at home on a little shuttle 
cube server with a celeron processor when my hard drive appeared to develop 
multiple problems and finally died.  I had a western digital external usb 
hard drive attached to the server that I used for daily backups.  So I got 
a new hard drive and installeed FreeBSD 6.1 on it.  I have plugged in the 
WD external usb drive and ran:


dmesg
camcontrol devlist

And the WD usb drive seems to recognized by the system and all is 
well.  The WD usb drive has a freebsd partition on it already.  I want to 
mount this drive so I can start to move backed up data to the new box, but 
reading through the handbook and doing a google search, I'm still not clear 
exactly how to do it.  I don't remember how I had setup the old box to 
mount the drive as I had done it almost two years ago.


If someone can tell me what to do or point me in the right direction it 
would be appreciated.  I really don't want to mess this up.




Steve Bopple
www.digitalbluesky.net 



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


Re: Is there reference manual for sh?

2006-12-30 Thread Derek Ragona


Pick up a copy of:
The Unix Programming Environment by Kernigan and Pike.

-Derek


At 12:22 PM 12/30/2006, [EMAIL PROTECTED] wrote:

On Sat, Dec 30, 2006 at 10:16:20AM -0500, Robert Huff wrote:

 [EMAIL PROTECTED] writes:

   I need a reference manual or specification for sh.
   Where can I find it?

   In you mean within FreeBSD, try:

   man sh

   or

   man builtin,

   As a user, the O'Reilly _UNIX in a Nutshell_ I bought many
 years ago was a very wise investment.
   If you want to hack the code ... the start with the code.  And
 good luck.


   Robert Huff

I need any online complete manual on sh, not a brief as it is man sh.
The last one doesn't describe many features both interactive (command line
editing, using history interactively, and many others)
and scripting (for example, conditional expressions).

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

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


glchess port does not work

2006-12-30 Thread B. Hansmann
Has anyone tried the glchess port in 6.2-RC2-amd64?

When I try to start it, it just prints these error messages and quits:

Traceback (most recent call last):
  File /usr/local/bin/glchess, line 7, in ?
app = glchess.main.Application()
  File /usr/local/lib/python2.4/site-packages/glchess/main.py, line 739, in 
__init__
self.ui = UI(self)
  File /usr/local/lib/python2.4/site-packages/glchess/main.py, line 629, in 
__init__
gtkui.GtkUI.__init__(self)
  File /usr/local/lib/python2.4/site-packages/glchess/gtkui/gtkui.py, line 
491, in __init__
icon = iconTheme.load_icon('stock_people', 24, gtk.ICON_LOOKUP_USE_BUILTIN)
gobject.GError: Icon 'stock_people' not present in theme

glx and dri are enabled.

Anynone tried to run this app and it worked?


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


Re: Is there reference manual for sh?

2006-12-30 Thread Robert Huff

Derek Ragona writes:

  Pick up a copy of:
  The Unix Programming Environment by Kernigan and Pike.

I have that and - Based on hiw description - that's unlikely to
be what he wants.


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


glchess PORT does not work

2006-12-30 Thread B. Hansmann
Has anyone tried the glchess port in 6.2-RC2-amd64?

When I try to start it, it just prints these error messages and quits:

Traceback (most recent call last):
  File /usr/local/bin/glchess, line 7, in ?
app = glchess.main.Application()
  File /usr/local/lib/python2.4/site-packages/glchess/main.py, line 739, in 
__init__
self.ui = UI(self)
  File /usr/local/lib/python2.4/site-packages/glchess/main.py, line 629, in 
__init__
gtkui.GtkUI.__init__(self)
  File /usr/local/lib/python2.4/site-packages/glchess/gtkui/gtkui.py, line 
491, in __init__
icon = iconTheme.load_icon('stock_people', 24, gtk.ICON_LOOKUP_USE_BUILTIN)
gobject.GError: Icon 'stock_people' not present in theme

glx and dri are enabled.

Anynone tried to run this app and it worked?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: how to mount an already freebsd paritioned external usb drive onto a new freebsd install

2006-12-30 Thread Andrew Pantyukhin

On 12/31/06, Steve [EMAIL PROTECTED] wrote:

Hi,

I was running FreebBSD 5.x until a few days ago at home on a little shuttle
cube server with a celeron processor when my hard drive appeared to develop
multiple problems and finally died.  I had a western digital external usb
hard drive attached to the server that I used for daily backups.  So I got
a new hard drive and installeed FreeBSD 6.1 on it.  I have plugged in the
WD external usb drive and ran:

dmesg
camcontrol devlist

And the WD usb drive seems to recognized by the system and all is
well.  The WD usb drive has a freebsd partition on it already.  I want to
mount this drive so I can start to move backed up data to the new box, but
reading through the handbook and doing a google search, I'm still not clear
exactly how to do it.  I don't remember how I had setup the old box to
mount the drive as I had done it almost two years ago.

If someone can tell me what to do or point me in the right direction it
would be appreciated.  I really don't want to mess this up.


Assuming the drive you want to mount is /dev/da0, you
should first determine what slices and partitions it
has. It's very easy, just ls /dev/da0* for that. Let's
pretend you see something like this:

/dev/da0
/dev/da0s1
/dev/da0s1a
/dev/da0s1b
/dev/da0s1c
/dev/da0s1d
/dev/da0s1e

It might be a lot simpler or a lot more complicated. This
exact result means you have one slice (s1) and several
partitions (a-e). b is a swap partition, c represents
the whole slice, you only have to mount a, d and e.

mkdir -p /mnt/a /mnt/d /mnt/e
mount /dev/da0s1a /mnt/a
mount /dev/da0s1d /mnt/d
mount /dev/da0s1e /mnt/e

Use mount -r instead of just mount to make them read-
only (for safety).

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


Missing Drives off of a Promise SATA300 TX4 controller

2006-12-30 Thread Jonathan Dama
I've got two WD drives attached to a promise SATA300 TX4 controller.
The controller appears to be detected and reports the drives during
a verbose boot, but no devices are ever created and atacontrol list
fails to report them:

atapci0: Promise PDC40718 SATA300 controller port 0xc400-0xc47f,0xc800-0xc8ff 
mem 0xde121000-0xde121fff,0xde10-0xde11 irq 12 at device 11.0 on pci1
pci1: child atapci0 requested type 4 for rid 0x20, but the BAR says it is an mem
io
atapci0: [MPSAFE]
atapci0: Reserved 0x2 bytes for rid 0x20 type 3 at 0xde10
atapci0: Reserved 0x1000 bytes for rid 0x1c type 3 at 0xde121000
atapci0: [MPSAFE]
ata2: ATA channel 0 on atapci0
ata2: SATA connect ready time=0ms
ata2: sata_connect devices=0x1ATA_MASTER
ata2: [MPSAFE]
ata3: ATA channel 1 on atapci0
ata3: SATA connect status=
ata3: [MPSAFE]
ata4: ATA channel 2 on atapci0
ata4: SATA connect ready time=0ms
ata4: sata_connect devices=0x1ATA_MASTER
ata4: [MPSAFE]
ata5: ATA channel 3 on atapci0
ata5: SATA connect status=
ata5: [MPSAFE]

atacontrol list
ATA channel 0:
Master:  ad0 WDC WD200BB-00AUA1/18.20D18 ATA/ATAPI revision 5
Slave:   no device present
ATA channel 1:
Master:  no device present
Slave:   no device present
ATA channel 2:
Master:  no device present
Slave:   no device present
ATA channel 3:
Master:  no device present
Slave:   no device present
ATA channel 4:
Master:  no device present
Slave:   no device present
ATA channel 5:
Master:  no device present
Slave:   no device present

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


FreeBSD on Mini-ITX has web page latency

2006-12-30 Thread Bob McIsaac

Hi:

Usability studies say that a person won't wait more than 4 seconds for a
web page download.  FreeBSD using Konqueor or Lynx takes more than 10
seconds.  This is puzzling since ftp transfers at 400kbs, pings of
freebsd.org take 80ms, and top shows CPU is 93% idle.

This is for a EPIA-CN13 mini-itx with .5gb memory.
http://www.via.com.tw/en/products/mainboards/motherboards.jsp?motherboard_id=400

Via says it works with Windows and Linux. It worked well for me using Mepis
Linux.

Note the message log sees a VT6102 LAN but the board has a 6103. Perhaps
that explains the problem. Otherwise, it must be a protocol issue.

Any suggestions would be welcome

regards,
-Bob-


k: FreeBSD 6.1-RELEASE #0: Sun May  7 04:32:43 UTC 2006
k: [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
k: Timecounter i8254 frequency 1193182 Hz quality 0
k: CPU: VIA/IDT Unknown (998.51-MHz 686-class CPU)
k: Origin = CentaurHauls  Id = 0x6a9  Stepping = 9
k: 
Features=0xa7c9b8ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,SEP,MTRR,PGE,CMOV,PAT,CLFLUSH,ACPI,MMX,FXSR,SSE,SSE2,TM,PBE

k: Features2=0x181SSE3,EST,TM2
k: real memory  = 469696512 (447 MB)
k: avail memory = 450207744 (429 MB)
k: kbd1 at kbdmux0
k: acpi0: P4M80P AWRDACPI on motherboard
k: acpi0: Power Button (fixed)
k: Timecounter ACPI-fast frequency 3579545 Hz quality 1000
k: acpi_timer0: 24-bit timer at 3.579545MHz port 0x408-0x40b on acpi0
k: cpu0: ACPI CPU on acpi0
k: acpi_perf0: ACPI CPU Frequency Control on cpu0
k: acpi_throttle0: ACPI CPU Throttling on cpu0
k: acpi_button0: Power Button on acpi0
k: acpi_button1: Sleep Button on acpi0
k: pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
k: pci_link2: BIOS IRQ 5 for 0.16.INTC is invalid
k: pci_link2: BIOS IRQ 5 for 0.17.INTC is invalid
k: pci0: ACPI PCI bus on pcib0
k: pcib1: PCI-PCI bridge at device 1.0 on pci0
k: pci1: PCI bus on pcib1
k: pci1: display, VGA at device 0.0 (no driver attached)
k: atapci0: VIA 6420 SATA150 controller port 
0xfc00-0xfc07,0xf800-0xf803,0xf400-0xf407,0xf000-0xf003,0xec00-0xec0f,0xe800-0xe8ff 
irq 11 at device 15.0 on pci0

k: ata2: ATA channel 0 on atapci0
k: ata3: ATA channel 1 on atapci0
k: atapci1: VIA 8237 UDMA133 controller port 
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xe400-0xe40f at device 15.1 on pci0

k: ata0: ATA channel 0 on atapci1
k: ata1: ATA channel 1 on atapci1
k: uhci0: VIA 83C572 USB controller port 0xe000-0xe01f irq 10 at 
device 16.0 on pci0

k: uhci0: [GIANT-LOCKED]
k: usb0: VIA 83C572 USB controller on uhci0
k: usb0: USB revision 1.0
k: uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
k: uhub0: 2 ports with 2 removable, self powered
k: uhci1: VIA 83C572 USB controller port 0xdc00-0xdc1f irq 10 at 
device 16.1 on pci0

k: uhci1: [GIANT-LOCKED]
k: usb1: VIA 83C572 USB controller on uhci1
k: usb1: USB revision 1.0
k: uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
k: uhub1: 2 ports with 2 removable, self powered
k: uhci2: VIA 83C572 USB controller port 0xd800-0xd81f irq 11 at 
device 16.2 on pci0

k: uhci2: [GIANT-LOCKED]
k: usb2: VIA 83C572 USB controller on uhci2
k: usb2: USB revision 1.0
k: uhub2: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
k: uhub2: 2 ports with 2 removable, self powered
k: uhci3: VIA 83C572 USB controller port 0xd400-0xd41f irq 11 at 
device 16.3 on pci0

k: uhci3: [GIANT-LOCKED]
k: usb3: VIA 83C572 USB controller on uhci3
k: usb3: USB revision 1.0
k: uhub3: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
k: uhub3: 2 ports with 2 removable, self powered
k: ehci0: VIA VT6202 USB 2.0 controller mem 0xfdfff000-0xfdfff0ff irq 
9 at device 16.4 on pci0

k: ehci0: [GIANT-LOCKED]
k: usb4: EHCI version 1.0
k: usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3
k: usb4: VIA VT6202 USB 2.0 controller on ehci0
k: usb4: USB revision 2.0
k: uhub4: VIA EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
k: uhub4: 8 ports with 8 removable, self powered
k: isab0: PCI-ISA bridge at device 17.0 on pci0
k: isa0: ISA bus on isab0
k: pcm0: VIA VT8237 port 0xd000-0xd0ff irq 9 at device 17.5 on pci0
k: pcm0: Unknown AC97 Codec (id = 0x56494182)
k: pcm0: VIA DXS Enabled: DXS 4 / SGD 1 / REC 1
k: vr0: VIA VT6102 Rhine II 10/100BaseTX port 0xc800-0xc8ff mem 
0xfdffe000-0xfdffe0ff irq 10 at device 18.0 on pci0

k: miibus0: MII bus on vr0
k: ukphy0: Generic IEEE 802.3u media interface on miibus0
k: ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
k: vr0: Ethernet address: 00:40:63:e6:41:ba
k: sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4 flags 0x10 
on acpi0

k: sio0: type 16550A
k: ppc0: Standard parallel printer port port 0x378-0x37f irq 7 on acpi0
k: ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode
k: ppbus0: Parallel port bus on ppc0
k: plip0: PLIP network interface on ppbus0
k: lpt0: Printer on ppbus0
k: lpt0: Interrupt-driven port
k: ppi0: Parallel I/O on ppbus0
k: atkbdc0: Keyboard controller (i8042) port 0x60,0x64 irq 1 on acpi0
k: atkbd0: AT Keyboard irq 1 on atkbdc0
k: kbd0 at atkbd0
k: atkbd0: [GIANT-LOCKED]
k: 

Re: Is there reference manual for sh?

2006-12-30 Thread perryh
 I need any online complete manual on sh, not a brief as it is man sh.
 The last one doesn't describe many features both interactive (command
 line editing, using history interactively, and many others) and
 scripting (for example, conditional expressions).

info bash might be a reasonably good approximation.  Granted it will
describe capabilities that may not be present in other variants of sh.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: how to mount an already freebsd paritioned external usb drive onto a new freebsd install

2006-12-30 Thread perryh
 I was running FreebBSD 5.x until a few days ago at home on a little
 shuttle cube server with a celeron processor when my hard drive
 appeared to develop multiple problems and finally died.  I had a
 western digital external usb hard drive attached to the server that
 I used for daily backups ... The WD usb drive has a freebsd partition
 on it already.  I want to mount this drive so I can start to move
 backed up data to the new box ...

Depending on how you plan to extract the data, you may not need
to mount it at all.  dump(8) will open and read the special file
(/dev/whatever) directly.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Is there reference manual for sh?

2006-12-30 Thread Lane
On Saturday 30 December 2006 12:22, [EMAIL PROTECTED] wrote:
 On Sat, Dec 30, 2006 at 10:16:20AM -0500, Robert Huff wrote:
  [EMAIL PROTECTED] writes:
I need a reference manual or specification for sh.
Where can I find it?
 
  In you mean within FreeBSD, try:
 
  man sh
 
  or
 
  man builtin,
 
  As a user, the O'Reilly _UNIX in a Nutshell_ I bought many
  years ago was a very wise investment.
  If you want to hack the code ... the start with the code.  And
  good luck.
 
 
  Robert Huff

 I need any online complete manual on sh, not a brief as it is man sh.
 The last one doesn't describe many features both interactive (command line
 editing, using history interactively, and many others)
 and scripting (for example, conditional expressions).
Here's a brute-force manual:

#!/bin/sh
for each in `find /etc/rc.d`
do
more $each
done

If you need more than what is there then you probably need Kernigan and 
Ritchie's The C Programming Language, (still) available on amazon.com.

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


GLX (openGL) not working with Nvidia driver

2006-12-30 Thread E. J. Cerejo
I'm running 6.1 release and every time an application needs to use GLX like 
xscreensaver I get this error:

Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.

Which means that openGL is not working with the nvidia driver, on my xorg.conf 
file I've got this:

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

My Xorg.0.log says this regarding glx:

(II) LoadModule: glx
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor=NVIDIA Corporation
compiled for 4.0.2, module version = 1.0.9631
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: record
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.so
(II) Module record: vendor=X.Org Foundation
compiled for 6.9.0, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2

Running glxinfo -t tells me this:

name of display: :0.0
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
Error: couldn't find RGB GLX visual

Vis  Vis   Visual Trans  buff lev render DB ste  r   g   b   a  aux dep ste  
accum buffers  MS   MS
 ID Depth   Type  parent size el   type reo sz  sz  sz  sz  buf th  ncl  r  
 g   b   a  num bufs

Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
0x21 24 TrueColor1  0  0  ci 0   0   0   0   0   0   00  0   0  
 0   0   0   0   0
Xlib:  extension GLX missing on display :0.0.
Xlib:  extension GLX missing on display :0.0.
0x22 24 DirectColor  1  0  0  ci 0   0   0   0   0   0   00  0   0  
 0   0   0   0   0

Does anyone have any idea how to fix this?





__
Fale com seus amigos  de graça com o novo Yahoo! Messenger 
http://br.messenger.yahoo.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


dvd-audio

2006-12-30 Thread Steve Franks

Anyone make audio files from their dvd's?  All the stuff out there for
windows is based on the same crappy MS example, with different skins.

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


Re: dvd-audio

2006-12-30 Thread Aline de Freitas

Citando Steve Franks [EMAIL PROTECTED]:


Anyone make audio files from their dvd's?  All the stuff out there for
windows is based on the same crappy MS example, with different skins.

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


Probably it's not the best way, but you can try using mplayer plus  
lame, with something like:

mplayer dvd:// -ao pcm | lame audio.mp3

--
Aline de Freitas - Chave pública: ID DE632016 / keys.indymedia.org
gpg --keyserver keys.indymedia.org --recv-keys DE632016



pgpkAts8ihRlf.pgp
Description: Assinatura Digital PGP


a Q about mixer

2006-12-30 Thread Tsu-Fan Cheng

Hi,
 one quick question, how can I change the default of mixer?? when I reboot
the system, the mic and rec are always zero, and I have to adjust them so i
can use skype, kinda pain in the butt, thx!!

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


The FreeBSD Diary: 2006-12-10 - 2006-12-30

2006-12-30 Thread Dan Langille
The FreeBSD Diary contains a large number of practical 
examples and how-to guides.  This message is posted weekly
to freebsd-questions@freebsd.org with the aim of letting people
know what's available on the website.  Before you post a question
here it might be a good idea to first search the mailing list 
archives http://www.freebsd.org/search/search.html#mailinglists 
and/or The FreeBSD Diary http://www.freebsddiary.org/. 


-- 
Dan Langille
BSDCan - http://www.BSDCan.org/ - BSD Conference

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


Re: Sleepy thread - Kernel Panic

2006-12-30 Thread Tek Bahadur Limbu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



On Fri, 29 Dec 2006 16:36:30 -0400
Marc G. Fournier [EMAIL PROTECTED] wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 
 Yours makes the third report of this that I know of ... one of us is
 running 6.2-RC, one 6.1-RELEASE ... what version are you running?  I
 get the same 'hang' also ...
 
 Have you enabled DDB in your kernel?  Also, have you enabled the
 dumpdev settings in /etc/rc.conf? 
 
 - --On Thursday, December 28, 2006 17:27:38 +0545 Tek Bahadur Limbu 
 [EMAIL PROTECTED] wrote:
 
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
 
  Dear All,
 
  I need some help on the problem below.
 
  The following error occurs in my FreeBSD 6.1 (Dell 420) server:
 
 
  Sleeping thread (tid 540242, pid 32378) owns a non-sleepable lock
  panic: sleeping thread
 
  Cannot dump. No dump device defined.
 
  Automatic reboot in 15 seconds - press a key on the console to
  abort. Rebooting
 
 
  However, it does not reboot and simply hangs.
 
  I have tried commenting the options PROCFS which seemed to work
  for 2 says. However on the 3rd day, the same problem surfaced again.
 
  I probably think that it is a hardware problem. Does anybody have
  some ideas regarding this problem.
 
 
   --
 
 
  With best regards and good wishes,
 
  Yours sincerely,
 
  Tek Bahadur Limbu
 
  (TAG/TDG Group)
  Jwl Systems Department
 
  Worldlink Communications Pvt. Ltd.
 
  Jawalakhel, Nepal
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v1.4.2.2 (FreeBSD)
 
  iD8DBQFFk62uVrOl+eVhOvYRAmfRAJsFtLZOBH84ex9S2h99r1bqf2eYegCcDfgO
  rJW7nsfCQAIn7Q9RFwsUA3o=
  =W8n9
  -END PGP SIGNATURE-
 
 
 
 
 - 
 Marc G. Fournier   Hub.Org Networking Services
 (http://www.hub.org) Email .
 [EMAIL PROTECTED]  MSN . [EMAIL PROTECTED]
 Yahoo . yscrappy   Skype: hub.orgICQ . 7615664
 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.5 (FreeBSD)
 
 iD8DBQFFlXxO4QvfyHIvDvMRAu5wAJ9cdnO87xmzpXcvWRxZfYzK2sxqQQCeMIG3
 u87sTXfYCqNGNRbM0SfKqJ8=
 =TJp6
 -END PGP SIGNATURE-
 
 

Dear Marc,

I apologize for the delay in this email.

I am using FreeBSD 6.1 (i386) with SMP on a dell 420. I have not
enabled DDB in my kernel. I also don't have dumpdev in my rc.conf too.

What will be the implications of having those options in the Kernel and
rc.conf?

However, I doubt that this could be some hardware problem. Please shed
some light on this?



- -- 


With best regards and good wishes,

Yours sincerely,

Tek Bahadur Limbu

(TAG/TDG Group)
Jwl Systems Department

Worldlink Communications Pvt. Ltd.

Jawalakhel, Nepal
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (FreeBSD)

iD8DBQFFl1fdVrOl+eVhOvYRAqtzAJ4wGNuHcVAWaaiWJi+CQZmvapDtfwCeLNlD
w93uN1diEaBwVAw6m3Rwfms=
=rhp4
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Is there reference manual for sh?

2006-12-30 Thread ajm
On Sat, Dec 30, 2006 at 06:22:09PM -0600, Lane wrote:
 On Saturday 30 December 2006 12:22, [EMAIL PROTECTED] wrote:
  On Sat, Dec 30, 2006 at 10:16:20AM -0500, Robert Huff wrote:
   [EMAIL PROTECTED] writes:
 I need a reference manual or specification for sh.
 Where can I find it?
  
 In you mean within FreeBSD, try:
  
 man sh
  
 or
  
 man builtin,
  
 As a user, the O'Reilly _UNIX in a Nutshell_ I bought many
   years ago was a very wise investment.
 If you want to hack the code ... the start with the code.  And
   good luck.
  
  
 Robert Huff
 
  I need any online complete manual on sh, not a brief as it is man sh.
  The last one doesn't describe many features both interactive (command line
  editing, using history interactively, and many others)
  and scripting (for example, conditional expressions).
 Here's a brute-force manual:
 
 #!/bin/sh
 for each in `find /etc/rc.d`
 do
 more $each
 done
 
 If you need more than what is there then you probably need Kernigan and 
 Ritchie's The C Programming Language, (still) available on amazon.com.
 
 lane

How about the following:

http://www3.cons.org/cracauer/bourneshell.html

http://steve-parker.org/sh/sh.shtml

http://www.unixreview.com/columns/schaefer/

or try the following and search for bourne shell

http://www.onlamp.com/bsd/

these are all starting points...hope this helps.
-- 
Alexander
FreeBSD 6.0-RELEASE i386
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD process STATES and their meanings

2006-12-30 Thread Fr0zen
Does anyone have a small list with biref descriptions of what each value in the 
STATE column in top represent. e.g sbwait, kserel, nanslap, select, piperd, 
etc... I once saw one in the achieves, but I am unable to find it again. 

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