speedtouch 330

2008-07-12 Thread fatome konate

Hello!
I am using FreeBSD 7.0 and i can't  find a driver for Thomson usb modem:
speedtouch 330.
Can you help please? Thanks.
_
Appelez vos amis de PC à PC -- C'EST GRATUIT
http://get.live.com/messenger/overview___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Printer Installation

2008-07-12 Thread Mike Clarke
On Friday 11 July 2008, Roland Smith wrote:

 You should define CUPS_OVERWRITE_BASE when building cups. This will
 install cups's lp* programs over the system programs. The easiest
 way to do that is to add the following lines to /etc/make.conf:

 .if ${.CURDIR:M*/print/cups*}
 CUPS_OVERWRITE_BASE=true
 .endif

 Then rebuild and re-install the cups-base port.

 To prevent the next system rebuild from undoing this, you should also
 add

 WITHOUT_LPR=true

 to /etc/src.conf.

I think this only applies for ver. 7.

For 6.3 you need to put

NO_LPR=true

in /etc/make.conf.

/etc/src.conf (and its slightly different wording) wasn't introduced 
until 7.0.

I also have WITH_CUPS=yes in /etc/make.conf. I understand that some 
ports make use of it.

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


Re: speedtouch 330

2008-07-12 Thread Manolis Kiagias

fatome konate wrote:

Hello!
I am using FreeBSD 7.0 and i can't  find a driver for Thomson usb modem:
speedtouch 330.
Can you help please? Thanks.

  


There was a project to create an open driver for 330:

http://speedtouch.sourceforge.net

Rumor has it this was working in FreeBSD 5.1, but I can't tell about 7.0
You'll be a lot better just buying a cheapo router and connecting it to 
your ethernet card.

I've been using a Speedtouch 500 this way, and never had any trouble.

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


Re: general question - php5 extensions

2008-07-12 Thread Gerard
On Fri, 11 Jul 2008 22:47:50 -0400
Brad Mettee [EMAIL PROTECTED] wrote:

[snip]

 You're portmanager line has been very helpful, everything that I was
 trying to get installed is actually working! I only had one problem
 and that's because Mail-Toaster defines itself as a package without
 defining an ORIGIN line in it's +CONTENTS pkg file. Once I added that
 I stopped getting portmanager upgrade errors and everything got
 properly upgraded and compiled.

Glad to hear it worked for you. Regarding the problem with toaster, did
you file a PR or report it to the maintainer? It might help to avoid
problems for other users.

-- 
Gerard
[EMAIL PROTECTED]

Yesterday I was a dog.  Today I'm a dog.
Tomorrow I'll probably still be a dog.
Sigh!  There's so little hope for advancement.

Snoopy


signature.asc
Description: PGP signature


Re: Install failure for 7.0-RELEASE (Need help!)

2008-07-12 Thread David Gurvich
I have an A7N266 that had issues with the nvidia driver loading before
the loader prompt and causing a reboot.  The same board also had issues
with wired ethernet working reliably. 

 I installed solaris 10 and then opensolaris 2008.05.  Both worked well.
I installed opensolaris as I wanted newer versions of some software.
The hardware is well supported, only gnome is available, flash9 works
well, and updating the system and packages is annoying. 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


A compiling issue with a new compiler

2008-07-12 Thread Unga
Hi all

I have compiled GCC 4.3.1 from source.

echo 'main(){}'  test.c
cc test.c -v -Wl,--verbose

Above two commands end up with:
attempt to open /usr/lib/crtn.o succeeded
/usr/lib/crtn.o/usr/lib/libc.so: undefined reference to `_nsyylex'
/usr/lib/libc.so: undefined reference to `_nsyyin'
/usr/lib/libc.so: undefined reference to `_nsyytext'
/usr/lib/libc.so: undefined reference to `_nsyyerror'
/usr/lib/libc.so: undefined reference to `_nsyylineno'
collect2: ld returned 1 exit status

ld --verbose | grep SEARCH
SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib);

Some relevant portions from the compiler spec file:
*linker:
collect2

*startfile_prefix_spec:
/usr/lib/

*fbsd_dynamic_linker:
/libexec/ld-elf.so.1

*link_command:
%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:%(linker) %l %{pie:-pie} %X %{o*}
%{A} %{d} %{e*} %{m} %{N} %{n} %{r}%{s} %{t} %{u*} %{x} %{z} %{Z} %{!A:%{!no
stdlib:%{!nostartfiles:%S}}}%{static:} %{L*} %(mfwrap) %(link_libgcc) %o
%{fopenmp|ftree-parallelize-loops=*:%:include(libgomp.spec)%(link_gomp)} %(mflib
)%{fprofile-arcs|fprofile-generate|coverage:-lgcov}%{!nostdlib:%{!nodefa
ultlibs:%(link_ssp) %(link_gcc_c_sequence)}}%{!A:%{!nostdlib:%{!nostartfiles
:%E}}} %{T*} }}

Is this something to do with the compiler spec file?

What else should I look for?

Any help in this regard is very much appreciated.

Kind regards
Unga




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


Re: general question - php5 extensions

2008-07-12 Thread Brad Mettee
Hadn't even occurred to me to file a PR. Getting the whole process working 
kinda derailled all trains of thought outside of alright!, it works!.


Good idea, will let him know about it.

At 07:35 AM 7/12/2008, you wrote:

On Fri, 11 Jul 2008 22:47:50 -0400
Brad Mettee [EMAIL PROTECTED] wrote:

[snip]

 You're portmanager line has been very helpful, everything that I was
 trying to get installed is actually working! I only had one problem
 and that's because Mail-Toaster defines itself as a package without
 defining an ORIGIN line in it's +CONTENTS pkg file. Once I added that
 I stopped getting portmanager upgrade errors and everything got
 properly upgraded and compiled.

Glad to hear it worked for you. Regarding the problem with toaster, did
you file a PR or report it to the maintainer? It might help to avoid
problems for other users.

--
Gerard
[EMAIL PROTECTED]

Yesterday I was a dog.  Today I'm a dog.
Tomorrow I'll probably still be a dog.
Sigh!  There's so little hope for advancement.

Snoopy



Brad Mettee
PC HotShots, Inc.
Baltimore, MD
(410) 426-7617

 - Let us bring out the *Power* of your PCs. -
- Custom Business Software Solutions since 1991 -

visit http://www.pchotshots.com for information about our company.

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


Re: Disabling Super key?

2008-07-12 Thread Girish Kulkarni
On Fri, Jul 11, 2008 at 6:02 PM, Frank Shute wrote:

 On Fri, Jul 11, 2008 at 05:08 PM, Girish Kulkarni wrote:
 Any idea how I could make the effect of xmodmap
 permanent? (Adding relevant lines to ~/.xsession doesn't seem
 to help.)

 Make a ~/.xmodmaprc with your setting(s) in it and then call it
 from ~/.xsession or ~/.xinitrc (depends on how you start
 X). E.g you want a line like:

Thanks for your reply. This doesn't seem to be helping though. I use
~/.xsession to start X so I put the following two lines in it:

 xmodmap -e 'clear mod4'
 xmodmap ~/.xmodmaprc

where ~/.xmodmaprc contains relevant instructions for disabling the
Super key. I found that the Super key was not disabled even after
this. I also tried including these two lines in ~/.xinitrc.

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


Sony Memory Stick Pro Duo 8 GB

2008-07-12 Thread beni
Hi,

I'm trying to get my 8 GB Sony MS card recognised by my fbsd 7.0-stable. But 
when I'm putting the memory card in the reader, it doesn't even show up in 
dmesg and there is no mention in /var/log/messages either. Reader and card are 
working fine under windows.
Any pointers on how to get access to my memory card ?
Thanks !
-- 
Beni.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


rtorrent failure when running on FBSD-7.0 amd64

2008-07-12 Thread luizbcampos
 After I had installled rtorrent on my system I get failure when I
run it. The display shows - unable to read rtorrent.rc file. I have
chmoded 0755 this file but the failure stays on
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Disabling Super key?

2008-07-12 Thread Frank Shute
On Sat, Jul 12, 2008 at 06:47:57PM +0530, Girish Kulkarni wrote:

 On Fri, Jul 11, 2008 at 6:02 PM, Frank Shute wrote:
 
  On Fri, Jul 11, 2008 at 05:08 PM, Girish Kulkarni wrote:
  Any idea how I could make the effect of xmodmap
  permanent? (Adding relevant lines to ~/.xsession doesn't seem
  to help.)
 
  Make a ~/.xmodmaprc with your setting(s) in it and then call it
  from ~/.xsession or ~/.xinitrc (depends on how you start
  X). E.g you want a line like:
 
 Thanks for your reply. This doesn't seem to be helping though. I use
 ~/.xsession to start X so I put the following two lines in it:
 
  xmodmap -e 'clear mod4'
  xmodmap ~/.xmodmaprc
 
 where ~/.xmodmaprc contains relevant instructions for disabling the
 Super key. I found that the Super key was not disabled even after
 this. I also tried including these two lines in ~/.xinitrc.
 

First, you should check what keycode the key you want to disable
produces. You can check this by using X11/xev and pressing the key.

On my English PC keyboard, the left Windows key produces keycode 115.

I can disable it by putting the following line in ~/.xinitrc since I
use startx(1):

xmodmap -e keycode 115=

If you use xdm(1) or similar display manager, then you want to put
that line in ~/.xsession

Don't worry about having an xmodmaprc.

You'll obviously need to restart X for the change to take effect. Or
just run it from a prompt for it to have an immediate effect.

Regards,

-- 

 Frank 


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

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


PART TIME JOB OFFER ..........APPLY NOW#8207;

2008-07-12 Thread CARDINAL EXPONENTS FABRICS AND GALLERIES LTD .

CARDINAL EXPONENTS FABRICS AND GALLERIES LTD.
114 ANERLEY ROAD BROMLEY LONDON , GREATER LONDON ,SE19 2AN
email:[EMAIL PROTECTED]
COMPANY WORKING HOUR'S 9:00am to 6m all days.

As part of my expansion program,CARDINAL EXPONENTS FABRICS AND
GALLERIES LTD. 

His looking for someone to WORK PART TIME/FROM HOME as a
Representative/Bookkeeper,it pays $1500 a month plus benefits and
takesonly little of your time.

Please contact us for more details
equirements.

#Your full name: 
#Your full home address (STREET,CITY,COUNTRY, STATE AND ZIP CODE):
#Your age,..
#Occupation: ..
#marital status...
#Your moile number

BOX IS NOT APPLICABLE, ONLY PHYaSICAL ADDRESS WILL BE ACCEPTED.



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


upgrading a 6.3 box using portsnap and freebsd-update

2008-07-12 Thread David Newman
On a dual-CPU i386 box running FreeBSD 6.3, I'm having two issues with 
portsnap and freebsd-update:


1. After running portsnap fetch I then do portmaster -L  
portmaster.out to see which ports need updating. But the output stops 
on one of the perl ports:


=== p5-Text-ParseWords-3.1

=== The textproc/p5-Text-ParseWords port has been deleted: Module 
included in

 core perl
=== Aborting update

Running pkg_delete reveals dependencies:

pkg_delete: package 'p5-Text-ParseWords-3.1' is required by these other 
packages

and may not be deinstalled:
p5-ExtUtils-ParseXS-2.19
p5-Module-Build-0.28.08_2

How to remedy?

2. freebsd-update fails to run:

mail# freebsd-update fetch
Looking up update.FreeBSD.org mirrors... none found.
Fetching public key from update.FreeBSD.org... failed.
No mirrors remaining, giving up.

Yet a FreeBSD-7.0 machine with an identical /etc/freebsd-update.conf 
file runs fine.


How to debug?

Thanks in advances for clues on fixing either or both these issues.

dn

# uname -a

FreeBSD mail.networktest.com 6.3-RELEASE-p1 FreeBSD 6.3-RELEASE-p1 #1: 
Fri Feb 15 14:47:09 PST 2008 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/MYSMP  i386


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


Re: mail not work

2008-07-12 Thread Malcolm Kay
On Fri, 11 Jul 2008 10:00 am, EdwardKing wrote:
 I use mailx command,such as Tom to Kate,I like following
 command: $mail Kate
 Subject:Hello
 Hello world
 (press Ctrl+D)
 EOT

 Then I use user Kate to login,and check mail,
 $mail
 No mail for Kate

 Why I can't receive letter? where is wrong?


Perhaps something to do with using uppercase in login names:
From adduser(8) man page:
 username
 Login name.  The user name is restricted to whatever pw(8) will
 accept.  Generally this means it may contain only lowercase char-
 acters or digits but cannot begin with the `-' character.  Maxi-
 mum length is 16 characters.  The reasons for this limit are his-
 torical.  Given that people have traditionally wanted to break
 this limit for aesthetic reasons, it has never been of great
 importance to break such a basic fundamental parameter in UNIX.
 You can change UT_NAMESIZE in utmp.h and recompile the world;
 people have done this and it works, but you will have problems
 with any precompiled programs, or source that assumes the 8-char-
 acter name limit, such as NIS.  The NIS protocol mandates an
 8-character username.  If you need a longer login name for e-mail
 addresses, you can define an alias in /etc/mail/aliases.


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


Re: upgrading a 6.3 box using portsnap and freebsd-update

2008-07-12 Thread RW
On Sat, 12 Jul 2008 09:25:34 -0700
David Newman [EMAIL PROTECTED] wrote:

 === The textproc/p5-Text-ParseWords port has been deleted: Module 
 included in
   core perl
 === Aborting update
 
 Running pkg_delete reveals dependencies:
 
 pkg_delete: package 'p5-Text-ParseWords-3.1' is required by these
 other packages
 and may not be deinstalled:
 p5-ExtUtils-ParseXS-2.19
 p5-Module-Build-0.28.08_2
 
 How to remedy?

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


Re: mail not work

2008-07-12 Thread Malcolm Kay
On Sun, 13 Jul 2008 02:34 am, Malcolm Kay wrote:
 On Fri, 11 Jul 2008 10:00 am, EdwardKing wrote:
  I use mailx command,such as Tom to Kate,I like following
  command: $mail Kate
  Subject:Hello
  Hello world
  (press Ctrl+D)
  EOT
 
  Then I use user Kate to login,and check mail,
  $mail
  No mail for Kate
 
  Why I can't receive letter? where is wrong?

 Perhaps something to do with using uppercase in login names:
 From adduser(8) man page:
  username
  Login name.  The user name is restricted to
 whatever pw(8) will accept.  Generally this means it may
 contain only lowercase char- acters or digits but cannot begin
 with the `-' character.  Maxi- mum length is 16 characters. 
 The reasons for this limit are his- torical.  Given that
 people have traditionally wanted to break this limit for
 aesthetic reasons, it has never been of great importance to
 break such a basic fundamental parameter in UNIX. You can
 change UT_NAMESIZE in utmp.h and recompile the world; people
 have done this and it works, but you will have problems with
 any precompiled programs, or source that assumes the 8-char-
 acter name limit, such as NIS.  The NIS protocol mandates an
 8-character username.  If you need a longer login name for
 e-mail addresses, you can define an alias in
 /etc/mail/aliases.


Addendum:
Names in To: addresses can generally be in any case and still
be received by the user with the corresponding lowercase login name.

For example mail sent to 'MALCOLM' on my machine it ends up in my mail box 
with login name 'malcolm'. So somewhere (sendmail?) the name is translated 
to all lowercase. I expect that sendmail is trying to deliver your mail
to some undefined user named 'kate' -- not to 'Kate'.

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


fixing fatal trap with SW RAID breakage

2008-07-12 Thread Tamouh H.
Hi,

When using software based RAID controllers (e.g. ICH9R) in RAID-1 scenario, if 
any of the drives fail and the server reboot, the system will not come back up.

This has been observed on FreeBSD 6.3-RELEASE i386 with following error:

  Fatal trap 12: page fault while in kernel mode
  fault virtual address   = 0xf4d988d8
  fault code  = supervisor read, page not present
  instruction pointer = 0x20:0xc0847e06
  stack pointer   = 0x28:0xc0c20bfc
  frame pointer   = 0x28:0xc0c20c40
  code segment= base 0x0, limit 0xf, type 0x1b
  = DPL 0, pres 1, def32 1, gran 1
  processor eflags= interrupt enabled, resume, IOPL = 0
  current process = 0 (swapper)
  trap number = 12
  panic: page fault

I wasn't able to get the machine up into any mode except to the basic prompt.

This problem can also be duplicated if you move the drive from ICH9R RAID to 
non-RAID controller

Any tips on how to get the FBSD system operational again without having to do a 
reinstall?

Thanks,

Tamouh Hakmi


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


Re: upgrading a 6.3 box using portsnap and freebsd-update

2008-07-12 Thread David Newman

On 7/12/08 9:55 AM, RW wrote:

On Sat, 12 Jul 2008 09:25:34 -0700
David Newman [EMAIL PROTECTED] wrote:

=== The textproc/p5-Text-ParseWords port has been deleted: Module 
included in

  core perl
=== Aborting update

Running pkg_delete reveals dependencies:

pkg_delete: package 'p5-Text-ParseWords-3.1' is required by these
other packages
and may not be deinstalled:
p5-ExtUtils-ParseXS-2.19
p5-Module-Build-0.28.08_2

How to remedy?


pkg_delete -f


Yes, that cleared the portsnap issue. Many thanks!

My remaining issue with with freebsd-update:

mail# freebsd-update fetch
Looking up update.FreeBSD.org mirrors... none found.
Fetching public key from update.FreeBSD.org... failed.
No mirrors remaining, giving up.

Yet a FreeBSD-7.0 machine on the same subnet with an identical 
/etc/freebsd-update.conf file runs fine.


How to debug?

thanks again

dn

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


Re: FreeBSD 7.0 and RAM limit

2008-07-12 Thread Rodolfo Pellegrino
On Sat, Jul 5, 2008 at 8:01 AM, Robert Heron [EMAIL PROTECTED] wrote:

 Hi,

 I use:

 FreeBSD 7.0-R on i386 server with motherboard S5000VSA and 6GB RAM onboard.
 BIOS version - 88 (the latest)

 Kernel includes: optionsMAXMEM=(6*1024*1024)

 And FreeBSD reports only:

 real memory  = 2680160256 (2556 MB)
 avail memory = 2617892864 (2496 MB)

 Why? What is wrong that FreeBSD sees only about 2.5GB instead of 6GB?

 Robert


-
Look at system memory map:

 http://www.codinghorror.com/blog/images/intel-system-memory-map.png

As a 32-bit system, your limit is 4 GB, subtracting PCI devices, sound and
so on like the linked PNG.

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


Re: Disabling Super key?

2008-07-12 Thread Polytropon
Just a sidenote:

On Sat, 12 Jul 2008 16:07:32 +0100, Frank Shute [EMAIL PROTECTED] wrote:
 If you use xdm(1) or similar display manager, then you want to put
 that line in ~/.xsession

An option to have all settings in one file (traditionally the
~/.xinirc file) is to create a ~/.xsession file with these three
lines:

#!/bin/csh
source ~/.cshrc
exec ~/.xinitrc

Then, your ~/.xinitrc can contain any xmodmap call you want,
for exmaple:

xmodmap ~/.xmodmaprc

So you don't run into trouble where to configure your X session.


-- 
Polytropon
From Magdeburg, Germany
Happy FreeBSD user since 4.0
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Disabling Super key?

2008-07-12 Thread Odhiambo Washington
After all that advice, one last piece remains - buy another keyboard;-)




On 7/6/08, Girish Kulkarni [EMAIL PROTECTED] wrote:
 Is there any way I could disable the Windows key on my keyboard?

 I use FreeBSD 7.0-RELEASE on a Dell Inspiron 640m laptop. My Windows
 key (Super_L) has developed a problem for some unknown reason: it
 gets pressed and remains so without my touching it. I could diagnose
 this only using xev, which reported a constant Super_L KeyPress event.

 This means that I cannot enter text in for example Firefox or Emacs
 most of the time and this is terribly irritating. I could probably
 solve the problem by disabling the Super key.

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


-- 
Sent from Google Mail for mobile | mobile.google.com

Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254733744121/+254722743223
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Oh My God! They killed init! You Bastards!
--from a /. post
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: inetd[860]: ssh/tcp: bind: Address already in use

2008-07-12 Thread Ted Mittelstaedt

Either run ssh out of inetd.conf og run it as a daemon, not
both.

I run it as a daemon myself

to do that, leave the line in /etc/rc.conf and remove
the line in inetd.conf

To run it out of inetd and not as a daemon, remove
the line from rc.conf and leave the line in inetd.conf

Ted

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] Behalf Of EdwardKing
 Sent: Thursday, July 10, 2008 11:54 PM
 To: FreeBSD
 Subject: inetd[860]: ssh/tcp: bind: Address already in use
 
 
 I use FreeBSD7.0,I find some time it raise following information:
 inetd[860]: ssh/tcp: bind: Address already in use
 
 I look up my /etc/rc.conf file,it contains:
 
 inetd_enable=YES
 sshd_enable=YES
 
 /etc/inetd.conf file contains:
 
 sshstream  tcpnowait  root  /usr/sbin/sshd  sshd -i -4
 #ssh  stream  tcp6  nowait  root  /usr/sbin/sshd  sshd -i -6
 
 Where wrong with my BSD system? How to solve it?
 
 Any idea will be appreciated!
 Edward
 
 
 --
 
 Confidentiality Notice: The information contained in this e-mail 
 and any accompanying attachment(s) is intended only for the use 
 of the intended recipient and may be confidential and/or 
 privileged of Neusoft Group Ltd., its subsidiaries and/or its 
 affiliates. If any reader of this communication is not the 
 intended recipient, unauthorized use, forwarding, printing, 
 storing, disclosure or copying is strictly prohibited, and may be 
 unlawful. If you have received this communication in error, 
 please immediately notify the sender by return e-mail, and delete 
 the original message and all copies from your system. Thank you. 
 --
 -
 
 ___
 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: Firefox/epiphany/galeon all crash

2008-07-12 Thread Kurt Buff
On Tue, Jul 8, 2008 at 4:58 PM, Kurt Buff [EMAIL PROTECTED] wrote:
 As soon as I log into my gmail account, and several other sites.
 Running 7-STABLE, amd64 - FF is 2.0.0.14, gecko is 20080628. I'm
 writing this on my really old Windows laptop

 Below are the last few lines from a representative set of output from
 session launched from the commandline. Is it flash, or something else,
 and is there anything I can do to fix this? Oddly enough, it's not
 crashing on the OWA (Outlook Web Access) from my company's Exchange
 server - but that's just a lot of javascript, AFAICT.

 CSS Error (https://mail.google.com/mail/?ui=2view=bspver=1qygpcgurkovy
 :0.16): Error in parsing value for property 'width'.  Declaration
 dropped.
 ###!!! ASSERTION: bad width: 'metrics.width=0', file
 nsLineLayout.cpp, line 1068
 Break: at file nsLineLayout.cpp, line 1068
 ++DOMWINDOW == 17
 WARNING: Moving XPConnect wrappedNative to new scope, but can't fixup
 __proto__, file xpcwrappednative.cpp, line 1108
 For application/x-shockwave-flash found plugin
 /usr/local/lib/browser_plugins/libnpflash.so
 LoadPlugin() /usr/local/lib/browser_plugins/libnpflash.so returned 29e4d60
 NP_Initialize
 New
 nsPluginNativeWindowGtk2: NPPVpluginNeedsXEmbed=0
 nsPluginNativeWindowGtk2: call SetWindow with xid=0x2001584
 About to create new ws_info...
 About to create new xtbin of 100 X 100 from 0x192ccc0...
 About to show xtbin(0x7b2e90)...
 completed gtk_widget_show(0x7b2e90)
 SetWindow
 nsPluginNativeWindowGtk2: NPPVpluginNeedsXEmbed=0
 nsPluginNativeWindowGtk2: call SetWindow with xid=0x2001584
 SetWindow
 nsPluginNativeWindowGtk2: NPPVpluginNeedsXEmbed=0
 nsPluginNativeWindowGtk2: call SetWindow with xid=0x2001584
 SetWindow
 NewStream
 WriteReady
 Write
 decoding...
 The program 'gecko' received an X Window System error.
 This probably reflects a bug in the program.
 The error was 'BadImplementation (server does not implement operation)'.
  (Details: serial 36 error_code 17 request_code 146 minor_code 5)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
 nsStringStats
  = mAllocCount:  47580
  = mReallocCount: 7348
  = mFreeCount:   40084  --  LEAKED 7496 !!!
  = mShareCount:  29791
  = mAdoptCount:   4257
  = mAdoptFreeCount:   4072  --  LEAKED 185 !!!


Haven't heard from anyone on this, so I thought I'd update it. This
happens in both gnome and xfce4.

What further troubleshooting should I do, or to whom should I report
this, to advance the issue?

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


Windows Firefox in Wine: Ugly Fonts

2008-07-12 Thread Razmig K


Hello,

I installed Windows Firefox 2.0.0.12 in Wine 0.9.58 on a 7.0-RELEASE 
running KDE 3.5.8 as a solution to the Flash problem, which works just 
fine this way (this is 9.0 r124). However Firefox fonts look quite bad; 
jaggies, discontinuities and boxes in place of some characters. I 
installed the port x11-fonts/webfonts, but the problem persisted. 
Suggestions?
I don't know if this is relevant, but I have Geko installed in Wine and 
I run a low resolution monitor, 800x600.

Thanks!


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


Display error message

2008-07-12 Thread Rem P Roberti
Whenever I open X, or close it I get a similar error message.  The
message that appears when I close X is thus:

xauth: (argv):1: bad display name remdog:0 in remove command

remdog is the hostname of my computer.  None of this seems to have and
adverse affect on operations, but I would still like to know what is
going on here.

Cheers,

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


Re: Printer Installation

2008-07-12 Thread Frank Shute
On Fri, Jul 11, 2008 at 12:45:58PM -0700, Rem P Roberti wrote:

 This has been an ongoing problem for me because of my lack of knowledge
 about the processes involved.  I have a postscript printer which was
 installed using CUPS via the KDE printer wizard.  The printer works fine
 when printing from X apps, but I am unable to print from the command
 line.  My main concern is to be able to print from Mutt, but when I try
 to do that I get an error message from Mutt telling me,lpr: lp: unknown
 printer.  I would appreciate being pointed in the right direction here.  
 
 Rem

Not a direct answer to your question but there is an option you can
set in your ~/.muttrc

I've got this in mine:

set print_command=a2ps -1  ~/mail.ps; gv ~/mail.ps

This allows me to view the mail before printing it from gv.

gv and a2ps are in ports.

Regards,

-- 

 Frank 


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

___
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: 2008-06-22 - 2008-07-12

2008-07-12 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/. 

These are the articles posted during this period:

6-Jul : ezjail - A jail administration framework
 This makes jails easier 
 http://freebsddiary.org/ezjail.php?2

24-Jun : Adding gmirror to an existing installation
 Adding RAID-1 to an existing FreeBSD 7 installation
 http://freebsddiary.org/gmirror.php?2


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


upgrading a 6.3 box using portsnap and freebsd-update

2008-07-12 Thread David


 upgrading a 6.3 box using portsnap and freebsd-update

*David Newman* dnewman at networktest.com 
mailto:freebsd-questions%40freebsd.org?Subject=upgrading%20a%206.3%20box%20using%20portsnap%20and%20freebsd-updateIn-Reply-To=20080712175513.7ed1baed%40gumby.homeunix.com.

/Sat Jul 12 17:52:48 UTC 2008/

   * Previous message: upgrading a 6.3 box using portsnap and
 freebsd-update
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/178680.html
   * Next message: fixing fatal trap with SW RAID breakage
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/178682.html
   * *Messages sorted by:* [ date ]
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/date.html#178683
 [ thread ]
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/thread.html#178683
 [ subject ]
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/subject.html#178683
 [ author ]
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/author.html#178683




On 7/12/08 9:55 AM, RW wrote:

/ On Sat, 12 Jul 2008 09:25:34 -0700

// David Newman dnewman at networktest.com 
http://lists.freebsd.org/mailman/listinfo/freebsd-questions wrote:
// 
// === The textproc/p5-Text-ParseWords port has been deleted: Module 
// included in

//   core perl
// === Aborting update
//
// Running pkg_delete reveals dependencies:
//
// pkg_delete: package 'p5-Text-ParseWords-3.1' is required by these
// other packages
// and may not be deinstalled:
// p5-ExtUtils-ParseXS-2.19
// p5-Module-Build-0.28.08_2
//
// How to remedy?
// 
// pkg_delete -f

/

Yes, that cleared the portsnap issue. Many thanks!

My remaining issue with with freebsd-update:

mail# freebsd-update fetch
Looking up update.FreeBSD.org mirrors... none found.
Fetching public key from update.FreeBSD.org... failed.
No mirrors remaining, giving up.

Yet a FreeBSD-7.0 machine on the same subnet with an identical 
/etc/freebsd-update.conf file runs fine.


How to debug?

thanks again

dn



The same thing happened to me when I CTRL-C'ed the update process. It was driving me nuts until I thought 
of the good old notion, turn it off and then turn it back on.


So, and this worked for me, delete everything in the freebsd-update db 
directory, /var/db/freebsd-update.
It does involve re-downloading a lot of stuff. In hindsight, move the sub-directory 
files else where and then re-populate once it is working.

Good Luck !


David





   * Previous message: upgrading a 6.3 box using portsnap and
 freebsd-update
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/178680.html
   * Next message: fixing fatal trap with SW RAID breakage
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/178682.html
   * *Messages sorted by:* [ date ]
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/date.html#178683
 [ thread ]
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/thread.html#178683
 [ subject ]
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/subject.html#178683
 [ author ]
 
http://lists.freebsd.org/pipermail/freebsd-questions/2008-July/author.html#178683



More information about the freebsd-questions mailing list 
http://lists.freebsd.org/mailman/listinfo/freebsd-questions

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


Re: upgrading a 6.3 box using portsnap and freebsd-update

2008-07-12 Thread David Newman

On 7/12/08 4:11 PM, David wrote:

So, and this worked for me, delete everything in the freebsd-update db 
directory, /var/db/freebsd-update.
It does involve re-downloading a lot of stuff. In hindsight, move the 
sub-directory files else where and then re-populate once it is working.


That didn't work for me. But editing /etc/freebsd-update.conf to change 
'update.FreeBSD.org' to 'update1.freebsd.org' did the trick.


Thanks for your response!

dn

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


aterm whacked?

2008-07-12 Thread Neil Short
I just mem-wiped my laptop and am in the process of installing everything after.

I have several issues (linux-firefox with linux-flash plugin crashes on sites 
with flash), not the least of which is aterm doesn't seem to behave very well.

When I run aterm I get:

$ aterm
aterm has encountered the following problem interacting with X Windows :
  Request: 64,Error: 8(BadMatch (invalid parameter attributes))
  in resource: 0x14D
aterm has encountered the following problem interacting with X Windows :
  Request: 64,Error: 8(BadMatch (invalid parameter attributes))
  in resource: 0x14D
aterm has encountered the following problem interacting with X Windows :
  Request: 64,Error: 8(BadMatch (invalid parameter attributes))
  in resource: 0x14D

 etc.

Transparency doesn't work right either - which I see is the greatest attraction 
to aterm.

Any ideas?

==
If not us, who? And if not now, when?
Ronald Reagan


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


Re: 12 July 2008

2008-07-12 Thread ApartmentsDirect.ie

   !--

This plain text message area is for recipients who
   hav= e email programs that do not support html emails (almost every
   modern ema= il client software program can accept html emails). If you
   want to add an= alternate plain text message for those who cannot
   receive html emails, e= nter it
   here.









   











   0A
   











   0D   











   0D= 




//--



   TITLE
= 



   3D= = /P


   * Our TV Advert: Click on 
the following link to view our latest
   television adv= ert which is 30 seconds long 
 

   [1]http://www.apartmentsdirect.ie/adone-1.wmv
   

   


   All property types 
featured from all over the 
   world: villas, apartments, farm houses, Gites, BB'= s, 
hotels,
   castles all for rent or for sale from owne= rs. 

   


   S A V E= nbsp;  M O N E Y  
ON YOUR HOLIDAY 
/ VACATION
   Cut the cost of 
your holiday/vacation by boo= king directly with
   the property owner on 
Ireland's number 1 dedicat= ed holiday
   property web site, www.apartmentsdirect.ie. There are loads 
of
   holiday o= ffers and deals being offered now by thousands of property
   
own= ers from all over the world. Great holiday offers for
   Europe, America, 
= 
Africa, Asia, Australia  South Pacific,
   Central  South= America, 
The Caribbean. Why not check out the
   holiday offers and s= trike a holiday deal 
directly with the
   property owner.
   C= UT OUT THE MIDDLEMAN AND BOOK 
DIRECT AT
   WWW.APARTMENTSDIRECT.IE! 
   

   

 * 

   Do You Own 
= 
 A Holiday / Vacation Home? 
 

 * 

   Would You 
 Like To Increase You= r Rental 
 Income?
   

   
= 

 * 

   List your holida= y 
 home on Ireland's Number 1 dedicated
   holiday property web = site, 
 
 

   www.apartmentsdirect.ie.
   

 * 

   = For a limited time we are now 
 offering a 5 year su   bscription for only €95.00. Thats €95.00 in total, 
 NOT
   p= er year. It normally costs €150.00 per year but if you act
   fast you can= 
 list your holiday home for rent or for sale
   for 5 years at the a= mazing price 
 of only €95.00. If you
   list today we will also inc= lude your property in our 

   homepage Featured Property section abso= lutely free for even more
   
 exposure.

   
= BLOCKQUOTE dir=ltr style=MARGIN-RIGHT: 0px


- 5 
 Year €= 95.00 (in total) Listing Offer - 
 = 

   


 Limited Time Offer  
= 

   


   List your= 
 property now for 5 years at the amazingly low
   price of only= €95.00. Thats 
 €95.00 in total NOT per year.
   For le= ss than €0.37 a 
 week, you can list your property= on
   Ireland's number 1 holiday property 
 web site.
   


   * List today and start taki= ng enquires 
 tomorrow!
   


   Click on the following link for full 
 details=  and to get
   started [2]http://www.apartmentsdirect.ie/5-year-o= ffer.php. 

   If the link does not open up for you please copy or= type the link
   address into 
 your browser.
   


   EXISTING 
 ADV= ERTISERS: If you are an existing advertiser with
   us an= d 
 you are receiving this email, it is either because,
   (a) thenbs= p;email address 
 you received this email to is
   different to the em= ail address you have 
 registered with us in
   your advertisers = account, or (b) you have an advert 
 that is
   not Live, this could b= e an expired advert or an advert you simply
   
 never ordered. If you= do not wish to receive our marketing
   emails please 
 send us = a list of your email address(es) and we
   will register those to your 
= account. Please ensure you also
   send us your property ID 
 numbe= r.
   


 



   



   



   



   



   
 

   



   



   


= /P


   AUTO= MATIC UNSUBSCRIBE 
 FACILITY:  You are receiving= this
   mailing because sometime 
 over the past 6 years, it was= used on
   our web site. If you would 
 like to have your email = address
   removed from our mailing 
 list, we are = ;more than happy to
   comply with your Remove 
 request. If you = wish to  unsubscribe
   from our mailing list 
 [3]Please click here to 
 have your
   email address automatically removed= . If the link doesn't 

   work, please go here
   [4]http://www.apartmentsdirect.ie/unsubscribe.php.
   


References

   1. 3Dhttp://www.apartmentsdirect.ie/adone-1.wmv;
   2. 3Dhttp://www.apartm=/
   3. 3Dhttp://www.apartmentsdirect.ie/unsubscribe.php;
   4. 3Dhttp://www.apartmentsdirect.ie/unsubscribe.php;
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


PACKAGESITE

2008-07-12 Thread perryh
Can someone provide a correct example of setting PACKAGESITE so that
pkg_add will find the 7-stable packages for i386?  I have tried

ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/Latest/

as shown in the handbook, and also:

ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/All/
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable

and all have failed.  I get messages like

pkg_add: could not find package expat-2.0.1 !
pkg_add: could not find package png-1.2.28 !
pkg_add: could not find package pkg-config-0.23_1 !

etc.  Even specifying -v does not cause pkg_add to show exactly
where it is looking (which might provide a clue as to what the
correct setting would look like).  The pkg_add manpage shows an
example for PACKAGEROOT, but not for PACKAGESITE.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Identifying a second Video Card

2008-07-12 Thread bill
Hi

I'm having trouble Identifying a second video card, Asus 8600GT x 2

pciconf -lv shows the first card correctly as an 8600gt ... on PCI 01:0:0
Second card is shown as a vga card only on PCI 02:0:0

This is not recognised in Xorg.conf ... no matching card for 
Device Instance PCI 2:0:0, corresponding Screen Section is
then discarded.

System is a Dual Head configuration, each card has it's own
monitor.

Either card works fine as a single, only the first PCI-e device is
correctly identified / configured.

set hw.pci.enable_io_modes=1 was tried (suggested by the guys in 
#nvidia), lost PCI completely, had to remove it again.

int10 module is loaded by Xorg.conf .. no effect there either.

Relevant bits of various log files can be made available, ask and i'll
PasteBin .

Just want to know if what I have here is possible.

Video cards are not in SLI mode  system as follows:

P4 3.0 gig
2 gig ram
On Board sound
P5ND2-SLI mb (nforce)
FreeBSD on a 200 gig hd
Dual Boots with XP which lives on a couple of 320 gig hd's
All Sata's


Thanks
Bouncer44

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