Re: network with two gateways and one network card

2012-01-12 Thread Fbsd8

Jack Raats wrote:

I have a question. Perhaps someone can point me to a solution.

I have a server running FreeBSD 7.4-STABLE with one network card running ezjail
My network has two gateways.

The host is running as 10.10.10.10 netmask 255.255.255.0 with gateway 10.10.10.1
The jail must be running 192.168.178.10 netmask 255.255.255.0 with gateway 
192.168.178.1

Is this possible?
How to do it??
What kind of problems to expect?

Thanks for your time
Jack Raats
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"




No you can not use those ip address to connect directly to the public 
internet. Those IP address are reserved for private lan use only.
You have to explain how you are connected to the public internet and a 
diagram of your network would go a long way to help us to understand 
your setup. Also qjail far exceeds the ability that ezjail gives you. 
Check out the qjail port.

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


Re: BSD equivalent of GNU/Linux cp -rpu ?

2012-01-12 Thread perryh
Matthew Seaman  wrote:

> For a nice backup system that works using rsync and that preserves
> filesystem history in a space efficient way by cunning use of hard
> links, take a look at rsnapshot -- http://rsnapshot.org/

Also in ports: sysutils/rsnapshot
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


3.6.13 firefox fonts are blurred on my 8.2 freebsd

2012-01-12 Thread akshay sreeramoju
Hi,

I am running a freebsd 8.2 and it is fun. But firefox displays its fonts
blurred. Can any one guide/point me on how to correct this?

A snapshot of my screen is here: http://tinypic.com/r/vhar82/5


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


Re: mkisofs increasing iso size by 100 MB

2012-01-12 Thread Amitabh Kant
On Wed, Jan 11, 2012 at 9:49 PM, Jan Henrik Sylvester  wrote:

> On 01/-10/-28163 20:59, Amitabh Kant wrote:
>
>> I am trying to customise the bsdinstall auto script. I can mount the iso
>> (amd64 arch / 9.0 RELEASE) and change the shell script as per my
>> requirement. Once I try to re-create the  iso file using mkisofs utility,
>> the size of the final iso increases by 100 MB if -J (joliet) mode is used.
>> If I remove the joliet mode, it still increases by around 97 MB. Even if
>> no
>> changes are made to any of the files, the result is same.
>>
>> The process I have followed is as follows:
>> # mkdir /usr/iso
>> # cd /usr/iso
>> # dd if=/dev/cd0 of=org.iso bs=2048
>> # mdconfig -a -t vnode -f org.iso -u 0
>> # mount_cd9660 /dev/md0 /mnt
>> # mkdir staging
>> # cd staging
>> # rsync -a /mnt/ .
>> With Joliet mode
>> # mkisofs -J -R -V CustomBSD -no-emul-boot -b boot/cdboot -iso-level 3 -o
>> /usr/iso/my_custom.iso .
>> Without Joliet mode
>> # mkisofs -R -V CustomBSD -no-emul-boot -b boot/cdboot -iso-level 3 -o
>> /usr/iso/my_custom1.iso .
>>
>> The original iso is 612M, custom.iso is 712M and custom1.iso is 709M.
>>
>> System details: FreeBSD amd64 9.0 RELEASE running inside a virtualbox with
>> 2GB RAM.
>>
>> Where am I going wrong?
>>
>
> There are many hardlinked files on the iso images. By the procedure above,
> you have them included multiple times.
>
> From the rsync manpage: "Note that -a does not preserve hardlinks, because
> finding multiply-linked  files is expensive.  You must separately specify
> -H."
>
> You will probably want "-cache-inodes" for mkisofs as well (and maybe
> other options). Or you could look at src/release/amd64/mkisoimages.**sh
> for the use of "makefs -t cd9660".
>
> Cheers,
> Jan Henrik
>

Tried -H with rsync and -cache-inodes in mkisofs. Saw the mkisoimages.sh
and used the same parameters (at least to my understanding), still with the
same result. The only thing left to try is to get it running on a dedicated
machine rather than in a virtualbox.

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


Re: 3.6.13 firefox fonts are blurred on my 8.2 freebsd

2012-01-12 Thread Volodymyr Kostyrko

akshay sreeramoju wrote:

Hi,

I am running a freebsd 8.2 and it is fun. But firefox displays its fonts
blurred. Can any one guide/point me on how to correct this?

A snapshot of my screen is here: http://tinypic.com/r/vhar82/5


This pic is awful, can you post a better one?

--
Sphinx of black quartz judge my vow.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: mkisofs increasing iso size by 100 MB

2012-01-12 Thread Amitabh Kant
On Thu, Jan 12, 2012 at 2:48 PM, Amitabh Kant  wrote:

> On Wed, Jan 11, 2012 at 9:49 PM, Jan Henrik Sylvester  wrote:
>
>> On 01/-10/-28163 20:59, Amitabh Kant wrote:
>>
>>> I am trying to customise the bsdinstall auto script. I can mount the iso
>>> (amd64 arch / 9.0 RELEASE) and change the shell script as per my
>>> requirement. Once I try to re-create the  iso file using mkisofs utility,
>>> the size of the final iso increases by 100 MB if -J (joliet) mode is
>>> used.
>>> If I remove the joliet mode, it still increases by around 97 MB. Even if
>>> no
>>> changes are made to any of the files, the result is same.
>>>
>>> The process I have followed is as follows:
>>> # mkdir /usr/iso
>>> # cd /usr/iso
>>> # dd if=/dev/cd0 of=org.iso bs=2048
>>> # mdconfig -a -t vnode -f org.iso -u 0
>>> # mount_cd9660 /dev/md0 /mnt
>>> # mkdir staging
>>> # cd staging
>>> # rsync -a /mnt/ .
>>> With Joliet mode
>>> # mkisofs -J -R -V CustomBSD -no-emul-boot -b boot/cdboot -iso-level 3 -o
>>> /usr/iso/my_custom.iso .
>>> Without Joliet mode
>>> # mkisofs -R -V CustomBSD -no-emul-boot -b boot/cdboot -iso-level 3 -o
>>> /usr/iso/my_custom1.iso .
>>>
>>> The original iso is 612M, custom.iso is 712M and custom1.iso is 709M.
>>>
>>> System details: FreeBSD amd64 9.0 RELEASE running inside a virtualbox
>>> with
>>> 2GB RAM.
>>>
>>> Where am I going wrong?
>>>
>>
>> There are many hardlinked files on the iso images. By the procedure
>> above, you have them included multiple times.
>>
>> From the rsync manpage: "Note that -a does not preserve hardlinks,
>> because finding multiply-linked  files is expensive.  You must separately
>> specify -H."
>>
>> You will probably want "-cache-inodes" for mkisofs as well (and maybe
>> other options). Or you could look at src/release/amd64/mkisoimages.**sh
>> for the use of "makefs -t cd9660".
>>
>> Cheers,
>> Jan Henrik
>>
>
> Tried -H with rsync and -cache-inodes in mkisofs. Saw the mkisoimages.sh
> and used the same parameters (at least to my understanding), still with the
> same result. The only thing left to try is to get it running on a dedicated
> machine rather than in a virtualbox.
>
> Amitabh
>

Same result on a dedicated machine too.

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


Sales Enquiry

2012-01-12 Thread Matt

   Hi  = ; <= o:p>


   I would like introduce my company Stocklot World = Ltd, buyers of
   surplus stock situations .


   Excess stock is a problem that many= business owners and managers
   don’t embrace as a priority. Excess invento= ry and assets
   negatively affects cash flow, ties up valuable warehousing sp= ace and
   ultimately is detrimental to the company’s financial statement.

   We spe= cialize in sourcing & purchasing overstock situations which
   may include= , short/out dated & discontinued stocks, slow moving
   stocks, products w= ith obsolete barcodes, cancelled orders,
   ex-promotional goods, old warehous= e stocks and generally any problem
   stocks/inventory that you wish to clear.= We have created a vehicle
   for business people= to cost-effectively dispose of excess inventory
   while maximizing returns. = How can it help your company?


   ·  Allows you to free up precious retail and w= arehouse space.

   ·  Cut overhead and operating expenses. <= /o:p>

   ·  Quick decisions made.

   ·  Bank transfer funds are sent to y= ou quickly.

   ·  Improve your cash flow, increase your worki= ng capital.

   ·  Cleaning out your stale stock will keep you= r inventory clean
   and current. Your customers will be able to focus on curr= ent
   merchandise, rather than last year’s residuals. It will allow you to
   = concentrate on selling profitable items, making your business more
   producti= ve and efficient.


   If you handle these stock situations yourself and= there’s something
   that you can offer me at the moment, please give me a = call. I would
   be pleased to offer my services.


   Regards

   Matt Brewer

   <= SPAN style="FONT-FAMILY: 'Arial','sans-serif'; COLOR: black;
   FONT-SIZE: 1= 8pt; mso-fareast-font-family: 'Times New Roman';
   mso-fareast-theme-font: mi= nor-fareast; mso-fareast-language: EN-GB;
   mso-no-proof: yes">Stocklot World= Ltd

   Buyers & Sellers of Surplus Inventory & Deal Makers

   Cornwall Road, Harrogate, HG1 2PL, North Yorks

   Mob: 07710 825666

   Email: [1]= matt@stocklotwor= ld.com<= /A>

   Web: [2]www.stocklotworld.com<= /o:p>



   Twitter - [3]<= /A>

   Buy From Us [4]= 
   Sell To Us [5]
   [6]










   -   
--
   -= --

   Our Email Policy:  You have received this email as we are sp   ecifically 
looking to purchase your products or services, not sell y   ou something. We 
obtained your email address by searching on the web
   for pa= rticular products and services that we would like to purchase
   from your com= pany.  We guarantee you that we will only contact you
   once every three= months to see if we can purchase your products. We
   are not in the business= of sending annoying spam mails and respect
   your privacy. Under UK law you = are welcome to "opt out" of receiving
   our emails. If you wish to unsubscrib= e please reply with UNSUBSCRIBE
   in the subject header.  Please make= sure you reply with the address
   that we sent to, otherwise you will not be= unsubscribed successfully.
   Thank you

   -   
--
   -= --




   --   
--
   -= -

   COMPANY CONFIDENTIALITY

   This e-mai= l and any attachments are confidential and intended solely
   for the addresse= e and may also be privileged or exempt from
   disclosure under applicable law= .  If you are not the addressee, or
   have received this e-mail in error= , please notify the sender
   immediately, delete it from your system and do = not copy, disclose or
   otherwise act upon any part of this e-mail or its att= achments.

   Internet communications are not guaranteed to be sec= ure or
   virus-free.

   Stocklot World Ltd does not accept respons= ibility for any loss
   arising from unauthorised access to, or interference w= ith, any
   Internet communications by any third party, or from the transmissi= on
   of any viruses.  Replies to this e-mail may be monitored by Stocklo= t
   World Ltd for operational or business reasons.

   Any opinion o= r other information in this e-mail or its attachments
   that does not relate = to the business of Stocklot World Ltd is
   personal to the sender and is not = given or endorsed by Stocklot
   World Ltd


















   office1

References

   1. 3D"mailto:m...@stocklotworld.com";
   2. 3D"C:\Users\Objects\AppData\Local\Te   3. 
3D"https://twitter.com/#!/stocklotwor   4. 3D"http://www.stocklotworld.com/#/l  
 5. file://localhost/tmp/3D"http   6. 
3D"http://www.stocklotworld.com/#/domains4sale/4547___
freebsd-questions@freebsd.org mailing 

Re: little things

2012-01-12 Thread Mike Woods


Quoting Dan Nelson :


As far as network traffic info, ifconfig is used for configuring interfaces,
not monitoring them.  The "netstat -ib" command will give you total bytes
sent/received per interface, but the best solution is probably to poll them
with snmp.


Having just been looking into this on this very list I can confirm  
that snmp is the way to go, netstat uses 32bit counters and as a  
result the counter resets far to often to be of any real use (given  
that i'm calculating throughput so amount/time), net-snmp can be  
configured to use 64bit counters and is thus far proving *far* more  
useful!



Mike Woods
Full of squishy cynicism
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Problem installing world in jail template

2012-01-12 Thread bsd
Hi, 


I am following the FBSD handbook tutorial in order to install the world in my 
jail template : 

# cd /usr/src
# make installworld DESTDIR=/jails/j/mroot


The directory already exists. 

I have the following errors : 


> ln -fs libcom_err.so.5 /jails/j/mroot/usr/lib/libcom_err.so
> install -C -o root -g wheel -m 444  
> /usr/src/lib/libcom_err/../../contrib/com_err/com_err.h 
> /usr/src/lib/libcom_err/../../contrib/com_err/com_right.h 
> /jails/j/mroot/usr/include
> install -o root -g wheel -m 444 com_err.3.gz  
> /jails/j/mroot/usr/share/man/man3
> ===> lib/libcom_err/doc (install)
> install-info --quiet  --defsection="Programming & development tools."  
> --defentry="* libcom_err: (com_err).A Common Error Description 
> Library for UNIX."  com_err.info /jails/j/mroot/usr/share/info/dir
> install-info: /jails/j/mroot/usr/share/info/dir: empty file
> *** Error code 1
> 
> Stop in /usr/src/lib/libcom_err/doc.
> *** Error code 1
> 
> Stop in /usr/src/lib/libcom_err.
> *** Error code 1
> 
> Stop in /usr/src/lib.
> *** Error code 1
> 
> Stop in /usr/src.
> *** Error code 1
> 
> Stop in /usr/src.
> *** Error code 1
> 
> Stop in /usr/src.
> *** Error code 1
> 
> Stop in /usr/src.
> 




Target OS is 9.0-RC3. 


Thanks for your help. 


––
-> Grégory Bernard Director <-
---> www.osnet.eu <---
--> Your provider of OpenSource appliances <--
––
OSnetOSnetOSnetOSnetOSnetOSnetOSnetOSnetOSnetO

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


Re: Blocking until the network is ready at boot?

2012-01-12 Thread Lowell Gilbert
kpn...@pobox.com writes:

> What's the correct way to get the rc.d scripts to block until the
> network interface is _fully_ ready to carry traffic?

According to rc.conf(5), netwait_enable is what you want.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Blocking until the network is ready at boot?

2012-01-12 Thread Dennis Glatting
On Thu, 2012-01-12 at 09:57 -0500, kpn...@pobox.com wrote:
> What's the correct way to get the rc.d scripts to block until the
> network interface is _fully_ ready to carry traffic?
> 
> The problem I'm having is that the ifconfig of the interface completes
> but the port hasn't reached "status: active" yet. So the stuff that
> starts next (sendmail, ntpd) can't reach the network. Is there a way
> to get startup to wait until the interface is active?
> 

I modify /etc/rc.d/netif and and insert a "sleep 15" after the ifconfig
loop. It is an obnoxious problem.
 

> I'm running FreeBSD 8.2/amd64.
> 
> bce0:  mem 
> 0xd600-0xd7ff irq 36 at device 0.0 on pci1
> miibus0:  on bce0
> brgphy0:  PHY 1 on miibus0
> brgphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 
> 1000baseT-master, 1000baseT-FDX, 1000baseT-FDX-maste
> r, auto, auto-flow
> bce0: Ethernet address: d4:be:d9:ac:a1:e9
> bce0: [ITHREAD]
> 



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


Clarification about AMD64 port for Core Duo

2012-01-12 Thread Frank Lay

Hello,

The CURRENT (9.0R) release notes have the following to say about the 
AMD64 port:


-->8-
As of this writing, the following processors are supported:
...
* All Intel Core 2 (not Core Duo) and later processors
...
-->8-

Yet I see many people on the Internet claiming that they're running 
FreeBSD version <= 9.0 successfully with Core Duos. What's the meaning 
of this? I own a C2D E8400 (Wolfdale) processor, would I perhaps be 
safer chosing the i386 port? Or is this all hyperbole?


I'd appreciate any time you could spare explaining this to me.

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


Re: Blocking until the network is ready at boot?

2012-01-12 Thread Lowell Gilbert
kpn...@pobox.com writes:

> On Thu, Jan 12, 2012 at 10:09:00AM -0500, Lowell Gilbert wrote:
>> kpn...@pobox.com writes:
>> 
>> > What's the correct way to get the rc.d scripts to block until the
>> > network interface is _fully_ ready to carry traffic?
>> 
>> According to rc.conf(5), netwait_enable is what you want.
>
> Does this require 9.x? I can't find any reference to that setting
> in any of my 8.2 rc.d scripts.

It's only been around on 8.x for about 6 months, so I guess you don't
have it. You can just install it in /etc/rc.d and add it as a
requirement for mountcritremote.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


NFSv4 and file locking

2012-01-12 Thread Leon Meßner
Hi,

Does anyone know what you have to do to get locking working under NFSv4?
I tried the following:

# mount_nfs -o nfsv4,sec=sys ip.nfsv4:/nfstest /mnt/test
# mount | grep ip.nfsv4
ip.nfsv4:/nfstest on /mnt/test (newnfs)
# kldstat | grep nfs
62 0x8103f000 1015fnfscommon.ko
91 0x81054000 3008fnfscl.ko
# cd /mnt/test
# lockf testlockfile ls
lockf: cannot open testlockfile: Operation not supported

Client runs 8.2-RELEASE-p6, Server runs 8-STABLE from about a month ago.

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


Re: Clarification about AMD64 port for Core Duo

2012-01-12 Thread Dan Nelson
In the last episode (Jan 12), Frank Lay said:
> The CURRENT (9.0R) release notes have the following to say about the AMD64
> port:
> 
> -->8-
> As of this writing, the following processors are supported:
> ...
> * All Intel Core 2 (not Core Duo) and later processors
> ...
> -->8-
> 
> Yet I see many people on the Internet claiming that they're running
> FreeBSD version <= 9.0 successfully with Core Duos.  What's the meaning of
> this?  I own a C2D E8400 (Wolfdale) processor, would I perhaps be safer
> chosing the i386 port?  Or is this all hyperbole?

Core Duo processors don't have support for the 64-bit instruction set,
that's all, so they have to use the i386 distribution.  To verify, go to
http://ark.intel.com/products/family/22731 , hit the "Select All" button,
and then "Compare now".

-- 
Dan Nelson
dnel...@allantgroup.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Clarification about AMD64 port for Core Duo

2012-01-12 Thread Erik Trulsson
On Thu, Jan 12, 2012 at 04:02:21PM +, Frank Lay wrote:
> Hello,
> 
> The CURRENT (9.0R) release notes have the following to say about the 
> AMD64 port:
> 
> -->8-
> As of this writing, the following processors are supported:
> ...
> * All Intel Core 2 (not Core Duo) and later processors
> ...
> -->8-
> 
> Yet I see many people on the Internet claiming that they're running 
> FreeBSD version <= 9.0 successfully with Core Duos. What's the meaning 
> of this? I own a C2D E8400 (Wolfdale) processor, would I perhaps be 
> safer chosing the i386 port? Or is this all hyperbole?
> 
> I'd appreciate any time you could spare explaining this to me.

Do not confuse the Core 2 Duo processors with the Core Duo processors.
They are not the same thing.

The original Core Duo (and Core Solo) processors were 32-bit only and
never became very widespread.

The later Core 2 series supports both 64-bit and 32-bit operation and
became quite popular, and I am fairly certain that most of the people
you say you have seen claiming to run FreeBSD with a Core Duo are
actually using a Core 2 Duo.  As for your own C2D E8400, well the 'C2D'
is short for 'Core 2 Duo', so yes it should support amd64 just fine.





-- 

Erik Trulsson
ertr1...@student.uu.se
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Clarification about AMD64 port for Core Duo

2012-01-12 Thread Frank Lay

On 12/01/12 17:03, Erik Trulsson wrote:

The later Core 2 series supports both 64-bit and 32-bit operation and
became quite popular, and I am fairly certain that most of the people
you say you have seen claiming to run FreeBSD with a Core Duo are
actually using a Core 2 Duo.  As for your own C2D E8400, well the 'C2D'
is short for 'Core 2 Duo', so yes it should support amd64 just fine.

Thank you Erik for the clarification. I overlooked that!
Now to attempt my installation. :-)

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


RE: Blocking until the network is ready at boot?

2012-01-12 Thread Devin Teske
> -Original Message-
> From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-
> questi...@freebsd.org] On Behalf Of Lowell Gilbert
> Sent: Thursday, January 12, 2012 8:37 AM
> To: kpn...@pobox.com
> Cc: freebsd-questions@freebsd.org
> Subject: Re: Blocking until the network is ready at boot?
> 
> kpn...@pobox.com writes:
> 
> > On Thu, Jan 12, 2012 at 10:09:00AM -0500, Lowell Gilbert wrote:
> >> kpn...@pobox.com writes:
> >>
> >> > What's the correct way to get the rc.d scripts to block until the
> >> > network interface is _fully_ ready to carry traffic?
> >>
> >> According to rc.conf(5), netwait_enable is what you want.
> >
> > Does this require 9.x? I can't find any reference to that setting in
> > any of my 8.2 rc.d scripts.
> 
> It's only been around on 8.x for about 6 months, so I guess you don't have it.
You
> can just install it in /etc/rc.d and add it as a requirement for
mountcritremote.

We (VICOR) liked it (netwait) so much, we back-ported it as a package... and now
make it available to the public (as of today -- looks like you folks could use
it!)

NOTE: The package automatically enables itself as a requirement for
mountcritremote (pkg_add, add "netwait_enable=YES" to rc.conf(5) and reboot;
that's it).

Download here:
http://druidbsd.sourceforge.net/download/netwait-1.2.2.2p1.tbz

-- 
Cheers,
Devin

_
The information contained in this message is proprietary and/or confidential. 
If you are not the intended recipient, please: (i) delete the message and all 
copies; (ii) do not disclose, distribute or use the message in any manner; and 
(iii) notify the sender immediately. In addition, please be aware that any 
message addressed to our domain is subject to archiving and review by persons 
other than the intended recipient. Thank you.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Problem installing world in jail template

2012-01-12 Thread bsd

Le 12 janv. 2012 à 17:29, ss griffon a écrit :

> On Thu, Jan 12, 2012 at 8:09 AM, bsd  wrote:
>> Hi,
>> 
>> 
>> I am following the FBSD handbook tutorial in order to install the world in 
>> my jail template :
>> 
>> # cd /usr/src
>> # make installworld DESTDIR=/jails/j/mroot
>> 
>> 
>> The directory already exists.
>> 
>> I have the following errors :
>> 
>> 
>>> ln -fs libcom_err.so.5 /jails/j/mroot/usr/lib/libcom_err.so
>>> install -C -o root -g wheel -m 444  
>>> /usr/src/lib/libcom_err/../../contrib/com_err/com_err.h 
>>> /usr/src/lib/libcom_err/../../contrib/com_err/com_right.h 
>>> /jails/j/mroot/usr/include
>>> install -o root -g wheel -m 444 com_err.3.gz  
>>> /jails/j/mroot/usr/share/man/man3
>>> ===> lib/libcom_err/doc (install)
>>> install-info --quiet  --defsection="Programming & development tools."  
>>> --defentry="* libcom_err: (com_err).A Common Error Description 
>>> Library for UNIX."  com_err.info /jails/j/mroot/usr/share/info/dir
>>> install-info: /jails/j/mroot/usr/share/info/dir: empty file
>>> *** Error code 1
>>> 
>>> Stop in /usr/src/lib/libcom_err/doc.
>>> *** Error code 1
>>> 
>>> Stop in /usr/src/lib/libcom_err.
>>> *** Error code 1
>>> 
>>> Stop in /usr/src/lib.
>>> *** Error code 1
>>> 
>>> Stop in /usr/src.
>>> *** Error code 1
>>> 
>>> Stop in /usr/src.
>>> *** Error code 1
>>> 
>>> Stop in /usr/src.
>>> *** Error code 1
>>> 
>>> Stop in /usr/src.
>>> 
>> 
>> 
>> 
>> 
>> Target OS is 9.0-RC3.
>> 
>> 
>> Thanks for your help.
>> 
>> 
>> ––
>> -> Grégory Bernard Director <-
>> ---> www.osnet.eu <---
>> --> Your provider of OpenSource appliances <--
>> ––
>> OSnetOSnetOSnetOSnetOSnetOSnetOSnetOSnetOSnetO
>> 
>> ___
>> freebsd-questions@freebsd.org mailing list
>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
> 
> Can you check if any of the directories in the path:
> /jails/j/mroot/usr/share/info/dir are actually created as empty files?
> It seems like I have had that problem before but I don't remember what
> the cause was.  I fixed it by deleting the file and making it a
> directory.

As far as I can tell all directories are "directories" and not empty files. 


[root@surf /jails]# cd j
[root@surf /jails/j]# ls -al 
total 6
drwxr-xr-x   4 root  wheel   4 Jan 12 18:16 .
drwxr-xr-x   4 root  wheel   4 Jan 12 18:08 ..
drwxr-xr-x  17 root  wheel  18 Jan 12 23:43 mroot
drwxr-xr-x   2 root  wheel   2 Jan 12 18:16 skel
[root@surf /jails/j]# cd mroot/
[root@surf /jails/j/mroot]# ls -al 
total 26
drwxr-xr-x  17 root  wheel  18 Jan 12 23:43 .
drwxr-xr-x   4 root  wheel   4 Jan 12 18:16 ..
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 bin
drwxr-xr-x   7 root  wheel   7 Jan 12 18:18 boot
dr-xr-xr-x   2 root  wheel   2 Jan 12 18:18 dev
drwxr-xr-x  20 root  wheel  20 Jan 12 18:18 etc
drwxr-xr-x   3 root  wheel   4 Jan 12 23:43 lib
drwxr-xr-x   3 root  wheel   3 Jan 12 18:18 libexec
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 media
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 mnt
dr-xr-xr-x   2 root  wheel   2 Jan 12 18:18 proc
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 rescue
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 root
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 sbin
lrwxr-xr-x   1 root  wheel  11 Jan 12 23:43 sys -> usr/src/sys
drwxrwxrwt   2 root  wheel   2 Jan 12 18:18 tmp
drwxr-xr-x  14 root  wheel  14 Jan 12 18:18 usr
drwxr-xr-x  23 root  wheel  23 Jan 12 18:18 var
[root@surf /jails/j/mroot]# cd usr/
[root@surf /jails/j/mroot/usr]# ls -al 
total 22
drwxr-xr-x  14 root  wheel  14 Jan 12 18:18 .
drwxr-xr-x  17 root  wheel  18 Jan 12 23:43 ..
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 bin
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 games
drwxr-xr-x  51 root  wheel  53 Jan 12 20:21 include
drwxr-xr-x   7 root  wheel  28 Jan 12 23:43 lib
drwxr-xr-x   4 root  wheel   4 Jan 12 18:18 lib32
drwxr-xr-x   5 root  wheel   5 Jan 12 18:18 libdata
drwxr-xr-x   6 root  wheel   6 Jan 12 18:18 libexec
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 local
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 obj
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 sbin
drwxr-xr-x  27 root  wheel  27 Jan 12 18:18 share
drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 src
[root@surf /jails/j/mroot/usr]# cd share/
[root@surf /jails/j/mroot/usr/share]# ls -al 
total 47
drwxr-xr-x   27 root  wheel   27 Jan 12 18:18 .
drwxr-xr-x   14 root  wheel   14 Jan 12 18:18 ..
drwxr-xr-x8 root  wheel8 Jan 12 18:18 calendar
drwxr-xr-x2 root  wheel2 Jan 12 18:18 dict
drwxr-xr-x   13 root  wheel   13 Jan 12 18:18 doc
drwxr-xr-x   37 root  wheel   37 Jan 12 18:18 examples
drwxr-xr-x3 root  wheel3 Jan 12 18:18 games
drwxr-xr-x   16 root  wheel   16 Jan 12 18:18 groff_font
drwxr-xr-x4 root  wheel4 Jan 12 18:18 i18n
drwxr-xr-x3 root  wheel

Re: 3.6.13 firefox fonts are blurred on my 8.2 freebsd

2012-01-12 Thread akshay sreeramoju
Hi Volodymyr,

The image shows, (not sure how bad it is showing for you), more or less the
display I get from firefox and emacs. I will try to send a more detailed
image tonight.

Thanks for your attention.

Akshay

On Thu, Jan 12, 2012 at 1:31 AM, Volodymyr Kostyrko wrote:

> akshay sreeramoju wrote:
>
>> Hi,
>>
>> I am running a freebsd 8.2 and it is fun. But firefox displays its fonts
>> blurred. Can any one guide/point me on how to correct this?
>>
>> A snapshot of my screen is here: http://tinypic.com/r/vhar82/5
>>
>
> This pic is awful, can you post a better one?
>
> --
> Sphinx of black quartz judge my vow.
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: 3.6.13 firefox fonts are blurred on my 8.2 freebsd

2012-01-12 Thread Chuck Swiger
Hi--

On Jan 12, 2012, at 11:38 AM, akshay sreeramoju wrote:
> The image shows, (not sure how bad it is showing for you), more or less the
> display I get from firefox and emacs. I will try to send a more detailed
> image tonight.

You appear to be running in an 8 or 16-bit color mode; what does "xdpyinfo" say?
Most likely, you want to run in 24/32-bit color mode instead, to avoid apps 
grabbing a limited palette of colors

Regards,
-- 
-Chuck

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


Re: Browser

2012-01-12 Thread Allen
On 1/4/2012 7:17 AM, Daniel Lewis wrote:
> Im running Free BSD 8.2 and was wondering whats a good web browser for
> version 8.2?

I saw about 10 replies to your question already, but I haven't really
read them. I'm pretty sure a good portion of them, are going to say
basically "It depends on what you like" and some are probably going to
tell you how to install whatever browser they like personally.

You say you're new to Unix in general, so with that in mind, I'd
personally recommend something that's Cross Platform, something that you
can run on basically any Operating System, be it Windows, Linux, or
Unix, which helps narrow down the sheer number of Browsers available to
that.

FreeBSD has quite a few Browsers you can use, and I know it's probably a
little daunting for someone totally new to the Unix World to try and
pick one or two.

I'm going to give you some advice that I think may help you not only
now, but also down the road; I don't know what OS you were using before
you started using FreeBSD, but most likely, it was either Windows or
MacOS, since those are like the most common OSs on the Planet in terms
of Desktops.

One of the main things I do when I'm helping someone out, if they have
never used Unix or Linux before, and they're used to Windows, and how
Microsoft does things, is I try and help them to understand that in
Unix, and Linux as well, you may want to spend a little time installing
multiple variants of any given type of Application.

What I mean by this, is that in Windows, a lot of people who buy a
Computer, buy one from whatever place, and get this thing with Windows
pre-installed, and then, they have Internet Explorer on it, so they sort
of grow accustomed to choices being made FOR them.

Well in Unix and Linux, you basically have a choice in everything you
do. For example; In Windows, you probably had Internet Explorer, and you
may have downloaded Firefox, since it's gotten VERY popular over the
last few years.

It's also grown in bloat in my opinion, and I no longer use it because
the hardware needed to run it, is getting worse than some OSs.

Anyway, to answer your question about which browser, you should pick one
that you can use on ANY platform, since this is one way that you can get
comfortable with it no matter what OS you happen to be using, and then,
you'll be able to use it no matter what you're on.

I for example, use Opera the most. We have a bunch of Computers here in
my House, but personally, I only have one Windows Partition out of all
of them, which runs Windows 7. I use Opera and Seamonkey in Windows,
because as I said, I don't like Firefox, and I'm sure not going to use IE.

I also downloaded Safari to give it a fair try, and it's OK, but I have
grown to REALLY Love Opera. You can use Opera on basically every OS,
including Phones, and even the Nintendo Wii.

Opera is fast, stable, has a lot of cool widgets you can add to it, and
it has a very nice built in Email client, which will solve another issue
you may ask next :)

So, personally, I'd say do this:

Grab Opera, and Seamonkey. Seamonkey is a lot like Firefox, but it's no
where near as bloated and slow. So it's kind of a nice combo Web Browser
and Email Client Application all in one.

But again, I personally recommend you use Opera. I have Opera installed
on my Windows Partition, on my Nintendo Wii, Cell Phone, PC-BSD machine,
and all my Linux Machines.

Opera is starting to become the NetBSD of Browsers lol. It works on like
everything.

> Where and how would we install it? ( Im really new to unix)

Again, you have a choice here. You can install it by doing this as root:

pkg_add -r opera

Or, you can do this:

cd /usr/ports/www/opera
make install clean

It's basically up to you. That's one of the things I've found to be the
hardest for people new to Unix to understand when they come over from
Windows, is that you have choice in basically everything you do.

I help out a lot in my area with people who need Computer help, and if
they're getting into Unix for the first time, I help them out as much as
I can, and one day I could be installing Slackware for someone who wants
a simple clean desktop or Server, or, I could be installing BSD, or
helping someone understand that they REALLY can use ANY text editor they
wish for EVERYTHING they do lol. (You'd be surprised how many people are
so used to having to use whatever Text Editor Microsoft forces them to
use for whatever task they need it for lol). But yea, before I go on and
make you read a book worth of text, I'll just say simply:

It's up to you! You now have a choice in everything you do, and a choice
in how you do it!

Also, if you're using this for the very first time, you may want to
check out a few things:

http://www.freebsdmall.com/cgi-bin/fm/index?id=nQKcfktX&mv_pc=144

^That's the FreeBSD Mall. It's a WONDERFUL place to buy things related
to FreeBSD and PC-BSD, and I HIGHLY recommend you go there and check out
the Books Section.

On the right hand side, y

Sound on the system briefly interrupts when kde4 switches windows with nvidia card

2012-01-12 Thread Yuri
I have kde4 on 8.2 with translucency windows effect enabled and nvidia 
graphics driver.


Not every time, but with about 50% chance sound played by mplayer 
interrupts for ~0.5 sec when I maximize some window (ex chromium browser).


Is this likely a bug in nvidia driver that it locks up the system when a 
lot of OpenGL operations are in progress? Or is this a necessary evil 
and has to be this way?


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


Re: Problem installing world in jail template [Solved] 

2012-01-12 Thread bsd
Le 12 janv. 2012 à 19:46, bsd a écrit :

> 
> Le 12 janv. 2012 à 17:29, ss griffon a écrit :
> 
>> On Thu, Jan 12, 2012 at 8:09 AM, bsd  wrote:
>>> Hi,
>>> 
>>> 
>>> I am following the FBSD handbook tutorial in order to install the world in 
>>> my jail template :
>>> 
>>> # cd /usr/src
>>> # make installworld DESTDIR=/jails/j/mroot
>>> 
>>> 
>>> The directory already exists.
>>> 
>>> I have the following errors :
>>> 
>>> 
 ln -fs libcom_err.so.5 /jails/j/mroot/usr/lib/libcom_err.so
 install -C -o root -g wheel -m 444  
 /usr/src/lib/libcom_err/../../contrib/com_err/com_err.h 
 /usr/src/lib/libcom_err/../../contrib/com_err/com_right.h 
 /jails/j/mroot/usr/include
 install -o root -g wheel -m 444 com_err.3.gz  
 /jails/j/mroot/usr/share/man/man3
 ===> lib/libcom_err/doc (install)
 install-info --quiet  --defsection="Programming & development tools."  
 --defentry="* libcom_err: (com_err).A Common Error Description 
 Library for UNIX."  com_err.info /jails/j/mroot/usr/share/info/dir
 install-info: /jails/j/mroot/usr/share/info/dir: empty file
 *** Error code 1
 
 Stop in /usr/src/lib/libcom_err/doc.
 *** Error code 1
 
 Stop in /usr/src/lib/libcom_err.
 *** Error code 1
 
 Stop in /usr/src/lib.
 *** Error code 1
 
 Stop in /usr/src.
 *** Error code 1
 
 Stop in /usr/src.
 *** Error code 1
 
 Stop in /usr/src.
 *** Error code 1
 
 Stop in /usr/src.
 
>>> 
>>> 
>>> 
>>> 
>>> Target OS is 9.0-RC3.
>>> 
>>> 
>>> Thanks for your help.
>>> 
>>> 
>>> ––
>>> -> Grégory Bernard Director <-
>>> ---> www.osnet.eu <---
>>> --> Your provider of OpenSource appliances <--
>>> ––
>>> OSnetOSnetOSnetOSnetOSnetOSnetOSnetOSnetOSnetO
>>> 
>>> ___
>>> freebsd-questions@freebsd.org mailing list
>>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
>>> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
>> 
>> Can you check if any of the directories in the path:
>> /jails/j/mroot/usr/share/info/dir are actually created as empty files?
>> It seems like I have had that problem before but I don't remember what
>> the cause was.  I fixed it by deleting the file and making it a
>> directory.
> 
> As far as I can tell all directories are "directories" and not empty files. 
> 
> 
> [root@surf /jails]# cd j
> [root@surf /jails/j]# ls -al 
> total 6
> drwxr-xr-x   4 root  wheel   4 Jan 12 18:16 .
> drwxr-xr-x   4 root  wheel   4 Jan 12 18:08 ..
> drwxr-xr-x  17 root  wheel  18 Jan 12 23:43 mroot
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:16 skel
> [root@surf /jails/j]# cd mroot/
> [root@surf /jails/j/mroot]# ls -al 
> total 26
> drwxr-xr-x  17 root  wheel  18 Jan 12 23:43 .
> drwxr-xr-x   4 root  wheel   4 Jan 12 18:16 ..
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 bin
> drwxr-xr-x   7 root  wheel   7 Jan 12 18:18 boot
> dr-xr-xr-x   2 root  wheel   2 Jan 12 18:18 dev
> drwxr-xr-x  20 root  wheel  20 Jan 12 18:18 etc
> drwxr-xr-x   3 root  wheel   4 Jan 12 23:43 lib
> drwxr-xr-x   3 root  wheel   3 Jan 12 18:18 libexec
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 media
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 mnt
> dr-xr-xr-x   2 root  wheel   2 Jan 12 18:18 proc
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 rescue
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 root
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 sbin
> lrwxr-xr-x   1 root  wheel  11 Jan 12 23:43 sys -> usr/src/sys
> drwxrwxrwt   2 root  wheel   2 Jan 12 18:18 tmp
> drwxr-xr-x  14 root  wheel  14 Jan 12 18:18 usr
> drwxr-xr-x  23 root  wheel  23 Jan 12 18:18 var
> [root@surf /jails/j/mroot]# cd usr/
> [root@surf /jails/j/mroot/usr]# ls -al 
> total 22
> drwxr-xr-x  14 root  wheel  14 Jan 12 18:18 .
> drwxr-xr-x  17 root  wheel  18 Jan 12 23:43 ..
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 bin
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 games
> drwxr-xr-x  51 root  wheel  53 Jan 12 20:21 include
> drwxr-xr-x   7 root  wheel  28 Jan 12 23:43 lib
> drwxr-xr-x   4 root  wheel   4 Jan 12 18:18 lib32
> drwxr-xr-x   5 root  wheel   5 Jan 12 18:18 libdata
> drwxr-xr-x   6 root  wheel   6 Jan 12 18:18 libexec
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 local
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 obj
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 sbin
> drwxr-xr-x  27 root  wheel  27 Jan 12 18:18 share
> drwxr-xr-x   2 root  wheel   2 Jan 12 18:18 src
> [root@surf /jails/j/mroot/usr]# cd share/
> [root@surf /jails/j/mroot/usr/share]# ls -al 
> total 47
> drwxr-xr-x   27 root  wheel   27 Jan 12 18:18 .
> drwxr-xr-x   14 root  wheel   14 Jan 12 18:18 ..
> drwxr-xr-x8 root  wheel8 Jan 12 18:18 calendar
> drwxr-xr-x2 root  wheel2 Jan 12 18:18 dict
> drwxr-xr-x   13 root  wheel   13 Jan 12 18:18 doc
> drwxr-

Re: Browser

2012-01-12 Thread Chad Perrin
On Wed, Jan 04, 2012 at 02:30:46PM -0800, Gary Kline wrote:
> 
>   i hope this isn't too far offtopic, but here's the
>   situation: i need a tts reader to read text to me in some
>   cases.  i have been using one that is good-enough.  but it's
>   author says that this firefox 'addon' will not work with
>   firefox-9.  So: does anybody know of a browser with a
>   builtin text-to-speech reader?  i have searched ff and found
>   no other such readers. 

I was hoping someone else might have an answer to this.  I figured I'd
chip in at this point just to say that I don't know of any mainstream
browsers, nor any browsers that I've tried out to see if they'd make a
good replacement for Firefox, that does any text-to-speech "natively".  I
think I remember hearing about such a beast a while back (three or four
years), but do not recall anything about it due to the fact I do not need
one.  Good luck in your search.

-- 
Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Install freezes (FreeBSD9) on ProLiant BL465c G1

2012-01-12 Thread Ewald Jenisch
Hi,

I'm having a hard time trying to install FreeBSD9 (64bit) onto a HP
ProLiant BL465c G1 (Blade-System):

The boot process (booting from CD) runs up to the point where it says 
usbus0: 12Mbps Full Speed USB v1.0
usbus1: 12Mbps Full Speed USB v1.0
usbus3: 12Mbps Full Speed USB v1.0
usbus3: 480Mbps Full Speed USB v1.0

Then - freeze :-(

No keyboard interaction possible - only power-cycle 
helps.

I've tried booting in verbose mode but with all those
messages scrolling by so quickly and the system finally
freezing I can't get much help out of them.

Next I tried booting from the Installation .ISO
with "ACPI off". This time I got a "KBD stack trace"!

Anybody out there seen this before?

Any cure/help to get FreeBSD running on this blade system?
(Please note that I've got a bunch of similar blades
running under 8.2 - no problems)

I've put two screenshots showing that happens on the net
under

http://www.jenisch.at/freebsd-9-no-acpi-crash-screenshot.jpg
and
http://www.jenisch.at/freebsd-9-acpi-freeze-screenshot.jpg

respectively.

Thanks much in advance for your help!

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


Re: Browser

2012-01-12 Thread Chad Perrin
On Wed, Jan 04, 2012 at 08:48:35PM +, Peter Harrison wrote:
> 
> First impressions of xxxterm are that it's very good. The keybinding is
> quite as good as uzbl or vimperator on firefox, but it's live-able
> with, and it seems to have fewer performance or configuration
> downsides.

I've been using xxxterm basically since this email -- not exclusively,
but increasingly heavily, especially after a recent release (possibly
prompted by a question I posted to the xxxterm discussion forum) added
some more buffer commands for tab navigation.

I have actually taken to installing independently of the software
management system on one system, though I'm using the version in ports on
another (less-used) system.  It is surprisingly easy to add buffer
commands in source (and recompile) when needed, and (the rest of the
time) keybinding setup in the config file is even easier.

There are some capabilities of Firefox on which I rely for specific
purposes, including SOCKS proxy support and some stuff I get via the
extension system, that are not supported by xxxterm.  If I could get
everything else I use with Firefox in xxxterm, solving the SOCKS proxy
problem would be a relatively easy fix (via external tools), but because
I need Firefox for those other purposes as well I have not bothered.

What I am finding is that creative use of Sessions in xxxterm makes my
"workflow" with two xxxterm instances running much preferable for the
vast majority of purposes to any workflow I've been able to get working
in Firefox.  I keep one xxxterm instance just for the main_session
Session, for opening random pages, and the other instance for use with
other Sessions as needed.

All in all, I'm much happier with xxxterm than with Firefox, and only
lament the fact that there are a couple things I would like to be able to
do with xxxterm that I (so far) only get from Firefox.  I'll look into
the possibility of implementing some of them (such as functionality
similar to the HTTPS Everywhere extension, preferably compatible with the
URI list used by HTTPS Everywhere so that a separate list need not be
maintained) for xxxterm, and contributing patches to that effect, when I
find time.

-- 
Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Browser

2012-01-12 Thread George Liaskos
On Thu, Jan 12, 2012 at 10:51 PM, Chad Perrin  wrote:
> On Wed, Jan 04, 2012 at 02:30:46PM -0800, Gary Kline wrote:
>>
>>       i hope this isn't too far offtopic, but here's the
>>       situation: i need a tts reader to read text to me in some
>>       cases.  i have been using one that is good-enough.  but it's
>>       author says that this firefox 'addon' will not work with
>>       firefox-9.  So: does anybody know of a browser with a
>>       builtin text-to-speech reader?  i have searched ff and found
>>       no other such readers.
>
> I was hoping someone else might have an answer to this.  I figured I'd
> chip in at this point just to say that I don't know of any mainstream
> browsers, nor any browsers that I've tried out to see if they'd make a
> good replacement for Firefox, that does any text-to-speech "natively".  I
> think I remember hearing about such a beast a while back (three or four
> years), but do not recall anything about it due to the fact I do not need
> one.  Good luck in your search.
>
> --
> Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ]

Chrome has a native tts API that extension authors can use,
http://code.google.com/chrome/extensions/tts.html

I tried some random extension from the Chrome Web Store and it is
working really well.


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


Re: (no subject)

2012-01-12 Thread Kevin Kinsey
On Wed, Jan 11, 2012 at 04:43:03AM +0200, Rares Aioanei wrote:
> On 01/11/2012 02:25 AM, Glen Davenport wrote:
> >My name is Glen Davenport.  I am trying to download freebsd but haven't a
> >clue as to how the FTP function works.When I go to download I am given a
> >directory listing.  Needless to say, I have never downloaded anything for
> >UNIX/LIINUX.  Can you help?
> >
> >My e-mail address is gdd80...@gmail.com.  Thanks.
> >
> >Glen Davenport
> >GDD
> >
> Hi Glen,
> 
> Assuming you have a 32-bit PC, here's the link to the disc image you need:
> http://ftp.dk.freebsd.org/pub/FreeBSD/ISO-IMAGES-i386/8.2/FreeBSD-8.2-RELEASE-i386-disc1.iso
>  
> .
> Burn it on a CD as image, not directly, then boot from CD and, with the 
> help of the excellent
> Handbook (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/)  
> you will have
> a shiny BSD system installed. Feel free to ask if you get stuck, but 
> it's  [...]

*HIGHLY* ;-)

>recommended you take
> a look at the Handbook first.
> 
> Best,
> 
> -- 
> Rares Aioanei


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


Re: (no subject)

2012-01-12 Thread Aaron Kaufman
Glen,

You have to download the ISO and either burn it to a CD or use a USB
key. Google "how to burn ISO"

The handbook can walk you through the installation.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-diff-media.html

Good luck and welcome to FreeBSD.

Aaron

On  5:25:57PM, Glen Davenport  wrote:
> My name is Glen Davenport.  I am trying to download freebsd but haven't a
> clue as to how the FTP function works.When I go to download I am given a
> directory listing.  Needless to say, I have never downloaded anything for
> UNIX/LIINUX.  Can you help?

> My e-mail address is gdd80...@gmail.com.  Thanks.

> Glen Davenport
> GDD
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
X-Editor: Vim-703 http://www.vim.org
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


pgp1mjJ47heLu.pgp
Description: PGP signature


Ports with modern compilers

2012-01-12 Thread Dmitry Sarkisov
Hello list,

I'd like to try building my ports with features and optimizations modern 
complers provide.
A couple of q. here:

1. What's the safest (less painful) way to go - build with fresh gcc or 
clang/llvm?
2. Is it ok to build new ports with new compiler, while already having a bunch 
of them build with default gcc version 4.2.1?

TIA

-- 
Best wishes,

Dmitry Sarkisov
<--\
<---+--
<--/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Ports with modern compilers

2012-01-12 Thread Chuck Swiger
On Jan 12, 2012, at 8:53 PM, Dmitry Sarkisov wrote:
> Hello list,
> 
> I'd like to try building my ports with features and optimizations modern 
> complers provide.
> A couple of q. here:
> 
> 1. What's the safest (less painful) way to go - build with fresh gcc or 
> clang/llvm?

For portable code, there shouldn't be much difference in terms of getting a 
working result.  Clang tries to have better diagnostics than gcc; gcc has been 
around for a lot longer, and is much more likely to work with less-portable 
code due to GNU'isms.

> 2. Is it ok to build new ports with new compiler, while already having a 
> bunch of them build with default gcc version 4.2.1?

Yes.  A more complete answer would be mostly, so long as nobody has changed C++ 
symbol mangling or a host of other details.  Have fun, but don't expect too 
much benefit from recompiling things with a newer compiler.

Regards,
-- 
-Chuck

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


Re: Ports with modern compilers

2012-01-12 Thread Chuck Swiger
Hi--

On Jan 12, 2012, at 8:53 PM, Dmitry Sarkisov wrote:
> Hello list,

I'd hope that you are reading the list; as your address bounces:

Begin forwarded message:
> From: postmas...@mac.com
> Date: January 12, 2012 9:07:37 PM PST
> To: cswi...@mac.com
> Subject: Delivery Notification: Delivery has failed
> 
> This report relates to a message you sent with the following header fields:
> 
>  Message-id: <467d6fa8-f0fa-45b3-b367-20fe9ad64...@mac.com>
>  Date: Thu, 12 Jan 2012 21:07:05 -0800
>  From: Chuck Swiger 
>  To: Dmitry Sarkisov 
>  Subject: Re: Ports with modern compilers
> 
> Your message cannot be delivered to the following recipients:
> 
>  Recipient address: ait_ml...@rocc.ru
>  Reason: Remote SMTP server has rejected address
>  Diagnostic code: smtp;550 5.7.1 ... Access denied
>  Remote system: dns;mail.rocc.ru (TCP|17.148.16.97|53739|194.84.224.171|25) 
> (mail.rocc.ru ESMTP [peer1]; Fri, 13 Jan 2012 09:07:27 +0400 [MSK];)
> 
> Original-envelope-id: 0lxq00ais0vuw...@asmtp022.mac.com
> Reporting-MTA: dns;asmtp022-bge351000.mac.com (tcp-daemon)
> Arrival-date: Fri, 13 Jan 2012 05:07:06 + (GMT)
> 
> Original-recipient: rfc822;ait_ml...@rocc.ru
> Final-recipient: rfc822;ait_ml...@rocc.ru
> Action: failed
> Status: 5.7.1 (Remote SMTP server has rejected address)
> Remote-MTA: dns;mail.rocc.ru (TCP|17.148.16.97|53739|194.84.224.171|25)
> (mail.rocc.ru ESMTP [peer1]; Fri, 13 Jan 2012 09:07:27 +0400 [MSK];)
> Diagnostic-code: smtp;550 5.7.1 ... Access denied

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


wireless and/or routing question

2012-01-12 Thread Waitman Gobble
Hello,

I am running 9.0-RC3 i386 on an Acer Aspire One D150. i am having trouble
with the wireless setup.

I have two wireless cards, the BCM94312MCG that came with it, and an
Atheros 5424/2424 that i swapped out. I can run the BCM with ndis and the
windows xp driver, and the Atheros with the ath driver that is installed
with FreeBSD. (But BCM/ndis is noticeably much slower, Atheros - no green
"wireless" light appears on netbook )

 i am getting the same results with either nic card, and i think i am just
missing something simple.


ath0: flags=8843 metric 0 mtu 2290
ether 00:24:2b:ad:d6:5f
nd6 options=29
media: IEEE 802.11 Wireless Ethernet autoselect mode 11g
status: associated

 wlan0: flags=8843 metric 0 mtu 1500
ether 00:24:2b:ad:d6:5f
inet 10.0.0.21 netmask 0xff00 broadcast 10.0.0.255
nd6 options=29
media: IEEE 802.11 Wireless Ethernet OFDM/24Mbps mode 11g
status: associated
ssid CUDAPANG channel 6 (2437 MHz 11g) bssid 00:22:3f:9b:b8:aa
regdomain 101 indoor ecm authmode OPEN privacy ON deftxkey 1
wepkey 1:104-bit txpower 20 bmiss 7 scanvalid 60 bgscan
bgscanintvl 300 bgscanidle 250 roam:rssi 7 roam:rate 5 protmode CTS
wme burst

connecting:

ifconfig wlan0 create wlandev ath0
ifconfig wlan0 up scan
ifconfig wlan0 inet 10.0.0.21 netmask 255.255.255.0 ssid CUDAPANG wepmode
on weptxkey 1 wepkey 1:0x10961323931B628F844360718A


scan results:

p00ntang# ifconfig wlan0 up scan
SSID/MESH IDBSSID  CHAN RATE   S:N INT CAPS
CUDAPANG00:22:3f:9a:16:1b6   54M -69:-93  100 EPS  ATH
CUDAPANG00:22:3f:9b:b8:aa6   54M -68:-93  100 EPS  WME ATH
Abujie  00:14:6c:7a:98:ec6   54M -89:-93  100 EPS  RSN WPA ATH
TDMA
chavez family   00:c0:02:11:22:336   54M -88:-93  100 EP   HTCAP RSN
WME WPS

My machine shows up on the wireless router as a "connected device" w/
correct mac and ip showing

But i cannot ping gw, no machine on lan or outside. (no route to host)

p00ntang# netstat -nr
Routing tables

Internet:
DestinationGatewayFlagsRefs  Use  Netif Expire
default10.0.0.1   UGS 0 3338   ale0
10.0.0.0/24link#2 U   0 2405   ale0
10.0.0.20  link#2 UHS 00lo0
10.0.0.21  link#9 UHS 02lo0
127.0.0.1  link#8 UH  0   12lo0

I do not see "ath0' or wlan0 in the routing table under 'Netif', not sure
if that's the problem :)


p00ntang# less /etc/rc.conf
hostname="p00ntang"
ifconfig_ale0=" inet 10.0.0.20 netmask 255.255.255.0"
defaultrouter="10.0.0.1"
sshd_enable="YES"
ntpd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="NO"
fusefs_enable="YES"
hald_enable="YES"
dbus_enable="YES"
moused_enable="YES"
snddetect_enable="YES"
mixer_enable="YES"
avahi_daemon_enable="YES"
ices0_enable="YES"


p00ntang# grep ath /boot/loader.conf
if_ath_load="YES"
p00ntang# grep wlan /boot/loader.conf
wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"



i've tried /etc/rc.d/routing restart.. no worky :)

here's my wired connection ifconfig  --- wired connection works :)

ale0: flags=8843 metric 0 mtu 1500
options=c319a
ether 00:23:5a:59:e1:e4
inet 10.0.0.20 netmask 0xff00 broadcast 10.0.0.255
inet6 fe80::223:5aff:fe59:e1e4%ale0 prefixlen 64 scopeid 0x2
nd6 options=29
media: Ethernet autoselect (100baseTX )
status: active




any help/suggestions much appreciated!


Thank you,

Waitman Gobble
San Jose California USA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: wireless and/or routing question

2012-01-12 Thread Waitman Gobble
On Thu, Jan 12, 2012 at 9:29 PM, Waitman Gobble  wrote:

> Hello,
>
> I am running 9.0-RC3 i386 on an Acer Aspire One D150. i am having trouble
> with the wireless setup.
>
>
Hi, update-

i noticed if i start routed it complains...
p00ntang# routed
p00ntang# routed: wlan0 (10.0.0.21/24) is duplicated by ale0 (10.0.0.20/24)


so i tried shutting off ale0... now i can ping gw but still no luck getting
outside. :(

p00ntang# ifconfig ale0 down
p00ntang# ping 10.0.0.1
PING 10.0.0.1 (10.0.0.1): 56 data bytes
64 bytes from 10.0.0.1: icmp_seq=0 ttl=64 time=3.381 ms
64 bytes from 10.0.0.1: icmp_seq=1 ttl=64 time=2.499 ms
64 bytes from 10.0.0.1: icmp_seq=2 ttl=64 time=2.893 ms
^C
--- 10.0.0.1 ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 2.499/2.924/3.381/0.361 ms
p00ntang# ping google.com
PING google.com (74.125.224.116): 56 data bytes
ping: sendto: Network is down


Now I feel like i "need to go back to networking school 101". lol.

If anyone has a hint to solve my routing situation I'd really appreciate it!

Thanks,

Waitman Gobble
San Jose California USA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: wireless and/or routing question

2012-01-12 Thread Da Rock

On 01/13/12 15:29, Waitman Gobble wrote:

Hello,

I am running 9.0-RC3 i386 on an Acer Aspire One D150. i am having trouble
with the wireless setup.

I have two wireless cards, the BCM94312MCG that came with it, and an
Atheros 5424/2424 that i swapped out. I can run the BCM with ndis and the
windows xp driver, and the Atheros with the ath driver that is installed
with FreeBSD. (But BCM/ndis is noticeably much slower, Atheros - no green
"wireless" light appears on netbook )

  i am getting the same results with either nic card, and i think i am just
missing something simple.


ath0: flags=8843  metric 0 mtu 2290
ether 00:24:2b:ad:d6:5f
nd6 options=29
media: IEEE 802.11 Wireless Ethernet autoselect mode 11g
status: associated

  wlan0: flags=8843  metric 0 mtu 1500
ether 00:24:2b:ad:d6:5f
inet 10.0.0.21 netmask 0xff00 broadcast 10.0.0.255
nd6 options=29
media: IEEE 802.11 Wireless Ethernet OFDM/24Mbps mode 11g
status: associated
ssid CUDAPANG channel 6 (2437 MHz 11g) bssid 00:22:3f:9b:b8:aa
regdomain 101 indoor ecm authmode OPEN privacy ON deftxkey 1
wepkey 1:104-bit txpower 20 bmiss 7 scanvalid 60 bgscan
bgscanintvl 300 bgscanidle 250 roam:rssi 7 roam:rate 5 protmode CTS
wme burst

connecting:

ifconfig wlan0 create wlandev ath0
ifconfig wlan0 up scan
ifconfig wlan0 inet 10.0.0.21 netmask 255.255.255.0 ssid CUDAPANG wepmode
on weptxkey 1 wepkey 1:0x10961323931B628F844360718A


scan results:

p00ntang# ifconfig wlan0 up scan
SSID/MESH IDBSSID  CHAN RATE   S:N INT CAPS
CUDAPANG00:22:3f:9a:16:1b6   54M -69:-93  100 EPS  ATH
CUDAPANG00:22:3f:9b:b8:aa6   54M -68:-93  100 EPS  WME ATH
Abujie  00:14:6c:7a:98:ec6   54M -89:-93  100 EPS  RSN WPA ATH
TDMA
chavez family   00:c0:02:11:22:336   54M -88:-93  100 EP   HTCAP RSN
WME WPS

My machine shows up on the wireless router as a "connected device" w/
correct mac and ip showing

But i cannot ping gw, no machine on lan or outside. (no route to host)

p00ntang# netstat -nr
Routing tables

Internet:
DestinationGatewayFlagsRefs  Use  Netif Expire
default10.0.0.1   UGS 0 3338   ale0
10.0.0.0/24link#2 U   0 2405   ale0
10.0.0.20  link#2 UHS 00lo0
10.0.0.21  link#9 UHS 02lo0
127.0.0.1  link#8 UH  0   12lo0

I do not see "ath0' or wlan0 in the routing table under 'Netif', not sure
if that's the problem :)


p00ntang# less /etc/rc.conf
hostname="p00ntang"
ifconfig_ale0=" inet 10.0.0.20 netmask 255.255.255.0"
defaultrouter="10.0.0.1"
sshd_enable="YES"
ntpd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="NO"
fusefs_enable="YES"
hald_enable="YES"
dbus_enable="YES"
moused_enable="YES"
snddetect_enable="YES"
mixer_enable="YES"
avahi_daemon_enable="YES"
ices0_enable="YES"


p00ntang# grep ath /boot/loader.conf
if_ath_load="YES"
p00ntang# grep wlan /boot/loader.conf
wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"



i've tried /etc/rc.d/routing restart.. no worky :)

here's my wired connection ifconfig  --- wired connection works :)

ale0: flags=8843  metric 0 mtu 1500
options=c319a
ether 00:23:5a:59:e1:e4
inet 10.0.0.20 netmask 0xff00 broadcast 10.0.0.255
inet6 fe80::223:5aff:fe59:e1e4%ale0 prefixlen 64 scopeid 0x2
nd6 options=29
media: Ethernet autoselect (100baseTX)
status: active




any help/suggestions much appreciated!

The solution is simple, but I know the frustration well.

Your problem is that the route is looking to go through your wired 
network port, you started the network on the wired and then switched to 
wifi so the routing needs to change.


Run as root: "route change default -interface wlan0" will fix that 
temporarily. To fix it permanently (better for a laptop situation 
anyway, I feel), setup a lagg port including ale0 and wlan0. See 
http://www.freebsd.org/doc/handbook/network-aggregation.html


Good luck and happy networking!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: wireless and/or routing question

2012-01-12 Thread Waitman Gobble
On Thu, Jan 12, 2012 at 10:04 PM, Da Rock <
freebsd-questi...@herveybayaustralia.com.au> wrote:

> On 01/13/12 15:29, Waitman Gobble wrote:
>
>> Hello,
>>
>> I am running 9.0-RC3 i386 on an Acer Aspire One D150. i am having trouble
>> with the wireless setup.
>>
>> I have two wireless cards, the BCM94312MCG that came with it, and an
>> Atheros 5424/2424 that i swapped out. I can run the BCM with ndis and the
>> windows xp driver, and the Atheros with the ath driver that is installed
>> with FreeBSD. (But BCM/ndis is noticeably much slower, Atheros - no green
>> "wireless" light appears on netbook )
>>
>>  i am getting the same results with either nic card, and i think i am just
>> missing something simple.
>>
>>
>> ath0: flags=8843  metric 0 mtu
>> 2290
>> ether 00:24:2b:ad:d6:5f
>> nd6 options=29
>> media: IEEE 802.11 Wireless Ethernet autoselect mode 11g
>> status: associated
>>
>>  wlan0: flags=8843  metric 0
>> mtu 1500
>> ether 00:24:2b:ad:d6:5f
>> inet 10.0.0.21 netmask 0xff00 broadcast 10.0.0.255
>> nd6 options=29
>> media: IEEE 802.11 Wireless Ethernet OFDM/24Mbps mode 11g
>> status: associated
>> ssid CUDAPANG channel 6 (2437 MHz 11g) bssid 00:22:3f:9b:b8:aa
>> regdomain 101 indoor ecm authmode OPEN privacy ON deftxkey 1
>> wepkey 1:104-bit txpower 20 bmiss 7 scanvalid 60 bgscan
>> bgscanintvl 300 bgscanidle 250 roam:rssi 7 roam:rate 5 protmode CTS
>> wme burst
>>
>> connecting:
>>
>> ifconfig wlan0 create wlandev ath0
>> ifconfig wlan0 up scan
>> ifconfig wlan0 inet 10.0.0.21 netmask 255.255.255.0 ssid CUDAPANG wepmode
>> on weptxkey 1 wepkey 1:0x10961323931B628F844360718A
>>
>>
>> scan results:
>>
>> p00ntang# ifconfig wlan0 up scan
>> SSID/MESH IDBSSID  CHAN RATE   S:N INT CAPS
>> CUDAPANG00:22:3f:9a:16:1b6   54M -69:-93  100 EPS  ATH
>> CUDAPANG00:22:3f:9b:b8:aa6   54M -68:-93  100 EPS  WME ATH
>> Abujie  00:14:6c:7a:98:ec6   54M -89:-93  100 EPS  RSN WPA ATH
>> TDMA
>> chavez family   00:c0:02:11:22:336   54M -88:-93  100 EP   HTCAP RSN
>> WME WPS
>>
>> My machine shows up on the wireless router as a "connected device" w/
>> correct mac and ip showing
>>
>> But i cannot ping gw, no machine on lan or outside. (no route to host)
>>
>> p00ntang# netstat -nr
>> Routing tables
>>
>> Internet:
>> DestinationGatewayFlagsRefs  Use  Netif Expire
>> default10.0.0.1   UGS 0 3338   ale0
>> 10.0.0.0/24link#2 U   0 2405   ale0
>> 10.0.0.20  link#2 UHS 00lo0
>> 10.0.0.21  link#9 UHS 02lo0
>> 127.0.0.1  link#8 UH  0   12lo0
>>
>> I do not see "ath0' or wlan0 in the routing table under 'Netif', not sure
>> if that's the problem :)
>>
>>
>> p00ntang# less /etc/rc.conf
>> hostname="p00ntang"
>> ifconfig_ale0=" inet 10.0.0.20 netmask 255.255.255.0"
>> defaultrouter="10.0.0.1"
>> sshd_enable="YES"
>> ntpd_enable="YES"
>> # Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
>> dumpdev="NO"
>> fusefs_enable="YES"
>> hald_enable="YES"
>> dbus_enable="YES"
>> moused_enable="YES"
>> snddetect_enable="YES"
>> mixer_enable="YES"
>> avahi_daemon_enable="YES"
>> ices0_enable="YES"
>>
>>
>> p00ntang# grep ath /boot/loader.conf
>> if_ath_load="YES"
>> p00ntang# grep wlan /boot/loader.conf
>> wlan_wep_load="YES"
>> wlan_ccmp_load="YES"
>> wlan_tkip_load="YES"
>>
>>
>>
>> i've tried /etc/rc.d/routing restart.. no worky :)
>>
>> here's my wired connection ifconfig  --- wired connection works :)
>>
>> ale0: flags=8843  metric 0 mtu
>> 1500
>> options=c319a> TSO4,WOL_MCAST,WOL_MAGIC,VLAN_**HWTSO,LINKSTATE>
>> ether 00:23:5a:59:e1:e4
>> inet 10.0.0.20 netmask 0xff00 broadcast 10.0.0.255
>> inet6 fe80::223:5aff:fe59:e1e4%ale0 prefixlen 64 scopeid 0x2
>> nd6 options=29
>> media: Ethernet autoselect (100baseTX)
>> status: active
>>
>>
>>
>>
>> any help/suggestions much appreciated!
>>
> The solution is simple, but I know the frustration well.
>
> Your problem is that the route is looking to go through your wired network
> port, you started the network on the wired and then switched to wifi so the
> routing needs to change.
>
> Run as root: "route change default -interface wlan0" will fix that
> temporarily. To fix it permanently (better for a laptop situation anyway, I
> feel), setup a lagg port including ale0 and wlan0. See
> http://www.freebsd.org/doc/**handbook/network-aggregation.**html
>
> Good luck and happy networking!
> __**_
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/**mailman/listinfo/freebsd-**questions
> To unsubscribe, send any mail to "freebsd-questions-**
> unsubscr...@freebsd.org "
>


Thanks, that's very helpful - seems to be the issue. Gettin

Re: wireless and/or routing question

2012-01-12 Thread Da Rock

On 01/13/12 17:11, Waitman Gobble wrote:

On Thu, Jan 12, 2012 at 10:04 PM, Da Rock<
freebsd-questi...@herveybayaustralia.com.au>  wrote:


On 01/13/12 15:29, Waitman Gobble wrote:


Hello,

I am running 9.0-RC3 i386 on an Acer Aspire One D150. i am having trouble
with the wireless setup.

I have two wireless cards, the BCM94312MCG that came with it, and an
Atheros 5424/2424 that i swapped out. I can run the BCM with ndis and the
windows xp driver, and the Atheros with the ath driver that is installed
with FreeBSD. (But BCM/ndis is noticeably much slower, Atheros - no green
"wireless" light appears on netbook )

  i am getting the same results with either nic card, and i think i am just
missing something simple.


ath0: flags=8843   metric 0 mtu
2290
ether 00:24:2b:ad:d6:5f
nd6 options=29
media: IEEE 802.11 Wireless Ethernet autoselect mode 11g
status: associated

  wlan0: flags=8843   metric 0
mtu 1500
ether 00:24:2b:ad:d6:5f
inet 10.0.0.21 netmask 0xff00 broadcast 10.0.0.255
nd6 options=29
media: IEEE 802.11 Wireless Ethernet OFDM/24Mbps mode 11g
status: associated
ssid CUDAPANG channel 6 (2437 MHz 11g) bssid 00:22:3f:9b:b8:aa
regdomain 101 indoor ecm authmode OPEN privacy ON deftxkey 1
wepkey 1:104-bit txpower 20 bmiss 7 scanvalid 60 bgscan
bgscanintvl 300 bgscanidle 250 roam:rssi 7 roam:rate 5 protmode CTS
wme burst

connecting:

ifconfig wlan0 create wlandev ath0
ifconfig wlan0 up scan
ifconfig wlan0 inet 10.0.0.21 netmask 255.255.255.0 ssid CUDAPANG wepmode
on weptxkey 1 wepkey 1:0x10961323931B628F844360718A


scan results:

p00ntang# ifconfig wlan0 up scan
SSID/MESH IDBSSID  CHAN RATE   S:N INT CAPS
CUDAPANG00:22:3f:9a:16:1b6   54M -69:-93  100 EPS  ATH
CUDAPANG00:22:3f:9b:b8:aa6   54M -68:-93  100 EPS  WME ATH
Abujie  00:14:6c:7a:98:ec6   54M -89:-93  100 EPS  RSN WPA ATH
TDMA
chavez family   00:c0:02:11:22:336   54M -88:-93  100 EP   HTCAP RSN
WME WPS

My machine shows up on the wireless router as a "connected device" w/
correct mac and ip showing

But i cannot ping gw, no machine on lan or outside. (no route to host)

p00ntang# netstat -nr
Routing tables

Internet:
DestinationGatewayFlagsRefs  Use  Netif Expire
default10.0.0.1   UGS 0 3338   ale0
10.0.0.0/24link#2 U   0 2405   ale0
10.0.0.20  link#2 UHS 00lo0
10.0.0.21  link#9 UHS 02lo0
127.0.0.1  link#8 UH  0   12lo0

I do not see "ath0' or wlan0 in the routing table under 'Netif', not sure
if that's the problem :)


p00ntang# less /etc/rc.conf
hostname="p00ntang"
ifconfig_ale0=" inet 10.0.0.20 netmask 255.255.255.0"
defaultrouter="10.0.0.1"
sshd_enable="YES"
ntpd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="NO"
fusefs_enable="YES"
hald_enable="YES"
dbus_enable="YES"
moused_enable="YES"
snddetect_enable="YES"
mixer_enable="YES"
avahi_daemon_enable="YES"
ices0_enable="YES"


p00ntang# grep ath /boot/loader.conf
if_ath_load="YES"
p00ntang# grep wlan /boot/loader.conf
wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"



i've tried /etc/rc.d/routing restart.. no worky :)

here's my wired connection ifconfig  --- wired connection works :)

ale0: flags=8843   metric 0 mtu
1500
options=c319a
ether 00:23:5a:59:e1:e4
inet 10.0.0.20 netmask 0xff00 broadcast 10.0.0.255
inet6 fe80::223:5aff:fe59:e1e4%ale0 prefixlen 64 scopeid 0x2
nd6 options=29
media: Ethernet autoselect (100baseTX)
status: active




any help/suggestions much appreciated!


The solution is simple, but I know the frustration well.

Your problem is that the route is looking to go through your wired network
port, you started the network on the wired and then switched to wifi so the
routing needs to change.

Run as root: "route change default -interface wlan0" will fix that
temporarily. To fix it permanently (better for a laptop situation anyway, I
feel), setup a lagg port including ale0 and wlan0. See
http://www.freebsd.org/doc/**handbook/network-aggregation.**html

Good luck and happy networking!
__**_
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/**mailman/listinfo/freebsd-**questions
To unsubscribe, send any mail to "freebsd-questions-**
unsubscr...@freebsd.org"



Thanks, that's very helpful - seems to be the issue. Getting rid of my ale0
ifconfig spec in rc.conf also seems to solve the problem. But I'm dropping
roughly 20% packets on ping so i'm going to see what's up.  Otherwise i'm
now semi-functional on the wireless connection.
Ahh, yes. Those were the days before lagg... endless frustration. I was 
looking at finding a way to use devd to run a script that made the route 
chan