portupgrade not preserving shared libs as documented?

2012-04-11 Thread Cstdenis
Portupgrade man page says By default, portupgrade preserves shared 
libraries on uninstallation for safety.


I ran i in the form of: portupgrade -b pcre

Now /usr/local/lib/libpcre.so.0 does not exist anymore, only the new 
/usr/local/lib/libpcre.so.1 is there.

___
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: Cheap FreeBSD hosting?

2006-03-24 Thread Cstdenis
- Original Message - 
From: Pete Slagle [EMAIL PROTECTED]
To: Nathan Vidican [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, March 24, 2006 3:29 AM
Subject: Re: Cheap FreeBSD hosting?


 Nathan Vidican wrote:

  Personally, I go the dedicated server route; you can get a decent
  dedicated or semi-dedicated FreeBSD server for less than $50 if you want
  cheap... average rate runs about $100/month for a dedicated server
though.

 Although I have goggled and have been keeping an eye out, I have not
 seen any prices at the $50 level. Can you provide links to sub-$100
 dedicated offerings?

I use http://www.aplus.net and am happy with them. (If you do signup with
them, please use my affiliate link so I can get a little money out of it
http://affil.aplus.net/Affiliates/click.jsp?bid=119aid=1002121 )

Prior to that I used sago networks (sagonet.com) but left them due to
reliability problems (their whole network was basically down for a day after
an upgrade)

And before that I used ev1servers.net. They were also good, but in terms of
OS its basically take what they currently have in inventory when you sign up
(they pre-install the servers rather than do it on demand)

All have sub-$100 dedicated offerings -- some close to $50


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


Re: make installkernel doesn't work?

2006-03-13 Thread Cstdenis
Nope
%grep ident /usr/src/sys/amd64/conf/GENERIC
ident   GENERIC

and its more than that. After reinstalling the kernel I still have SMP
support.

- Original Message - 
From: [EMAIL PROTECTED]
Cc: freebsd-questions@freebsd.org
Sent: Sunday, March 12, 2006 11:53 PM
Subject: Re: make installkernel doesn't work?


 Maybe you set your ident to something else:

 $ grep ident /usr/src/sys/i386/conf/GENERIC

 or whatever your arch is.
 ___
 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]


make installkernel doesn't work?

2006-03-12 Thread Cstdenis
I don't get it. I'm trying to switch from a custom kernel named SERVER to a
generic kernel.

%uname -imrs
FreeBSD 6.0-RELEASE-p4 amd64 SERVER

cd /usr/src
make clean
rm -rf /usr/obj
make buildkernel
make installkernel
reboot
%sysctl kern.ident
kern.ident: SERVER

Why isn't the GENERIC kernel taking effect? The make installkernel does say
generic.

--
 Installing kernel
--
cd /usr/obj/usr/src/sys/GENERIC;  MAKEOBJDIRPREFIX=/usr/obj
MACHINE_ARCH=amd64  MACHINE=amd64  CPUTYPE=
GROFF_BIN_PATH=/usr/obj/usr/src/tmp/legacy/usr/bin
GROFF_FONT_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/groff_font
GROFF_TMAC_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/tmac
PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bi
n:/usr/obj/usr/src/tmp/legacy/usr/games:/usr/obj/usr/src/tmp/usr/sbin:/usr/o
bj/usr/src/tmp/usr/bin:/usr/obj/usr/src/tmp/usr/games:/sbin:/bin:/usr/sbin:/
usr/bin  make KERNEL=kernel install
thiskernel=`sysctl -n kern.bootfile` ;  if [ ! `dirname $thiskernel` -ef
/boot/kernel ] ; then  chflags -R noschg /boot/kernel ;  rm -rf /boot/kernel
;  else  if [ -d /boot/kernel.old ] ; then  chflags -R noschg
/boot/kernel.old ;  rm -rf /boot/kernel.old ;  fi ;  mv /boot/kernel
/boot/kernel.old ;  sysctl kern.bootfile=/boot/kernel.old/`basename
$thiskernel` ;  fi
kern.bootfile: /boot/kernel/kernel - /boot/kernel.old/kernel
mkdir -p /boot/kernel
install -p -m 555 -o root -g wheel kernel /boot/kernel
cd /usr/src/sys/modules;
MAKEOBJDIRPREFIX=/usr/obj/usr/src/sys/GENERIC/modules KMODDIR=/boot/kernel
DEBUG_FLAGS=-g MACHINE=amd64 KERNBUILDDIR=/usr/obj/usr/src/sys/GENERIC
make  install


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


Re: make installkernel doesn't work?

2006-03-12 Thread Cstdenis
(Resending, didn't get the mailing list in the last copy)

No script, just running those commands manually.

%grep KERNCONF /etc/make.conf
%
All make.conf contains is a few WITH_ and WITHOUT_ switches for some ports
and the perl stuff. I commented out the optimization stuff a few tries ago.

%env | grep KERNCONF
%

I don't think its a KERNCONF issue because the Installing kernel output
starts with cd /usr/obj/usr/src/sys/GENERIC

Full output of make (about 2.6MB)
http://www.fanart-central.net/files/make_kernel.txt

- Original Message - 
From: Garrett Cooper [EMAIL PROTECTED]
To: freebsd-questions@freebsd.org
Sent: Sunday, March 12, 2006 9:38 PM
Subject: Re: make installkernel doesn't work?


 On Mar 12, 2006, at 8:55 PM, Cstdenis wrote:

  I don't get it. I'm trying to switch from a custom kernel named
  SERVER to a
  generic kernel.
 
  %uname -imrs
  FreeBSD 6.0-RELEASE-p4 amd64 SERVER
 
  cd /usr/src
  make clean
  rm -rf /usr/obj
  make buildkernel
  make installkernel
  reboot
  %sysctl kern.ident
  kern.ident: SERVER
 
  Why isn't the GENERIC kernel taking effect? The make installkernel
  does say
  generic.
 
  --
  Installing kernel
  --
  cd /usr/obj/usr/src/sys/GENERIC;  MAKEOBJDIRPREFIX=/usr/obj
  MACHINE_ARCH=amd64  MACHINE=amd64  CPUTYPE=
  GROFF_BIN_PATH=/usr/obj/usr/src/tmp/legacy/usr/bin
  GROFF_FONT_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/groff_font
  GROFF_TMAC_PATH=/usr/obj/usr/src/tmp/legacy/usr/share/tmac
  PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/
  legacy/usr/bi
  n:/usr/obj/usr/src/tmp/legacy/usr/games:/usr/obj/usr/src/tmp/usr/
  sbin:/usr/o
  bj/usr/src/tmp/usr/bin:/usr/obj/usr/src/tmp/usr/games:/sbin:/bin:/
  usr/sbin:/
  usr/bin  make KERNEL=kernel install
  thiskernel=`sysctl -n kern.bootfile` ;  if [ ! `dirname
  $thiskernel` -ef
  /boot/kernel ] ; then  chflags -R noschg /boot/kernel ;  rm -rf /
  boot/kernel
  ;  else  if [ -d /boot/kernel.old ] ; then  chflags -R noschg
  /boot/kernel.old ;  rm -rf /boot/kernel.old ;  fi ;  mv /boot/kernel
  /boot/kernel.old ;  sysctl kern.bootfile=/boot/kernel.old/`basename
  $thiskernel` ;  fi
  kern.bootfile: /boot/kernel/kernel - /boot/kernel.old/kernel
  mkdir -p /boot/kernel
  install -p -m 555 -o root -g wheel kernel /boot/kernel
  cd /usr/src/sys/modules;
  MAKEOBJDIRPREFIX=/usr/obj/usr/src/sys/GENERIC/modules KMODDIR=/boot/
  kernel
  DEBUG_FLAGS=-g MACHINE=amd64 KERNBUILDDIR=/usr/obj/usr/src/sys/
  GENERIC
  make  install
 
 
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to freebsd-questions-
  [EMAIL PROTECTED]

 grep KERNCONF /etc/make.conf yields what? Also, are you making your
 kernel via a script?
 -Garrett
 ___
 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: doubts on FreeBSD

2005-11-22 Thread Cstdenis
Same as any other *nix operating system. Basically just follow the
installation instructions with the program. Common basic ones are...

untar it
tar -zxf file.tar.gz
cd into the extracted dir
cd file/
run the configure script if there is one.
./configure
and compile it with make or if necessary gmake
make


But, if a program is in the ports tree you are better off using that unless
you have specific reason not to.

- Original Message - 
From: Anirban Adhikary [EMAIL PROTECTED]
To: freebsd-questions@FreeBSD.org
Sent: Tuesday, November 22, 2005 3:37 AM
Subject: doubts on FreeBSD


Hi guys,

This is ANIRBAN. I have question on  How to install any application on
FreeBSD from tar.gz source?

Hoping to received the answer soon.
___
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]


Error with /sbin/sha256

2005-11-09 Thread Cstdenis
When I try to compile ports I get

nausicaa# make
===  Extracting for php5-pear-5.0.5
= MD5 Checksum OK for php-5.0.5.tar.bz2.
/libexec/ld-elf.so.1: /sbin/sha256: Undefined symbol SHA256_Init
*** Error code 1

Stop in /usr/ports/devel/php5-pear.


This just started happening for no appearent reason. Only appears to affect 
/sbin/sha256. I tried updating and remaking the world to fix this but it did 
not help any (only source changes were the openSSL updates). 

nausicaa# uname -a
FreeBSD nausicaa.ctgameinfo.com 5.4-RELEASE-p7 FreeBSD 5.4-RELEASE-p7 #0: Sat 
Oct  8 19:34:10 PDT 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SERVER  i386


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