Re: installing ports xorg

2009-03-25 Thread Peter Koinange

Tim, 

Looks like perhaps your ports tree is bad, I suggest you install the full ports 
tree and try and build from source

k
- Tim Judd taj...@gmail.com wrote:

 On Sun, 2009-03-22 at 14:00 +0800, Fbsd1 wrote:
  Tim Judd wrote:
   I'm getting ZERO feedback when I install the xorg metaport,
 updated
   ports tree today.
   
   # cd /usr/ports/x11/xorg
   # make install
   # 
   
   
   
   So what am i missing?
   
   http://www.freebsd.org/doc/en/books/handbook/x-install.html
   tells me to install this port.
   
   
   I even deleted /var/db/pkg/* and /var/db/ports/* to try to hook it
 to
   install...  Retrying the above install every time.  Nothing
 works.
   
   What to do?
   
   
   Thanks
   
  it will take many many hours to compile. If you read more in
 handbook it 
  also says you can install the package version which should only take
 30 
  minutes.
  
  pkg_add -r xorg
  
 
 that doesn't answer my original question.  I'm not interested in your
 solution here, I want to build from source.
 
 And I can take the many hours, i'm setting up a machine before it's
 necessity and need to use it isn't now...
 
 
 Again, why doesn't the port install correctly?
 
 ___
 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-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: installing ports xorg - Unknown solution

2009-03-25 Thread Tim Judd
Heh,

there were too many factors as possible culprits in the system.

Glen Barber's command started to run, until I cancelled it when my
laptop battery died... :D

I'm not 100% sure what the problem was, but here's what I did...
. The PC has a msk ethernet device, which I wasn't 100% sold I'd use it,
. It's also behind a Linux-based firewall (corporate purchase) that ...
doesn't always want to work,
. I re-csup'd ports, it updated some stuff, but nothing in x11/
. I forgot it for the weekend, went into work, slapped it onto our other
network (which isn't behind the Linux firewall), and initiated an
install..  it started
. Keeping it on the other network, I finished xorg, then installed kde4
with repeated fetch timeouts on both installs.
. Remembered I had a broadcom ethernet card...  installed it.
. Finished installing everything, and is now my primary desktop at work.


So, either the bad csup, odd msk ethernet, or the (VERY fustrating)
Linux firewall was at fault.  Not sure what, but all is working now.

--Tim

___
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: installing ports xorg

2009-03-24 Thread Tim Judd
On Sun, 2009-03-22 at 14:00 +0800, Fbsd1 wrote:
 Tim Judd wrote:
  I'm getting ZERO feedback when I install the xorg metaport, updated
  ports tree today.
  
  # cd /usr/ports/x11/xorg
  # make install
  # 
  
  
  
  So what am i missing?
  
  http://www.freebsd.org/doc/en/books/handbook/x-install.html
  tells me to install this port.
  
  
  I even deleted /var/db/pkg/* and /var/db/ports/* to try to hook it to
  install...  Retrying the above install every time.  Nothing works.
  
  What to do?
  
  
  Thanks
  
 it will take many many hours to compile. If you read more in handbook it 
 also says you can install the package version which should only take 30 
 minutes.
 
 pkg_add -r xorg
 

that doesn't answer my original question.  I'm not interested in your
solution here, I want to build from source.

And I can take the many hours, i'm setting up a machine before it's
necessity and need to use it isn't now...


Again, why doesn't the port install correctly?

___
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: installing ports xorg

2009-03-23 Thread Mel Flynn
On Sunday 22 March 2009 07:04:14 Glen Barber wrote:
 On Sat, Mar 21, 2009 at 10:20 PM, Tim Judd taj...@gmail.com wrote:
  I'm getting ZERO feedback when I install the xorg metaport, updated
  ports tree today.
 
  # cd /usr/ports/x11/xorg
  # make install
  #
 
 
 
  So what am i missing?

 If xorg is already installed, you won't see any output.  This is
 expected behavior, as far as I can tell.

No. This is expected behavior if make -V INSTALL_COOKIE -C /usr/ports/x11/xorg 
exists, which can happen if:
1) You installed xorg on this machine and didn't make clean afterwards and now 
try the install again.
2) You have /usr/ports mounted via nfs or nullfs from another machine or the 
host system in a jail and have not set WRKDIRPREFIX. You installed xorg on 
this other machine or the host system and did not make clean.
3) You have WRKDIRPREFIX set and that directory is mounted via nfs/nullfs. 
Same applies as in 2)
4) You or some software ran:
   touch `make -V INSTALL_COOKIE -C /usr/ports/x11/xorg`
 
 What happens on 'make
 deinstall; make fetch-recursive; make install' ?

This can be bad as deinstall will only delete the install and package cookie. 
In other words, it will reuse the build and configure. If you were expecting 
to upgrade your port, then this has unexpected results, especially with meta 
ports.

In 90% of the case you will want to run make clean. Only if you want to reuse 
a build you've done (for jails or on other machine, with same architecture and 
OS version), you can use deinstall.

However, deinstall relies on /var/db/pkg, specifically if pkg_info cannot find 
the port, it will be assumed it's not installed. It will go ahead and install 
then, which can leave your installed ports with multiple versions of the same 
software.
-- 
Mel
___
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: installing ports xorg

2009-03-22 Thread Fbsd1

Tim Judd wrote:

I'm getting ZERO feedback when I install the xorg metaport, updated
ports tree today.

# cd /usr/ports/x11/xorg
# make install
# 




So what am i missing?

http://www.freebsd.org/doc/en/books/handbook/x-install.html
tells me to install this port.


I even deleted /var/db/pkg/* and /var/db/ports/* to try to hook it to
install...  Retrying the above install every time.  Nothing works.

What to do?


Thanks

___
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


it will take many many hours to compile. If you read more in handbook it 
also says you can install the package version which should only take 30 
minutes.


pkg_add -r xorg

___
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: installing ports xorg

2009-03-22 Thread Glen Barber
On Sat, Mar 21, 2009 at 10:20 PM, Tim Judd taj...@gmail.com wrote:
 I'm getting ZERO feedback when I install the xorg metaport, updated
 ports tree today.

 # cd /usr/ports/x11/xorg
 # make install
 #



 So what am i missing?


If xorg is already installed, you won't see any output.  This is
expected behavior, as far as I can tell.  What happens on 'make
deinstall; make fetch-recursive; make install' ?

 http://www.freebsd.org/doc/en/books/handbook/x-install.html
 tells me to install this port.


 I even deleted /var/db/pkg/* and /var/db/ports/* to try to hook it to
 install...  Retrying the above install every time.  Nothing works.

 What to do?



I have seen this behavior before, and resorted to removing all
packages and rebuilding.  (Probably not the solution you are after.)


-- 
Glen Barber
___
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: installing ports xorg

2009-03-22 Thread Boris Samorodov
Tim Judd taj...@gmail.com writes:

 I'm getting ZERO feedback when I install the xorg metaport, updated
 ports tree today.

 # cd /usr/ports/x11/xorg
 # make install
 # 

Seems that you miss a make clean stage.

 So what am i missing?

 http://www.freebsd.org/doc/en/books/handbook/x-install.html
 tells me to install this port.


 I even deleted /var/db/pkg/*

That's too bad if you don't have a backup, since you have lost all
information about installed ports.

 and /var/db/ports/* to try to hook it to
 install...  Retrying the above install every time.  Nothing works.

 What to do?


 Thanks

WBR
-- 
bsam
___
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


installing ports xorg

2009-03-21 Thread Tim Judd
I'm getting ZERO feedback when I install the xorg metaport, updated
ports tree today.

# cd /usr/ports/x11/xorg
# make install
# 



So what am i missing?

http://www.freebsd.org/doc/en/books/handbook/x-install.html
tells me to install this port.


I even deleted /var/db/pkg/* and /var/db/ports/* to try to hook it to
install...  Retrying the above install every time.  Nothing works.

What to do?


Thanks

___
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: weird permissions on directories when installing ports through sudo

2009-02-25 Thread Eric Schuele
On 02/19/2009 15:56, Aleksandr Miroslav wrote:
 For the longest time, I have installed ports via the sudo make install or
 sudo portupgrade or sudo portinstall method and never had a problem.

This seems to have jumped up and bitten me on the arse as well.  I
believe the problem lies herein:

http://www.freebsd.org/cgi/cvsweb.cgi/ports/security/sudo/distinfo?rev=1.61

It appears that sudo has been changed following a security issue.  I use
a more restrictive umask than the default.  I suspect you do as well.
The sudo change now implements a union of umasks, therefore never
lowering the umask of the person running sudo.

This had the effect of truly screwing up many installed ports for me (I
do the same as you `sudo portupgrade`).  I'm not blaming the fix... just
whining about it.

The fix for me was to deinstall and reinstall and problem ports using
root himself.

I suspect though you could fix it other ways by fiddling with your
usmask, and/or altering the sudo config files.

 
 
 Recently, as of a few weeks ago, I started noticing that ports that were
 installed or upgraded were getting the wrong permissions. Not only were
 directories getting permissions of 700 (whereas previously they had been
 755), but the directories /usr/local and entries in /var/db/pkg were getting
 permissions of 700.
 
 This is causing a lot of things to break, and I have to manually go in and
 make everything public for it to work again.
 
 This only happens when I build ports via sudo. If I am root and I run make
 install, everything works fine.

yeah.  Me too. :)

 
 I haven't changed anything recently either in sudo, or my umask.
 
 What can I do to fix this?
 ___
 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
 
 


-- 
Regards,
Eric




signature.asc
Description: OpenPGP digital signature


Re: weird permissions on directories when installing ports through sudo

2009-02-25 Thread Brian A. Seklecki

 lowering the umask of the person running sudo.
 
 This had the effect of truly screwing up many installed ports for me 

Maybe try sudo -H -u root [command]   NetBSD Pkgsrc is nice in this
respect because it has sudo(8) integration in the MKs. ~BAS


signature.asc
Description: This is a digitally signed message part


Re: weird permissions on directories when installing ports through sudo

2009-02-25 Thread Eric Schuele
On 02/25/2009 11:49, Brian A. Seklecki wrote:
 lowering the umask of the person running sudo.

 This had the effect of truly screwing up many installed ports for me 
 
 Maybe try sudo -H -u root [command]   NetBSD Pkgsrc is nice in this
 respect because it has sudo(8) integration in the MKs. ~BAS

I didn't think this would do much, but gave it a try anyway
And it doesn't help.  :/

The following command prior to the change resulted in root's umask being
displayed:
  sudo -H -u root umask

Whereas after the change in sudo I mentioned, the union of mine and
root's is presented.

I looked at the security issue mentioned in the commit log, and I'm not
sure this change was required in order to fix it.

Anyone have thoughts on why this change was made?  I'd argue POLA was
broken here.  But I don't keep up with sudo developments (aside from
using it).

-- 
Regards,
Eric




signature.asc
Description: OpenPGP digital signature


Re: weird permissions on directories when installing ports through sudo

2009-02-25 Thread Brian A. Seklecki

 I didn't think this would do much, but gave it a try anyway
 And it doesn't help.  :/

I think i meant '-i' -- but I'd have to look at the patch`s interaction.

I can't recreate the problem in the 1.6.x we're running in our internal
release engineering.

1.7.x, and its associated backport, created the local brouhaha with
groups credential crashing.  Perhaps next time a -dev extension of the
port should roll for a few months (6-9), especially given the history of
sudo releng.

~BAS




signature.asc
Description: This is a digitally signed message part


Re: Installing ports to /usr

2007-11-15 Thread Matt Fioravante
Well I was just comtemplating the idea of setting up a freebsd load at
my workplace. They already run linux and solaris and because of bad
decisions in the past, they mount their afs shares on /usr/local. So I
would have to install ports in /usr or some other prefix.

On Nov 14, 2007 2:38 PM, Lars Eighner [EMAIL PROTECTED] wrote:

 On Wed, 14 Nov 2007, Matt Fioravante wrote:

  Would there be any negative ramifications to installing ports in /usr
  instead of /usr/local? Like could they potentially clobber system
  binaries and other files or is this pretty safe to do?

 I know of a few name conflicts that can occur in certain circumstances (such
 as the system lpr and hplip lpr).  You may be lucky and avoid these.  It is
 also possible that some ports will not find one another or that wrong
 locations may be hard coded --- this should not happen, but there should not
 be any broken ports, unfetchable sources and so forth.

 Such an arrangement would require extreme vigilance, beyond what the ports
 management software can do (if they can be persuaded to work at all in such
 an environment).  I cannot think of a good reason to do what you want to do,
 but you ought to be very clear that somehow there is no other way and be
 prepared for the consequences.

 --
 Lars Eighner
 http://www.larseighner.com/index.html
 8800 N IH35 APT 1191 AUSTIN TX 78753-5266


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


Re: Installing ports to /usr

2007-11-15 Thread Robert Huff

Matt Fioravante writes:

  Well I was just comtemplating the idea of setting up a freebsd
  load at my workplace. They already run linux and solaris and
  because of bad decisions in the past, they mount their afs shares
  on /usr/local. So I would have to install ports in /usr or some
  other prefix.

Nobody's saying you can't put them somewhere else, only that
the specific location /usr (and by extension anywhere that already
has a function under hier) is a Really Bad Idea.



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


Re: Installing ports to /usr

2007-11-15 Thread Philip M. Gollucci
Matt Fioravante wrote:
 Well I was just comtemplating the idea of setting up a freebsd load at
 my workplace. They already run linux and solaris and because of bad
 decisions in the past, they mount their afs shares on /usr/local. So I
 would have to install ports in /usr or some other prefix.
Why repeat past mistakes :) ?

just make /usr and /usr/local on the freebsd box different partitions.
(otional)

Then mount it as
mount -t nfs feebsd-host:/usr/local /usr/local/freebsd

and add /usr/local/freebsd/{sbin,bin} to the $PATH


-- 

Philip M. Gollucci ([EMAIL PROTECTED])
o:703.549.2050x206
Senior System Admin - Riderway, Inc.
http://riderway.com / http://ridecharge.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.

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


Installing ports to /usr

2007-11-14 Thread Matt Fioravante
Would there be any negative ramifications to installing ports in /usr
instead of /usr/local? Like could they potentially clobber system
binaries and other files or is this pretty safe to do?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Installing ports to /usr

2007-11-14 Thread Jonathan Chen
On Wed, Nov 14, 2007 at 01:05:39PM -0500, Matt Fioravante wrote:
 Would there be any negative ramifications to installing ports in /usr
 instead of /usr/local? Like could they potentially clobber system
 binaries and other files or is this pretty safe to do?

It's not safe, for the reasons that you have specified.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
  Opportunities are seldom labeled
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Installing ports to /usr

2007-11-14 Thread Jerry McAllister
On Wed, Nov 14, 2007 at 01:05:39PM -0500, Matt Fioravante wrote:

 Would there be any negative ramifications to installing ports in /usr
 instead of /usr/local? Like could they potentially clobber system
 binaries and other files or is this pretty safe to do?

You break the 'standard' file/directory hierarchy.   Even though it is
not supposed to be so, there may be some things out there that make the
assumption that stuff will be found in its standard place.

See   man hier  

jerry

 ___
 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: Installing ports to /usr

2007-11-14 Thread Josh Carroll
 Would there be any negative ramifications to installing ports in /usr
 instead of /usr/local? Like could they potentially clobber system
 binaries and other files or is this pretty safe to do?

More importantly, why do you want/need to do this? I personally like
the separation of world and ports. It keeps things nice and tidy, and
that's I'm sure a major reason why it was done that way (obviously,
clobbering things in /usr is the main reason).

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


Re: Installing ports to /usr

2007-11-14 Thread Lars Eighner

On Wed, 14 Nov 2007, Matt Fioravante wrote:


Would there be any negative ramifications to installing ports in /usr
instead of /usr/local? Like could they potentially clobber system
binaries and other files or is this pretty safe to do?


I know of a few name conflicts that can occur in certain circumstances (such
as the system lpr and hplip lpr).  You may be lucky and avoid these.  It is
also possible that some ports will not find one another or that wrong
locations may be hard coded --- this should not happen, but there should not
be any broken ports, unfetchable sources and so forth.

Such an arrangement would require extreme vigilance, beyond what the ports
management software can do (if they can be persuaded to work at all in such
an environment).  I cannot think of a good reason to do what you want to do,
but you ought to be very clear that somehow there is no other way and be
prepared for the consequences.

--
Lars Eighner
http://www.larseighner.com/index.html
8800 N IH35 APT 1191 AUSTIN TX 78753-5266

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


Re: installing ports

2006-10-04 Thread Mbuthia Wangui
Hi Jeff,

Thanks for the suggestion and yes the bandwidth manager is an etinc
(ETR1800) box.

Let me see how the portsnap goes.

- Original Message -
From: Jeff Palmer [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Tuesday, October 03, 2006 9:08 PM
Subject: Re: installing ports


snipped out the original email


You may want to try using portsnap.


pkg_add -r portsnap

then
portsnap fetch extract


BTW:  This sounds like one of the etnic (sp?) bandwidth manager boxes.
Would that happen to be the case?


___
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: installing ports

2006-10-04 Thread Mbuthia Wangui
When I try to use portinstall, this is the error I get: 

ETR1800# pkg_add -r portsnap
Error: FTP Unable to get 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.9-release/Latest/portsnap.tgz:
 File unavailable (e.g., file not found, no access)
pkg_add: unable to fetch 
'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4.9-release/Latest/portsnap.tgz'
 by URL
ETR1800# 


Did I mention that I am a FreeBSD dummy.

Regards,

Phyllis

- Original Message - 
From: Mbuthia Wangui [EMAIL PROTECTED]
To: Jeff Palmer [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Wednesday, October 04, 2006 9:45 AM
Subject: Re: installing ports


 Hi Jeff,
 
 Thanks for the suggestion and yes the bandwidth manager is an etinc
 (ETR1800) box.
 
 Let me see how the portsnap goes.
 
 - Original Message -
 From: Jeff Palmer [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Cc: freebsd-questions@freebsd.org
 Sent: Tuesday, October 03, 2006 9:08 PM
 Subject: Re: installing ports
 
 
 snipped out the original email
 
 
 You may want to try using portsnap.
 
 
 pkg_add -r portsnap
 
 then
 portsnap fetch extract
 
 
 BTW:  This sounds like one of the etnic (sp?) bandwidth manager boxes.
 Would that happen to be the case?
 
 
 ___
 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]


installing ports

2006-10-03 Thread Mbuthia Wangui
I have a bandwidth manager running on FreeBSD 4.9 LOCAL. I want to install 
net-snmp so that traffic generated on the bwmger can be pointed to cacti (like 
mrtg). My problem is that I have gone through enough manuals to get assistance 
on which commands I should run to install the ports hierarchy. I have even 
tried using the cvsup utility but I get an error: Parsing supfile 
ports-supfile
Release not specified for collection host=cvsup.FreeBSD.org. It doesn't 
matter which host I use, the response is still the same.

Is there something I'm doing wrong or missing out. Will really appreciate 
prompt response. 

P.S. Can someone please recommend a FreeBSD book for dummies.

Thanks

Phyllis Mbuthia 
Assistant Network Engineer
Africa Online, Kenya
Tel: +254 (20) 243 775
Fax: +254 (20) 27 100 10
Email: [EMAIL PROTECTED]
AIM: Zytuni
 


Africa Online Disclaimer and Confidentiality Note 

This e-mail, its attachments and any rights attaching hereto are, unless the 
context clearly indicates otherwise, the property of Africa Online Holdings 
(Kenya) Limited and / or its subsidiaries (the Group). It is confidential and 
intended for the addressee only. Should you not be the addressee and have 
received this e-mail by mistake, kindly notify the sender, delete this e-mail 
immediately and do not disclose or use the same in any manner whatsoever. Views 
and opinions expressed in this e-mail are those of the sender unless clearly 
stated as those of the Group. The Group accepts no liability whatsoever for any 
loss or damages, however incurred, resulting from the use of this e-mail or its 
attachments. The Group does not warrant the integrity of this e-mail, nor that 
it is free of errors, viruses, interception or interference. For more 
information about Africa Online, please visit our website at 
http://www.africaonline.com 

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

Re: installing ports

2006-10-03 Thread Garrett Cooper

On Oct 3, 2006, at 5:51 AM, Mbuthia Wangui wrote:

I have a bandwidth manager running on FreeBSD 4.9 LOCAL. I want to  
install net-snmp so that traffic generated on the bwmger can be  
pointed to cacti (like mrtg). My problem is that I have gone  
through enough manuals to get assistance on which commands I should  
run to install the ports hierarchy. I have even tried using the  
cvsup utility but I get an error: Parsing supfile ports-supfile
Release not specified for collection host=cvsup.FreeBSD.org. It  
doesn't matter which host I use, the response is still the same.


Is there something I'm doing wrong or missing out. Will really  
appreciate prompt response.


P.S. Can someone please recommend a FreeBSD book for dummies.

Thanks

Phyllis Mbuthia
Assistant Network Engineer
Africa Online, Kenya
Tel: +254 (20) 243 775
Fax: +254 (20) 27 100 10
Email: [EMAIL PROTECTED]
AIM: Zytuni


Try something like this in your ports supfile:

*default release=cvs tag=.

Refer to /usr/share/examples/cvsup/ports-supfile for a valid ports  
supfile.

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


Re: installing ports

2006-10-03 Thread Bill Moran
In response to Mbuthia Wangui [EMAIL PROTECTED]:

 I have a bandwidth manager running on FreeBSD 4.9 LOCAL. I want to
 install net-snmp so that traffic generated on the bwmger can be pointed
 to cacti (like mrtg). My problem is that I have gone through enough
 manuals to get assistance on which commands I should run to install the
 ports hierarchy. I have even tried using the cvsup utility but I get an
 error: Parsing supfile ports-supfile
 Release not specified for collection host=cvsup.FreeBSD.org. It
 doesn't matter which host I use, the response is still the same.
 
 Is there something I'm doing wrong or missing out. Will really
 appreciate prompt response.

Please wrap your lines around 72 chars.

I checked my crystal ball but didn't see your supfile or a cut/paste of
the error message in it.  Since you didn't provide those either, I can
only make the wildest of guesses: Looks like you didn't specify a line
like:
*default release=cvs tag=.

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


Re: installing ports

2006-10-03 Thread Jeff Palmer
snipped out the original email


You may want to try using portsnap.


pkg_add -r portsnap

then
portsnap fetch extract


BTW:  This sounds like one of the etnic (sp?) bandwidth manager boxes.
Would that happen to be the case?


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


installing ports behind IPFILTER

2006-05-21 Thread Brett Wiggins
Hi everyone,
I am having some problems installing ports when I have 

IPFILTER running. I have put FTP_PASSIVE_MODE=YES in /etc/make.conf

but the command 'make all install clean' yields;

===  Vulnerability check disabled, database not found
= jce-aba-1.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
= Attempting to fetch from 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/znerd/.
fetch: 
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/znerd/jce-aba-1.1.tar.gz:
 Network is unreachable
*** Error code 1

This happens when I try to install ports or pakages. I have also tried

to install with tcp/ip ports 20,21 and 22 open but to no avail.

Could you please CC me if you can help, am not on the list due to

this mailbox being from a University. My IPFILTER is set to block by

default in my kernel, and I am running 6.1 RELEASE

Thanks,

Brett.

-- 
If you are new to UNIX, you may be used to clicking something and seeing 
either an OK message, an error, nothing, or (all too often) a pretty blue 
screen with nifty high-tech letters explaining exactly where the system 
crashed - Michael Lucas 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: installing ports behind IPFILTER

2006-05-21 Thread Duane Whitty

Brett Wiggins wrote:

Hi everyone,
I am having some problems installing ports when I have 


IPFILTER running. I have put FTP_PASSIVE_MODE=YES in /etc/make.conf
  

Try putting it in /etc/login.conf

/etc #grep PASSIVE *
login.conf: :setenv=MAIL=/var/mail/$,BLOCKSIZE=K,FTP_PASSIVE_MODE=YES:\

[snip]

Hope this helps


Duane Whitty
--
[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: installing ports behind IPFILTER

2006-05-21 Thread Mikhail Goriachev
Brett Wiggins wrote:
 Hi everyone,
 I am having some problems installing ports when I have 
 
 IPFILTER running. I have put FTP_PASSIVE_MODE=YES in /etc/make.conf
 
 but the command 'make all install clean' yields;
 
 ===  Vulnerability check disabled, database not found
 = jce-aba-1.1.tar.gz doesn't seem to exist in /usr/ports/distfiles/.
 = Attempting to fetch from 
 ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/znerd/.
 fetch: 
 ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/znerd/jce-aba-1.1.tar.gz:
  Network is unreachable
 *** Error code 1
 
 This happens when I try to install ports or pakages. I have also tried
 
 to install with tcp/ip ports 20,21 and 22 open but to no avail.
 
 Could you please CC me if you can help, am not on the list due to
 
 this mailbox being from a University. My IPFILTER is set to block by
 
 default in my kernel, and I am running 6.1 RELEASE



G'day,

Probably this is what you're after:

# Allow out gateway  LAN users non-secure FTP ( both passive  active
modes)
# This function uses the IPNAT built in FTP proxy function coded in
# the nat rules file to make this single rule function correctly.
# If you want to use the pkg_add command to install application packages
# on your gateway system you need this rule.
pass out quick on dc0 proto tcp from any to any port = 21 flags S keep state

That one is from:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-ipf.html


Cheers,
Mikhail.



-- 
Mikhail Goriachev
Webanoide

Telephone: +61 (0)3 62252501
Mobile Phone: +61 (0)4 38255158
E-Mail: [EMAIL PROTECTED]
Web: http://www.webanoide.org

PGP Key ID: 0x4E148A3B
PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


method for installing ports

2006-03-25 Thread Jonathan Horne
Ive read many many guides found all over the net in the past few days, and
they can never seem to agree on the way a port is installed.  I see these
methods:

Make install
Make install clean
Make install distclean

What is the difference between the 3, and are there legitimate times when
one is preferred over the other?

Thanks,
jonathan

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


Re: method for installing ports

2006-03-25 Thread Jason C. Wells

Jonathan Horne wrote:

Ive read many many guides found all over the net in the past few days, and
they can never seem to agree on the way a port is installed.  I see these
methods:

Make install
Make install clean
Make install distclean

What is the difference between the 3, and are there legitimate times when
one is preferred over the other?


Once you have run make with the 'install' target, you have your software 
installed.  You may safely use the software.


The 'clean' target removes the ./work subdirectory.  Some folks might 
keep that around for various reasons.  I like to keep the ./work subdir 
because I like to poke around in the port's config files and make files 
for things I can tweak.  Occasionally I run 'make clean' from /usr/src 
to clean EVERY port in the tree to get some disc space back.


The 'distclean' target deletes the downloaded distribution files for 
that port in /usr/ports/distfiles.  I rarely do this.


The choice is up to you.  None of the three targets listed is more 
correct than the other.


There are many possible targets one can use when running make.  For the 
ports collection, poke around in /usr/ports/Mk/bsd.port.mk to see what 
many interesting targets will do.  A make target starts at the beginning 
of a line in a makefile and in punctuated by a colon.


sometarget: optional-subtarget another-subtarget

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


Re: method for installing ports

2006-03-25 Thread Peter

--- Jonathan Horne [EMAIL PROTECTED] wrote:

 Ive read many many guides found all over the net in the past few
 days, and
 they can never seem to agree on the way a port is installed.  I see
 these
 methods:
 
 Make install

Installs a port and any needed build dependencies.

 Make install clean

Same as above but removes the uncompressed source code.

 Make install distclean

Same as above but removes the distribution files (the compressed
source code).  Do this if you will be building on some other
architecture
or if you will never use the source code again.

 What is the difference between the 3, and are there legitimate times
 when one is preferred over the other?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: method for installing ports

2006-03-25 Thread Jonathan Horne
Thanks to you both!  That defiantly clears it up, and explains some of the
behavior ive seen when I go back to redo something from ports ive already
done :)

Cheers,
jonathan

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Peter
Sent: Saturday, March 25, 2006 11:40 PM
To: Jonathan Horne; freebsd-questions@freebsd.org
Subject: Re: method for installing ports


--- Jonathan Horne [EMAIL PROTECTED] wrote:

 Ive read many many guides found all over the net in the past few
 days, and
 they can never seem to agree on the way a port is installed.  I see
 these
 methods:
 
 Make install

Installs a port and any needed build dependencies.

 Make install clean

Same as above but removes the uncompressed source code.

 Make install distclean

Same as above but removes the distribution files (the compressed
source code).  Do this if you will be building on some other
architecture
or if you will never use the source code again.

 What is the difference between the 3, and are there legitimate times
 when one is preferred over the other?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
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]


installing ports/permission denied

2005-07-03 Thread bruce baldy
as root I continually receive permission denied when attempting to veiw ports 
collection.When I try to install again it says cannot find.I try using commands 
in the handbook very few of which
are found by system.My version is 5.3 with total port collection(supposedly 
installed,the install
sreen showed many packages of files loading into machine ) I been into 
sysinstall on several
occasions,this not for quitters,I can tell.I open one xterm as usr and root or 
rather a few on
one virtual screen(only one virtual screen-dont need more,now).I have handbook 
on cd
running on other machine,how do I do connect to net to updte files?Am going to 
try to customize the kernel mod for vid driver etc,see if that remedies some 
things.


-
Yahoo! Sports
 Rekindle the Rivalries. Sign up for Fantasy Football
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


disappeared options dialog when installing ports

2005-05-11 Thread Carsten Fuchs
Hi,
I have a (simple) question about installing from the ports coll. The
1st time I issued `make install`in /usr/ports/www/firefox it showed a
configuration menu where I could select things like xfs. I disabled
this xfs option. Now if I want to install Firefox again it won't show
me this configuration dialog anymore. I tried `make deinstall` and
`make reinstall`- that wouldn't help. I even tried to delete the
firefox ports directory and did a cvsup - but that dialog didn't show
up. 
How can I set these installation options once I already installed a
port. Where are these options saved on the harddrive? Will I have to
run the configure script by hand?

I am quite new to FreeBSD, so if there's plenty of instructions
concerning my little problem, just give me a direction to search.

Thanks in advance!
Carsten.

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


Re: disappeared options dialog when installing ports

2005-05-11 Thread Giorgos Keramidas
On 2005-05-11 10:56, Carsten Fuchs [EMAIL PROTECTED] wrote:
 I have a (simple) question about installing from the ports coll. The
 1st time I issued `make install`in /usr/ports/www/firefox it showed a
 configuration menu where I could select things like xfs. I disabled
 this xfs option. Now if I want to install Firefox again it won't show
 me this configuration dialog anymore. I tried `make deinstall` and
 `make reinstall`- that wouldn't help. I even tried to delete the
 firefox ports directory and did a cvsup - but that dialog didn't show
 up.

These options are saved in /var/db/ports/XXX where XXX is the name of
the port (without a version number).  If you look on my own workstation
at work, this directory includes:

orion:/home/keramida$ ls -l /var/db/ports
total 36
drwxr-xr-x  2 root  wheel  - 512 Nov  4  2004 boehm-gc/
drwxr-xr-x  2 root  wheel  - 512 Oct  8  2004 firefox/
drwxr-xr-x  2 root  wheel  - 512 May 10 14:38 gaim/
drwxr-xr-x  2 root  wheel  - 512 Jul  6  2004 gettext/
drwxr-xr-x  2 root  wheel  - 512 Dec  6 15:57 gnuplot/
drwxr-xr-x  2 root  wheel  - 512 Jul 28  2004 libxml2/
drwxr-xr-x  2 root  wheel  - 512 Jul  6  2004 libxslt/
drwxr-xr-x  2 root  wheel  - 512 Jul  7  2004 mozilla/
drwxr-xr-x  2 root  wheel  - 512 Jul  6  2004 python/
drwxr-xr-x  2 root  wheel  - 512 Mar 21 14:56 samba3/
drwxr-xr-x  2 root  wheel  - 512 Apr  3 16:20 sdl/
drwxr-xr-x  2 root  wheel  - 512 Jul  6  2004 teTeX/
drwxr-xr-x  2 root  wheel  - 512 Oct 26  2004 teTeX-texmf/
drwxrwxr-x  2 root  wheel  - 512 Oct 11  2004 windowmaker/
drwxr-xr-x  2 root  wheel  - 512 Feb 22 17:31 xfig/
orion:/home/keramida$

 How can I set these installation options once I already installed a
 port. Where are these options saved on the harddrive? Will I have to
 run the configure script by hand?

By removing /var/db/ports/firefox.  Running the following as root before
you attempt to reinstall firefox should be all it takes:

# cd /var/db/ports
# rm -fr firefox

Regards,
Giorgos

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


Re: disappeared options dialog when installing ports

2005-05-11 Thread Kris Kennaway
On Wed, May 11, 2005 at 12:14:20PM +0300, Giorgos Keramidas wrote:

 By removing /var/db/ports/firefox.  Running the following as root before
 you attempt to reinstall firefox should be all it takes:
 
   # cd /var/db/ports
   # rm -fr firefox

Or simpler:

# make rmconfig

see the ports manpage.

Kris


pgpYYvc1ZGKBq.pgp
Description: PGP signature


Re: disappeared options dialog when installing ports

2005-05-11 Thread Giorgos Keramidas
On 2005-05-11 02:17, Kris Kennaway [EMAIL PROTECTED] wrote:
On Wed, May 11, 2005 at 12:14:20PM +0300, Giorgos Keramidas wrote:
 By removing /var/db/ports/firefox.  Running the following as root before
 you attempt to reinstall firefox should be all it takes:

  # cd /var/db/ports
  # rm -fr firefox

 Or simpler:

 # make rmconfig

 see the ports manpage.

Neat!  I didn't know that :-)

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


Re: disappeared options dialog when installing ports

2005-05-11 Thread wizlayer
On Wednesday 11 May 2005 04:56 am, Carsten Fuchs wrote:
 Hi,
 I have a (simple) question about installing from the ports
 coll. The 1st time I issued `make install`in
 /usr/ports/www/firefox it showed a configuration menu where I
 could select things like xfs. I disabled this xfs option. Now
 if I want to install Firefox again it won't show me this
 configuration dialog anymore. I tried `make deinstall` and
 `make reinstall`- that wouldn't help. I even tried to delete
 the firefox ports directory and did a cvsup - but that dialog
 didn't show up.
 How can I set these installation options once I already
 installed a port. Where are these options saved on the
 harddrive? Will I have to run the configure script by hand?

 I am quite new to FreeBSD, so if there's plenty of instructions
 concerning my little problem, just give me a direction to
 search.

 Thanks in advance!
 Carsten.


Here's a tip (and I don't have any knowledge of it being 
documented in manuals, though I'm certain it's an oversight of my 
own)...

Have a look at /var/db/ports

This is where your make configurations are stored so it won't ask 
you everytime you go to upgrade (really nice to run your updates 
and leave the office for the night without too many hangups).  

So... you'll need to remove the /var/db/ports/firefox/options file 
in order to see the options menu on your next make.

HTH,

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


Re: disappeared options dialog when installing ports

2005-05-11 Thread Carsten Fuchs
(Wed, 11 May 2005 02:17:24 -0700) Kris Kennaway [EMAIL PROTECTED]:

  # cd /var/db/ports
 
 # make rmconfig
 
 see the ports manpage.


Thanks a lot, to all of you.
Carsten.

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


cvsup, portupgrade, installing ports, and firewalls

2005-03-27 Thread Pat Maddox
I've got the pf firewall installed, and every time I run cvsup,
portupgrade or try to install ports, I have to disable it.  What
outgoing and incoming ports do I need to allow in order to run these
without disabling the firewall?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cvsup, portupgrade, installing ports, and firewalls

2005-03-27 Thread Erik Trulsson
On Sun, Mar 27, 2005 at 04:01:08PM -0700, Pat Maddox wrote:
 I've got the pf firewall installed, and every time I run cvsup,
 portupgrade or try to install ports, I have to disable it.  What
 outgoing and incoming ports do I need to allow in order to run these
 without disabling the firewall?

The cvsup(1) manpage describes exactly what ports need to be opened for
cvsup to work. (Normally just outgoing TCP connections to port 5999 on
the server.)

Fetching distfiles for ports is usually done via either HTTP or FTP, so
if you allow those out everyting should work.



-- 
Insert your favourite quote here.
Erik Trulsson
[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: Compiling/installing ports via NFS - any gotcha's? (while building linux_base-8-8.0_6, /usr/bin/build-locale-archive: cannot lock new archive: Operation not supported)

2005-02-02 Thread Ruben de Groot
On Mon, Jan 31, 2005 at 05:15:19PM -0600, John typed:
 I don't have enough storage on my laptop for the entire ports tree
 (surprise, surprise), so I'm trying to make install acroread
 and jdk14 via NFS mounts from a bigger server.
 
 I'm down to trying to get the specific version of linux_base that
 it wants(and I already have the linux kld loaded and linprocfs
 mounted).  I have rpc.statd and rpc.lockd running on both systems.

What version of FreeBSD are you running? AFAIK, rpc.lockd in 4.x
only handles serverside locking, not from the client.

Ruben

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


Re: Compiling/installing ports via NFS - any gotcha's? (while building linux_base-8-8.0_6, /usr/bin/build-locale-archive: cannot lock new archive: Operation not supported)

2005-02-02 Thread John
On Wed, Feb 02, 2005 at 01:19:18PM +0100, Ruben de Groot wrote:
 On Mon, Jan 31, 2005 at 05:15:19PM -0600, John typed:
  I don't have enough storage on my laptop for the entire ports tree
  (surprise, surprise), so I'm trying to make install acroread
  and jdk14 via NFS mounts from a bigger server.
  
  I'm down to trying to get the specific version of linux_base that
  it wants(and I already have the linux kld loaded and linprocfs
  mounted).  I have rpc.statd and rpc.lockd running on both systems.
 
 What version of FreeBSD are you running? AFAIK, rpc.lockd in 4.x
 only handles serverside locking, not from the client.

Thanks, Ruben.  I should have said.  It's 5.3-STABLE on both sides.

I now believe the problem was that I installed some parts before
the cvsup, and some parts after, and missed the messages about
it needing newer versions of some of the parts.  I ripped out
all the dependent packages and reinstalled the latest versions,
and a lot of the weirdness went away.  I also gave up trying
to do the make over NFS, which I now regret, because my NFS
server is the least powerful machine I have in terms of CPU
power, and it's been compilig for about 16 hours now...
-- 

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


Compiling/installing ports via NFS - any gotcha's? (while building linux_base-8-8.0_6, /usr/bin/build-locale-archive: cannot lock new archive: Operation not supported)

2005-01-31 Thread John
I don't have enough storage on my laptop for the entire ports tree
(surprise, surprise), so I'm trying to make install acroread
and jdk14 via NFS mounts from a bigger server.

I'm down to trying to get the specific version of linux_base that
it wants(and I already have the linux kld loaded and linprocfs
mounted).  I have rpc.statd and rpc.lockd running on both systems.

It keeps erroring out with the message in my Subject line:

===  Patching for linux_base-8-8.0_6
===   linux_base-8-8.0_6 depends on executable: rpm - found
===  Configuring for linux_base-8-8.0_6
===  Installing for linux_base-8-8.0_6
kern.fallback_elf_brand: 3 - 3
redhat-release-8.0-8.noarch.rpm
glibc-common-2.3.2-4.80.8.i386.rpm
/usr/sbin/build-locale-archive: cannot lock new archive: Operation not supported
execution of glibc-common-2.3.2-4.80.8 script failed, exit status 1
*** Error code 1

Stop in /usr/ports/emulators/linux_base-8.

Any clues for me?
-- 

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


FTP Proxies and Installing Ports

2004-10-05 Thread Bigelow, Andrea L.
Hello, 

What form does the FTP_PROXY shell variable need to take to work with fetch,
so that I can install ports through an FTP proxy server?

Andi L. Bigelow
Dyncorp EOS - Network Engineering Group
bigelowa{at}sec{dot}gov
(202) 942-4368

Every man dies, but not every man really lives. -- Braveheart
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Installing ports with OPTIONS

2004-09-10 Thread Steve Bertrand
Hi all,

I am attempting to install /usr/ports/security/snort, but I want MySQL
support.

I've uncommented OPTIONS and the line that states MYSQL=on in the
Makefile, however, when I run:

# script
# make

the resulting script shows no indication that MySQL was included. How
can I verify that support for MySQL was included?

If I run:

# make -DWITH_MYSQL

will I be certain that it is included, even if the output from make
shows no indication of MySQL?

Tks,

Steve

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


Re: Installing ports with OPTIONS

2004-09-10 Thread Steve Bertrand
 Hi all,

 I am attempting to install /usr/ports/security/snort, but I want MySQL
 support.

 I've uncommented OPTIONS and the line that states MYSQL=on in the
 Makefile, however, when I run:

 # script
 # make

 the resulting script shows no indication that MySQL was included. How
 can I verify that support for MySQL was included?

 If I run:

 # make -DWITH_MYSQL

 will I be certain that it is included, even if the output from make
 shows no indication of MySQL?

Sorry to reply my own post, but:

# make -DWITH_MYSQL

appears to be working. The port is building in MySQL now.

Steve

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



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


Re: Installing ports with OPTIONS

2004-09-10 Thread Tom Cook
I believe that you should just be able to install the port with the
option '--with-mysql' to bring in support for mysql

i.e.:

#make --with-mysql

should do it for you.

-tom


On Fri, 10 Sep 2004 10:02:37 -0400 (EDT), Steve Bertrand
[EMAIL PROTECTED] wrote:
 Hi all,
 
 I am attempting to install /usr/ports/security/snort, but I want MySQL
 support.
 
 I've uncommented OPTIONS and the line that states MYSQL=on in the
 Makefile, however, when I run:
 
 # script
 # make
 
 the resulting script shows no indication that MySQL was included. How
 can I verify that support for MySQL was included?
 
 If I run:
 
 # make -DWITH_MYSQL
 
 will I be certain that it is included, even if the output from make
 shows no indication of MySQL?
 
 Tks,
 
 Steve
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 



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


Re: Installing ports with OPTIONS

2004-09-10 Thread Matthew Seaman
On Fri, Sep 10, 2004 at 10:02:37AM -0400, Steve Bertrand wrote:

 I am attempting to install /usr/ports/security/snort, but I want MySQL
 support.
 
 I've uncommented OPTIONS and the line that states MYSQL=on in the
 Makefile, however, when I run:
 
 # script
 # make

Don't do that: the OPTIONS stuff is commented out for a reason.  Not
entirely sure what reason, but if it worked, it wouldn't be commented
out now, would it?

 the resulting script shows no indication that MySQL was included. How
 can I verify that support for MySQL was included?
 
 If I run:
 
 # make -DWITH_MYSQL
 
 will I be certain that it is included, even if the output from make
 shows no indication of MySQL?

Using:

# make -DWITH_MYSQL

is the correct thing to do.  However, you should make sure that you
aren't stumbling over the remains of previous compilation sessions.
First run:

# make clean

then run

# make -DWITH_MYSQL

and you should certainly see mysql mentioned during the configuration
and compilation steps.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgpIEys5CHJuT.pgp
Description: PGP signature


Re: Installing ports with OPTIONS

2004-09-10 Thread Steve Bertrand
 On Fri, Sep 10, 2004 at 10:02:37AM -0400, Steve Bertrand wrote:

 I am attempting to install /usr/ports/security/snort, but I want
 MySQL
 support.

 I've uncommented OPTIONS and the line that states MYSQL=on in the
 Makefile, however, when I run:

 # script
 # make

 Don't do that: the OPTIONS stuff is commented out for a reason.  Not
 entirely sure what reason, but if it worked, it wouldn't be commented
 out now, would it?

Well, I thought it was commented out so things don't get compiled in
by default, but it certainly does not appear to work.


 the resulting script shows no indication that MySQL was included.
 How
 can I verify that support for MySQL was included?

 If I run:

 # make -DWITH_MYSQL

 will I be certain that it is included, even if the output from make
 shows no indication of MySQL?

 Using:

 # make -DWITH_MYSQL

 is the correct thing to do.  However, you should make sure that you
 aren't stumbling over the remains of previous compilation sessions.
 First run:

 # make clean

 then run

 # make -DWITH_MYSQL

 and you should certainly see mysql mentioned during the configuration
 and compilation steps.

Yes, as per my own reply, this is what I did, and it is compiling with
MySQL.

Thanks Matt, Tom for your suggestions.

Steve



   Cheers,

   Matthew

 --
 Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
   Savill Way
 PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
 Tel: +44 1628 476614  Bucks., SL7 1TH
 UK



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


Re: Installing ports with OPTIONS

2004-09-10 Thread Martin Hudec
On Fri, Sep 10, 2004 at 03:09:04PM +0100 or thereabouts, Matthew Seaman wrote:
 
 # make -DWITH_MYSQL
 
 and you should certainly see mysql mentioned during the configuration
 and compilation steps.

For myself I am using make WITH_MYSQL=yes (all install clean).
It is working. I do also put that option to /usr/local/etc/pkgtools.conf
in MAKE_ARGS section like:

'www/firefox' = 'WITH_SMB=yes WITH_OPTIMIZED_CFLAGS=yes',

By this portupgrade will be able to use options used at
first time installation.


Cheers,

Martin

-- 
Martin Hudec| corwin at aeternal.net
| corwin at web.markiza.sk
http://www.aeternal.net | cell +421 907 303 393



pgpygXnnnh6F2.pgp
Description: PGP signature


Installing ports

2004-08-24 Thread Florian Hengstberger
Hi!

I'm using FreeBSD 5.2.1 and I'm in trouble with installing software
using the ports collection. After typing make install everything 
seems to be okay, but in most cases I get a message like this after
a few minutes:

fetch time out

It seemed to me that the mirror servers are not uptodate or that
some filenames have changed in the meantime, because fetching data
from ftp-servers worked a few times. 
But in nearly all cases I had to copy the files manually in
/usr/ports/distfiles as make install finally suggested.

So I installed a new ports-collection with sysinstall over ftp but
things haven't changed. I'm a little confused, because fetching data
from FreeSD ftp-servers doesn't work too (remember that some fetches
were successful!).

Please help me,
Florian

--
Florian Hengstberger
[EMAIL PROTECTED]
http://stud3.tuwien.ac.at/~e0025265
--




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


Re: Installing ports

2004-08-24 Thread Joel Dahl
Are your local ports-tree up-to-date?


 Hi!
 
 I'm using FreeBSD 5.2.1 and I'm in trouble with installing software
 using the ports collection. After typing make install everything 
 seems to be okay, but in most cases I get a message like this after
 a few minutes:
 
 fetch time out
 
 It seemed to me that the mirror servers are not uptodate or that
 some filenames have changed in the meantime, because fetching data
 from ftp-servers worked a few times. 
 But in nearly all cases I had to copy the files manually in
 /usr/ports/distfiles as make install finally suggested.
 
 So I installed a new ports-collection with sysinstall over ftp but
 things haven't changed. I'm a little confused, because fetching data
 from FreeSD ftp-servers doesn't work too (remember that some fetches
 were successful!).
 
 Please help me,
 Florian
 
 --
 Florian Hengstberger
 [EMAIL PROTECTED]
 http://stud3.tuwien.ac.at/~e0025265
 --

-- 
Joel

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


Re: Installing ports

2004-08-24 Thread epilogue
On Tue, 24 Aug 2004 20:11:49 +0200
Florian Hengstberger [EMAIL PROTECTED] wrote:

 Hi!
 
 I'm using FreeBSD 5.2.1 and I'm in trouble with installing software
 using the ports collection. After typing make install everything 
 seems to be okay, but in most cases I get a message like this after
 a few minutes:
 
 fetch time out

hello florian,

could you please help us to help you, by providing more details?  for
example, it would be really useful to know which ports you're having the
problem with.  it could indeed be that the mirrors for a given port may
require updating (but we're not going to look at all +11k ports just
because you dropped us a line  ;)

i get the feeling that you are experiencing the problem with many
different ports.  as such, mirror lists are an unlikely culprit (or we
would be seeing a lot of such complaints on the mailing lists). 

 It seemed to me that the mirror servers are not uptodate or that
 some filenames have changed in the meantime, because fetching data
 from ftp-servers worked a few times. 
 But in nearly all cases I had to copy the files manually in
 /usr/ports/distfiles as make install finally suggested.
 
 So I installed a new ports-collection with sysinstall over ftp but
 things haven't changed. I'm a little confused, because fetching data
 from FreeSD ftp-servers doesn't work too (remember that some fetches
 were successful!).

i have never installed a new ports collection this way, so i cannot speak
about the reliability of this method.

cvsup, on the other hand, is a method for which i (and the handbook) can
vouch.  if you haven't already, check out the handbook entry on cvsup
(section III-A-4).  it should probably clear up your issue (unless, of
course, you're having a networking problem).

if you're in a pinch, you can probably also download a copy of the tree
from ftp://ftp.freebsd.org/pub/FreeBSD/ports/ports/ports.tar.gz and extract
it over your existing /usr/ports

i don't know how often that tarball is updated, but the latest timestamp on
it is 2004.08.24 03:38:00, so it should work too.

anyway.  hope this helps.


cheers,
epi

 
 Please help me,
 Florian
 
 --
 Florian Hengstberger
 [EMAIL PROTECTED]
 http://stud3.tuwien.ac.at/~e0025265
 --
 
 
 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Installing ports

2004-08-24 Thread Mark

 
 
  Hi!
  
  I'm using FreeBSD 5.2.1 and I'm in trouble with installing software
  using the ports collection. After typing make install everything 
  seems to be okay, but in most cases I get a message like this after
  a few minutes:
  
  fetch time out
  
  It seemed to me that the mirror servers are not uptodate or that
  some filenames have changed in the meantime, because fetching data
  from ftp-servers worked a few times. 
  But in nearly all cases I had to copy the files manually in
  /usr/ports/distfiles as make install finally suggested.
  
  So I installed a new ports-collection with sysinstall over ftp but
  things haven't changed. I'm a little confused, because fetching data
  from FreeSD ftp-servers doesn't work too (remember that some fetches
  were successful!).
  
  Please help me,
  Florian
  
  --
  Florian Hengstberger
  [EMAIL PROTECTED]
  http://stud3.tuwien.ac.at/~e0025265
  --


Are you behind a proxy?? I had a box behind squid once, 
had to set fetch to look for the squid server


-- 

==

The information contained in this communication is confidential, private,
proprietary, or otherwise privileged and is intended only for the use of the
addressee.  Unauthorized use, disclosure, distribution or copying is strictly
prohibited and may be unlawful.  If you have received this communication in
error, please notify the sender immediately.

==

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


Re: Installing ports

2004-08-24 Thread Lowell Gilbert
Mark [EMAIL PROTECTED] writes:

  
  
   Hi!
   
   I'm using FreeBSD 5.2.1 and I'm in trouble with installing software
   using the ports collection. After typing make install everything 
   seems to be okay, but in most cases I get a message like this after
   a few minutes:
   
   fetch time out
   
   It seemed to me that the mirror servers are not uptodate or that
   some filenames have changed in the meantime, because fetching data
   from ftp-servers worked a few times. 
   But in nearly all cases I had to copy the files manually in
   /usr/ports/distfiles as make install finally suggested.
   
   So I installed a new ports-collection with sysinstall over ftp but
   things haven't changed. I'm a little confused, because fetching data
   from FreeSD ftp-servers doesn't work too (remember that some fetches
   were successful!).
   
   Please help me,
   Florian
   
   --
   Florian Hengstberger
   [EMAIL PROTECTED]
   http://stud3.tuwien.ac.at/~e0025265
   --
 
 
 Are you behind a proxy?? I had a box behind squid once, 
 had to set fetch to look for the squid server

Or maybe behind a firewall that is messing up FTP?
[Maybe the fetches that succeeded were all via HTTP?]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Installing ports

2004-08-24 Thread Joe Kraft
Florian Hengstberger wrote:
fetch time out
It seemed to me that the mirror servers are not uptodate or that
some filenames have changed in the meantime, because fetching data
from ftp-servers worked a few times. 
But in nearly all cases I had to copy the files manually in
/usr/ports/distfiles as make install finally suggested.
I had similar problems and it took me a while to figure it out.  The 
FTPs that worked for me were the ones I manually started, not the ones 
done by the ports makefiles.  I'm accessing through a firewall and it 
seems that when ftp is used there it doesn't automagically try to use 
passive mode.  I needed to add FTP_PASSIVE_MODE=YES to my environment 
variables.  I don't remember exactly where it went though.

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


Re: Installing ports

2004-08-24 Thread Kevin D. Kinsey, DaleCo, S.P.
Florian Hengstberger wrote:
Hi!
I'm using FreeBSD 5.2.1 and I'm in trouble with installing software
using the ports collection. After typing make install everything 
seems to be okay, but in most cases I get a message like this after
a few minutes:

fetch time out
It seemed to me that the mirror servers are not uptodate or that
some filenames have changed in the meantime, because fetching data
from ftp-servers worked a few times. 
But in nearly all cases I had to copy the files manually in
/usr/ports/distfiles as make install finally suggested.

So I installed a new ports-collection with sysinstall over ftp but
things haven't changed. I'm a little confused, because fetching data
from FreeSD ftp-servers doesn't work too (remember that some fetches
were successful!).
Please help me,
Florian
 

A new ports-collection with sysinstall?  Maybe someone else
knows if what you really get from that is new.  Mostly people
seem to use cvsup to update the ports tree.  Try comparing some
of the version number in your /usr/ports/category/program/Makefile
with the ones at ftp.freebsd.org.  Are the versions the same? If it's not,
try installing cvsup or cvsup-without-gui as a pkg (you can do that
from sysinstall without issues, I'm guessing) and cvsup to the latest
release of ports by editing /usr/share/examples/cvsup/ports-supfile
as appropriate and then:
   $cvsup /usr/share/examples/cvsup/ports-supfile
Now, I guess by suggesting that I'm still assuming it is a problem
with an out-of-date tree.  If you're sure it's not out of date, the
other possibility is connectivity, I guess? 

Can you give a specific example of the error (e.g., which port
you were trying to build), and quote the output from make install?
That might help a bit.
Kevin Kinsey
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


SSH Help / Installing ports / Internet

2004-05-12 Thread Bruce Hunter
I have setup a headless system. I connect to the system from another 
machine using a ssh client. I have set the headless machine to allow me 
to login at root. I am able to login and edit files , except I can not 
ping outside my network or install ports, b/c it won't allow it to 
access the internet. The SSHd must be stopping me somehow. I  can ping 
my other systems in the network.
Please help :O)

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


Re: SSH Help / Installing ports / Internet

2004-05-12 Thread Brad Tarver
Bruce Hunter wrote on 05/12/04 08:41 PM:

I have setup a headless system. I connect to the system from another 
machine using a ssh client. I have set the headless machine to allow me 
to login at root. I am able to login and edit files , except I can not 
ping outside my network or install ports, b/c it won't allow it to 
access the internet. The SSHd must be stopping me somehow. I  can ping 
my other systems in the network.
Check /etc/resolv.conf and /etc/rc.conf for your defaultrouter entry.

--
Brad Tarver, CCNA
btarver[at]idlemind[dot]net
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SSH Help / Installing ports / Internet

2004-05-12 Thread Bruce Hunter
Brad Tarver wrote:

Bruce Hunter wrote on 05/12/04 08:41 PM:

I have setup a headless system. I connect to the system from another 
machine using a ssh client. I have set the headless machine to allow 
me to login at root. I am able to login and edit files , except I can 
not ping outside my network or install ports, b/c it won't allow it 
to access the internet. The SSHd must be stopping me somehow. I  can 
ping my other systems in the network.


Check /etc/resolv.conf and /etc/rc.conf for your defaultrouter entry.


my defaultrouter entry is set to my router ip correctly any other 
ideas??

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


Re: SSH Help / Installing ports / Internet

2004-05-12 Thread Bruce Hunter
Brad Tarver wrote:

Bruce Hunter wrote on 05/12/04 09:02 PM:

Brad Tarver wrote:

Bruce Hunter wrote on 05/12/04 08:41 PM:

I have setup a headless system. I connect to the system from 
another machine using a ssh client. I have set the headless machine 
to allow me to login at root. I am able to login and edit files , 
except I can not ping outside my network or install ports, b/c it 
won't allow it to access the internet. The SSHd must be stopping me 
somehow. I  can ping my other systems in the network.




Check /etc/resolv.conf and /etc/rc.conf for your defaultrouter entry.


my defaultrouter entry is set to my router ip, any other ideas?
hmmm.

what are you trying to ping? an ip address or a hostname? If you are 
pinging a hostname and not getting anything, i would suggest checking 
your /etc/resolv.conf for nameserver entries.

I am pinging b/c I am testing. I am trying to install a port. When a 
port installs, it downloads the required files. Whenever I try, I get an 
error b/c it can't download any of the files needed for the port. This 
happens with all ports. On top of that I can't ping crap outside my 
network. Nothing.. Something is blocking me from going to the net. It 
not my router, i'm sure of that.

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


Re: SSH Help / Installing ports / Internet

2004-05-12 Thread Kevin D. Kinsey, DaleCo, S.P.
Bruce Hunter wrote:

Brad Tarver wrote:

Bruce Hunter wrote on 05/12/04 09:02 PM:

Brad Tarver wrote:

Check /etc/resolv.conf and /etc/rc.conf for your defaultrouter entry.
my defaultrouter entry is set to my router ip, any other ideas?
hmmm.
what are you trying to ping? an ip address or a hostname? If you are 
pinging a hostname and not getting anything, i would suggest checking 
your /etc/resolv.conf for nameserver entries.
I am pinging b/c I am testing. I am trying to install a port. When a 
port installs, it downloads the required files. Whenever I try, I get 
an error b/c it can't download any of the files needed for the port. 
This happens with all ports. On top of that I can't ping crap outside 
my network. Nothing.. Something is blocking me from going to the net. 
It not my router, i'm sure of that.


What's the output of `netstat -rn` ?

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


Re: SSH Help / Installing ports / Internet

2004-05-12 Thread Bruce Hunter
Kevin D. Kinsey, DaleCo, S.P. wrote:

Bruce Hunter wrote:

Brad Tarver wrote:

Bruce Hunter wrote on 05/12/04 09:02 PM:

Brad Tarver wrote:

Check /etc/resolv.conf and /etc/rc.conf for your defaultrouter entry.


my defaultrouter entry is set to my router ip, any other ideas?
hmmm.


what are you trying to ping? an ip address or a hostname? If you are 
pinging a hostname and not getting anything, i would suggest 
checking your /etc/resolv.conf for nameserver entries.


I am pinging b/c I am testing. I am trying to install a port. When a 
port installs, it downloads the required files. Whenever I try, I get 
an error b/c it can't download any of the files needed for the port. 
This happens with all ports. On top of that I can't ping crap outside 
my network. Nothing.. Something is blocking me from going to the net. 
It not my router, i'm sure of that.


What's the output of `netstat -rn` ?

Kevin Kinsey
DaleCo, S.P.



Internet:
DestinationGatewayFlags   Refs  Use  
Netif Expire
default192.168.1.1UGS   03   
fxp0
127.0.0.1  127.0.0.1 UH  0
0lo0
192.168.1  link#1  UC  0
0   fxp0
192.168.1.100:06:25:69:9b:da   UHLW10   fxp0   1161
192.168.1.13   00:08:74:97:6f:0d   UHLW0  124   fxp0   1128
192.168.1.14   00:a0:c9:98:d6:c1   UHLW0   56lo0

Internet6:
Destination   Gateway   
Flags  Netif
Expire
::/96 ::1   
UGRSlo0
::1   ::1   
UH  lo0
:::0.0.0.0/96 ::1   
UGRSlo0
fe80::/10 ::1   
UGRSlo0
fe80::%fxp0/64link#1
UC fxp0
fe80::2a0:c9ff:fe98:d6c1%fxp0 00:a0:c9:98:d6:c1 
UHL lo0
fe80::%lo0/64 fe80::1%lo0   
U   lo0
fe80::1%lo0   link#3
UHL lo0
ff01::/32 ::1   
U   lo0
ff02::/16 ::1   
UGRSlo0
ff02::%fxp0/32link#1
UC fxp0
ff02::%lo0/32 ::1   
UC  lo0

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


Re: SSH Help / Installing ports / Internet

2004-05-12 Thread Brad Tarver
Bruce Hunter wrote on 05/12/04 09:09 PM:

I am pinging b/c I am testing. I am trying to install a port. When a 
port installs, it downloads the required files. Whenever I try, I get an 
error b/c it can't download any of the files needed for the port. This 
happens with all ports. On top of that I can't ping crap outside my 
network. Nothing.. Something is blocking me from going to the net. It 
not my router, i'm sure of that.
So does it download the files or not. You are contradicting yourself. If 
you can ping an IP address outside of your router, then it's not your 
router. But if you cannot ping a hostname like yahoo.com, then its most 
likely they resolv.conf isn't setup.





--
Brad Tarver, CCNA
btarver[at]idlemind[dot]net
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SSH Help / Installing ports / Internet

2004-05-12 Thread Bruce Hunter
Brad Tarver wrote:

Bruce Hunter wrote on 05/12/04 09:09 PM:

I am pinging b/c I am testing. I am trying to install a port. When a 
port installs, it downloads the required files. Whenever I try, I get 
an error b/c it can't download any of the files needed for the port. 
This happens with all ports. On top of that I can't ping crap outside 
my network. Nothing.. Something is blocking me from going to the net. 
It not my router, i'm sure of that.


So does it download the files or not. You are contradicting yourself. 
If you can ping an IP address outside of your router, then it's not 
your router. But if you cannot ping a hostname like yahoo.com, then 
its most likely they resolv.conf isn't setup.

i am unable to ping any IP address specific to the internet or any 
host.. The files do not download when I run #make install. I am able 
to ping within my local network. my router is not the problem.



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


hurry and help with installing ports through http proxy

2003-12-19 Thread Dino Vliet
Hi there,

I just finished installing freebsd 4.9.
In sysinstall I had to give my proxy adress and it
went smooth.

But now when I try to do a make install clean
at a port I get this error message telling me it can't
connect to the sources (ftp servers)

I think I have to tell to the ports program it has to
use my proxy address.
The question is,
where do I have to do this?

Please hurry because otherwise the campus will
close..:-)

Brgds


__
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: hurry and help with installing ports through http proxy

2003-12-19 Thread Dino Vliet
No I'm not!

Do you know how to what to edit (eg where to put the
line prxyserver:port) in order to let the ports being
fetched through that proxyserver and port?


--- Jonathan M. Slivko [EMAIL PROTECTED] wrote:
  
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 You are aware that you can install ports from a
 remote location via
 SSH, right? :)
 
 - -- Jonathan
 
 ===
 Jonathan M. Slivko
 ISP/Marketing
 PeeringSolutions, LLC
 ===
 PeeringSolutions, LLC
 90 Morningside Drive, Suite 4H
 New York, NY  10027
 vox: 646.245.7286
 fax: 212.663.1109
 email: [EMAIL PROTECTED]
 info:  [EMAIL PROTECTED]
 web: http://www.peeringsolutions.ca/
 ===
 
 - -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Dino Vliet
 Sent: Friday, December 19, 2003 3:31 PM
 To: [EMAIL PROTECTED]
 Subject: hurry and help with installing ports
 through http proxy
 
 Hi there,
 
 I just finished installing freebsd 4.9.
 In sysinstall I had to give my proxy adress and it
 went smooth.
 
 But now when I try to do a make install clean
 at a port I get this error message telling me it
 can't
 connect to the sources (ftp servers)
 
 I think I have to tell to the ports program it has
 to
 use my proxy address.
 The question is,
 where do I have to do this?
 
 Please hurry because otherwise the campus will
 close..:-)
 
 Brgds
 
 
 __
 Do you Yahoo!?
 New Yahoo! Photos - easier uploading and sharing.
 http://photos.yahoo.com/
 ___
 [EMAIL PROTECTED] mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 -BEGIN PGP SIGNATURE-
 Version: PGP 8.0.3
 

iQA/AwUBP+Ng0096BXDwEhNnEQJmnQCcDV1WjH7RDAiBPuchsDFmO5vDXRYAoJQB
 Zk18U5zQu4WodgcycwUSllJX
 =DX6U
 -END PGP SIGNATURE-
 
 


__
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: hurry and help with installing ports through http proxy

2003-12-19 Thread Jonathan M. Slivko
 
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Start up /stand/sysinstall, go to Post-Install, Options and then set
your network settings there.
- -- Jonathan

===
Jonathan M. Slivko
ISP/Marketing
PeeringSolutions, LLC
===
PeeringSolutions, LLC
90 Morningside Drive, Suite 4H
New York, NY  10027
vox: 646.245.7286
fax: 212.663.1109
email: [EMAIL PROTECTED]
info:  [EMAIL PROTECTED]
web: http://www.peeringsolutions.ca/
===

- -Original Message-
From: Dino Vliet [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 19, 2003 3:39 PM
To: Jonathan M. Slivko
Cc: [EMAIL PROTECTED]
Subject: RE: hurry and help with installing ports through http proxy

No I'm not!

Do you know how to what to edit (eg where to put the
line prxyserver:port) in order to let the ports being
fetched through that proxyserver and port?


- --- Jonathan M. Slivko [EMAIL PROTECTED] wrote:
  
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 You are aware that you can install ports from a
 remote location via
 SSH, right? :)
 
 - -- Jonathan
 
 ===
 Jonathan M. Slivko
 ISP/Marketing
 PeeringSolutions, LLC
 ===
 PeeringSolutions, LLC
 90 Morningside Drive, Suite 4H
 New York, NY  10027
 vox: 646.245.7286
 fax: 212.663.1109
 email: [EMAIL PROTECTED]
 info:  [EMAIL PROTECTED]
 web: http://www.peeringsolutions.ca/
 ===
 
 - -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On
 Behalf Of Dino Vliet
 Sent: Friday, December 19, 2003 3:31 PM
 To: [EMAIL PROTECTED]
 Subject: hurry and help with installing ports
 through http proxy
 
 Hi there,
 
 I just finished installing freebsd 4.9.
 In sysinstall I had to give my proxy adress and it
 went smooth.
 
 But now when I try to do a make install clean
 at a port I get this error message telling me it
 can't
 connect to the sources (ftp servers)
 
 I think I have to tell to the ports program it has
 to
 use my proxy address.
 The question is,
 where do I have to do this?
 
 Please hurry because otherwise the campus will
 close..:-)
 
 Brgds
 
 
 __
 Do you Yahoo!?
 New Yahoo! Photos - easier uploading and sharing.
 http://photos.yahoo.com/
 ___
 [EMAIL PROTECTED] mailing list

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 -BEGIN PGP SIGNATURE-
 Version: PGP 8.0.3
 

iQA/AwUBP+Ng0096BXDwEhNnEQJmnQCcDV1WjH7RDAiBPuchsDFmO5vDXRYAoJQB
 Zk18U5zQu4WodgcycwUSllJX
 =DX6U
 -END PGP SIGNATURE-
 


__
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/

-BEGIN PGP SIGNATURE-
Version: PGP 8.0.3

iQA/AwUBP+NjUE96BXDwEhNnEQLVMwCgq+WOALrkDGXQANnXhoPlkQx8DzcAn2a9
jn0knMRXOY1HESb5C8WJKfIc
=HKEa
-END PGP SIGNATURE-


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


RE: hurry and help with installing ports through http proxy

2003-12-19 Thread Dino Vliet
I've done this on my system and it works.
The INTERNET:-)

The /etc/defaults/make.conf file suggests setting the
HTTP_PROXY and FTP_PROXY environment variables to
install ports through a proxy connection

Thanks

--- Jonathan M. Slivko [EMAIL PROTECTED] wrote:
  
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Start up /stand/sysinstall, go to Post-Install,
 Options and then set
 your network settings there.
 - -- Jonathan
 
 ===
 Jonathan M. Slivko
 ISP/Marketing
 PeeringSolutions, LLC
 ===
 PeeringSolutions, LLC
 90 Morningside Drive, Suite 4H
 New York, NY  10027
 vox: 646.245.7286
 fax: 212.663.1109
 email: [EMAIL PROTECTED]
 info:  [EMAIL PROTECTED]
 web: http://www.peeringsolutions.ca/
 ===
 
 - -Original Message-
 From: Dino Vliet [mailto:[EMAIL PROTECTED] 
 Sent: Friday, December 19, 2003 3:39 PM
 To: Jonathan M. Slivko
 Cc: [EMAIL PROTECTED]
 Subject: RE: hurry and help with installing ports
 through http proxy
 
 No I'm not!
 
 Do you know how to what to edit (eg where to put the
 line prxyserver:port) in order to let the ports
 being
 fetched through that proxyserver and port?
 
 
 - --- Jonathan M. Slivko [EMAIL PROTECTED] wrote:
   
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  You are aware that you can install ports from a
  remote location via
  SSH, right? :)
  
  - -- Jonathan
  
  ===
  Jonathan M. Slivko
  ISP/Marketing
  PeeringSolutions, LLC
  ===
  PeeringSolutions, LLC
  90 Morningside Drive, Suite 4H
  New York, NY  10027
  vox: 646.245.7286
  fax: 212.663.1109
  email: [EMAIL PROTECTED]
  info:  [EMAIL PROTECTED]
  web: http://www.peeringsolutions.ca/
  ===
  
  - -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On
  Behalf Of Dino Vliet
  Sent: Friday, December 19, 2003 3:31 PM
  To: [EMAIL PROTECTED]
  Subject: hurry and help with installing ports
  through http proxy
  
  Hi there,
  
  I just finished installing freebsd 4.9.
  In sysinstall I had to give my proxy adress and it
  went smooth.
  
  But now when I try to do a make install clean
  at a port I get this error message telling me it
  can't
  connect to the sources (ftp servers)
  
  I think I have to tell to the ports program it has
  to
  use my proxy address.
  The question is,
  where do I have to do this?
  
  Please hurry because otherwise the campus will
  close..:-)
  
  Brgds
  
  
  __
  Do you Yahoo!?
  New Yahoo! Photos - easier uploading and sharing.
  http://photos.yahoo.com/
  ___
  [EMAIL PROTECTED] mailing list
 

http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
  [EMAIL PROTECTED]
  
  -BEGIN PGP SIGNATURE-
  Version: PGP 8.0.3
  
 

iQA/AwUBP+Ng0096BXDwEhNnEQJmnQCcDV1WjH7RDAiBPuchsDFmO5vDXRYAoJQB
  Zk18U5zQu4WodgcycwUSllJX
  =DX6U
  -END PGP SIGNATURE-
  
 
 
 __
 Do you Yahoo!?
 New Yahoo! Photos - easier uploading and sharing.
 http://photos.yahoo.com/
 
 -BEGIN PGP SIGNATURE-
 Version: PGP 8.0.3
 

iQA/AwUBP+NjUE96BXDwEhNnEQLVMwCgq+WOALrkDGXQANnXhoPlkQx8DzcAn2a9
 jn0knMRXOY1HESb5C8WJKfIc
 =HKEa
 -END PGP SIGNATURE-
 
 


__
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


errors with dependant packages while installing ports.

2003-10-20 Thread carmoda
Hi,

I seem to get failures just about every time i try to install anything:

in particular errors with dependant packages:

An older version of whatever/whatever is already installed...

now, on attempts to update any of these dependancy packages i break my 
system... so. do i just accept i cannot update or run certain things, or 
is there some trick t this i am missing...?

please 'CC' me as i am on digest mode...

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


Re: errors with dependant packages while installing ports.

2003-10-20 Thread David Lodeiro
Hi, 

# cd /usr/ports/xxx/directory of port that wont compile

# make deinstall

# make install  or  # make install clean  or   # make package

works for me without any problems

Seeya

David Lodeiro
 Hi,

 I seem to get failures just about every time i try to install anything:

 in particular errors with dependant packages:

 An older version of whatever/whatever is already installed...

 now, on attempts to update any of these dependancy packages i break my
 system... so. do i just accept i cannot update or run certain things, or
 is there some trick t this i am missing...?

 please 'CC' me as i am on digest mode...

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

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


Re: errors with dependant packages while installing ports.

2003-10-20 Thread Matthew Seaman
On Mon, Oct 20, 2003 at 11:06:40PM +, carmoda wrote:

 I seem to get failures just about every time i try to install anything:
 
 in particular errors with dependant packages:
 
 An older version of whatever/whatever is already installed...
 
 now, on attempts to update any of these dependancy packages i break my 
 system... so. do i just accept i cannot update or run certain things, or 
 is there some trick t this i am missing...?
 
 please 'CC' me as i am on digest mode...

This is the main problem that portupgrade(1) solves: package
dependency ordering.  Generally what happens is that a port looks for,
say, a particular version of a shared library.  If you've got an older
version of the shared library installed, the test to find the
particular shared library will fail, and the ports system will try and
re-install the dependent package.  As you've discovered, trying to
install a package on top of an older version of itself generates
errors.

The trick is to update the dependencies first, and then the ports that
depend on them.  It's also a good rule of thumb to take all your
ports/packages from a consistent source: ie. always use the packages
directory for your particular release from the FTP servers, or always
install from a freshly cvsup(1)'d ports tree.  That isn't a hard and
fast rule, but it generally helps you to avoid this sort of version
mismatch thing if you stick to it as closely as you can.

Note that sometimes a port providing a particular shared library may
have any number of dependents, and they can be broken by your updating
the shared library.  The gettext port seems to be a prime offender in
this reguard, as witnessed by the regular floods of messages to this
list about 'libintl.so.N not found'.  portupgrade(1) gets around that
shared library problem by keeping a copy of old version of shlibs in
/usr/local/lib/compat/pkg and there will generally be a heads-up
e-mail to [EMAIL PROTECTED] when some particularly important port gets
updated.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature


Re: errors with dependant packages while installing ports.

2003-10-20 Thread Lowell Gilbert
Matthew Seaman [EMAIL PROTECTED] writes:

 On Mon, Oct 20, 2003 at 11:06:40PM +, carmoda wrote:
 
  I seem to get failures just about every time i try to install anything:
  
  in particular errors with dependant packages:
  
  An older version of whatever/whatever is already installed...
  
  now, on attempts to update any of these dependancy packages i break my 
  system... so. do i just accept i cannot update or run certain things, or 
  is there some trick t this i am missing...?
  
  please 'CC' me as i am on digest mode...
 
 This is the main problem that portupgrade(1) solves: package
 dependency ordering.

*Most* of the time, just building from ports instead of installing
from packages solves this particular case of the dependency problem.

If the new program really *requires* an updated version of the
dependency (as opposed to the packages case, where it's linked against
that version but could -- typically -- just as easily have been linked
against an older version), then you need to update the dependency, and
everything else that's dependent on it.  This is where portupgrade
really saves you an awful lot of (tedious) effort.

Telling the two cases apart can be a bit tricky for non-programmers,
but building the port will usually tell you.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Installing ports witout internet

2003-03-11 Thread Lee Harr
I've always used FreeBSD on machines connected to the internet... so I
have never experienced installing applications offline.
My question is: Is it possible to install applications (using the port
collection ) on a machine that's not connected to the internet?
If yes, what are the requirements?


Possible? Of course. Fun? Not exactly.

Thing is, FreeBSD is designed to be connected to a network. Things
are so easy that I constantly amaze people with installing all
sorts of software just by typing a few words.
Once you disconnect from the network, you have to do all of the
dependency checking, downloading, transferring, building, etc
manually. It won't be fun.
Look at the man pages for the pkg_* tools and see what help is
there for determining dependencies and downloading tarballs, but
I really think you will be much happier if you can just connect
to the network.
_
STOP MORE SPAM with the new MSN 8 and get 2 months FREE* 
http://join.msn.com/?page=features/junkmail

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: Installing ports witout internet

2003-03-11 Thread Mike Meyer
In [EMAIL PROTECTED], Lee Harr [EMAIL PROTECTED] typed:
 I've always used FreeBSD on machines connected to the internet... so I
 have never experienced installing applications offline.
 My question is: Is it possible to install applications (using the port
 collection ) on a machine that's not connected to the internet?
 If yes, what are the requirements?
 Once you disconnect from the network, you have to do all of the
 dependency checking, downloading, transferring, building, etc
 manually. It won't be fun.

No, all you have to do is download the files manually. Once they in
/usr/ports/distfiles, you can use the standard ports makefiles to
build and install things.

The real catch is that you have to fetch all the dependency distfiles
for the port as well as it's distfile. If you have a part-time
connection, you can do make fetch-recursive while you're online, and
the ports system will fetch all the dependencies for you. Second best
is to do make fetchrecursive with DISTDIR pointing at an empty
directory which you're going to populate and transfer to your
system. Worst is to do make all-depends-list to get the complete
dependency list, then go to each port listed and see what it fetches,
then fetch and transfer them independently.

mike
-- 
Mike Meyer [EMAIL PROTECTED]  http://www.mired.org/consulting.html
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: Installing ports witout internet

2003-03-11 Thread Chuck Swiger
Lee Harr wrote:
I've always used FreeBSD on machines connected to the internet... so I
have never experienced installing applications offline.
My question is: Is it possible to install applications (using the port
collection ) on a machine that's not connected to the internet?
Possible? Of course. Fun? Not exactly.

Thing is, FreeBSD is designed to be connected to a network. Things
are so easy that I constantly amaze people with installing all
sorts of software just by typing a few words.
Once you disconnect from the network, you have to do all of the
dependency checking, downloading, transferring, building, etc
manually. It won't be fun.
make fetch-recursive, then burn /usr/ports/distfiles (or all of 
/usr/ports, for that matter, if you just want to make install without 
waiting to recompile) to a CD-ROM.

Then again, there's no reason why the OP couldn't build out a system 
that was connected to the Internet as they please, back that up, and 
then restore to the offline system.

--
-Chuck
To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


make: use packages when installing ports

2002-12-17 Thread omax
I've got 4 CD of FreeBSD4.7

How can I know if program I want to install is in ports
or in pakages of my CDs?

I've copied all INDEX form /cdrom/pakages of each CD
and can know whether it in in pakages,
but when it is not I look in /ust/ports

The problem is:
when installing from ports
I don't want make to
fetch all required ports from the internet
if they are in packages in CDs.

How do I automate this process? (I've heard that I can use packages if
they are or should I install them manually)?
How do I know what ports/packages are required at all?


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



HELP!!! error installing ports

2002-10-16 Thread Roberto Armenteros

Hi all,

  When I downlaoded the ports initially with cvsup I
could install any port by typing make install. After
I updated the ports a couple of times, I get the error
make: dont know who to make install. Stop in
/usr/ports...
Why am I getting this error now and not before? I
tried with lots of different ports and I get the same
error. I would really appreciate any help on this...

   Thanks
 Robert.

__
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos  More
http://faith.yahoo.com

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: HELP!!! error installing ports

2002-10-16 Thread Kris Kennaway

On Tue, Oct 15, 2002 at 11:31:07PM -0700, Roberto Armenteros wrote:
 Hi all,
 
   When I downlaoded the ports initially with cvsup I
 could install any port by typing make install. After
 I updated the ports a couple of times, I get the error
 make: dont know who to make install. Stop in
 /usr/ports...
 Why am I getting this error now and not before? I
 tried with lots of different ports and I get the same
 error. I would really appreciate any help on this...

In future, please paste the exact output of the relevant commands
instead of retyping part of it from memory.

Have you accidentally deleted your /usr/ports/Mk directory?

Kris



msg05337/pgp0.pgp
Description: PGP signature


Installing ports into /usr/pkg

2002-07-22 Thread Eirik Nygaard

Hello...

I am trying to install the ports into /usr/pkg instead of /usr/local, I am setting 
LOCALBASE and PREFIX to /usr/pkg in the /etc/make.conf it installes where I want it 
but when I install a port that depends on a already installed port it does not see 
that it is installed and trys to install it agian, anyone know how I can fix that?

-- 

Eirik Nygaard [EMAIL PROTECTED]
Http://kverka.org/~eirik/
PGP Key: 83C55EDE




msg01137/pgp0.pgp
Description: PGP signature