Re: restart network without shutdown

2007-08-07 Thread Rakhesh Sasidharan




You'll still get disconnected, but you should be able to reconnect
after it's done.  Screen will allow the script to complete, whereas
your ssh session is killing it half/part way through...

HTH

Eric Crist


I'm generally a big screen advocate, but in this case, wouldn't nohup
work as well? And it's in base.


Exactly what I was wondering. Wouldn't nohup work as well?

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


Re: NTFS-3G not mounting the partition during boot

2007-08-07 Thread Rakhesh Sasidharan



Starting ntfsmount.
/etc/rc: DEBUG: run_rc_command: _doit: /usr/local/bin/ntfs-3g  /dev/ad0s1
/mnt/w
indows
fuse: failed to exec mount program: No such file or directory
--

I don't exactly know what it means by "fuse: failed to exec mount program:
No such file or directory" since /usr/local/bin/ntfs-3g exists, /dev/ad0s1
is my Windows 2000 partition, and I have created /mnt/windows myself.


Why is the mount point /mnt/windows broken over two lines? If that's the 
actual output from fuse (and not broken coz of some wrapping while 
emailing) then that could be the problem.


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


Re: NTFS-3G not mounting the partition during boot

2007-08-07 Thread Novembre
On 8/7/07, Novembre <[EMAIL PROTECTED]> wrote:
>
>
>
> On 8/6/07, Philip M. Gollucci <[EMAIL PROTECTED]> wrote:
> >
> > Novembre wrote:
> > > rcvar=`set_rcvar`
> > That should be
> > rcvar=${name}_enable
> >
> > Because of this, your script did not run because the rc system didn't
> > detect it correctly.
> >
> > Try setting
> > rc_debug="YES"
> > and/or
> > rc_info="YES"
> > in /etc/rc.conf
> >
> > to see more of whats happening.
> >
> > > command="ntfs-3g /dev/ad0s1 /mnt/windows && ntfs-3g /dev/ad0s1
> > > /mnt/windows -o locale=en_US.UTF-8"
> > Also $command is special, you should use another variable
> > $command_args (which is also special) for the arguments/options.
> >
> > Of course, you can circument these if you know what you are doing.
> >
> > When in doubt, look at other rc scripts like apache22's or others that
> > might seem like they would do a lot.
> >
> > Finally, in /etc/rc.subr is _very_
> >
> >
> > --
> > 
> > Philip M. Gollucci ( [EMAIL PROTECTED]) 323.219.4708
> > Senior System Admin - Riderway, Inc. http://riderway.com
> > 1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB  B89E 1324 9B4F EC88 A0BF
> >
> > Work like you don't need the money,
> > love like you'll never get hurt,
> > and dance like nobody's watching.
> >
>
>
>
> Hi,
>
> I did not write this script myself. I was searching the net for a solution
> to this problem, and I found a thread on ntfs-3g forums where somebody had
> posted this script. Apparently, it had worked for him and some other people.
> I just copied and pasted the script. But since I wanted to know more about
> startup scripts, I looked at the manual page for rc.d, and a sample script
> there looked exacly liked this one. That's why I thought that the script
> that I have is going to work as well.
> I made the changes and am going to reboot the machine now. If they work,
> i'll post the results...
>
> Thanks a lot :)
>
>

Okay, here's an update. I changed the script to the following
--
#!/bin/sh
#
# PROVIDE: ntfsmount
# REQUIRE: fusefs
#

. /etc/rc.subr

name="ntfsmount"
rcvar=${name}_enable
command="/usr/local/bin/ntfs-3g"
command_args="/dev/ad0s1 /mnt/windows"

load_rc_config $name

: ${ntfsmount_enable="NO"}

run_rc_command "$1"
--

and have also put rc_debug="YES" and rc_info="YES" in /etc/rc.conf, and the
result is the following
--
/etc/rc: DEBUG: checkyesno: ntfsmount_enable is set to YES.
Starting ntfsmount.
/etc/rc: DEBUG: run_rc_command: _doit: /usr/local/bin/ntfs-3g  /dev/ad0s1
/mnt/w
indows
fuse: failed to exec mount program: No such file or directory
--

I don't exactly know what it means by "fuse: failed to exec mount program:
No such file or directory" since /usr/local/bin/ntfs-3g exists, /dev/ad0s1
is my Windows 2000 partition, and I have created /mnt/windows myself.

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


Re: NTFS-3G not mounting the partition during boot

2007-08-07 Thread Novembre
On 8/6/07, Philip M. Gollucci <[EMAIL PROTECTED]> wrote:
>
> Novembre wrote:
> > rcvar=`set_rcvar`
> That should be
> rcvar=${name}_enable
>
> Because of this, your script did not run because the rc system didn't
> detect it correctly.
>
> Try setting
> rc_debug="YES"
> and/or
> rc_info="YES"
> in /etc/rc.conf
>
> to see more of whats happening.
>
> > command="ntfs-3g /dev/ad0s1 /mnt/windows && ntfs-3g /dev/ad0s1
> > /mnt/windows -o locale=en_US.UTF-8"
> Also $command is special, you should use another variable
> $command_args (which is also special) for the arguments/options.
>
> Of course, you can circument these if you know what you are doing.
>
> When in doubt, look at other rc scripts like apache22's or others that
> might seem like they would do a lot.
>
> Finally, in /etc/rc.subr is _very_
>
>
> --
> 
> Philip M. Gollucci ([EMAIL PROTECTED]) 323.219.4708
> Senior System Admin - Riderway, Inc. http://riderway.com
> 1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB  B89E 1324 9B4F EC88 A0BF
>
> Work like you don't need the money,
> love like you'll never get hurt,
> and dance like nobody's watching.
>



Hi,

I did not write this script myself. I was searching the net for a solution
to this problem, and I found a thread on ntfs-3g forums where somebody had
posted this script. Apparently, it had worked for him and some other people.
I just copied and pasted the script. But since I wanted to know more about
startup scripts, I looked at the manual page for rc.d, and a sample script
there looked exacly liked this one. That's why I thought that the script
that I have is going to work as well.
I made the changes and am going to reboot the machine now. If they work,
i'll post the results...

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


Re: Out of date mirrors.

2007-08-07 Thread Jonathan Horne
On Tuesday 07 August 2007 19:16:45 Paul Myjavec wrote:
> FreeBSD,
>
> I have just purchased a new workstation and have just completed a fresh
> install.
>
> One thing this install has taught me is how out of date a lot of mirrors
> around the world are, particularly in my case the Australian mirrors and
> doing a bit of reading I discovered that so many fellow Australians are
> simply turning to FreeBSD main sites for all there Ports needs.
>
> Upon emailing [EMAIL PROTECTED] to find out what the story was I
> received a bounce back message?
>
> Can something be done about this, I for one would be happy to help out if
> at all possible.
>
> Regards,
>
> Paul.
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

im curious to know if you are referring to taking your fresh install of 6.2, 
and doing something like say:

pkg_add -r kde

and watching it install kde-3.5.4 ??  or perhaps it was some other package, 
but the point is that the packages-6.2-release folder does not hold the same 
things as package-6-stable folder.

or.. what exactly are you referring to, as being out of date?

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


What's the secret to gnome-terminal "open link?"

2007-08-07 Thread David Benfell
Hello all,

I would really like the "open link" function to work under
gnome-terminal.  But I can't find any relevant configuration
and a Google search comes up empty.

It worked out of the box under Ubuntu, opening up a new tab
in Firefox.  That's what I would like it to do under FreeBSD.

So what or where is the secret?

Thanks!
-- 
David Benfell, LCP
[EMAIL PROTECTED]
---
Resume available at http://www.parts-unknown.org/
NOTE: I sign all messages with GnuPG (0DD1D1E3).


pgpkLn63nlRdo.pgp
Description: PGP signature


Re: Out of date mirrors.

2007-08-07 Thread Kris Kennaway
On Wed, Aug 08, 2007 at 10:16:45AM +1000, Paul Myjavec wrote:
> FreeBSD,
> 
> I have just purchased a new workstation and have just completed a fresh
> install.
> 
> One thing this install has taught me is how out of date a lot of mirrors
> around the world are, particularly in my case the Australian mirrors and
> doing a bit of reading I discovered that so many fellow Australians are
> simply turning to FreeBSD main sites for all there Ports needs.
> 
> Upon emailing [EMAIL PROTECTED] to find out what the story was I
> received a bounce back message?
> 
> Can something be done about this, I for one would be happy to help out if
> at all possible.

Talk to [EMAIL PROTECTED], he might be able to put you in contact
with the operators of the specific mirrors that are out of date.

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


Out of date mirrors.

2007-08-07 Thread Paul Myjavec
FreeBSD,

I have just purchased a new workstation and have just completed a fresh
install.

One thing this install has taught me is how out of date a lot of mirrors
around the world are, particularly in my case the Australian mirrors and
doing a bit of reading I discovered that so many fellow Australians are
simply turning to FreeBSD main sites for all there Ports needs.

Upon emailing [EMAIL PROTECTED] to find out what the story was I
received a bounce back message?

Can something be done about this, I for one would be happy to help out if
at all possible.

Regards,

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


Re: Bizzare routing table entry.

2007-08-07 Thread Chuck Swiger

On Aug 7, 2007, at 3:13 PM, Adam J Richardson wrote:

Modulok wrote:

  0&0xc0a80132   link#1 UCS 00   bge0



1. The first entry, it's not IPv4, IPv6 or a MAC address that I've
ever seen, what format is it?


Hi Modulok,

It's possible to represent IPv4 addresses as a single number. I  
don't recall the algorithm for converting that four byte dot- 
delimited group into an integer, though, so I can't tell you what  
number it is. Perhaps you can Google the algorithm and do the math  
to figure out what it is.


aaa.bbb.ccc.ddd => 0xAABBCCDD, where AA = hex(aaa), BB = hex(bbb), etc.
In particular, 0xc0a80132 is the hex equivalent of 192.168.1.50.

An IP address + netmask can normally be represented in the routing  
table via the slash notation-- say 192.168.1.50/24 meaning a  
255.255.255.0 (or 0xff00) netmask.  Non-contiguous netmasks are  
represented by "address & netmask", but since no normal network ever  
uses such a netmask, they almost always represent a  
misconfiguration-- someone confused the arguments such that the route  
command interpreted the gateway IP as a netmask instead.


--
-Chuck

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


Re: Bizzare routing table entry.

2007-08-07 Thread Adam J Richardson

Modulok wrote:

  0&0xc0a80132   link#1 UCS 00   bge0



1. The first entry, it's not IPv4, IPv6 or a MAC address that I've
ever seen, what format is it?


Hi Modulok,

It's possible to represent IPv4 addresses as a single number. I don't 
recall the algorithm for converting that four byte dot-delimited group 
into an integer, though, so I can't tell you what number it is. Perhaps 
you can Google the algorithm and do the math to figure out what it is.


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


Re: portsdb and cvsup

2007-08-07 Thread Adam J Richardson

Rakhesh Sasidharan wrote:
During my first few days with FreeBSD, however, I used to run ''portsdb 
-Fu''. My understanding is that that would fetch the INDEX-6 and update 
INDEX-6.db (since I am on FreeBSD 6.x) but I don't see why I should do 
this coz the INDEX files are updated when I update the ports tree 
anyways! (If I have understood this incorrectly, someone please correct 
me).


Hi Rakhesh,

What you say about the -F and -u flags sounds right. It's my 
understanding that "portsdb -Fu" is only required when the ports 
database gets a little bit messed up and the system prompts you. It's an 
easy one to remember, because as Dru said in that article, you may be 
thinking something similar at the time. ;)


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


Re: Bizzare routing table entry.

2007-08-07 Thread Chuck Swiger

On Aug 7, 2007, at 12:10 PM, Modulok wrote:

I have a bizarre entry in the routing table on one my machines. What
is it, and how do I delete it? The output of "netstat -rnf inet" is
shown below:

  DestinationGatewayFlagsRefs  Use   
Netif Expire

  0&0xc0a80132   link#1 UCS 00   bge0
  127.0.0.1  127.0.0.1  UH  0  557lo0
  ...

QUESTIONS
1. The first entry, it's not IPv4, IPv6 or a MAC address that I've
ever seen, what format is it?


It looks a default IPv4 route using a non-contiguous netmask.  It's  
almost certainly the result of running route with the wrong  
arguments, rather than something you would intend to do.



2. How do I delete it? According to route(8) it is not a "valid
address" and when I attempt to delete it, route(8) gets very upset:

root# route delete 0&0xc0a80132

  [1] 37343
  route: writing to routing socket: No such process
  delete net 0: not in table
  0xc0a80132: Command not found.
  [1]  + Exit 1route delete 0


The "&" is confusing the shell; you can probably do a "route delete  
default" to nuke it.


--
-Chuck

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


Re: restart network without shutdown

2007-08-07 Thread Erik Osterholm
> >-Original Message-
> > >From: [EMAIL PROTECTED]
> > >[mailto:[EMAIL PROTECTED] On Behalf Of Xihong Yin
> > >Sent: Tuesday, August 07, 2007 6:02 PM
> > >To: freebsd-questions@freebsd.org
> > >Subject: restart network without shutdown
> > >
> > >How can I restart my network card without shutdown/reboot? I use DHCP.
> > >
> > >Thanks,

> On Aug 7, 2007, at 10:19 AMAug 7, 2007, Narek Gharibyan wrote:
> >I think the best way is
> >
> >/etc/netstart
> >
> >but when you try it via ssh connection it outputs an fatal error  
> >and your
> >ssh hangs up. You cannot connect again via ssh.
> >
> >But you can do it via console and everything will ok.
> >

On Tue, Aug 07, 2007 at 10:42:11AM -0500, Eric Crist wrote:
> Install screen from ports, run it from within screen.
> 
> You'll still get disconnected, but you should be able to reconnect  
> after it's done.  Screen will allow the script to complete, whereas  
> your ssh session is killing it half/part way through...
> 
> HTH
> 
> Eric Crist

I'm generally a big screen advocate, but in this case, wouldn't nohup
work as well? And it's in base.

Erik

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


Re: Bizzare routing table entry.

2007-08-07 Thread Josh Carroll
> root# route delete 0&0xc0a80132
>
>   [1] 37343
>   route: writing to routing socket: No such process
>   delete net 0: not in table
>   0xc0a80132: Command not found.
>   [1]  + Exit 1route delete 0

> root# route delete 0&0xc0a80132
>
>   [1] 37343
>   route: writing to routing socket: No such process
>   delete net 0: not in table
>   0xc0a80132: Command not found.
>   [1]  + Exit 1route delete 0

I've no idea whether that is a valid route or not, but the reason
you're getting that funkiness is that the shell is eating the & and
thinks you are sending the route process to the background. Try:

route delete '0&0xc0a80132'

And see if it lets you remove the entry.

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


Bizzare routing table entry.

2007-08-07 Thread Modulok
I have a bizarre entry in the routing table on one my machines. What
is it, and how do I delete it? The output of "netstat -rnf inet" is
shown below:

  DestinationGatewayFlagsRefs  Use  Netif Expire
  0&0xc0a80132   link#1 UCS 00   bge0
  127.0.0.1  127.0.0.1  UH  0  557lo0
  ...

QUESTIONS
1. The first entry, it's not IPv4, IPv6 or a MAC address that I've
ever seen, what format is it?
2. How do I delete it? According to route(8) it is not a "valid
address" and when I attempt to delete it, route(8) gets very upset:

root# route delete 0&0xc0a80132

  [1] 37343
  route: writing to routing socket: No such process
  delete net 0: not in table
  0xc0a80132: Command not found.
  [1]  + Exit 1route delete 0

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


Re: pkg_add -r from 6-stable instead of 6.2-release

2007-08-07 Thread Steve Franks
I think I was missing the '/latest'.  Thanks for the example.
Sometimes that's key.

Steve

On 8/7/07, Jonathan Horne <[EMAIL PROTECTED]> wrote:
> On Tuesday 07 August 2007 12:39:36 Kris Kennaway wrote:
> > On Tue, Aug 07, 2007 at 10:15:11AM -0700, Steve Franks wrote:
> > > occasionally I feel like a total idiot asking a really dumb question,
> > > but I'm pretty much out of ideas and I've wasted hours messing with
> > > PKGROOT, changing the 'options' in sysinstall, and I can't seem to get
> > > things I can see right in 6-stable.  I'd just fetch it myself, but it
> > > has about 100 dependancies...
> >
> > See pkg_add(1).  PACKAGESITE is probably what you want.
> >
> > Kris
>
> ive used PACKAGESITE recently as well, i used it like this:
>
> setenv PACKAGESITE
> ftp://ftp.ussg.iu.edu/pub/FreeBSD/ports/i386/packages-6-stable/Latest/
>
> you have to specify it as far as the directory you want it to pull the files
> from.  ../All/ would also be acceptable.
>
> now that im about to click send, i actually cant recall if i specified the
> trailing slash or not... so be prepared to reset and try again.
>
> good luck,
> --
> Jonathan Horne
> http://dfwlpiki.dfwlp.org
> [EMAIL PROTECTED]
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>


-- 
Steve Franks, KE7BTE
Staff Engineer
La Palma Devices, LLC
http://www.lapalmadevices.com
(520) 312-0089
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: pkg_add -r from 6-stable instead of 6.2-release

2007-08-07 Thread Jonathan Horne
On Tuesday 07 August 2007 12:39:36 Kris Kennaway wrote:
> On Tue, Aug 07, 2007 at 10:15:11AM -0700, Steve Franks wrote:
> > occasionally I feel like a total idiot asking a really dumb question,
> > but I'm pretty much out of ideas and I've wasted hours messing with
> > PKGROOT, changing the 'options' in sysinstall, and I can't seem to get
> > things I can see right in 6-stable.  I'd just fetch it myself, but it
> > has about 100 dependancies...
>
> See pkg_add(1).  PACKAGESITE is probably what you want.
>
> Kris

ive used PACKAGESITE recently as well, i used it like this:

setenv PACKAGESITE 
ftp://ftp.ussg.iu.edu/pub/FreeBSD/ports/i386/packages-6-stable/Latest/

you have to specify it as far as the directory you want it to pull the files 
from.  ../All/ would also be acceptable.

now that im about to click send, i actually cant recall if i specified the 
trailing slash or not... so be prepared to reset and try again.

good luck,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Demo: System i Modernization--Rational Business Developer

2007-08-07 Thread Internet.com Tech Alerts
___

This mail is never sent unsolicited. This is a JupiterOnlineMedia mailing.
You elected to receive this third party message at a JupiterOnlineMedia site.
(Go to
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,8r8l,gc2o,diyr,1w0d 
for a complete listing). 
DevX, EarthWeb, Graphics.com and internet.com are JupiterOnlineMedia networks. 
___


Access Developer Tools and Resources:

** Whitepaper: Securing Your Software-How to Choose the Right Copy Protection 
Tool for
Your Business
Sponsored by Nalpeiron
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,8dxi,h0qq,diyr,1w0d

** Demo: System i Modernization--Rational Business Developer
Sponsored by IBM
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,e2ev,9yz5,diyr,1w0d

** Whitepaper: Realizing Continuous Performance Management Best Practices 
Documentation
Sponsored by Quest Software
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,hn9c,epdf,diyr,1w0d

** Whitepaper: Elementool Bug Tracking Helps Ensure Issues Get Resolved, Not 
Lost
Sponsored by Elementool
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,4q0d,hvke,diyr,1w0d

** eBook: Achieve Superior Real-Time Performance with SUSE Linux
Sponsored by Novell
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,ivcn,ednk,diyr,1w0d

** Whitepaper: VoiceXML and the Future of Services Oriented Architectures
Sponsored by Avaya
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,2y68,hy5a,diyr,1w0d

** On-demand Webcast: Unleashing Web 2.0 with DB2
Sponsored by IBM
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,84bj,5489,diyr,1w0d

** Download: Generate .NET Web Apps Straight From Your Database
Sponsored by Iron Speed
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,ab9n,8b1i,diyr,1w0d
__

** Whitepaper: Securing Your Software-How to Choose the Right Copy Protection 
Tool for
Your Business
Sponsored by Nalpeiron
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,8dxi,h0qq,diyr,1w0d

Learn about the software copy-protection and anti-piracy business, how it 
works, what the
technology will do for you, and how to make the right choice for your business. 
See how
copy protection affects your customers, what could happen to your reputation if 
you don't
have it, and then explore the choices you have today. Plus, get a list of the 
top ten
questions to ask all copy protection vendors and a features checklist to use 
before you
make a purchase. This easy-to-understand guide cuts through the smoke and 
mirrors so you
can make an informed decision. Download your free 16-page guide now.
__

** Demo: System i Modernization--Rational Business Developer
Sponsored by IBM
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,e2ev,9yz5,diyr,1w0d

This demonstration shows you how to quickly create a fully-functional Web 
application,
which includes a log-in page with database lookup and validation, retrieval and 
display
of a list of employees, and the ability to manage the detail information for 
each
employee. All this can be done with a minimal amount of manual coding, thanks 
to the
power of Enterprise Generation Language (EGL).
__

** Whitepaper: Realizing Continuous Performance Management Best Practices 
Documentation
Sponsored by Quest Software
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,hn9c,epdf,diyr,1w0d

Organizations can avoid many code problems in production through continuous 
performance
management in development.  By proactively implementing best practices, 
applications will
operate seamlessly. Daily, repeated unit testing and  integration analysis can 
ensure
stability when the application is in staging. The result is dramatic 
cost-efficiency  and
reliability in developing applications. Learn best practices for testing 
applications in
development, and find  out how to put a plan into action.
__

** Whitepaper: Elementool Bug Tracking Helps Ensure Issues Get Resolved, Not 
Lost
Sponsored by Elementool
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,4q0d,hvke,diyr,1w0d

Here's a test: Can you list all the issues your software team is working on 
now? Can you
sort them by severity, priority, features affected, and other criteria such as 
whether
the issue is a bug, customer request, or product enhancement? Can you show the 
histories
of all related comments and actions? Can you distribute this information easily 
to
concerned individuals - showing only the information relevant to them? Learn 
how in this
whitepaper!
__

** eBook: Achieve Superior Real-Time Performance with SUSE Linux
Sponsored by Novell
http://nl.internet.com/ct.html?rtr=on&s=1,3d8t,1,ivcn,ednk,diyr,1w0

Re: pkg_add -r from 6-stable instead of 6.2-release

2007-08-07 Thread Kris Kennaway
On Tue, Aug 07, 2007 at 10:15:11AM -0700, Steve Franks wrote:
> occasionally I feel like a total idiot asking a really dumb question,
> but I'm pretty much out of ideas and I've wasted hours messing with
> PKGROOT, changing the 'options' in sysinstall, and I can't seem to get
> things I can see right in 6-stable.  I'd just fetch it myself, but it
> has about 100 dependancies...

See pkg_add(1).  PACKAGESITE is probably what you want.

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


Re: restart network without shutdown

2007-08-07 Thread Eric Crist

On Aug 7, 2007, at 12:11 PMAug 7, 2007, Rakhesh Sasidharan wrote:



Eric Crist wrote:


Install screen from ports, run it from within screen.

You'll still get disconnected, but you should be able to reconnect  
after it's done.  Screen will allow the script to complete,  
whereas your ssh session is killing it half/part way through...


HTH



Just curious -- how come screen works in such situations? I  
recollect someone else too recommending screen a few days ago  
(instead of "watch" to connect to another terminal) coz it doesn't  
get cut. The SSH session in which screen runs gets disconnected,  
but screen still works ... useful!




Screen can detach and run in the background.  Processes which start  
from within screen don't get killed, because, screen, the parent  
process, is still running.  The reason the script dies when you get d/ 
c'd is that your shell, the parent process, has died.


HTH

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


Re: Waiting for BIND security announcement

2007-08-07 Thread Rakhesh Sasidharan


Just bumping this question of mine. I tried a "freebsd-update fetch" just 
now, but I still have no updates! And my system is still on 
6.2-RELEASE-p4. Is that normal or should I be concerned?


$ freebsd-update fetch
Looking up update.FreeBSD.org mirrors... 1 mirrors found.
Fetching metadata signature from update1.FreeBSD.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 6.2-RELEASE-p7.

$ uname -a
FreeBSD obelix.home.rakhesh.com 6.2-RELEASE-p4 FreeBSD 6.2-RELEASE-p4 #0: 
Thu Apr 26 17:40:53 UTC 2007 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386



Rakhesh Sasidharan wrote:



On Wed, 1 Aug 2007, Josh Carroll wrote:


You need wait no longer...the security advisory just went out with a patch:

http://security.freebsd.org/advisories/FreeBSD-SA-07:07.bind.asc


I'm on FreeBSD 6.2-RELEASE-p4. If I do a freebsd-update shouldn't I get this? 
Or will there be a delay coz binary patches have to be prepared for 
freebsd-update?


# freebsd-update fetch
Looking up update.FreeBSD.org mirrors... 1 mirrors found.
Fetching metadata signature from update1.FreeBSD.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 6.2-RELEASE-p7.

Regards,
Rakhesh

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


pkg_add -r from 6-stable instead of 6.2-release

2007-08-07 Thread Steve Franks
occasionally I feel like a total idiot asking a really dumb question,
but I'm pretty much out of ideas and I've wasted hours messing with
PKGROOT, changing the 'options' in sysinstall, and I can't seem to get
things I can see right in 6-stable.  I'd just fetch it myself, but it
has about 100 dependancies...

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


Re: restart network without shutdown

2007-08-07 Thread Rakhesh Sasidharan


Eric Crist wrote:


Install screen from ports, run it from within screen.

You'll still get disconnected, but you should be able to reconnect after it's 
done.  Screen will allow the script to complete, whereas your ssh session is 
killing it half/part way through...


HTH



Just curious -- how come screen works in such situations? I recollect 
someone else too recommending screen a few days ago (instead of "watch" to 
connect to another terminal) coz it doesn't get cut. The SSH session in 
which screen runs gets disconnected, but screen still works ... useful!


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


Re: Policy - based Routing problem Need help

2007-08-07 Thread Julian Elischer

Narek Gharibyan wrote:

Thank you very much,

Relaying on your help reach to success but rules differ from yours a little
bit. My working rules listed below:

ipfw add fwd A all from ${inet1}:${imask1} to any out recv ${iif1}
ipfw add fwd B all from ${inet}:${imask} to any out recv ${iif}


the following two rules shouldnto be needed if your routes are correct.


ipfw add fwd G all from any to ${inet1}:${imask1} out via ${iif1}
ipfw add fwd H all from any to ${inet}:${imask} out via ${iif}



I don't know what onet is..

ipfw add fwd A all from ${onet1}:${omask1} to any out
ipfw add fwd B all from ${onet}:${omask} to any out
ipfw add fwd A all from ${inet1}:${imask1} to any out
ipfw add fwd B all from ${inet}:${imask} to any out


The only problem last is when someone (from provider A) try to access ftp
server via B it connects but didn't do "Get Directory" command. Ipfw doesn't
matter I checked. I think it is specification of ftp- data 20 port
(connection opening problem). Can you describe me how it take place via 20
port or find the wrong line in ipfw fwd rules?


ftp is a problem as it negotiates new ports for data.
That is why people use Passive mode FTP.  it doesn't do that.



Best regards,
Narek
 


-Original Message-
From: Julian Elischer [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 30, 2007 2:02 AM

To: Narek Gharibyan
Subject: Re: Policy - based Routing problem Need help

Narek Gharibyan wrote:

Yes your written rules are correct, You think exactly
I want to do ALSO

1. Packets coming from ISP-B (B network)into C SHOULD go out only via xx0
(as they came)


# make sure WE can talk to the back nets
# and ourself
ipfw add 1 allow ip from any to any via lo0

ipfw add 2 allow ip from me to G
ipfw add 3 allow ip from me to H
# the next 2 rules are not actually needed as any packets 
# going to G and H will go the right way anyhow.

# ipfw add 4 fwd (G) ip from any to G out recv xx0
# ipfw add 5 fwd (H) ip from any to H out recv xx1

# The next rules ARE needed.
ipfw add 6 fwd (A) ip from G to any out recv yy0
ipfw add 7 fwd (B) ip from H to any out recv yy1
ipfw add 8 fwd (A) ip from (C) to any out
ipfw add 9 fwd (B) ip from (D) to any out



2. Packets coming from ISP-A (A network) into D Should go out only via xx1
(as they came)

Saying by another words packets should leave my network via interface they
came. 


3. Packets coming from E should go out via xx0
4. Packets coming from F should go out via xx1

Also I try from inside to forward packets without default gateway using

via

A or B with the commands

Ipfw add fwd A all from G to any xmit (or via) xx0 


and it didn't work, I've compiled my kernel with IPFIREWALL,
IPFIREWALL_FORWARD, and set net.inet.ip.forwarding=1 in sysctl.conf.

Surely

I will try your configuration on Monday, but it seems ipfw fwd nothing do
forwarding. So how to write for reaching the results (1.,2.,3.,4.)?

Regards,
Narek

-Original Message-
From: Julian Elischer [mailto:[EMAIL PROTECTED] 
Sent: Sunday, July 29, 2007 1:49 PM

To: Narek Gharibyan
Subject: Re: Policy - based Routing problem Need help

Narek Gharibyan wrote:

The right drawing is that one below

   ___  ___
-[ISP-A](A)(C)[xx0 yy0](E)--(G)[NAT]
  [ FBSD  ][   Windows ](X)-LAN
-[ISP-B](B)(D)[xx1 yy1](F)--(H)[NAT]
~~~  ~~~

We can't use only FreeBSD box, we need also use Windows box, due to our
company's policy. So you suggestion is not an option. I think we need a
different solution.

ok.

now that we have established the exact layout,
what is it exactly that you want to do?

I gather that you want packets that come into D to go out of F
and packets that come in through C should go out via E

this is achieved by:
ipfw add 1 fwd (G) ip from any to G out recv xx0
ipfw add 2 fwd (H) ip from any to H out recv xx1

what else do  you wish it to do?


Regards,
Narek



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


Re: How to use the rum(4) driver in 6.2?

2007-08-07 Thread Simon Ironside

Simon Ironside wrote:


How can I use the rum driver in 6.3-RELEASE?


Oops, I of course meant 6.2-RELEASE.

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


Re: Waiting for BIND security announcement

2007-08-07 Thread Alex Zbyslaw

Jeffrey Goldberg wrote:

  But since I'm masochistic, I figure that I should  inflict problems 
on myself like remembering to update the serial  numbers myself.  (Big 
shouting reminder comments at both ends of the  zone files seem to do 
the trick)


emacs zone-mode will do it automatically for you.  Still helps to have 
the reminders for the times you don't use emacs :-)


--Alex

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


How to use the rum(4) driver in 6.3?

2007-08-07 Thread Simon Ironside

Hi all,

How can I use the rum driver in 6.3-RELEASE?
The online man pages show that the driver is available in 7.

Every USB 802.11g adapter I've bought on eBay so far has been one of 
these instead of the ural supported device I've been looking for!


Thanks,
Simon

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


Re: FreeBSD as host OS for VMware

2007-08-07 Thread Maxim Khitrov
On 8/7/07, Marko Kobal <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Many of us would like to see FreeBSD as host OS for VMware. If there would be 
> enough of us to push onto VMware company, maybe someday this could actualy 
> happen. Check out (and give your vote) here:
>
> http://www.vmware.com/community/thread.jspa?threadID=10322

Sadly I think that a lot of the VM products are ignoring FreeBSD. I
don't think VMWare is at all interested in supporting this OS. There
is a similar thread over on Parallels forums. People keep asking and
keep getting ignored. I have no idea why.

I'm still waiting for the day when I can run FreeBSD as my main
desktop OS, and have a virtual machine with Win XP and 3D acceleration
for gaming. Don't like dual-boot setups, but I don't see any progress
being made for the VM solution.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Policy - based Routing problem Need help

2007-08-07 Thread Narek Gharibyan
Thank you very much,

Relaying on your help reach to success but rules differ from yours a little
bit. My working rules listed below:

ipfw add fwd A all from ${inet1}:${imask1} to any out recv ${iif1}
ipfw add fwd B all from ${inet}:${imask} to any out recv ${iif}
ipfw add fwd G all from any to ${inet1}:${imask1} out via ${iif1}
ipfw add fwd H all from any to ${inet}:${imask} out via ${iif}
ipfw add fwd A all from ${onet1}:${omask1} to any out
ipfw add fwd B all from ${onet}:${omask} to any out
ipfw add fwd A all from ${inet1}:${imask1} to any out
ipfw add fwd B all from ${inet}:${imask} to any out


The only problem last is when someone (from provider A) try to access ftp
server via B it connects but didn't do "Get Directory" command. Ipfw doesn't
matter I checked. I think it is specification of ftp- data 20 port
(connection opening problem). Can you describe me how it take place via 20
port or find the wrong line in ipfw fwd rules?

Best regards,
Narek
 

-Original Message-
From: Julian Elischer [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 30, 2007 2:02 AM
To: Narek Gharibyan
Subject: Re: Policy - based Routing problem Need help

Narek Gharibyan wrote:
> Yes your written rules are correct, You think exactly
> I want to do ALSO
> 
> 1. Packets coming from ISP-B (B network)into C SHOULD go out only via xx0
> (as they came)

# make sure WE can talk to the back nets
# and ourself
ipfw add 1 allow ip from any to any via lo0

ipfw add 2 allow ip from me to G
ipfw add 3 allow ip from me to H
# the next 2 rules are not actually needed as any packets 
# going to G and H will go the right way anyhow.
# ipfw add 4 fwd (G) ip from any to G out recv xx0
# ipfw add 5 fwd (H) ip from any to H out recv xx1

# The next rules ARE needed.
ipfw add 6 fwd (A) ip from G to any out recv yy0
ipfw add 7 fwd (B) ip from H to any out recv yy1
ipfw add 8 fwd (A) ip from (C) to any out
ipfw add 9 fwd (B) ip from (D) to any out


> 2. Packets coming from ISP-A (A network) into D Should go out only via xx1
> (as they came)
> 
> Saying by another words packets should leave my network via interface they
> came. 
> 
> 3. Packets coming from E should go out via xx0
> 4. Packets coming from F should go out via xx1
> 
> Also I try from inside to forward packets without default gateway using
via
> A or B with the commands
> 
> Ipfw add fwd A all from G to any xmit (or via) xx0 
> 
> and it didn't work, I've compiled my kernel with IPFIREWALL,
> IPFIREWALL_FORWARD, and set net.inet.ip.forwarding=1 in sysctl.conf.
Surely
> I will try your configuration on Monday, but it seems ipfw fwd nothing do
> forwarding. So how to write for reaching the results (1.,2.,3.,4.)?
> 
> Regards,
> Narek
> 
> -Original Message-
> From: Julian Elischer [mailto:[EMAIL PROTECTED] 
> Sent: Sunday, July 29, 2007 1:49 PM
> To: Narek Gharibyan
> Subject: Re: Policy - based Routing problem Need help
> 
> Narek Gharibyan wrote:
>> The right drawing is that one below
>>
>>___  ___
>> -[ISP-A](A)(C)[xx0 yy0](E)--(G)[NAT]
>>   [ FBSD  ][   Windows ](X)-LAN
>> -[ISP-B](B)(D)[xx1 yy1](F)--(H)[NAT]
>> ~~~  ~~~
>>
>> We can't use only FreeBSD box, we need also use Windows box, due to our
>> company's policy. So you suggestion is not an option. I think we need a
>> different solution.
> 
> ok.
> 
> now that we have established the exact layout,
> what is it exactly that you want to do?
> 
> I gather that you want packets that come into D to go out of F
> and packets that come in through C should go out via E
> 
> this is achieved by:
> ipfw add 1 fwd (G) ip from any to G out recv xx0
> ipfw add 2 fwd (H) ip from any to H out recv xx1
> 
> what else do  you wish it to do?
> 
>> Regards,
>> Narek
>>

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


using geom_vinum

2007-08-07 Thread Wojciech Puchar
is someone here actually using it in production on FreeBSD/amd64 (or 
i386).


it will be very useful for me (+jails i use), but i must be sure it will 
be usable in the long run.


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


FreeBSD as host OS for VMware

2007-08-07 Thread Marko Kobal

Hi,

Many of us would like to see FreeBSD as host OS for VMware. If there would be 
enough of us to push onto VMware company, maybe someday this could actualy 
happen. Check out (and give your vote) here:

http://www.vmware.com/community/thread.jspa?threadID=10322 



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


Re: restart network without shutdown

2007-08-07 Thread Eric Crist

Install screen from ports, run it from within screen.

You'll still get disconnected, but you should be able to reconnect  
after it's done.  Screen will allow the script to complete, whereas  
your ssh session is killing it half/part way through...


HTH

Eric Crist


On Aug 7, 2007, at 10:19 AMAug 7, 2007, Narek Gharibyan wrote:


I think the best way is

/etc/netstart

but when you try it via ssh connection it outputs an fatal error  
and your

ssh hangs up. You cannot connect again via ssh.

But you can do it via console and everything will ok.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Xihong Yin
Sent: Tuesday, August 07, 2007 6:02 PM
To: freebsd-questions@freebsd.org
Subject: restart network without shutdown

How can I restart my network card without shutdown/reboot? I use DHCP.

Thanks,

--
Get a free email address with REAL anti-spam protection.
http://www.bluebottle.com/tag/1

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


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


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


Re: restart network without shutdown

2007-08-07 Thread Mohd Ghalib Akhtar
/etc/rc.d/init.d/network restart
 
Take care
Mohd.Ghalib Akhtar
(India.M)9899868681
(Africa.M) +255787896861 










- Original Message 
From: Narek Gharibyan <[EMAIL PROTECTED]>
To: Xihong Yin <[EMAIL PROTECTED]>
Cc: freebsd-questions@freebsd.org
Sent: Tuesday, August 7, 2007 6:19:09 PM
Subject: RE: restart network without shutdown


I think the best way is 

/etc/netstart 

but when you try it via ssh connection it outputs an fatal error and your
ssh hangs up. You cannot connect again via ssh.

But you can do it via console and everything will ok. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Xihong Yin
Sent: Tuesday, August 07, 2007 6:02 PM
To: freebsd-questions@freebsd.org
Subject: restart network without shutdown

How can I restart my network card without shutdown/reboot? I use DHCP.

Thanks,

--
Get a free email address with REAL anti-spam protection.
http://www.bluebottle.com/tag/1

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

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


  

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


RE: restart network without shutdown

2007-08-07 Thread Narek Gharibyan
I think the best way is 

/etc/netstart 

but when you try it via ssh connection it outputs an fatal error and your
ssh hangs up. You cannot connect again via ssh.

But you can do it via console and everything will ok. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Xihong Yin
Sent: Tuesday, August 07, 2007 6:02 PM
To: freebsd-questions@freebsd.org
Subject: restart network without shutdown

How can I restart my network card without shutdown/reboot? I use DHCP.

Thanks,

--
Get a free email address with REAL anti-spam protection.
http://www.bluebottle.com/tag/1

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

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


Re: restart network without shutdown

2007-08-07 Thread Doug Poland

Xihong Yin wrote:

How can I restart my network card without shutdown/reboot? I use DHCP.


try /etc/rc.d/netif restart

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


Re: www.freebsd.org down?

2007-08-07 Thread Dimiter Ivanov
On 8/7/07, Bob Middaugh <[EMAIL PROTECTED]> wrote:
> I can get to www.freebsd.org, but not http://www4.us.freebsd.org/ (USA/2) or 
> http://www2.us.freebsd.org/ (USA/1) and http://www5.us.freebsd.org/ (USA/3) 
> gives me: It works!
>
> Bob
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>

Same here for the URLs u gave.
The "It works!" is the starting page for apache22 i think..
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www.freebsd.org down?

2007-08-07 Thread Gaye Abdoulaye Walsimou

I have the following error now, when I try to search a port
in http://www.freebsd.org/ports/

Regards



 Proxy Error

The proxy server received an invalid response from an upstream server.

The proxy server could not handle the request /GET /cgi/ports.cgi 
/.


Reason: *Could not connect to remote machine: Connection refused*

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


Re: www.freebsd.org down?

2007-08-07 Thread Bob Middaugh
I can get to www.freebsd.org, but not http://www4.us.freebsd.org/ (USA/2) or 
http://www2.us.freebsd.org/ (USA/1) and http://www5.us.freebsd.org/ (USA/3) 
gives me: It works!

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


Re: www.freebsd.org down?

2007-08-07 Thread Gaye Abdoulaye Walsimou

It works fine for me now (from France).
regards
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: www.freebsd.org down?

2007-08-07 Thread Jean-Paul Natola
NYC here


Try it by IP http://69.147.83.33/


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Hakan K
Sent: Tuesday, August 07, 2007 9:10 AM
To: Arend P. van der Veen
Cc: Heiko Wundram (Beenic); FreeBSD Questions
Subject: Re: www.freebsd.org down?

Locations.. ?

I am located in Miami.. The site works ok ...

Try to play with your DNS  www.opendns.com





Hakan
http://primoris.com



On 8/7/07, Arend P. van der Veen <[EMAIL PROTECTED]> wrote:
>
> Heiko Wundram (Beenic) wrote:
> > Is anybody else experiencing www.freebsd.org to be down? I just wanted
> to have
> > a look at the online handbook, but couldn't get at it...
> >
> I have not been able to access www.freebsd.org all morning also.
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
> [EMAIL PROTECTED]"
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www.freebsd.org down?

2007-08-07 Thread Hakan K
Locations.. ?

I am located in Miami.. The site works ok ...

Try to play with your DNS  www.opendns.com





Hakan
http://primoris.com



On 8/7/07, Arend P. van der Veen <[EMAIL PROTECTED]> wrote:
>
> Heiko Wundram (Beenic) wrote:
> > Is anybody else experiencing www.freebsd.org to be down? I just wanted
> to have
> > a look at the online handbook, but couldn't get at it...
> >
> I have not been able to access www.freebsd.org all morning also.
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
> [EMAIL PROTECTED]"
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www.freebsd.org down?

2007-08-07 Thread Hakan K
Nop, Pretty fast also .. :)





Hakan
http://primoris.com

On 8/7/07, Heiko Wundram (Beenic) <[EMAIL PROTECTED]> wrote:
>
> Is anybody else experiencing www.freebsd.org to be down? I just wanted to
> have
> a look at the online handbook, but couldn't get at it...
>
> --
> Heiko Wundram
> Product & Application Development
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "
> [EMAIL PROTECTED]"
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www.freebsd.org down?

2007-08-07 Thread Heiko Wundram (Beenic)
Am Dienstag 07 August 2007 15:00:09 schrieb Heiko Wundram (Beenic):
> Is anybody else experiencing www.freebsd.org to be down? I just wanted to
> have a look at the online handbook, but couldn't get at it...

Forget this. It's back up for me.

-- 
Heiko Wundram
Product & Application Development
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www.freebsd.org down?

2007-08-07 Thread Arend P. van der Veen

Heiko Wundram (Beenic) wrote:
Is anybody else experiencing www.freebsd.org to be down? I just wanted to have 
a look at the online handbook, but couldn't get at it...



I have not been able to access www.freebsd.org all morning also.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: www.freebsd.org down?

2007-08-07 Thread Jean-Paul Natola
Working perfectly here

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gaye Abdoulaye
Walsimou
Sent: Tuesday, August 07, 2007 9:03 AM
To: freebsd-questions@freebsd.org
Subject: Re: www.freebsd.org down?

Heiko Wundram (Beenic) a écrit :
> Is anybody else experiencing www.freebsd.org to be down? I just wanted to
have 
> a look at the online handbook, but couldn't get at it...
>
>   
Yes it is I think
regards
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www.freebsd.org down?

2007-08-07 Thread Gaye Abdoulaye Walsimou

Heiko Wundram (Beenic) a écrit :
Is anybody else experiencing www.freebsd.org to be down? I just wanted to have 
a look at the online handbook, but couldn't get at it...


  

Yes it is I think
regards
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


restart network without shutdown

2007-08-07 Thread Xihong Yin
How can I restart my network card without shutdown/reboot? I use DHCP.

Thanks,

--
Get a free email address with REAL anti-spam protection.
http://www.bluebottle.com/tag/1

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


www.freebsd.org down?

2007-08-07 Thread Heiko Wundram (Beenic)
Is anybody else experiencing www.freebsd.org to be down? I just wanted to have 
a look at the online handbook, but couldn't get at it...

-- 
Heiko Wundram
Product & Application Development
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Frequency Stepping crashing Notebook

2007-08-07 Thread Subhro
Hello,

I am running FreeBSD 6-STABLE on my notebook which is a HP nc6400.
Everything was working fine till I enabled powerd to dynamiacally
manage the CPU frequency. Since then the system has been crashing with
3 mins of completing booting. There is not errors indicated in the
system log.

Is there any known issues?

Thanks
Subhro

-- 
Subhro Kar
Software Engineer
Dynamic Digital Technologies Pvt. Ltd.
EPY-3, Sector: V
Salt Lake City
700091
India
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Sudo clears the environment variable

2007-08-07 Thread Arend P. van der Veen

[EMAIL PROTECTED] wrote:

On 07/08/07, Olivier Nicole <[EMAIL PROTECTED]> wrote:

env_reset  now seems to be on by default. you could turn it off if you
need to or fiddle with the env_keep and env_check lists.

That's what I mean, how to turn it off.


I added the line

Defaults !env_reset

to sudoers.  You might want to put more
restrictions on it.


Hi,

After "# Defaults specification"

We added then line:

Defaults env_keep=*

Is this equivalent?

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


Re: Sudo clears the environment variable

2007-08-07 Thread [EMAIL PROTECTED]
On 07/08/07, Olivier Nicole <[EMAIL PROTECTED]> wrote:
> > env_reset  now seems to be on by default. you could turn it off if you
> > need to or fiddle with the env_keep and env_check lists.
>
> That's what I mean, how to turn it off.

I added the line

Defaults !env_reset

to sudoers.  You might want to put more
restrictions on it.

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


Re: dump -L

2007-08-07 Thread Wojciech Puchar

"expected next file 12345, got 23456"


I'm seeing this too. It's always exactly one inode per file system.


not one, sometimes even tens.

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


Re: dump -L

2007-08-07 Thread Wojciech Puchar


I always use "dump -L" to dump a live filesystem.
However, when I restore the dump, I sometimes get messages like
"foo.txt (inode 12345) not found on tape" or
"expected next file 12345, got 23456"


i had it too, sometimes even restore is unable to restore well -1-9 dumps 
:(




I thought this should _never_ happen when dumping a snapshot.

What is it?

Thanks in advance for any input.
I am ready to provide additional info if required to understand the
problem.

--
Victor Sudakov,  VAS4-RIPE, VAS47-RIPN
sip:[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



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


Re: Sudo clears the environment variable

2007-08-07 Thread Vince

Olivier Nicole wrote:

env_reset  now seems to be on by default. you could turn it off if you
need to or fiddle with the env_keep and env_check lists.


That's what I mean, how to turn it off.



Sorry,

a line like
Defaults!env_reset
in sudoers ought to do it or you can do it on a per user basis.
see /usr/local/share/doc/sudo/UPGRADE


Vince

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


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


Re: dump -L

2007-08-07 Thread [EMAIL PROTECTED]
On 07/08/07, Victor Sudakov <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> >
> > > > > > > Does nobody know the answer, or am I the only one experiencing the
> > > > > > > problem?
> > > > > >
> > > > > > I don't know the answer, but I get essentially the
> > > > > > same behaviour.  I have never seen any data loss,
> > > > >
> > > > > I gave an example below. The file "wins.dat" was not dumped. It is
> > > > > indeed missing from the tape.
> > > > >
> > > > > If this is not a data loss, what is it then?
> > > > >
> >
> > Not to perpetuate an argument for its own sake,
> > but I suppose I meant "data loss" to mean the loss
> > of files that _should_ exist, as opposed to files that
> > _could_ exist.  A fine line, but in my /laissez faire/
> > universe a quite salient one.
> >
> > As to whether wins.dat should exist is beyond me.
> > If you believe it should, then that would be data loss
>
> If it (or any other file) does exist in the filesystem, it should
> exist also in the backup. Otherwise we have a defective backup.

You are begging the question.

The functional definition of a live filesystem is one
in which you cannot guarantee the state to be
determineable across time.  Snapshots might make
it more likely, being faster, but they still have to work
in time*.  To put it another way: by the time any part
of the system knows the state of any part of the system,
it is wrong.

I would like to point out that I am not saying that
dump does not have a bug, but that this is not
evidence in and of itself for it.


*And no matter what anyone tells you, time is not
infinitely divisible.

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


Re: Sudo clears the environment variable

2007-08-07 Thread Vince
Olivier Nicole wrote:
> Hi,
> 
> On a new system that I am installing, I found out that the new version
> of sudo version 1.6.9p3 clears the environment variables.
> 
> It was not the case on previous version like version 1.6.8p12.
> 
> I tried to understand what is the configuration to perform like it was
> before, I tried to add the SETENV: tag like in
> 
> onALL=(ALL) SETENV: ALL

env_reset  now seems to be on by default. you could turn it off if you
need to or fiddle with the env_keep and env_check lists.

Vince
> 
> but it is not working?
> 
> Any clue?
> 
> Best regards,
> 
> Olivier
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"

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


Re: Sudo clears the environment variable

2007-08-07 Thread Olivier Nicole
> env_reset  now seems to be on by default. you could turn it off if you
> need to or fiddle with the env_keep and env_check lists.

That's what I mean, how to turn it off.

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


Sudo clears the environment variable

2007-08-07 Thread Olivier Nicole
Hi,

On a new system that I am installing, I found out that the new version
of sudo version 1.6.9p3 clears the environment variables.

It was not the case on previous version like version 1.6.8p12.

I tried to understand what is the configuration to perform like it was
before, I tried to add the SETENV: tag like in

on  ALL=(ALL) SETENV: ALL

but it is not working?

Any clue?

Best regards,

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


Re: dump -L

2007-08-07 Thread Victor Sudakov
[EMAIL PROTECTED] wrote:
> 
> > > > > > Does nobody know the answer, or am I the only one experiencing the
> > > > > > problem?
> > > > >
> > > > > I don't know the answer, but I get essentially the
> > > > > same behaviour.  I have never seen any data loss,
> > > >
> > > > I gave an example below. The file "wins.dat" was not dumped. It is
> > > > indeed missing from the tape.
> > > >
> > > > If this is not a data loss, what is it then?
> > > >
> 
> Not to perpetuate an argument for its own sake,
> but I suppose I meant "data loss" to mean the loss
> of files that _should_ exist, as opposed to files that
> _could_ exist.  A fine line, but in my /laissez faire/
> universe a quite salient one.
> 
> As to whether wins.dat should exist is beyond me.
> If you believe it should, then that would be data loss

If it (or any other file) does exist in the filesystem, it should
exist also in the backup. Otherwise we have a defective backup.


-- 
Victor Sudakov,  VAS4-RIPE, VAS47-RIPN
sip:[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: dump -L

2007-08-07 Thread [EMAIL PROTECTED]
On 06/08/07, Victor Sudakov <[EMAIL PROTECTED]> wrote:

> > > > > Does nobody know the answer, or am I the only one experiencing the
> > > > > problem?
> > > >
> > > > I don't know the answer, but I get essentially the
> > > > same behaviour.  I have never seen any data loss,
> > >
> > > I gave an example below. The file "wins.dat" was not dumped. It is
> > > indeed missing from the tape.
> > >
> > > If this is not a data loss, what is it then?
> > >

Not to perpetuate an argument for its own sake,
but I suppose I meant "data loss" to mean the loss
of files that _should_ exist, as opposed to files that
_could_ exist.  A fine line, but in my /laissez faire/
universe a quite salient one.

As to whether wins.dat should exist is beyond me.
If you believe it should, then that would be data loss
by my metric.  I apologise for any confusion,

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


Re: The best photo gallerie software?

2007-08-07 Thread Norberto Meijome
On Mon, 6 Aug 2007 13:31:33 -0400
"Hakan K" <[EMAIL PROTECTED]> wrote:


Gallery is nice, but if you plan to run it in a shared hosting environment, be 
careful because it uses extensive amount of system() calls - which, at least in 
my servers, are forbidden. Maybe they've changed that recently, but it was like 
that when I test it.

> http://coppermine-gallery.net/

CPG is really good - u can have different users,etc. worth the time learning 
how to set it up.

_
{Beto|Norberto|Numard} Meijome

"It's not what you do, it's the love you put into it."
   Mother Theresa.

I speak for myself, not my employer. Contents may be hot. Slippery when wet. 
Reading disclaimers makes you go blind. Writing them is worse. You have been 
Warned.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"