Re: gpart, glabel and newfs -- what am I doing wrong

2013-01-13 Thread Erich Dollansky
Hi,

On Sun, 13 Jan 2013 01:36:21 -0500
kpn...@pobox.com wrote:

 On Sun, Jan 13, 2013 at 08:09:00AM +0700, Erich Dollansky wrote:
  For what is glabel then still good?
 
 It is still useful for partition schemes that don't have labels (eg,
 MBR) AND the filesystem used doesn't support labels itself AND the
 end of the partition does not get touched by the filesystem.
 
 Note that UFS in FreeBSD does support labels. I believe it is the '-L'
 option to newfs. ZFS does not in this sense, and ZFS touches the end
 of the partition.
 
 That's a long list of conditions. So, really, glabel should typically
 be avoided.
 

thanks for the explaination. I am not able to use the labels outside
gpart but if they work for me - as it currently looks like - I will
stick with them.

I will later report in more detail when I have finished my scripts.

Erich
___
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: Jails

2013-01-13 Thread Zyumbilev, Peter

On 12/01/2013 18:41, Devin Teske wrote:
 
 On Jan 11, 2013, at 11:31 PM, Zyumbilev, Peter wrote:
 
 Hi,

 I have not tested it, but so far things do not look promising...

 I cannot even run netstat -nvatp properly, however sopcast seemed to
 run, but have not tested it, for plex - have not tried yet.

 
 netstat isn't allowed in traditional jails (but is allowed in vimage jails 
 which have their own network stack).
 
 If you're able/willing to compile a new kernel to enable the VIMAGE 
 feature, then this can be improved so that you can indeed use netstat within 
 the jail.
 
 NOTE: netstat is not allowed within traditional (non-VIMAGE) jails due to 
 security restrictions.
 

My  host os is Nas4Free and is stripped version of freebsd - e.g I
cannot even compile ports - that is why I use jails - so no new kernel
for me there :)

So far I am quite happy with it  - I use it mainly as DLNA
server(Serviio), ZFS,UPS support  Transmission made it quite good
platform - would take plenty of time to get all this in plain FreeBSD
install.

The only thing that I might be missing is Plex, but due to lack browser
per folder feature, I will stick to open standard - DLNA.

Peter
___
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: gpart, glabel and newfs -- what am I doing wrong

2013-01-13 Thread Warren Block

On Sun, 13 Jan 2013, kpn...@pobox.com wrote:


On Sun, Jan 13, 2013 at 08:09:00AM +0700, Erich Dollansky wrote:

For what is glabel then still good?


It is still useful for partition schemes that don't have labels (eg, MBR)
AND the filesystem used doesn't support labels itself AND the end of the
partition does not get touched by the filesystem.


But it doesn't matter what the filesystem does.  Access to the last 
block is not allowed by the label device.  The filesystem does not even 
see it.  See my reply in -fs:

http://lists.freebsd.org/pipermail/freebsd-fs/2013-January/016113.html
___
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: gpart, glabel and newfs -- what am I doing wrong

2013-01-13 Thread Warren Block

On Sun, 13 Jan 2013, Warren Block wrote:


On Sun, 13 Jan 2013, kpn...@pobox.com wrote:


On Sun, Jan 13, 2013 at 08:09:00AM +0700, Erich Dollansky wrote:

For what is glabel then still good?


It is still useful for partition schemes that don't have labels (eg, MBR)
AND the filesystem used doesn't support labels itself AND the end of the
partition does not get touched by the filesystem.


But it doesn't matter what the filesystem does.  Access to the last block is 
not allowed by the label device.  The filesystem does not even see it.  See 
my reply in -fs:

http://lists.freebsd.org/pipermail/freebsd-fs/2013-January/016113.html


Sorry, forgot to mention that one possible use for glabel is to label a 
swap partition on an MBR drive.


  # glabel label myswap /dev/ada0s1b

And then in /etc/fstab:

  /dev/label/myswap noneswapsw  0   0

One block is used for metadata at the end of ada0s1b, but it's safe from 
overwriting because /dev/label/myswap does not include that block.

___
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: Jails

2013-01-13 Thread Leonardo M . Ramé


 From: Zyumbilev, Peter pe...@aboutsupport.com
To: freebsd-questions@FreeBSD.org 
Cc: Mark Felder f...@feld.me; Devin Teske dte...@freebsd.org; Devin Teske 
devin.te...@fisglobal.com 
Sent: Sunday, January 13, 2013 7:09 AM
Subject: Re: Jails
 

On 12/01/2013 18:41, Devin Teske wrote:
 
 On Jan 11, 2013, at 11:31 PM, Zyumbilev, Peter wrote:
 
 Hi,

 I have not tested it, but so far things do not look promising...

 I cannot even run netstat -nvatp properly, however sopcast seemed to
 run, but have not tested it, for plex - have not tried yet.

 
 netstat isn't allowed in traditional jails (but is allowed in vimage jails 
 which have their own network stack).
 
 If you're able/willing to compile a new kernel to enable the VIMAGE 
 feature, then this can be improved so that you can indeed use netstat within 
 the jail.
 
 NOTE: netstat is not allowed within traditional (non-VIMAGE) jails due to 
 security restrictions.
 

My  host os is Nas4Free and is stripped version of freebsd - e.g I
cannot even compile ports - that is why I use jails - so no new kernel
for me there :)

So far I am quite happy with it  - I use it mainly as DLNA
server(Serviio), ZFS,UPS support  Transmission made it quite good
platform - would take plenty of time to get all this in plain FreeBSD
install.

The only thing that I might be missing is Plex, but due to lack browser
per folder feature, I will stick to open standard - DLNA.

Peter


Hi, I've installed debian 6 in a jail, from FreeBsd 9.1 x86-64 by following the 
instructions from this thread. However, I also updated my /etc/resolv.conf 
inside the jail, but I get this error when I do ping:


server# /etc/rc.d/jail start debian
Configuring jails:.
Starting jails: debian.


server# jls
   JID  IP Address  Hostname  Path
    13  192.168.0.250   debian    /usr/home/jails/debian


server# jexec 13 bash
root@debian:/# uname -a
Linux debian 2.6.32 FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 
2012 i686 GNU/Linux


root@debian:/# ping www.google.com
WARNING: 
WARNING: your kernel is veeery old. No problems.
PING www.google.com (173.194.42.17) 56(84) bytes of data.
ping: recvmsg: Invalid argument
ping: recvmsg: Invalid argument

Apart from getting those ping errors, I cannot apt-get update:

root@debian:/# apt-get update
Get:1 http://security.debian.org squeeze/updates Release.gpg [836 B]
Ign http://security.debian.org/ squeeze/updates/contrib Translation-en
Get:2 http://ftp.debian.org squeeze Release.gpg [1672 B]
Ign http://ftp.debian.org/debian/ squeeze/contrib Translation-en
99% [Working]FATAL - Could not set non-blocking flag Bad file descriptor
E: Method http has died unexpectedly!
E: Sub-process http returned an error code (100)

I need apt-get to install g++, to be able to compile a linux c++ app from 
FreeBsd.

-- 
Leonardo M. Ramé
http://leonardorame.blogspot.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


SPAM-flag on FBSD list

2013-01-13 Thread Christopher J . Ruwe

Hello,

while testing a new mail configuration on freebsd-test@, I noticed a
very interesting part in the header, which I just paste

Old-X-HE-Spam-Score: -2.3
Old-X-HE-Spam-Report: Content analysis details:   (-2.3 points)
  pts rule name  description
  -- --
 -2.3 RCVD_IN_DNSWL_MED  RBL: Sender listed at http://www.dnswl.org/, medium
  trust
 [8.8.178.116 listed in list.dnswl.org]
  0.0 TVD_SPACE_RATIOTVD_SPACE_RATIO
X-HE-SPF: PASSED

Curious about who is the culprit in the chain, I did

[cjr@dijkstra:~]$ dig -x 8.8.178.116
(01-13 16:42)

;  DiG 9.8.3-P4  -x 8.8.178.116
;; global options: +cmd
;; Got answer:
;; -HEADER- opcode: QUERY, status: NOERROR, id: 33133
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;116.178.8.8.in-addr.arpa.  IN  PTR

;; ANSWER SECTION:
116.178.8.8.in-addr.arpa. 3600  IN  PTR mx2.FreeBSD.org.

;; Query time: 96 msec
;; SERVER: 192.168.178.1#53(192.168.178.1)
;; WHEN: Sun Jan 13 16:42:11 2013
;; MSG SIZE  rcvd: 71

Are the FreeBSD-mail servers spammers?

Anyhow, have a nice week, cheers,
--
Christopher
TZ: GMT + 2h
GnuPG/GPG:  0xE8DE2C14
 
FreeBSD 9.1-STABLE #4 r245101: Sun Jan  6 21:13:49 CET 2013
c...@dijkstra.cruwe.de:/usr/obj/usr/src/sys/DIJKSTRA 
 
Punctuation matters:
Lets eat Grandma or Lets eat, Grandma - Punctuation saves lives.
A panda eats shoots and leaves or A panda eats, shoots, and leaves -
Punctuation teaches proper biology.

___
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: Jails

2013-01-13 Thread Devin Teske

On Jan 13, 2013, at 7:45 AM, Leonardo M. Ramé wrote:

 
 
 From: Zyumbilev, Peter pe...@aboutsupport.com
 To: freebsd-questions@FreeBSD.org 
 Cc: Mark Felder f...@feld.me; Devin Teske dte...@freebsd.org; Devin 
 Teske devin.te...@fisglobal.com 
 Sent: Sunday, January 13, 2013 7:09 AM
 Subject: Re: Jails
 
 
 On 12/01/2013 18:41, Devin Teske wrote:
 
 On Jan 11, 2013, at 11:31 PM, Zyumbilev, Peter wrote:
 
 Hi,
 
 I have not tested it, but so far things do not look promising...
 
 I cannot even run netstat -nvatp properly, however sopcast seemed to
 run, but have not tested it, for plex - have not tried yet.
 
 
 netstat isn't allowed in traditional jails (but is allowed in vimage 
 jails which have their own network stack).
 
 If you're able/willing to compile a new kernel to enable the VIMAGE 
 feature, then this can be improved so that you can indeed use netstat 
 within the jail.
 
 NOTE: netstat is not allowed within traditional (non-VIMAGE) jails due to 
 security restrictions.
 
 
 My  host os is Nas4Free and is stripped version of freebsd - e.g I
 cannot even compile ports - that is why I use jails - so no new kernel
 for me there :)
 
 So far I am quite happy with it  - I use it mainly as DLNA
 server(Serviio), ZFS,UPS support  Transmission made it quite good
 platform - would take plenty of time to get all this in plain FreeBSD
 install.
 
 The only thing that I might be missing is Plex, but due to lack browser
 per folder feature, I will stick to open standard - DLNA.
 
 Peter
 
 
 Hi, I've installed debian 6 in a jail, from FreeBsd 9.1 x86-64 by following 
 the instructions from this thread. However, I also updated my 
 /etc/resolv.conf inside the jail, but I get this error when I do ping:

ping is usually denied from within a jail (for security purposes).

Add the following to /etc/rc.conf:

jail_sysvipc_allow=YES

And then reboot.
-- 
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: Regarding: Script configure failed unexpectedly.

2013-01-13 Thread Waitman Gobble
On Sat, Jan 12, 2013 at 9:21 PM, Joe Altman free...@chthonixia.net wrote:

 On Sat, Jan 12, 2013 at 06:21:28PM -0800, Waitman Gobble wrote:
  Hi,
 
  If the email contact is as listed it seems there is not a specific person
  who has taken the port. I found your email to the ports list with the
  attached config.log. I will take a look at the problem and probably find
 a
  solution. I'm heading out for the evening so I may not get to it until
  tomorrow morning.

 Thank you; it's not urgent for me, as kino currently works. I just
 wanted to open a bug report.

 Also: it seems that since the last time I used send-pr Spamassassin was
 placed between the recipients of send-pr and dynamic hosts. So it looks
 as if it may be best for people to be told to use the web interface for
 bugs, since send-pr seems to use the localhost MTA, rather than SMTP
 AUTH.


Hi,

Yeah i think it just sends through sendmail on the local machine. You may
find it convenient to use the web interface. Your config.log says you are
running FreeBSD 9.1-PRERELEASE #0: Mon Oct 22 00:16:27 EDT 2012, you should
consider upgrading to 9.1, which was released in December.

I just tried a make in kino and received this error, but I picked 'use kino
ffmpeg'.

Option number is ambiguous (number-footnotes, number-sections

looks like this is happening in ffmpeg/Makefile

doc/%.html: doc/%.texi
texi2html -monolithic -number $
mv $(@F) $@

changed to

doc/%.html: doc/%.texi
texi2html -monolithic -number-sections $
mv $(@F) $@

seems to fix in this case.
(but this is a different error than you were receiving, i'll get it figured
out.)


-- 
Waitman Gobble
San Jose California USA
510-830-7975
___
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


munin dynazoom

2013-01-13 Thread Dánielisz László
Hi Everybody,

I'm using munin 2.0.9 on FreeBSD 8.3 and for a reason the dynamic zoom is not 
working.
Does any if you had this issue before or know the solutions?

Thank you!
Laszlo
___
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: Reading the handbook from console

2013-01-13 Thread Fbsd8

Polytropon wrote:

On Thu, 10 Jan 2013 14:48:33 -0800, dte...@freebsd.org wrote:



-Original Message-
From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-
questi...@freebsd.org] On Behalf Of Polytropon
Sent: Thursday, January 10, 2013 2:33 PM
To: Fbsd8
Cc: scotteb...@gmail.com; questi...@freebsd.org
Subject: Re: Reading the handbook from console

On Thu, 10 Jan 2013 13:57:47 -0500, Fbsd8 wrote:

Scott Eberl wrote:

I went ahead and installed the FreeBSD handbook onto my system and I was
able to find it on disk per the motd notes but I'm wondering if there is a
preferred method for reading these since they are in html format. I tried
w3m and lynx and it looks like they are both not installed. Is there
something i'm missing for reading these or do I just need to install a cli
browser?



Viewing html takes some form of browser.

There is no text mode web browser in the base system.
Installing one is easy: As the HTML files generated
for the Handbook are good quality, they display nicely
in lynx, links, and w3m (probably the most prominent
three text mode web browsers).



I must know...

What is Polytropon's favorite of those listed? (and perhaps also elinks ?)


Hard to say, now that X is everywhere... :-)

In the past, I've started using lynx because it was the
default. Somehow I even tend to remember that it was part
of the default installation in around FreeBSD 4 or so...
but that could be wrong.

Later on I tried w3m and also found it usable.

Today I'd say I prefer links for interactive text mode
browsing. Still lynx -dump is a welcome tool in some
of my scripts, and never change a running system. :-)

Reading the pkg-descr of elinks it seems to bring lots
of extensions, some interesting, some not that interesting
(at least for the use discussed here: reading FreeBSD
supplied local documentation: no need for cookies, scripts,
or HTTP referers). Other features like the ability to
render tables might be a reason not to use a browser
that cannot do this (maybe lynx can't?).




(and do you enable console graphics?)


No, I have to admit that I've never even _tried_ that.
Somehow deep inside my brain there's the statement that
graphics in console mode is libvga which is for Linux,
not for FreeBSD, but that might not apply anymore.

However, The FreeBSD Handbook and the FAQ mostly contain
text, I mean, that's what they are about, and for reading
text I don't see a need for graphics. If I want graphics,
I have X. :-)





What do you mean by enable console graphics?
Is this something different than x11?
___
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: Reading the handbook from console

2013-01-13 Thread Devin Teske

On Jan 13, 2013, at 12:15 PM, Fbsd8 wrote:

 Polytropon wrote:
 On Thu, 10 Jan 2013 14:48:33 -0800, dte...@freebsd.org wrote:
 
 -Original Message-
 From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-
 questi...@freebsd.org] On Behalf Of Polytropon
 Sent: Thursday, January 10, 2013 2:33 PM
 To: Fbsd8
 Cc: scotteb...@gmail.com; questi...@freebsd.org
 Subject: Re: Reading the handbook from console
 
 On Thu, 10 Jan 2013 13:57:47 -0500, Fbsd8 wrote:
 Scott Eberl wrote:
 I went ahead and installed the FreeBSD handbook onto my system and I was
 able to find it on disk per the motd notes but I'm wondering if there is 
 a
 preferred method for reading these since they are in html format. I tried
 w3m and lynx and it looks like they are both not installed. Is there
 something i'm missing for reading these or do I just need to install a 
 cli
 browser?
 
 
 Viewing html takes some form of browser.
 There is no text mode web browser in the base system.
 Installing one is easy: As the HTML files generated
 for the Handbook are good quality, they display nicely
 in lynx, links, and w3m (probably the most prominent
 three text mode web browsers).
 
 
 I must know...
 
 What is Polytropon's favorite of those listed? (and perhaps also elinks ?)
 Hard to say, now that X is everywhere... :-)
 In the past, I've started using lynx because it was the
 default. Somehow I even tend to remember that it was part
 of the default installation in around FreeBSD 4 or so...
 but that could be wrong.
 Later on I tried w3m and also found it usable.
 Today I'd say I prefer links for interactive text mode
 browsing. Still lynx -dump is a welcome tool in some
 of my scripts, and never change a running system. :-)
 Reading the pkg-descr of elinks it seems to bring lots
 of extensions, some interesting, some not that interesting
 (at least for the use discussed here: reading FreeBSD
 supplied local documentation: no need for cookies, scripts,
 or HTTP referers). Other features like the ability to
 render tables might be a reason not to use a browser
 that cannot do this (maybe lynx can't?).
 (and do you enable console graphics?)
 No, I have to admit that I've never even _tried_ that.
 Somehow deep inside my brain there's the statement that
 graphics in console mode is libvga which is for Linux,
 not for FreeBSD, but that might not apply anymore.
 However, The FreeBSD Handbook and the FAQ mostly contain
 text, I mean, that's what they are about, and for reading
 text I don't see a need for graphics. If I want graphics,
 I have X. :-)
 
 What do you mean by enable console graphics?
 Is this something different than x11?

Yes, some console-based browsers support displaying graphics directly on the 
console (read: ttyv*).
-- 
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: Reading the handbook from console

2013-01-13 Thread Polytropon
On Sun, 13 Jan 2013 15:15:23 -0500, Fbsd8 wrote:
 What do you mean by enable console graphics?
 Is this something different than x11?

The is a famous library, svgalib, a low level console graphics
library which can - under _very_ specific circumstances - display
graphics on the text mode console. There are few browsers,
image viewers and even media players that can use this interface
to display console graphics while _not_ needing X.

However, this only works for local displays. As soon as there
is a serial or SSH connection involved, it doesn't work anymore.

I've actually never seen this working on FreeBSD; maybe it's
just a Linuxism. Maybe it's just because I've never tried. :-)




-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
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: SPAM-flag on FBSD list

2013-01-13 Thread Christopher J. Ruwe
On Sun, 13 Jan 2013 11:06:50 -0500
Joe Altman free...@chthonixia.net wrote:

 
 On Sun, Jan 13, 2013 at 04:48:06PM +0100, Christopher J. Ruwe wrote:
  
  Hello,
  
  while testing a new mail configuration on freebsd-test@, I noticed a
  very interesting part in the header, which I just paste
  
  Old-X-HE-Spam-Score: -2.3
  Old-X-HE-Spam-Report: Content analysis details:   (-2.3 points)
pts rule name  description
    --
  -- -2.3
  RCVD_IN_DNSWL_MED  RBL: Sender listed at http://www.dnswl.org/,
  medium trust [8.8.178.116 listed in list.dnswl.org]
 
 From the org's web page:
 
 dnswl.org: DNS Whitelist - Protect against false positives
 
 What is dnswl.org?
 
 Dnswl.org is the leading whitelist provider for email filtering. It
 has over 80'000 users and contains more than 150'000 entries of good
 mailservers. 
 ___
 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 for the explanation, the wl part of the domain and the negative
number escaped me completly. 

Sorry for the noise, cheers,
-- 
Christopher 
TZ: GMT + 2h
GnuPG/GPG:  0xE8DE2C14
 
FreeBSD 9.1-STABLE #4 r245101: Sun Jan  6 21:13:49 CET 2013
c...@dijkstra.cruwe.de:/usr/obj/usr/src/sys/DIJKSTRA 
 
Punctuation matters:
Lets eat Grandma or Lets eat, Grandma - Punctuation saves lives.
A panda eats shoots and leaves or A panda eats, shoots, and leaves -
Punctuation teaches proper biology.
___
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: Reading the handbook from console

2013-01-13 Thread Warren Block

On Sun, 13 Jan 2013, Polytropon wrote:


On Sun, 13 Jan 2013 15:15:23 -0500, Fbsd8 wrote:

What do you mean by enable console graphics?
Is this something different than x11?


The is a famous library, svgalib, a low level console graphics
library which can - under _very_ specific circumstances - display
graphics on the text mode console. There are few browsers,
image viewers and even media players that can use this interface
to display console graphics while _not_ needing X.

However, this only works for local displays. As soon as there
is a serial or SSH connection involved, it doesn't work anymore.

I've actually never seen this working on FreeBSD; maybe it's
just a Linuxism. Maybe it's just because I've never tried. :-)


I tried it years ago.  It was more trouble than it was worth.  640x400 
(AFAIR), with eight glorious VGA colors, chosen by IBM for their 
ugliness.  Also, it was prone to crashing the machine.


There is a plain ASCII version of the Handbook along with the other 
formats at 
ftp://ftp.freebsd.org/pub/FreeBSD/doc/en_US.ISO8859-1/books/handbook/

___
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: Jails

2013-01-13 Thread Leonardo M . Ramé


- Original Message -

 From: Devin Teske devin.te...@fisglobal.com
 To: Leonardo M. Ramé martinr...@yahoo.com
 Cc: freebsd-questions@FreeBSD.org freebsd-questions@FreeBSD.org
 Sent: Sunday, January 13, 2013 2:23 PM
 Subject: Re: Jails
 
 
 On Jan 13, 2013, at 7:45 AM, Leonardo M. Ramé wrote:
 
  
 
  From: Zyumbilev, Peter pe...@aboutsupport.com
  To: freebsd-questions@FreeBSD.org 
  Cc: Mark Felder f...@feld.me; Devin Teske 
 dte...@freebsd.org; Devin Teske devin.te...@fisglobal.com 
  Sent: Sunday, January 13, 2013 7:09 AM
  Subject: Re: Jails
 
 
  On 12/01/2013 18:41, Devin Teske wrote:
 
  On Jan 11, 2013, at 11:31 PM, Zyumbilev, Peter wrote:
 
  Hi,
 
  I have not tested it, but so far things do not look 
 promising...
 
  I cannot even run netstat -nvatp properly, however 
 sopcast seemed to
  run, but have not tested it, for plex - have not tried yet.
 
 
  netstat isn't allowed in traditional jails (but is allowed in 
 vimage jails which have their own network stack).
 
  If you're able/willing to compile a new kernel to enable the 
 VIMAGE feature, then this can be improved so that you can indeed use 
 netstat within the jail.
 
  NOTE: netstat is not allowed within traditional (non-VIMAGE) jails 
 due to security restrictions.
 
 
  My  host os is Nas4Free and is stripped version of freebsd - e.g I
  cannot even compile ports - that is why I use jails - so no new kernel
  for me there :)
 
  So far I am quite happy with it  - I use it mainly as DLNA
  server(Serviio), ZFS,UPS support  Transmission made it quite good
  platform - would take plenty of time to get all this in plain FreeBSD
  install.
 
  The only thing that I might be missing is Plex, but due to lack 
 browser
  per folder feature, I will stick to open standard - DLNA.
 
  Peter
 
 
  Hi, I've installed debian 6 in a jail, from FreeBsd 9.1 x86-64 by 
 following the instructions from this thread. However, I also updated my 
 /etc/resolv.conf inside the jail, but I get this error when I do ping:
 
 ping is usually denied from within a jail (for security purposes).
 
 Add the following to /etc/rc.conf:
 
 jail_sysvipc_allow=YES
 
 And then reboot.

I've tried that, but I got the same results:

root@debian:/# ping www.google.com
WARNING: setsockopt(ICMP_FILTER): Protocol not available
WARNING: your kernel is veeery old. No problems.
PING www.google.com (173.194.42.16) 56(84) bytes of data.
ping: recvmsg: Invalid argument
ping: recvmsg: Invalid argument
ping: recvmsg: Invalid argument
ping: recvmsg: Invalid argument

--- www.google.com ping statistics ---
4 packets transmitted, 0 received, 100% packet loss, time 3078ms

root@debian:/#



 
Leonardo M. Ramé
http://leonardorame.blogspot.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: Regarding: Script configure failed unexpectedly.

2013-01-13 Thread Joe Altman
On Sun, Jan 13, 2013 at 10:34:30AM -0800, Waitman Gobble wrote:
 
 Hi,
 
 Yeah i think it just sends through sendmail on the local machine. You may
 find it convenient to use the web interface. Your config.log says you are
 running FreeBSD 9.1-PRERELEASE #0: Mon Oct 22 00:16:27 EDT 2012, you should
 consider upgrading to 9.1, which was released in December.

My very, very, bad mistake: I forget to mention in this email thread my
current uname -a, which is in the send-pr that was rejected:

FreeBSD whisperer.chthonixia.net 9.1-RELEASE FreeBSD 9.1-RELEASE #0
r245243: Wed Jan  9 18:25:14 EST 2013
r...@whisperer.chthonixia.net:/usr/obj/usr/src/sys/WHISPERER  amd64

Since I did not think the bug would be addressed via this thread, I'm
really sorry to have wasted your time; I should have thought to submit
another PR via the web interface with my current environment.

I can do that that so a proper bug report is opened unless you think it
unnecessary.

Best regards,

Joe
___
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 compiling X11 ports under 9.1-RELEASE

2013-01-13 Thread Will Parsons
I've recently installed 9.1-RELEASE on a laptop and am in the process
of installing the ports that I want.  On several now, I've encountered
error messages that I don't know how to deal with and for which I
don't see anything in the UPDATING file that seems to be relevant.
For example, trying to build both graphics/xv and x11-clocks/wmclock
results failure with the primary error message being:

imake -DUseInstalled -I/usr/local/lib/X11/config
Imakefile.c:16: error: Imake.tmpl: No such file or directory

followed by:

make: don't know how to make all. Stop

This happens both using portmaster (my usual method of installing
ports) and installing manually (cd /usr/ports/x/y; make).

Imake seems to be installed (pkg_version reports imake-1.0.4,1) so I
don't know where to go from here.

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


Re: Reading the handbook from console

2013-01-13 Thread Fbsd8

Polytropon wrote:

On Sun, 13 Jan 2013 15:15:23 -0500, Fbsd8 wrote:

What do you mean by enable console graphics?
Is this something different than x11?


The is a famous library, svgalib, a low level console graphics
library which can - under _very_ specific circumstances - display
graphics on the text mode console. There are few browsers,
image viewers and even media players that can use this interface
to display console graphics while _not_ needing X.

However, this only works for local displays. As soon as there
is a serial or SSH connection involved, it doesn't work anymore.

I've actually never seen this working on FreeBSD; maybe it's
just a Linuxism. Maybe it's just because I've never tried. :-)





I use links/svgalib on my host without problems,
the worst I can say is the mouse pointer is jumpy.
So console graphics = any thing that uses this single svgalib.
I understand now.
___
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: Reading the handbook from console

2013-01-13 Thread Robert Bonomi

 Date: Sun, 13 Jan 2013 21:48:01 +0100
 From: Polytropon free...@edvax.de
 To: Fbsd8 fb...@a1poweruser.com
 Subject: Re: Reading the handbook from console
 Cc: scotteb...@gmail.com, dte...@freebsd.org, questi...@freebsd.org

 On Sun, 13 Jan 2013 15:15:23 -0500, Fbsd8 wrote:
  What do you mean by enable console graphics?
  Is this something different than x11?

 The is a famous library, svgalib, a low level console graphics
 library which can - under _very_ specific circumstances - display
 graphics on the text mode console. There are few browsers,
 image viewers and even media players that can use this interface
 to display console graphics while _not_ needing X.

 However, this only works for local displays. As soon as there
 is a serial or SSH connection involved, it doesn't work anymore.

 I've actually never seen this working on FreeBSD; maybe it's
 just a Linuxism. Maybe it's just because I've never tried. :-)


Works fine on FreeBSD  -- graphics-mode screen-savers (like 'fire')
use it.

___
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 compiling X11 ports under 9.1-RELEASE

2013-01-13 Thread Walter Hurry
On Sun, 13 Jan 2013 22:01:25 +, Will Parsons wrote:

 I've recently installed 9.1-RELEASE on a laptop and am in the process of
 installing the ports that I want.  On several now, I've encountered
 error messages that I don't know how to deal with and for which I don't
 see anything in the UPDATING file that seems to be relevant.
 For example, trying to build both graphics/xv and x11-clocks/wmclock
 results failure with the primary error message being:
 
 imake -DUseInstalled -I/usr/local/lib/X11/config Imakefile.c:16: error:
 Imake.tmpl: No such file or directory
 
 followed by:
 
 make: don't know how to make all. Stop
 
 This happens both using portmaster (my usual method of installing ports)
 and installing manually (cd /usr/ports/x/y; make).
 
 Imake seems to be installed (pkg_version reports imake-1.0.4,1) so I
 don't know where to go from here.

I tried x11-clocks/wmclock and it compiled successfully in seconds.

$ locate Imake.tmpl
/usr/local/lib/X11/config/Imake.tmpl
$ pkg which /usr/local/lib/X11/config/Imake.tmpl
/usr/local/lib/X11/config/Imake.tmpl was installed by package xorg-cf-
files-1.0.4 

___
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: Reading the handbook from console

2013-01-13 Thread Fbsd8

Robert Bonomi wrote:

Date: Sun, 13 Jan 2013 21:48:01 +0100
From: Polytropon free...@edvax.de
To: Fbsd8 fb...@a1poweruser.com
Subject: Re: Reading the handbook from console
Cc: scotteb...@gmail.com, dte...@freebsd.org, questi...@freebsd.org

On Sun, 13 Jan 2013 15:15:23 -0500, Fbsd8 wrote:

What do you mean by enable console graphics?
Is this something different than x11?

The is a famous library, svgalib, a low level console graphics
library which can - under _very_ specific circumstances - display
graphics on the text mode console. There are few browsers,
image viewers and even media players that can use this interface
to display console graphics while _not_ needing X.

However, this only works for local displays. As soon as there
is a serial or SSH connection involved, it doesn't work anymore.

I've actually never seen this working on FreeBSD; maybe it's
just a Linuxism. Maybe it's just because I've never tried. :-)



Works fine on FreeBSD  -- graphics-mode screen-savers (like 'fire')
use it.


How do you activate graphics-mode screen-savers (like 'fire')?
___
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: Reading the handbook from console

2013-01-13 Thread Devin Teske

On Jan 13, 2013, at 4:01 PM, Fbsd8 wrote:

 Robert Bonomi wrote:
 Date: Sun, 13 Jan 2013 21:48:01 +0100
 From: Polytropon free...@edvax.de
 To: Fbsd8 fb...@a1poweruser.com
 Subject: Re: Reading the handbook from console
 Cc: scotteb...@gmail.com, dte...@freebsd.org, questi...@freebsd.org
 
 On Sun, 13 Jan 2013 15:15:23 -0500, Fbsd8 wrote:
 What do you mean by enable console graphics?
 Is this something different than x11?
 The is a famous library, svgalib, a low level console graphics
 library which can - under _very_ specific circumstances - display
 graphics on the text mode console. There are few browsers,
 image viewers and even media players that can use this interface
 to display console graphics while _not_ needing X.
 
 However, this only works for local displays. As soon as there
 is a serial or SSH connection involved, it doesn't work anymore.
 
 I've actually never seen this working on FreeBSD; maybe it's
 just a Linuxism. Maybe it's just because I've never tried. :-)
 
 Works fine on FreeBSD  -- graphics-mode screen-savers (like 'fire')
 use it.
 How do you activate graphics-mode screen-savers (like 'fire')?

Try adding to /boot/loader.conf:
screensave_load=YES
screensave_name=fire_saver

-- 
Devin

P.S. The default is green_saver (which blanks the console, saving energy 
making it green).

_
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: sh script problem with capturing return code

2013-01-13 Thread Lowell Gilbert
Fbsd8 fb...@a1poweruser.com writes:

 Lowell Gilbert wrote:
 Lowell Gilbert freebsd-questions-lo...@be-well.ilk.org writes:

 I think it's a real bug, and the test cases don't cover extra elements
 at all. Now I just have to figure out the right fix.

 I'm pretty sure that the fix is just to set rval on jumping to the
 extra tag in vwalk() in src/usr.sbin/mtree/verify.c.

 But my hot water heater just exploded, so I may not look at code for a
 few more days.

 Hello Lowell,
 Thank you very much.
 I was going crazy trying different combinations of options and script
 logic. I want to thank you for taking my problem seriously and taking
 the time to do your own test cases to verify my findings. Now that I
 know it's a genuine bug in mtree, I can make my plans accordingly. Any
 fix to the mtree utility will take some time to filter down to a
 regular RELEASE. Maybe 9.2 or the big jump to 10.0 by the end of
 2013. I will leave it up to you the file a PR on this and follow
 through.
 Thanks again, people like you are what makes this questions list so
 valuable and FreeBSD such a great OS. You did outstanding work.

Actually, in retrospect I think it was pretty trivial. I think the
following patch is the right fix for the problem, although I am not
completely certain.


Index: /usr/src/usr.sbin/mtree/verify.c
===
--- /usr/src/usr.sbin/mtree/verify.c(revision 245177)
+++ /usr/src/usr.sbin/mtree/verify.c(working copy)
@@ -149,6 +149,7 @@
}
(void)fts_set(t, p, FTS_SKIP);
}
+   rval = MISMATCHEXIT;
(void)fts_close(t);
if (sflag)
warnx(%s checksum: %lu, fullpath, (unsigned long)crc_total);


This fixes the problem that was bothering you, but the interactions of
different features are complicated, and many of them are documented in
fairly loose language.

Would you be interested in extending the test suite for this program?
There are some tests in /usr/src/usr.sbin/mtree/test/, but they don't
cover your issue. I'm particularly concerned with interactions between
mtree(8) options like -u, -U, -q, -d, and specification keywords like
optional, nochange, and ignore. I would feel more comfortable if
someone else wrote up new test cases (because programmers generally
don't -- can't -- test their own blind spots), although I'll certainly
do it if no one else does.

I haven't submitted a PR yet, but I'll do so as soon as I've translated
my test case into a form that can be used in the PR.

[As an upside, I've learned about the fts_ family, which I hadn't really
looked at before.]

Be well.
___
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: sh script problem with capturing return code

2013-01-13 Thread Lowell Gilbert
Adam Vande More amvandem...@gmail.com writes:

 On Wed, Jan 9, 2013 at 7:23 PM, Lowell Gilbert 
 freebsd-questions-lo...@be-well.ilk.org wrote:

 Lowell Gilbert freebsd-questions-lo...@be-well.ilk.org writes:

  I think it's a real bug, and the test cases don't cover extra elements
  at all. Now I just have to figure out the right fix.

 I'm pretty sure that the fix is just to set rval on jumping to the
 extra tag in vwalk() in src/usr.sbin/mtree/verify.c.

 But my hot water heater just exploded, so I may not look at code for a
 few more days.


 I think they are importing NetBSD's updated mtree, perhaps already fixed
 there.

It isn't. Which means I probably should submit fixes to multiple places.

Although NetBSD's changes seem fairly minor to me, from a quick look.
The merge should not be difficult, no matter how it's approached.
___
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: Reading the handbook from console

2013-01-13 Thread Polytropon
On Sun, 13 Jan 2013 16:58:35 -0600 (CST), Robert Bonomi wrote:
 
  Date: Sun, 13 Jan 2013 21:48:01 +0100
  From: Polytropon free...@edvax.de
  To: Fbsd8 fb...@a1poweruser.com
  Subject: Re: Reading the handbook from console
  Cc: scotteb...@gmail.com, dte...@freebsd.org, questi...@freebsd.org
 
  On Sun, 13 Jan 2013 15:15:23 -0500, Fbsd8 wrote:
   What do you mean by enable console graphics?
   Is this something different than x11?
 
  The is a famous library, svgalib, a low level console graphics
  library which can - under _very_ specific circumstances - display
  graphics on the text mode console. There are few browsers,
  image viewers and even media players that can use this interface
  to display console graphics while _not_ needing X.
 
  However, this only works for local displays. As soon as there
  is a serial or SSH connection involved, it doesn't work anymore.
 
  I've actually never seen this working on FreeBSD; maybe it's
  just a Linuxism. Maybe it's just because I've never tried. :-)
 
 
 Works fine on FreeBSD  -- graphics-mode screen-savers (like 'fire')
 use it.

Oh, _that_ is this functionality? I've in fact tried and
seen this working, I think... with the logo saver showing
Beastie sliding across the screen, and with the warp saver.

I assume it's the same functionality behind the option to
show a spash screen when the system is booting (after the
kernel has been loaded).




-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


freebsd-update won't update 8.2-R-p9 to p10

2013-01-13 Thread Matthew Pounsett

I can't seem to get freebsd-update to do the jump from 9.2-RELEASE-p9 to p10.  
This is what I'm getting.

sudo freebsd-update fetch
   Password:
   Looking up update.FreeBSD.org mirrors... 3 mirrors found.
   Fetching metadata signature for 8.2-RELEASE from update5.FreeBSD.org... done.
   Fetching metadata index... done.
   Inspecting system... done.
   Preparing to download files... done.

   The following files are affected by updates, but no changes have
   been downloaded because the files have been modified locally:
   /var/db/mergemaster.mtree

   No updates needed to update system to 8.2-RELEASE-p10.
 
   WARNING: FreeBSD 8.2-RELEASE-p9 HAS PASSED ITS END-OF-LIFE DATE.
   Any security issues discovered after Wed Aug  1 00:00:00 UTC 2012
   will not have been corrected.

Note the complaint about mergemaster.mtree.  I haven't modified that, so I'm 
not sure why it's complaining.  It may be a red herring anyway though.  
However, since no changes have been downloaded, an install does nothing.

sudo freebsd-update install
   No updates are available to install.
   Run '/usr/sbin/freebsd-update fetch' first.

However, after a reboot, I'm still running p9.

uname -a
   FreeBSD obfuscated.com 8.2-RELEASE-p9 FreeBSD 8.2-RELEASE-p9 #0: Mon Jun 11 
23:00:11 UTC 2012 
r...@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  amd64

I'm running a generic kernel, which should be updated according to the 
freebsd-update docs.  Any suggestions for how to get this to complete?



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


FreeBSD v9.1 Release Torrents?

2013-01-13 Thread Curt Dox
Hello!

For those who are seeking a torrent for the various install media,
one location they may be found is at http://gotbsd.net/

I wish you success!
___
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: Reading the handbook from console

2013-01-13 Thread Robert Bonomi

 Date: Sun, 13 Jan 2013 19:01:21 -0500
 From: Fbsd8 fb...@a1poweruser.com
 Subject: Re: Reading the handbook from console

 How do you activate graphics-mode screen-savers (like 'fire')?

  apropos screen saver

will point one in the right direction.

I compile into a custom monolithic kernel.





___
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: Reading the handbook from console

2013-01-13 Thread jb
Robert Bonomi bonomi at mail.r-bonomi.com writes:

 ... 
  The is a famous library, svgalib, a low level console graphics
  library which can - under _very_ specific circumstances - display
  graphics on the text mode console. There are few browsers,
  image viewers and even media players that can use this interface
  to display console graphics while _not_ needing X.
 ... 
 Works fine on FreeBSD  -- graphics-mode screen-savers (like 'fire')
 use it.
...

Yes, it is famous indeed ...
Is that still valid ?

www.svgalib.org/svgalib.user.faq.html
...
Why does a programs terminate immediatelly with svgalib: Cannot get I/O
permissions.?

svgalib programs need to be run as root. This means that either the user that
runs them is root, or, if running by normal users is desirable, the program
needs to be 'suid root', which means: the program must be owned by root (chown 0
program) and the suid bit needs to be set (chmod u+s program).
...

jb




___
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: Jails

2013-01-13 Thread Zyumbilev, Peter


On 13/01/2013 23:58, Leonardo M. Ramé wrote:
 
 

 root@debian:/# ping www.google.com
 WARNING: setsockopt(ICMP_FILTER): Protocol not available
 WARNING: your kernel is veeery old. No problems.
 PING www.google.com (173.194.42.16) 56(84) bytes of data.
 ping: recvmsg: Invalid argument
 ping: recvmsg: Invalid argument
 ping: recvmsg: Invalid argument
 ping: recvmsg: Invalid argument
 
 --- www.google.com ping statistics ---
 4 packets transmitted, 0 received, 100% packet loss, time 3078ms
 
 root@debian:/#


Hvae you run in FreeBSD:

sysctl compat.linux.osrelease=2.6.32

?


___
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: Jails

2013-01-13 Thread Zyumbilev, Peter


On 13/01/2013 23:58, Leonardo M. Ramé wrote:

 root@debian:/# ping www.google.com
 WARNING: setsockopt(ICMP_FILTER): Protocol not available
 WARNING: your kernel is veeery old. No problems.
 PING www.google.com (173.194.42.16) 56(84) bytes of data.
 ping: recvmsg: Invalid argument
 ping: recvmsg: Invalid argument
 ping: recvmsg: Invalid argument
 ping: recvmsg: Invalid argument
 
 --- www.google.com ping statistics ---
 4 packets transmitted, 0 received, 100% packet loss, time 3078ms
 
 root@debian:/#
 
 
 


Also make sure you


/etc/resolv.conf looks like this:


nameserver 8.8.8.8


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