Re: How do I ring a bell?

2013-10-07 Thread Warren Block

On Mon, 7 Oct 2013, Frank Leonhardt wrote:

On 07/10/2013 13:06, Peter Boosten wrote:


echo CTRL-V CTRL-G should do the trick


Or, more easily, printf \a.

Alas, not. The console driver won't ring the BIOS bell on anything I've 
tried. It might on a desktop with a built-in sound card and speakers, but it 
won't do anything with the beep speaker. It's actually the same solution I 
mentioned in the first line (\a translates to 007 which is ctrl-G).


Make sure hw.syscons.bell is set to 1.  It can be changed at run time, 
like in /etc/sysctl.conf.  Some systems have it disabled (set to 0) 
because the bell is amazingly loud and piercing.  (Looking at you, 
Dell.)

___
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: How do I ring a bell?

2013-10-07 Thread Frank Leonhardt

On 07/10/2013 13:36, Polytropon wrote:

 Is there any way to make a noise through the built in bell speaker
 found on an IBM PC compatible server box? Writing 007 to the BIOS cout
 routine might do it, but I've realised I haven't got a clue how to 
do that.

 Making it audible is part of the local terminal emulator,
 either the TTY (text mode) driver or via xterm (or the
 preferred alternative terminal emulator in X).

Yers, but I'm not running X. Or a character terminal come to that :-)


 A more sophisticated interface is provided as soon as your
 kernel has

 device speaker

 compiled in (or speaker.ko has been loaded). Now you can
 play wonderful music through the speaker. :-)

 See man 4 speaker for details.

Thanks! This is what I was looking for.

 See the following shell script as an example of what you
 can do: snip

Overkill. I have proper work to do rather than working out how to play 
appropriate bit silly little tunes for every eventuality. Actually 
spkr.c has some useful comments in it - apparently it works the same as 
IBM PC BASIC. Now how do I make it polyphonic...



 Always make sure that the system actually _has_ got an
 internal speaker! I assume that modern PC hardware could
 have it removed along with floppy drive connector, parallel
 port or power switch.

Remains to be seen, but most still seem to have one so the BIOS ROM can 
make beep diagnostic codes if it can't do anything else.


 P.S. cdcontrol -f /dev/mycdrom eject is the best I've come up with so
 far for getting attention.
 That's a really clever idea, never heared of that. It has
 the advantage of being permanent because the drive will
 stay open when the sound of its motor has finished. :-)

I use it all the time, especially when directing a tech to the 
appropriate server in a rack. It's the one I just popped the CD drive 
on. These days servers have the spring-loaded notebook drives instead 
of the motorised trays, which is a pity. You could keep winding the 
motorised ones in and out until someone spotted it. I suppose if you did 
it energetically enough it might catch fire and set off the smoke alarm 
(audible). Or leave it wound out with a tin can balanced on it; to make 
a noise wind it back in and hear it clatter to the floor.


(Incidentally - email over-lap because earlier reply posted to me and 
list rather than just list)


Regards, Frank.

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


Re: freebsd-update upgrade -r 7.4-RELEASE-p12

2013-10-07 Thread Andreas Rudisch
On Mon, 7 Oct 2013 15:22:17 -0400
alexus ale...@gmail.com wrote:

 bash-4.2# freebsd-update upgrade -r 7.4-RELEASE-p12

 Is there a way to upgrade 7.4-RELEASE-p5 to 7.4-RELEASE-p12 using
 freebsd-update now?

What about:
# freebsd-update fetch
# freebsd-update install

http://www.freebsd.org/security/

Andreas
--
 Andreas Rudisch
 a...@sectorbyte.de
___
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: freebsd-update upgrade -r 7.4-RELEASE-p12

2013-10-07 Thread Mark Felder
On Mon, Oct 7, 2013, at 14:22, alexus wrote:
 bash-4.2# freebsd-update upgrade -r 7.4-RELEASE-p12

Just freebsd-update fetch  freebsd-update install is all you should
have to run. The -r flag is for jumping major releases (from 7.x to 8.x,
for example).

I can't comment on whether or not the freebsd-update data for 7.x is
still on the servers, though.
___
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: freebsd-update upgrade -r 7.4-RELEASE-p12

2013-10-07 Thread alexus
ok, I just did fetch  install and got bumped from p5 to p9

# uname -a
FreeBSD XX.X.org 7.4-RELEASE-p9 FreeBSD 7.4-RELEASE-p9 #0: Mon Jun 11
19:47:58 UTC 2012
r...@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC
 amd64
#

can I take it all the way to -p12? (I'm running fetch again, hoping it will
do that)



On Mon, Oct 7, 2013 at 4:16 PM, Mark Felder f...@freebsd.org wrote:

 On Mon, Oct 7, 2013, at 14:22, alexus wrote:
  bash-4.2# freebsd-update upgrade -r 7.4-RELEASE-p12

 Just freebsd-update fetch  freebsd-update install is all you should
 have to run. The -r flag is for jumping major releases (from 7.x to 8.x,
 for example).

 I can't comment on whether or not the freebsd-update data for 7.x is
 still on the servers, though.
 ___
 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




-- 
http://alexus.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: freebsd-update upgrade -r 7.4-RELEASE-p12

2013-10-07 Thread alexus
it didn't help..

# freebsd-update fetch
Looking up update.FreeBSD.org mirrors... 5 mirrors found.
Fetching metadata signature for 7.4-RELEASE from update6.freebsd.org...
done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

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

No updates needed to update system to 7.4-RELEASE-p12.

WARNING: FreeBSD 7.4-RELEASE-p9 HAS PASSED ITS END-OF-LIFE DATE.
Any security issues discovered after Fri Mar  1 00:00:00 UTC 2013
will not have been corrected.
# freebsd-update install
No updates are available to install.
Run '/usr/sbin/freebsd-update fetch' first.
#



On Mon, Oct 7, 2013 at 5:13 PM, alexus ale...@gmail.com wrote:

 ok, I just did fetch  install and got bumped from p5 to p9

 # uname -a
 FreeBSD XX.X.org 7.4-RELEASE-p9 FreeBSD 7.4-RELEASE-p9 #0: Mon Jun 11
 19:47:58 UTC 2012 
 r...@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC
  amd64
 #

 can I take it all the way to -p12? (I'm running fetch again, hoping it
 will do that)



 On Mon, Oct 7, 2013 at 4:16 PM, Mark Felder f...@freebsd.org wrote:

 On Mon, Oct 7, 2013, at 14:22, alexus wrote:
  bash-4.2# freebsd-update upgrade -r 7.4-RELEASE-p12

 Just freebsd-update fetch  freebsd-update install is all you should
 have to run. The -r flag is for jumping major releases (from 7.x to 8.x,
 for example).

 I can't comment on whether or not the freebsd-update data for 7.x is
 still on the servers, though.
 ___
 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




 --
 http://alexus.org/




-- 
http://alexus.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


failed to create gmirror with the handbook instructions

2013-10-07 Thread Andy Zammy
Hi,

I used the second section of the handbook (20.4) to create a gmirror. In my
particular setup I had a 1GB /, 6GB swap, 1GB /tmp and the rest of the 1TB
drive was left for /usr

I had to deviate from the handbook when it came to running the dump +
restore commands, as the dump failed due to an issue with the journalling.
To get around this problem, I dropped into single user mode, so I could
remount root as read-only. The dump commands then worked. It specified in
the handbook to restart the machine, and boot from ada1.

It was at this point that I noticed something wasn't quite right. There was
a spew of 'not found/no such file or directory' messages. These were all
trying to reference libs and binaries that live in /usr.

I boot into single user mode, and upon checking the other partitions, I
notice that /tmp and /usr are empty, apart from a .snap file, and the
restoresymtable file.

Please could someone help me troubleshoot this problem? Let me know if you
need any more info, and I'll post it up asap.

Kind Regards

Andy
___
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: failed to create gmirror with the handbook instructions

2013-10-07 Thread Warren Block

On Tue, 8 Oct 2013, Andy Zammy wrote:


Hi,

I used the second section of the handbook (20.4) to create a gmirror. In my
particular setup I had a 1GB /, 6GB swap, 1GB /tmp and the rest of the 1TB
drive was left for /usr

I had to deviate from the handbook when it came to running the dump +
restore commands, as the dump failed due to an issue with the journalling.
To get around this problem, I dropped into single user mode, so I could
remount root as read-only. The dump commands then worked. It specified in
the handbook to restart the machine, and boot from ada1.

It was at this point that I noticed something wasn't quite right. There was
a spew of 'not found/no such file or directory' messages. These were all
trying to reference libs and binaries that live in /usr.

I boot into single user mode, and upon checking the other partitions, I
notice that /tmp and /usr are empty, apart from a .snap file, and the
restoresymtable file.

Please could someone help me troubleshoot this problem? Let me know if you
need any more info, and I'll post it up asap.


dump does not work reliably on filesystems with SUJ enabled.  Turn off 
SUJ on the filesystems to be dumped by booting in single-user mode and 
running

  tunefs -j disable /dev/ada0whatever

Do each filesystem, then use dump.
___
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


jabberd14 crashes if built with Clang 3.3

2013-10-07 Thread other

Hi Guys,

Just following up on a previous post (have changed the subject as this 
is a port specific issue that has cropped up since upgrading from 
9.1-RELEASE (amd64) to 9.2-RELEASE (amd64)).


This is interesting. I recompiled this port without Clang (using the 
base gcc) and it has not crashed once since (sig 10 bus error crashes 
are gone). Funnily enough, in FreeBSD 9.1-RELEASE, the same port 
compiled with Clang 3.1 did not crash ever. So the culprit has to be 
Clang 3.3.


I have the following in my /etc/make.conf (for clang building):

root@srv:~ # cat /etc/make.conf
NO_PROFILE=true
CC=clang
CXX=clang++
CPP=clang-cpp

Whilst building the port with the base compiler is a workaround, it's 
not a long term solution, since Clang will be the default Compiler in 
the not so distant future.


What is even more annoying is the lack of a port maintainer for 
net-im/jabber:


MAINTAINER= po...@freebsd.org
COMMENT=XMPP/Jabber server daemon

I assume the above email is just a generic email address for ports who 
do not have a maintainer?


Any suggestions what to do from here?

Kind Regards,
Alex.


On 2013-10-02 09:54, ot...@ahhyes.net wrote:



* /usr/ports/net/net-im/jabber (which appears not to have changed
versions between my system upgrade) randomly
aborts with signal 10 (bus error).

___
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: How do I ring a bell?

2013-10-07 Thread Polytropon
On Mon, 07 Oct 2013 21:09:44 +0100, Frank Leonhardt wrote:
 On 07/10/2013 13:36, Polytropon wrote:
   Is there any way to make a noise through the built in bell speaker
   found on an IBM PC compatible server box? Writing 007 to the BIOS cout
   routine might do it, but I've realised I haven't got a clue how to 
  do that.
   Making it audible is part of the local terminal emulator,
   either the TTY (text mode) driver or via xterm (or the
   preferred alternative terminal emulator in X).
 
 Yers, but I'm not running X. Or a character terminal come to that :-)

In that case, something line

printf \a  /dev/console

should work - I've just tried it. You can do that from a
shell script or maybe even via fprintf() from your own code.



   See the following shell script as an example of what you
   can do: snip
 
 Overkill. I have proper work to do rather than working out how to play 
 appropriate bit silly little tunes for every eventuality. Actually 
 spkr.c has some useful comments in it - apparently it works the same as 
 IBM PC BASIC. Now how do I make it polyphonic...

By adding more computers. This is the established solution
to _every_ IT-related problem. :-)

The code in /usr/src/sys/dev/speaker/spkr.c provides a more
streamlined interface to sound generation. It's even more
bare metal than what I remember from Borland Turbo-C:

sound(1000);
delay(2500);
nosound();

It was important not to miss the 3rd line or the fun would
never end. :-)



   Always make sure that the system actually _has_ got an
   internal speaker! I assume that modern PC hardware could
   have it removed along with floppy drive connector, parallel
   port or power switch.
 
 Remains to be seen, but most still seem to have one so the BIOS ROM can 
 make beep diagnostic codes if it can't do anything else.

This proves that it is present, even if it's not an attached
speaker anymore. Many mainboards contain a little piezo speaker
directly mounted (my ultracheap home PC does, for example).



   P.S. cdcontrol -f /dev/mycdrom eject is the best I've come up with so
   far for getting attention.
   That's a really clever idea, never heared of that. It has
   the advantage of being permanent because the drive will
   stay open when the sound of its motor has finished. :-)
 
 I use it all the time, especially when directing a tech to the 
 appropriate server in a rack. It's the one I just popped the CD drive 
 on. These days servers have the spring-loaded notebook drives instead 
 of the motorised trays, which is a pity. You could keep winding the 
 motorised ones in and out until someone spotted it.

This seems to be better than those slot-in drives I had
in one server: no moving parts to the outside.



 I suppose if you did 
 it energetically enough it might catch fire and set off the smoke alarm 
 (audible).

This procedure has been part of an independent quality test
of CD recorders, performed by a PC maganzine many years ago.
Interesting result: the cheapest drive would last longer than
the most expensive one in which the gears automatically had
disassembled. :-)



 Or leave it wound out with a tin can balanced on it; to make 
 a noise wind it back in and hear it clatter to the floor.

Interesting use for the 4X cup holder. :-)



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


NAT: Handbook vs mailing list

2013-10-07 Thread Chris Stankevitz
http://www.freebsd.org/doc/handbook/network-natd.html

http://lists.freebsd.org/pipermail/freebsd-questions/2011-April/229017.html

Hello,

Handbook section 31.9.3 suggests I should, among other things, add the
line ipdivert_load=YES to /boot/loader.conf when setting up NAT.

The mailing list message linked above suggests that the handbook
information is the old way and that the correct way is to set
ipfw_enable and natd_enable in rc.conf.  Then /etc/rc.d/ipfw will
load ipfw.ko, and if natd_enable is set, will invoke /etc/rc.d/natd,
which loads ipdivert.ko at the right time.

My inclination is to follow the handbook, but I thought I should first
check to ensure the handbook is up-to-date.

Thank you,

Chris
___
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: NAT: Handbook vs mailing list

2013-10-07 Thread Olivier Nicole
Chris,

On Tue, Oct 8, 2013 at 11:21 AM, Chris Stankevitz
chrisstankev...@gmail.com wrote:
 http://www.freebsd.org/doc/handbook/network-natd.html

 http://lists.freebsd.org/pipermail/freebsd-questions/2011-April/229017.html

 Hello,

 Handbook section 31.9.3 suggests I should, among other things, add the
 line ipdivert_load=YES to /boot/loader.conf when setting up NAT.

 The mailing list message linked above suggests that the handbook
 information is the old way and that the correct way is to set
 ipfw_enable and natd_enable in rc.conf.  Then /etc/rc.d/ipfw will
 load ipfw.ko, and if natd_enable is set, will invoke /etc/rc.d/natd,
 which loads ipdivert.ko at the right time.

From what you copied/explained, natd_enable will load ipdivert.ko and
the handbook suggests that you load ipdivert.ko, so either way the
module will be loaded.

I'd go with the ipfw_enable and natd_enable as it may also do other
needed things than just loading a kernel module.

best regards,

Olivier

 My inclination is to follow the handbook, but I thought I should first
 check to ensure the handbook is up-to-date.

 Thank you,

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


Why no ls on DVD or livefs.iso?

2013-10-06 Thread W. D.
Booted with both.  Alt-F4 to get to command line.

Very limited commands: ls: not found.

Why?  What good are these disks if they don't have
the most basic of commands?

Trying to clone a hard disk that has an number
of bad sectors.  Trying to save most of my data.

Want to use recoverdisk, but can't get the 
command line to work.

Any ideas?


===
# clone a hard disk
 recoverdisk /dev/ad3 /dev/ad4
=== 







Start Here to Find It Fast!™ - http://www.US-Webmasters.com/best-start-page/
$9.99 Domain Names - http://domains.us-webmasters.com/

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


Re: Why no ls on DVD or livefs.iso?

2013-10-06 Thread Polytropon
On Sun, 06 Oct 2013 01:29:19 -0500, W. D. wrote:
 Booted with both.  Alt-F4 to get to command line.
 
 Very limited commands: ls: not found.

Try /rescue/ls explicitely instead.



 Why?  What good are these disks if they don't have
 the most basic of commands?

Only live systems offer more than the holographic shell
when booted properly. FreeSBIE has been a very good live
system in the past, but the current installers also allow
you to drop into a working shell environment at a very
early stage (from within bsdinstall).

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/bsdinstall/bsdinstall-choose-mode.png

This dialog should bring you into a working shell. I've
been using it myself for disk initialization with a
FreeBSD 9.1 CD.



 Trying to clone a hard disk that has an number
 of bad sectors.  Trying to save most of my data.

A good approach. If possible, try to obtain a 1:1 copy
of the disk (or partition) and work with that. Check
the mailing list archives for further inspiration.




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


Re: Problem completing a 9.1 release to 9.2 release upgrade

2013-10-06 Thread Matthew Seaman
On 05/10/2013 21:41, Polytropon wrote:
 On Sat, 5 Oct 2013 16:00:25 -0400, Eric Feldhusen wrote:
  I see my /usr/src/sys/amd64/conf/GENERIC is a 9.2 kernel, so I should just
 be able to do a

 cd /usr/src
 make buildworld
 make installworld
 reboot

 and I'll be running up on the 9.2 kernel and then I'll be all set?
 
 No. You should follow the procedure mentioned in the
 comment header of /usr/src/Makefile. From my (old)
 b-STABLE system:
 
 #  1.  `cd /usr/src'   (or to the directory containing your source tree).
 #  2.  `make buildworld'
 #  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
 #  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
 #   [steps 3.  4. can be combined by using the kernel target]
 #  5.  `reboot'(in single user mode: boot -s from the loader prompt).
 #  6.  `mergemaster -p'
 #  7.  `make installworld'
 #  8.  `make delete-old'
 #  9.  `mergemaster'(you may wish to use -i, along with -U or -F).
 # 10.  `reboot'
 # 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
 
 Pick what you need to do. When kernel and world sources are
 in sync, a new kernel can always be installed in multi-user
 mode. To install world, you should drop to single-user mode
 to avoid interferences with a full-featured system running
 in the background. This procedure (or parts of it) will
 also work when you have been using freebsd-update to modify
 your kernel, world, and sources.
 

Errrmm... The OP is maintaining his system using freebsd-update -- just
building and installing a replacement kernel from the source tree
installed via freebsd-update is in fact perfectly OK and a supported way
to manage a FreeBSD system.

While you are quoting the official instructions from /usr/src/UPDATING
here (so they are completely correct in that sense) these are the
instructions to do something rather different to what the OP intended.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.
PGP: http://www.infracaninophile.co.uk/pgpkey




signature.asc
Description: OpenPGP digital signature


Re: Problem completing a 9.1 release to 9.2 release upgrade

2013-10-06 Thread Polytropon
On Sun, 06 Oct 2013 08:08:42 +0100, Matthew Seaman wrote:
 On 05/10/2013 21:41, Polytropon wrote:
  On Sat, 5 Oct 2013 16:00:25 -0400, Eric Feldhusen wrote:
   I see my /usr/src/sys/amd64/conf/GENERIC is a 9.2 kernel, so I should just
  be able to do a
 
  cd /usr/src
  make buildworld
  make installworld
  reboot
 
  and I'll be running up on the 9.2 kernel and then I'll be all set?
  
  No. You should follow the procedure mentioned in the
  comment header of /usr/src/Makefile. From my (old)
  b-STABLE system:
  
  #  1.  `cd /usr/src'   (or to the directory containing your source 
  tree).
  #  2.  `make buildworld'
  #  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is 
  GENERIC).
  #  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is 
  GENERIC).
  #   [steps 3.  4. can be combined by using the kernel target]
  #  5.  `reboot'(in single user mode: boot -s from the loader 
  prompt).
  #  6.  `mergemaster -p'
  #  7.  `make installworld'
  #  8.  `make delete-old'
  #  9.  `mergemaster'(you may wish to use -i, along with -U or 
  -F).
  # 10.  `reboot'
  # 11.  `make delete-old-libs' (in case no 3rd party program uses them 
  anymore)
  
  Pick what you need to do. When kernel and world sources are
  in sync, a new kernel can always be installed in multi-user
  mode. To install world, you should drop to single-user mode
  to avoid interferences with a full-featured system running
  in the background. This procedure (or parts of it) will
  also work when you have been using freebsd-update to modify
  your kernel, world, and sources.
  
 
 Errrmm... The OP is maintaining his system using freebsd-update -- just
 building and installing a replacement kernel from the source tree
 installed via freebsd-update is in fact perfectly OK and a supported way
 to manage a FreeBSD system.

That is true. But if I understand the question (as quoted
above) correctly, installing world from source has been
involved, that's why my suggestion of following the
instructions (or a subset of them, as it applies).



 While you are quoting the official instructions from /usr/src/UPDATING
 here (so they are completely correct in that sense) these are the
 instructions to do something rather different to what the OP intended.

I've copied the the instructions from the comment header
of /usr/src/Makefile (at least on my outdated system at
home they're there). Of course if the _only_ problem of
the initial question is to install a custom kernel, with
an otherwise updated system using freebsd-update (with
world, kernel and sources in sync), just installing a
custom kernel from within multi-user mode is fully
supported by the system. This implies that only a small
subset of the quoted instructions would apply here
(steps 1 and 3 - 5), after freebsd-update has been
finished successfully.




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


Re: Problem completing a 9.1 release to 9.2 release upgrade

2013-10-06 Thread Matthew Seaman
On 06/10/2013 04:51, Eric Feldhusen wrote:
 I figured I'd walk through those steps from start to finish and just
 correct my main problem and any other little glitches I might have.
 
 I'm on step 6 and when I run mergemaster -p, I get the following error.
 
 *** Creating the temporary root environment in /var/tmp/temproot
  *** /var/tmp/temproot ready for use
  *** Creating and populating directory structure in /var/tmp/temproot
 
 /usr/bin/install: Undefined symbol gid_from_group
 
   *** FATAL ERROR: Cannot copy files to the temproot environment
 
 I found this thread on the Freebsd forums
 http://forums.freebsd.org/showthread.php?t=41779 with the same error and if
 I do the same diagnostic steps of
 
 truss install -d -g wheel ~/testdirectory
 
 I find an error of
 
 lstat(/usr/local/etc/libmap.d,0x7fffb990) ERR#2 'No such file or
 directory'
 
 Any suggestions? Thank you for the help thus far.

The 'undefined symbol' error means you have a binary which is somehow
not dynamically linking against the shared libraries it was compiled to
use.  As install(1) has pretty simple dynamic library usage -- just
libmd and libc:

# ldd /usr/bin/install
/usr/bin/install:
libmd.so.5 = /lib/libmd.so.5 (0x800822000)
libc.so.7 = /lib/libc.so.7 (0x800a33000)

... and libmd.so just contains code for computing various checksums,
nothing to do with groups and GIDs.  This suggests that your libc.so is
somehow incompatible with your /usr/bin/install.  Which really shouldn't
be the case given that you'ld previously used freebsd-update to upgrade
your userland to 9.2-RELEASE.

Things to double check:

   * you haven't been faffing about with /etc/libmap.conf -- that file
 or any file it includes should basically be empty except in quite
 unusual circumstances.  Remember folks: libmap is not your
 solution of choice.  It's what you turn to when there are no other
 viable alternatives.

   * Your freebsd-update really has been updating the source tree you
 attempted to upgrade from.  Check /etc/freebsd-update.conf.  By
 default it contains:

# Components of the base system which should be kept updated.
Components src world kernel

 If you don't have src in there your buildworld procedure will at
 best be trying to take you back down to 9.1-RELEASE-p???, and at
 worst trying to create some unholy mixture of 9.2 kernel with
 earlier bits of the system.

I think you should be able to recover to a system managed via
freebsd-update by something like:

   # vi /etc/freebsd-update.conf
   { Make sure you're getting 'src world kernel' components as shown
 above }
   # freebsd-update fetch
   # freebsd-update install

but I haven't tested that so ICBW.  In any case, this should get you
back to the state where you have a 9.2-RELEASE world but your modified
9.1-RELEASE kernel.  If you still need a custom kernel then you can
build and install it like so:

   # cd /usr/src
   # make KERNCONF=MYKERNEL buildkernel
   # make KERNCONF=MYKERNEL installkernel

and reboot.  Otherwise, I'm not sure exactly how you'ld revert from a
custom kernel to the standard generic kernel you'ld normally get via
freebsd-update.  What I'd try is moving aside my customized kernel and
re-running freebsd-update:

   # cd /boot
   # mv kernel kernel-MYKERNEL
   # freebsd-update install

If that creates a new /boot/kernel and populates with a new kernel and
many loadable modules then you're golden.  If not, move your saved
kernel back into place (mv kernel-MYKERNEL kernel) and ask here again.

The 'no such file or directory' error for /usr/local/etc/libmap.d thing
is a false problem: /usr/local/etc/libmap.d is an optional directory --
all you are seeing is install(1) trying to open it and discovering that
it doesn't exist.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.

PGP: http://www.infracaninophile.co.uk/pgpkey
JID: matt...@infracaninophile.co.uk



signature.asc
Description: OpenPGP digital signature


Error messages when booting up machine and starting KDE

2013-10-06 Thread Carmel
I have observed these messages being written to the system log when
initially booting up the machine and then starting KDE.

Oct  6 08:16:09 scorpio dbus[5896]: [system] Activating service 
name='org.freedesktop.ConsoleKit' (using servicehelper)
Oct  6 08:16:09 scorpio dbus[5896]: [system] Activating service 
name='org.freedesktop.PolicyKit1' (using servicehelper)
Oct  6 08:16:09 scorpio dbus[5896]: [system] Successfully activated service 
'org.freedesktop.PolicyKit1'
Oct  6 08:16:09 scorpio dbus[5896]: [system] Successfully activated service 
'org.freedesktop.ConsoleKit'
Oct  6 08:16:09 scorpio console-kit-daemon[5917]: WARNING: kvm_getenvv failed: 
Oct  6 08:17:32 scorpio console-kit-daemon[5917]: WARNING: Error waiting for 
native console 1 activation: Device not configured
Oct  6 08:18:13 scorpio dbus[5896]: [system] Activating service 
name='org.freedesktop.UPower' (using servicehelper)
Oct  6 08:18:13 scorpio dbus[5896]: [system] Successfully activated service 
'org.freedesktop.UPower'
Oct  6 08:18:14 scorpio dbus[5896]: [system] Activating service 
name='org.kde.powerdevil.backlighthelper' (using servicehelper)
Oct  6 08:18:14 scorpio org.kde.powerdevil.backlighthelper: QDBusConnection: 
system D-Bus connection created before QCoreApplication. Application may 
misbehave.
Oct  6 08:18:14 scorpio dbus[5896]: [system] Successfully activated service 
'org.kde.powerdevil.backlighthelper'
Oct  6 08:18:20 scorpio kernel: pid 6286 (kwin_opengl_test), uid 1001: exited 
on signal 11 (core dumped)
Oct  6 08:18:40 scorpio dbus[5896]: [system] Activating service 
name='org.kde.powerdevil.backlighthelper' (using servicehelper)
Oct  6 08:18:40 scorpio org.kde.powerdevil.backlighthelper: QDBusConnection: 
system D-Bus connection created before QCoreApplication. Application may 
misbehave.
Oct  6 08:18:40 scorpio dbus[5896]: [system] Successfully activated service 
'org.kde.powerdevil.backlighthelper'
Oct  6 08:18:46 scorpio dbus[5896]: [system] Failed to activate service 
'org.freedesktop.Avahi': timed out
Oct  6 08:18:55 scorpio pulseaudio[6346]: module.c: module-detect is 
deprecated: Please use module-udev-detect instead of module-detect!
Oct  6 08:18:55 scorpio pulseaudio[6346]: oss-util.c: '/dev/dsp0' doesn't 
support full duplex
Oct  6 08:18:55 scorpio pulseaudio[6346]: oss-util.c: '/dev/dsp1' doesn't 
support full duplex
Oct  6 08:18:55 scorpio pulseaudio[6346]: oss-util.c: '/dev/dsp2' doesn't 
support full duplex
Oct  6 08:18:55 scorpio pulseaudio[6346]: oss-util.c: '/dev/dsp3' doesn't 
support full duplex
Oct  6 08:18:55 scorpio pulseaudio[6346]: oss-util.c: '/dev/dsp6' doesn't 
support full duplex
Oct  6 08:18:56 scorpio pulseaudio[6352]: pid.c: Daemon already running.

I am particularly interested in the two WARNING messages (5  6); the
core dump (item 12); the timed out (item 16) and the last one,
although that one appears to be harmless. Is there something I should
be doing to correct these apparent problems?

-- 
Carmel ✌
carmel...@hotmail.com

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

Re: Why no ls on DVD or livefs.iso?

2013-10-06 Thread Warren Block

On Sun, 6 Oct 2013, W. D. wrote:


Booted with both.  Alt-F4 to get to command line.

Very limited commands: ls: not found.

Why?  What good are these disks if they don't have
the most basic of commands?


The emergency holographic shell was always very limited.  I suspect a 
path thing, with it looking for commands on the installed system.  Old 
bare-bones tricks like echo * help.



Trying to clone a hard disk that has an number
of bad sectors.  Trying to save most of my data.

Want to use recoverdisk, but can't get the
command line to work.


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


No Sound from Firefox

2013-10-06 Thread Jerry
Firefox has suddenly went silent. I can view videos on Youtube for
instance, but there is no sound. If I save the video to dist and play
it with MPlayer, there is sound. I did update several PHP modules the
other day, but I don't know it that would have any effect on it. Also,
on several sites, a video starts to load then a blank white area takes
its place and that ends it. Any suggestions as to what might be the
problem.

-- 
Jerry ♔

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__

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

Re: No Sound from Firefox

2013-10-06 Thread Dave Morgan
On 06/10/13 at 10:27am, Jerry wrote:
 Firefox has suddenly went silent. I can view videos on Youtube for
 instance, but there is no sound. If I save the video to dist and play
 it with MPlayer, there is sound. I did update several PHP modules the
 other day, but I don't know it that would have any effect on it. Also,
 on several sites, a video starts to load then a blank white area takes
 its place and that ends it. Any suggestions as to what might be the
 problem.

 --
 Jerry ♔

 Disclaimer: off-list followups get on-list replies or get ignored.
 Please do not ignore the Reply-To header.
 __

 ___
 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

Hi,

I think OSS support has been dropped from Firefox.

--
Dave.

GPG/PGP ID: CDB94DA1


pgpMp71G051bd.pgp
Description: PGP signature


Best 10Gbit/s card for FB 9.2

2013-10-06 Thread Albert Shih
Hi,

I would like to known what is the best 10 Gbits/s copper ethernet card for
FreeBSD 9.2 on Dell hardware : 

I got on the Dell's website



Broadcom 57800 2x10Gb BT + 2x1Gb BT Network Daughter Card 

Broadcom 57810 DP 10Gb BT Converged Network Adapter 

Intel Ethernet X540 10Gb BT DP + i350 1Gb BT DP Network Daughter Card

Intel Ethernet X540 DP 10GBASE-T Server Adapter, Low Profile

Best regards.

JAS

-- 
Albert SHIH
DIO bâtiment 15
Observatoire de Paris
5 Place Jules Janssen
92195 Meudon Cedex
France
Téléphone : +33 1 45 07 76 26/+33 6 86 69 95 71
xmpp: j...@obspm.fr
Heure local/Local time:
dim 6 oct 2013 16:43:45 CEST
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: No Sound from Firefox

2013-10-06 Thread Jerry
On Sun, 6 Oct 2013 15:33:38 +0100
Dave Morgan articulated:

 On 06/10/13 at 10:27am, Jerry wrote:
  Firefox has suddenly went silent. I can view videos on Youtube for
  instance, but there is no sound. If I save the video to dist and
  play it with MPlayer, there is sound. I did update several PHP
  modules the other day, but I don't know it that would have any
  effect on it. Also, on several sites, a video starts to load then a
  blank white area takes its place and that ends it. Any suggestions
  as to what might be the problem.
 
  --
  Jerry ♔
 
  Disclaimer: off-list followups get on-list replies or get ignored.
  Please do not ignore the Reply-To header.
  __
 
  ___
  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
 
 Hi,
 
 I think OSS support has been dropped from Firefox.

Okay, so what exactly does that mean?

-- 
Jerry ♔



signature.asc
Description: PGP signature


Re: No Sound from Firefox

2013-10-06 Thread Matthias Apitz
El día Sunday, October 06, 2013 a las 10:27:48AM -0400, Jerry escribió:

 Firefox has suddenly went silent. I can view videos on Youtube for
 instance, but there is no sound. If I save the video to dist and play
 it with MPlayer, there is sound. I did update several PHP modules the
 other day, but I don't know it that would have any effect on it. Also,
 on several sites, a video starts to load then a blank white area takes
 its place and that ends it. Any suggestions as to what might be the
 problem.

Jerry,

In my records about firefox  flashplugin I have about the no sound
problem:

no sound problem:
see also http://forums.freebsd.org/archive/index.php/t-3353.html
# cd /compat/linux/proc
# ln -s libssl.so.0.9.8g libssl.so.5

HIH

Vy 73

matthias
-- 
Matthias Apitz   |  /\ ASCII Ribbon Campaign: www.asciiribbon.org
E-mail: g...@unixarea.de |  \ / - No HTML/RTF in E-mail
WWW: http://www.unixarea.de/ |   X  - No proprietary attachments
phone: +49-170-4527211   |  / \ - Respect for open standards
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: No Sound from Firefox

2013-10-06 Thread Jerry
On Sun, 6 Oct 2013 16:40:16 +0200
Matthias Apitz articulated:

 El día Sunday, October 06, 2013 a las 10:27:48AM -0400, Jerry
 escribió:
 
  Firefox has suddenly went silent. I can view videos on Youtube for
  instance, but there is no sound. If I save the video to dist and
  play it with MPlayer, there is sound. I did update several PHP
  modules the other day, but I don't know it that would have any
  effect on it. Also, on several sites, a video starts to load then a
  blank white area takes its place and that ends it. Any suggestions
  as to what might be the problem.
 
 Jerry,
 
 In my records about firefox  flashplugin I have about the no sound
 problem:
 
 no sound problem:
 see also
 http://forums.freebsd.org/archive/index.php/t-3353.html #
 cd /compat/linux/proc # ln -s libssl.so.0.9.8g libssl.so.5
This is what I attempted to do:

/compat/linux/proc # ln -s libssl.so.0.9.8g libssl.so.5
ln: libssl.so.5: No such file or directory

/compat/linux/proc # locate libssl.so.5
/usr/local/lib/compat/libssl.so.5
/usr/local/lib32/compat/libssl.so.5

cd /usr/local/lib/compat

/usr/local/lib/compat # cd /usr/local/lib/compat
/usr/local/lib/compat # ln -s libssl.so.0.9.8g libssl.so.5
ln: libssl.so.5: File exists

So where do I go from here? Do I force the link?

-- 
Jerry ♔

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org

Re: No Sound from Firefox

2013-10-06 Thread Jerry
On Sun, 6 Oct 2013 20:15:18 +0200
Matthias Apitz articulated:

 In my netbook it is like this:

 $ uname -a
 FreeBSD tiny.Sisis.de 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r235646: Sat May 
 19 15:52:36 CEST 2012 g...@aurora.sisis.de:/usr/obj/usr/src/sys/GENERIC  
 i386

 $ ls -l /compat/linux/lib/libssl*
 -rwxr-xr-x  1 root  wheel  303584 15 abr 07:54 
 /compat/linux/lib/libssl.so.0.9.8g
 lrwxr-xr-x  1 root  wheel  16 15 abr 07:54 /compat/linux/lib/libssl.so.7 
 - libssl.so.0.9.8g
 -rwxr-xr-x  1 root  wheel  198456 15 abr 07:55 /compat/linux/lib/libssl3.so

FreeBSD scorpio.seibercom.net 8.3-STABLE FreeBSD 8.3-STABLE #0: amd64

/compat/linux/lib $ ls -l /compat/linux/lib/libssl*
-rwxr-xr-x  1 root  wheel  303584 Sep 14  2010 
/compat/linux/lib/libssl.so.0.9.8g*
lrwxr-xr-x  1 root  wheel  16 Sep 14  2010 /compat/linux/lib/libssl.so.7@ 
- libssl.so.0.9.8g
-rwxr-xr-x  1 root  wheel  198456 Sep 14  2010 /compat/linux/lib/libssl3.so*

$ /usr/local/bin/firefox

(process:71385): GLib-CRITICAL **: g_slice_set_config: assertion `sys_page_size 
== 0' failed

This is all I could gather.

-- 
Jerry ♔

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__

___
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: Best 10Gbit/s card for FB 9.2

2013-10-06 Thread ill...@gmail.com
On 6 October 2013 10:47, Albert Shih albert.s...@obspm.fr wrote:
 Hi,

 I would like to known what is the best 10 Gbits/s copper ethernet card for
 FreeBSD 9.2 on Dell hardware :

 I got on the Dell's website



 Broadcom 57800 2x10Gb BT + 2x1Gb BT Network Daughter Card

 Broadcom 57810 DP 10Gb BT Converged Network Adapter

 Intel Ethernet X540 10Gb BT DP + i350 1Gb BT DP Network Daughter Card

 Intel Ethernet X540 DP 10GBASE-T Server Adapter, Low Profile


It looks like (from grepping around) that the BCE578xx are only
supported on FreeBSD 10 (bxe(4)).  The Intel adapter looks to be
supported on 9.2 as ixgbe(4) which is in the GENERIC kernel  so
should (cross fingers) work out of the box.

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


Re: No Sound from Firefox

2013-10-06 Thread Bernt Hansson

On 2013-10-06 21:31, Jerry wrote:

$ /usr/local/bin/firefox

(process:71385): GLib-CRITICAL **: g_slice_set_config: assertion `sys_page_size 
== 0' failed

This is all I could gather.


I get the same for firefox and thunderbird

% firefox 
[1] 37788
%
(process:37788): GLib-CRITICAL **: g_slice_set_config: assertion 
`sys_page_size == 0' failed


% thunderbird 
[2] 38745
%
(process:38745): GLib-CRITICAL **: g_slice_set_config: assertion 
`sys_page_size == 0' failed


My guess it's related to glib.
___
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: Failure to build FreeBSD 9.2

2013-10-05 Thread Juris Kaminskis
i recompiled my kernel with more verbose output and I see following errors
before it stops:

procfs registered
panic: No usable event timer found!
cpuid=0
KDB: stack backtrace:
db_trace_self_wrapper() at db_trace_self_wrapper+0x2a 
panic() at panic+0x1d8/frame 
initclocks() 
mi_startup() 
btext() ...
KDB: enter: panic
[thread pid 0 tid 10]
Stopped at kdb_enter+0x3b: moxq

can someone help me to explain what this means and what to do next?
___
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: Failure to build FreeBSD 9.2

2013-10-05 Thread Polytropon
On Sat, 5 Oct 2013 09:40:31 +0300, Juris Kaminskis wrote:
 i recompiled my kernel with more verbose output and I see following errors
 before it stops:
 
 procfs registered
 panic: No usable event timer found!
 cpuid=0
 KDB: stack backtrace:
 db_trace_self_wrapper() at db_trace_self_wrapper+0x2a 
 panic() at panic+0x1d8/frame 
 initclocks() 
 mi_startup() 
 btext() ...
 KDB: enter: panic
 [thread pid 0 tid 10]
 Stopped at kdb_enter+0x3b: moxq
 
 can someone help me to explain what this means and what to do next?

In many cases, this indicates a problem introduced by the
computer's BIOS settings or ACPI. Make sure ACPI is enabled
and the BIOS is configured properly (e. g. no timer settings
modified or features deactivated). You could also check if
a newer version of the BIOS is available.

In addition, there's the suggestion to add the line

debug.acpi.disabled=hostres

to /boot/loader.conf and reboot.

Source: http://www.freebsd.org/releases/9.0R/errata.html





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


Re: General questions regarding FreeBSD 10

2013-10-05 Thread Patrick Lamaiziere
Le Fri, 27 Sep 2013 12:47:08 -0500,
Nikolas Britton nikolas.brit...@gmail.com a écrit :

 10. How is the Java ecosystem on FreeBSD? 

Not bad IMO. I develop with maven/netbeans/openjdk in Java and
Groovy on FreeBSD 9. That works.

There is no profiler support in netbeans. And the JVM can't request
huge memory page (may be this is fixed in 10?), so it could perform
better :
http://www.oracle.com/technetwork/java/javase/tech/largememory-jsp-137182.html

Java is much slower than other apps when the box is busy (building a
world for example) but I'm not sure if this specific to FreeBSD.

(I have litle success with Eclipse on the past, I don't use it)

Regards.
___
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: Failure to build FreeBSD 9.2

2013-10-05 Thread Juris Kaminskis
2013/10/5 Polytropon free...@edvax.de

 On Sat, 5 Oct 2013 09:40:31 +0300, Juris Kaminskis wrote:
  i recompiled my kernel with more verbose output and I see following
 errors
  before it stops:
 
  procfs registered
  panic: No usable event timer found!
  cpuid=0
  KDB: stack backtrace:
  db_trace_self_wrapper() at db_trace_self_wrapper+0x2a 
  panic() at panic+0x1d8/frame 
  initclocks() 
  mi_startup() 
  btext() ...
  KDB: enter: panic
  [thread pid 0 tid 10]
  Stopped at kdb_enter+0x3b: moxq
 
  can someone help me to explain what this means and what to do next?

 In many cases, this indicates a problem introduced by the
 computer's BIOS settings or ACPI. Make sure ACPI is enabled
 and the BIOS is configured properly (e. g. no timer settings
 modified or features deactivated). You could also check if
 a newer version of the BIOS is available.


Update to new BIOS did the trick!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


munin related

2013-10-05 Thread Laszlo Danielisz
Hi everybody,

Today while trying to install munin-node on 9.2 from ports I keep getting the 
following error:

===  Checking if sysutils/munin-common already installed
=== Creating users and/or groups.
Using existing group `munin'.
Creating user `munin' with uid `842'.
pw: user 'munin' already exists
*** [create-users-groups] Error code 74

Stop in /usr/ports/sysutils/munin-common.
*** [build-depends] Error code 1

Stop in /usr/ports/sysutils/munin-node.
*** [build] Error code 1

Stop in /usr/ports/sysutils/munin-node.


Do you have any  idea what can cause this?
The ports are up to date.

I've tried before installing munin-node via pkg_add, it installed successfully 
but didn't work properly so I uninstall and tried it via ports.

Any suggestions?

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


Problem completing a 9.1 release to 9.2 release upgrade

2013-10-05 Thread Eric Feldhusen
I have a server that was/is running 9.1 release that I tried to upgrade to
9.2 release.  I missed the step of updating to the latest 9.1 patches by
doing

freebsd-update fetch
freebsd-update install

I went right to

freebsd-update upgrade -r 9.2-RELEASE
freebsd-update install

rebooot

freebsd-update install

reboot again

But my system still comes up as 9.1 release.

Any suggestions on the steps to fix my goof?

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


Re: Problem completing a 9.1 release to 9.2 release upgrade

2013-10-05 Thread Matthew Seaman
On 05/10/2013 20:11, Eric Feldhusen wrote:
 I have a server that was/is running 9.1 release that I tried to upgrade to
 9.2 release.  I missed the step of updating to the latest 9.1 patches by
 doing
 
 freebsd-update fetch
 freebsd-update install
 
 I went right to
 
 freebsd-update upgrade -r 9.2-RELEASE
 freebsd-update install
 
 rebooot
 
 freebsd-update install
 
 reboot again
 
 But my system still comes up as 9.1 release.
 
 Any suggestions on the steps to fix my goof?

Did you replace the generic kernel from 9.1-RELEASE with something you
compiled yourself?  If so, you may well have caused freebsd-update to
ignore any modifications to the kernel.

You can fix that by re-compiling a kernel using the 9.2-RELEASE sources
and basically the same kernel configuration as for 9.1 (you will need to
check for 9.2 related differences to the configuration, but these are
likely to be pretty minor or not needed at all.)

If you aren't using a customized kernel, then has the kernel in the
standard location on your system actually been updated?  You can tell if
it's a 9.2 kernel by running strings(1) against the kernel binary, like so:

   # strings /boot/kernel/kernel | grep RELEASE

If that's clearly a 9.2 kernel, then are you actually booting up from a
different kernel somewhere else on your system?   First of all, are
there any other copies of FreeBSD kernels around anywhere -- on
memsticks, or on split mirrors perhaps?  You may need to fiddle with the
bios settings or interrupt the boot sequence and type things directly at
the loader if so.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.
PGP: http://www.infracaninophile.co.uk/pgpkey




signature.asc
Description: OpenPGP digital signature


Re: Problem completing a 9.1 release to 9.2 release upgrade

2013-10-05 Thread Eric Feldhusen
Ah, yes, when this particular box was a 9.0-release, I had compiled a
custom kernel to enable ipsec.  When I check the strings, it's a 9.1
release kernel.

 I see my /usr/src/sys/amd64/conf/GENERIC is a 9.2 kernel, so I should just
be able to do a

cd /usr/src
make buildworld
make installworld
reboot

and I'll be running up on the 9.2 kernel and then I'll be all set?

Thanks for the help.

Eric


On Sat, Oct 5, 2013 at 3:34 PM, Matthew Seaman matt...@freebsd.org wrote:

 On 05/10/2013 20:11, Eric Feldhusen wrote:
  I have a server that was/is running 9.1 release that I tried to upgrade
 to
  9.2 release.  I missed the step of updating to the latest 9.1 patches by
  doing
 
  freebsd-update fetch
  freebsd-update install
 
  I went right to
 
  freebsd-update upgrade -r 9.2-RELEASE
  freebsd-update install
 
  rebooot
 
  freebsd-update install
 
  reboot again
 
  But my system still comes up as 9.1 release.
 
  Any suggestions on the steps to fix my goof?

 Did you replace the generic kernel from 9.1-RELEASE with something you
 compiled yourself?  If so, you may well have caused freebsd-update to
 ignore any modifications to the kernel.

 You can fix that by re-compiling a kernel using the 9.2-RELEASE sources
 and basically the same kernel configuration as for 9.1 (you will need to
 check for 9.2 related differences to the configuration, but these are
 likely to be pretty minor or not needed at all.)

 If you aren't using a customized kernel, then has the kernel in the
 standard location on your system actually been updated?  You can tell if
 it's a 9.2 kernel by running strings(1) against the kernel binary, like so:

# strings /boot/kernel/kernel | grep RELEASE

 If that's clearly a 9.2 kernel, then are you actually booting up from a
 different kernel somewhere else on your system?   First of all, are
 there any other copies of FreeBSD kernels around anywhere -- on
 memsticks, or on split mirrors perhaps?  You may need to fiddle with the
 bios settings or interrupt the boot sequence and type things directly at
 the loader if so.

 Cheers,

 Matthew

 --
 Dr Matthew J Seaman MA, D.Phil.
 PGP: http://www.infracaninophile.co.uk/pgpkey



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


Re: Problem completing a 9.1 release to 9.2 release upgrade

2013-10-05 Thread Polytropon
On Sat, 5 Oct 2013 16:00:25 -0400, Eric Feldhusen wrote:
  I see my /usr/src/sys/amd64/conf/GENERIC is a 9.2 kernel, so I should just
 be able to do a
 
 cd /usr/src
 make buildworld
 make installworld
 reboot
 
 and I'll be running up on the 9.2 kernel and then I'll be all set?

No. You should follow the procedure mentioned in the
comment header of /usr/src/Makefile. From my (old)
b-STABLE system:

#  1.  `cd /usr/src'   (or to the directory containing your source tree).
#  2.  `make buildworld'
#  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
#  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
#   [steps 3.  4. can be combined by using the kernel target]
#  5.  `reboot'(in single user mode: boot -s from the loader prompt).
#  6.  `mergemaster -p'
#  7.  `make installworld'
#  8.  `make delete-old'
#  9.  `mergemaster'(you may wish to use -i, along with -U or -F).
# 10.  `reboot'
# 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)

Pick what you need to do. When kernel and world sources are
in sync, a new kernel can always be installed in multi-user
mode. To install world, you should drop to single-user mode
to avoid interferences with a full-featured system running
in the background. This procedure (or parts of it) will
also work when you have been using freebsd-update to modify
your kernel, world, and sources.




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


Qcad port error

2013-10-05 Thread Bernt Hansson

Hello list!

When trying to build qcad I get this error;

===  Configuring for qcad-3.2.1.0
/usr/bin/sed -i.bak -e s|%%DATADIR%%|/usr/local/share/qcad| 
/usr/ports/cad/qcad/work/qcad-3.2.1.0/src/core/RSettings.cpp

cd /usr/ports/cad/qcad/work/qcad-3.2.1.0  /usr/local/bin/qmake-qt4 -r
Reading /usr/ports/cad/qcad/work/qcad-3.2.1.0/src/src.pro
 Reading /usr/ports/cad/qcad/work/qcad-3.2.1.0/src/3rdparty/3rdparty.pro
Project ERROR: Script bindings not available for Qt version 4.8.2. You 
can add them to src/scripting/qt-labs-qtscriptgenerator-4.8.2 or use 
another version of Qt.

*** [do-configure] Error code 2

Stop in /usr/ports/cad/qcad.

There is other ports that is broken like multimedia/audacious among others.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem completing a 9.1 release to 9.2 release upgrade

2013-10-05 Thread Eric Feldhusen
I figured I'd walk through those steps from start to finish and just
correct my main problem and any other little glitches I might have.

I'm on step 6 and when I run mergemaster -p, I get the following error.

*** Creating the temporary root environment in /var/tmp/temproot
 *** /var/tmp/temproot ready for use
 *** Creating and populating directory structure in /var/tmp/temproot

/usr/bin/install: Undefined symbol gid_from_group

  *** FATAL ERROR: Cannot copy files to the temproot environment

I found this thread on the Freebsd forums
http://forums.freebsd.org/showthread.php?t=41779 with the same error and if
I do the same diagnostic steps of

truss install -d -g wheel ~/testdirectory

I find an error of

lstat(/usr/local/etc/libmap.d,0x7fffb990) ERR#2 'No such file or
directory'

Any suggestions? Thank you for the help thus far.

Eric


On Sat, Oct 5, 2013 at 4:41 PM, Polytropon free...@edvax.de wrote:

 On Sat, 5 Oct 2013 16:00:25 -0400, Eric Feldhusen wrote:
   I see my /usr/src/sys/amd64/conf/GENERIC is a 9.2 kernel, so I should
 just
  be able to do a
 
  cd /usr/src
  make buildworld
  make installworld
  reboot
 
  and I'll be running up on the 9.2 kernel and then I'll be all set?

 No. You should follow the procedure mentioned in the
 comment header of /usr/src/Makefile. From my (old)
 b-STABLE system:

 #  1.  `cd /usr/src'   (or to the directory containing your source
 tree).
 #  2.  `make buildworld'
 #  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is
 GENERIC).
 #  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is
 GENERIC).
 #   [steps 3.  4. can be combined by using the kernel target]
 #  5.  `reboot'(in single user mode: boot -s from the loader
 prompt).
 #  6.  `mergemaster -p'
 #  7.  `make installworld'
 #  8.  `make delete-old'
 #  9.  `mergemaster'(you may wish to use -i, along with -U or
 -F).
 # 10.  `reboot'
 # 11.  `make delete-old-libs' (in case no 3rd party program uses them
 anymore)

 Pick what you need to do. When kernel and world sources are
 in sync, a new kernel can always be installed in multi-user
 mode. To install world, you should drop to single-user mode
 to avoid interferences with a full-featured system running
 in the background. This procedure (or parts of it) will
 also work when you have been using freebsd-update to modify
 your kernel, world, and sources.




 --
 Polytropon
 Magdeburg, Germany
 Happy FreeBSD user since 4.0
 Andra moi ennepe, Mousa, ...

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


GSoC 2014

2013-10-05 Thread Andrei-Mihai Nicolae
Dear Sir/ Madam,

I am writing to you regarding the Google Summer of Code. I was wondering if you 
wanted to enroll for the 2014 edition as well and, moreover, if you could tell 
me what are the necessary skills to be accepted for one of the projects and how 
can I prepare, beforehand, for the projects?

I am looking forward to hearing from you.

Yours faithfully,
Andrei-Mihai Nicolae
___
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: Re: # portmaster -r pixman fails with !#/bin/sh list too long

2013-10-04 Thread Jan Henrik Sylvester
On 10/03/2013 20:28, Antonio Olivares wrote:
 Have tried that, but it rebuilds pixman, but then X bombs out blurting
 out messages that libpixman.so is missing :(
 
 I have tried to remove print/texlive-scheme-full; removed it, but then
 run portmaster -R pixman, and portmaster -r pixman and the running of
 it stops with message that !#/bin/sh .. argument too long and comes up
 with texlive-?-?-_1 or similar.  Have not been successful in
 fixing this issue.  I have 2 machines working and 2 not working
 because of this.  I am running out of ideas.  Is there another way to
 fix this issue manually, i.e, going to /usr/ports/x11/pixman and
 rebuilding it there or have to go one by one?

Is it vital to use the texlive ports you get via portshaker or could you
switch to TEX_DEFAULT=texlive and use the texlive 2012 from official
ports (which has a few huge instead of many tiny packages)?

(If you want to switch, remove everything starting with texlive, check
out a fresh ports tree without portshaker, since there is at least one
port with the same name, and install print/texlive-full and maybe
print/texlive-docs.)

Cheers,
Jan Henrik
___
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: Soekris for a Trac server

2013-10-04 Thread Ivan Voras
On 01/10/2013 08:22, Michael wrote:

 Also I am bit unsure about the setup I should pick: we are a hand of
 users for the service and I would like to know if a 64-MB Ram and a
 166Mhz setup could do, or if I definitely should consider a faster CPU
 or more RAM. Given my actual jail based setup, is there an easy way to

Definitely aim for a much faster CPU and more RAM. Trac is written in
Python, and is pretty slow (unless you are not bothered by pages being
generated over a few seconds...).



signature.asc
Description: OpenPGP digital signature


gptid's in fstab while installing FreeBSD using ISO

2013-10-04 Thread varanasi sainath
Hi All,

How do I get gptid's as default in fstab while installing using FreeBSD iso
file (Virtual,machine installation) ?
Is this possible currently?
if not how do I achieve this?
I use guided partitioning while installing - If I were to tweak in to the
source code which files or drivers I should be focusing on?
which drivers write the contents of fstab?

PS: any reason why we use device names in the place of gptid's as default
in fstab.

Thanks,
Sainath.
___
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: 9.1 - 9.2 upgrade

2013-10-04 Thread dweimer

On 10/04/2013 1:36 am, Doug Hardie wrote:

On 3 October 2013, at 11:48, Doug Hardie bc...@lafn.org wrote:



On 3 October 2013, at 10:49, Doug Hardie bc...@lafn.org wrote:

I just did an upgrade using freebsd-update to 9.2.  This system uses 
a custom kernel so I am rebuilding everything after the update 
completed.  However, I noticed that /usr/src/UPDATING has not been 
updated.  The first entry still says:  9.1-RELEASE.  Is this correct?


Well, it just got worse - The last reboot now fails:  I am using a 
remote console and it shows:


-- Press a key on the console to reboot --
Rebooting...
Consoles: internal video/keyboard  serial port
BIOS drive A: is disk0
BIOS drive C: is disk1
BIOS 639kB/2087360kB available memory

FreeBSD/x86 bootstrap loader, Revision 1.1
(d...@zool.lafn.org, Thu Oct  3 04:23:13 PDT 2013)
Can't work out which disk we are booting from.
Guessed BIOS device 0x not found by probes, defaulting to 
disk0:


panic: free: guard1 fail @ 0x7f481ed0 from 
/usr/src/sys/boot/i386/loader/../../common/module.c:1004

-- Press a key on the console to reboot --


I can enter a string as it doesn't try to reboot again till the return 
is entered.  I've tried b disk1, but it still only tries disk0.  The 
system rebooted fine after the reboot after make kernel.  Mergemaster 
didn't seem to affect anything dealing with boot.  Don't know what 
make delete-old does but the descriptions lead me to not believe it 
could cause this.  This system is on the other side of LA from me so 
its a major trip timewise.  Any ideas how this can be recovered 
remotely?


Booting off the live CD didn't find anything obviously wrong.  I
replaced the kernel with the old one and still the same error.  I am
having the drive mailed to me and will work with it here.  However, it
appears a new install is going to be required.  The old sysinstall had
the capability to skip over the formatting of the disk by just
entering quit.  It would then just replace the system components and
leave everything else alone.  I don't see any obvious way to do the
same thing with bsdinstall.  Is there a way to do that.  I don't want
to have to completely rebuild the drive, but just replace the system.


___
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


Just want to clarify the steps that started this

if I read everything right:

Step 1:  freebsd-update from 9.1 to 9.2
Step 2:  compile from source ?  Was this world, or just the custom 
kernel??

Step 3:  make delete-old
Step 4:  mergemaster
Step 5:  reboot
oops, something went wrong..

If my suspicions are correct, the source was still 9.1 patch 7,  but the 
system was running 9.2 from the binary update.  This may have caused the 
make delete-old to delete things it shouldn't have


The very first thing I would do is bring the disk up in another system 
and make a backup copy of the data.


I have never tried this process, I am basically just taking the steps I 
use for updating a zfs system using boot environments, and applying them 
in order to build a new kernel and world to an alternate directory, as a 
method of recovering the system.


The next step I would take is to then mount the file systems in an 
alternate location, /mnt for example


make MAKEOBJDIRPREFIX /mnt/usr/obj
make DESTDIR /mnt
cd /mnt/usr/src
rm -r * .svn
rm -r /usr/obj/*
svn co https://svn0.us-west.freebsd.org/base/releng/9.2
make buildwolrd
make buildkernel
make installkernel
make installworld
make -DBATCH_DELETE_OLD_FILES delete-old
make -DBATCH_DELETE_OLD_FILES delete-old-libs
mergemaster -Ui /mnt/usr/src -D /mnt

With some luck the file system will now contain a boot-able FreeBSD 
install, that will still have all the settings in place, except it will 
be the generic kernel.  You should then just be able to build and 
install the custom kernel, from the booted system as you normally would.


--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/
___
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: # portmaster -r pixman fails with !#/bin/sh list too long

2013-10-04 Thread Warren Block

On Thu, 3 Oct 2013, Antonio Olivares wrote:


Have tried that, but it rebuilds pixman, but then X bombs out blurting
out messages that libpixman.so is missing :(

I have tried to remove print/texlive-scheme-full; removed it, but then
run portmaster -R pixman, and portmaster -r pixman and the running of
it stops with message that !#/bin/sh .. argument too long and comes up
with texlive-?-?-_1 or similar.  Have not been successful in
fixing this issue.  I have 2 machines working and 2 not working
because of this.  I am running out of ideas.  Is there another way to
fix this issue manually, i.e, going to /usr/ports/x11/pixman and
rebuilding it there or have to go one by one?


Careful: -R has a different meaning with portmaster than it does with 
portupgrade.  It does not mean recursive like lowercase -r.


pkg_libchk from sysutils/bsdadminscripts can be used to detect installed 
ports that depend on missing libraries.  From that, it may be possible 
to just give a list of all the ones that are missing pixman to 
portmaster.

___
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: gptid's in fstab while installing FreeBSD using ISO

2013-10-04 Thread Polytropon
On Fri, 4 Oct 2013 20:04:09 +0530, varanasi sainath wrote:
 Hi All,
 
 How do I get gptid's as default in fstab while installing using FreeBSD iso
 file (Virtual,machine installation) ?
 Is this possible currently?

As far as I know, the installer bsdinstall currently does
not have this option included, but it already offers labeling
the partitions as desired, so you could change the content of
/etc/fstab manually to use labels instead of those device names.
You could do this as a post-installation task while leaving
the installer for the command shell and using an editor to
do this.



 if not how do I achieve this?
 I use guided partitioning while installing - If I were to tweak in to the
 source code which files or drivers I should be focusing on?

I haven't looked into the source yet, but I assume you should
concentrate on the component doing the partitioning tasks as
explained here:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/bsdinstall-partitioning.html

 which drivers write the contents of fstab?

The corresponding installer's component itself which
creates the file according to the partitioning layout
at installation time. I assume the required data will
actually be written when the installer performs the
_real_ installation steps (committing to the installation).



 PS: any reason why we use device names in the place of gptid's as default
 in fstab.

Because it's not always wanted or intended. Next to GPT
partitioning with GPT labels, UFS partitioning is possible
(both MBR and dedicated style), which _may_ have cases
where it needs to be applied. Maybe this can happen when
you have a very strange combination of striping, mirroring,
encryption and other things that require metadata here
and there... The different methods have different capabilities
regarding labels (UFS labels, UFSIDs to be mentioned).
You can find out more about them here:

http://www.freebsd.org/doc/handbook/geom-glabel.html

And read about the different methods of partitioning
itself:

http://www.wonkity.com/~wblock/docs/html/disksetup.html

Even hardcoded device names could also be required,
though I can't imagine such a situation at the moment. :-)
It highly depends on the toolset you're using (the bsdinstall
program, gpart, fdisk  disklabel, newfs only).



PS. I've trimmed the CC list to the freebsd-questions@
list for my reply, hope that's okay.


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


Re: # portmaster -r pixman fails with !#/bin/sh list too long

2013-10-04 Thread Antonio Olivares
On Fri, Oct 4, 2013 at 12:09 PM, Warren Block wbl...@wonkity.com wrote:
 On Thu, 3 Oct 2013, Antonio Olivares wrote:

 Have tried that, but it rebuilds pixman, but then X bombs out blurting
 out messages that libpixman.so is missing :(

 I have tried to remove print/texlive-scheme-full; removed it, but then
 run portmaster -R pixman, and portmaster -r pixman and the running of
 it stops with message that !#/bin/sh .. argument too long and comes up
 with texlive-?-?-_1 or similar.  Have not been successful in
 fixing this issue.  I have 2 machines working and 2 not working
 because of this.  I am running out of ideas.  Is there another way to
 fix this issue manually, i.e, going to /usr/ports/x11/pixman and
 rebuilding it there or have to go one by one?


 Careful: -R has a different meaning with portmaster than it does with
 portupgrade.  It does not mean recursive like lowercase -r.

 pkg_libchk from sysutils/bsdadminscripts can be used to detect installed
 ports that depend on missing libraries.  From that, it may be possible to
 just give a list of all the ones that are missing pixman to portmaster.

Dear all,

It appears that using
# portmaster -d -r pixman -x 'texlive-*-*'
is doing the job :)  I am keeping my fingers crossed and hope it comes
through and succeeds!

It stopped with libexo, but got that sorted out.  Then stopped with
mplayer*, but I am skipping it at this time.  -x 'mplayer-*'  and hope
it succeeds, I'll then rebuild mplayer later if needed.

Best Regards,


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


Failure to build FreeBSD 9.2

2013-10-04 Thread Juris Kaminskis
Hello,

I am desperate trying to build FreeBSD 9.2. The same happens with
FreeBSD-Current. When I build 9.1 kernel without building world everything
is ok.

My svn info

Path: .

Working Copy Root Path: /usr/src

URL: http://svn0.eu.freebsd.org/base/release/9.2.0

Repository Root: http://svn0.eu.freebsd.org/base

Repository UUID: ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f

Revision: 255954

Node Kind: directory

Schedule: normal

Last Changed Author: gjb

Last Changed Rev: 255898

Last Changed Date: 2013-09-26 21:28:11 +0300 (Thu, 26 Sep 2013)


When I do standard process:
make buildworld
make buildkernel
make installkernel
reboot

my kernel hangs up and does not respond. I have tried a lot of things but
nothing works.

my new kernel hangs right after:

pci1: ACPI PCI bus on pcib1

my uname -a

   FreeBSD station 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4
09:23:10 UTC 2012

r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64


and my dmesg output:

Copyright (c) 1992-2012 The FreeBSD Project.

Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994

The Regents of the University of California. All rights reserved.

FreeBSD is a registered trademark of The FreeBSD Foundation.

FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012

   r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64

CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 4200+ (2211.11-MHz K8-class
CPU)

 Origin = AuthenticAMD  Id = 0x40fb2  Family = f  Model = 4b  Stepping = 2

 
Features=0x178bfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT

 Features2=0x2001SSE3,CX16

 AMD Features=0xea500800SYSCALL,NX,MMX+,FFXSR,RDTSCP,LM,3DNow!+,3DNow!

 AMD Features2=0x1fLAHF,CMP,SVM,ExtAPIC,CR8

real memory  = 2147483648 (2048 MB)

avail memory = 2045505536 (1950 MB)

Event timer LAPIC quality 400

ACPI APIC Table: A M I  OEMAPIC 

FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs

FreeBSD/SMP: 1 package(s) x 2 core(s)

cpu0 (BSP): APIC ID:  0

cpu1 (AP): APIC ID:  1

ioapic0 Version 2.1 irqs 0-23 on motherboard

kbd1 at kbdmux0

acpi0: A M I OEMRSDT on motherboard

acpi0: Power Button (fixed)

unknown: memory range not supported

unknown: memory range not supported

unknown: memory range not supported

acpi0: reservation of 0, a (3) failed

acpi0: reservation of 10, 7ff0 (3) failed

cpu0: ACPI CPU on acpi0

cpu1: ACPI CPU on acpi0

attimer0: AT timer port 0x40-0x43 irq 0 on acpi0

Timecounter i8254 frequency 1193182 Hz quality 0

Event timer i8254 frequency 1193182 Hz quality 100

atrtc0: AT realtime clock port 0x70-0x71 irq 8 on acpi0

Event timer RTC frequency 32768 Hz quality 0

hpet0: High Precision Event Timer iomem 0xfed0-0xfed003ff on acpi0

Timecounter HPET frequency 14318180 Hz quality 950

Timecounter ACPI-fast frequency 3579545 Hz quality 900

acpi_timer0: 32-bit timer at 3.579545MHz port 0x808-0x80b on acpi0

pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0

pci0: ACPI PCI bus on pcib0

pcib1: ACPI PCI-PCI bridge at device 3.0 on pci0

pcib1: failed to allocate initial memory window: 0xffb0-0xffbf

pci1: ACPI PCI bus on pcib1

vgapci0: VGA-compatible display port 0x9800-0x98ff mem
0xc000-0xcfff irq 19 at device 0.0 on pci1

hdac0: ATI RV630 HDA Controller irq 16 at device 0.1 on pci1

pcib2: ACPI PCI-PCI bridge at device 6.0 on pci0

pci2: ACPI PCI bus on pcib2

re0: RealTek 8168/8111 B/C/CP/D/DP/E/F PCIe Gigabit Ethernet port
0xa800-0xa8ff mem 0xffcff000-0xffcf irq 18 at device 0.0 on pci2

re0: Using 1 MSI message

re0: Chip rev. 0x3800

re0: MAC rev. 0x

miibus0: MII bus on re0

rgephy0: RTL8169S/8110S/8211 1000BASE-T media interface PHY 1 on miibus0

rgephy0:  none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX,
100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT, 1000baseT-master,
1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow,
1000baseT-FDX-flow-master, auto, auto-flow

re0: Ethernet address: 00:19:db:f6:72:d0

ahci0: ATI IXP600 AHCI SATA controller port
0xe800-0xe807,0xe400-0xe403,0xe000-0xe007,0xdc00-0xdc03,0xd800-0xd80f mem
0xffeffc00-0xffef irq 22 at device 18.0 on pci0

ahci0: AHCI v1.10 with 4 3Gbps ports, Port Multiplier supported

ahcich0: AHCI channel at channel 0 on ahci0

ahcich1: AHCI channel at channel 1 on ahci0

ahcich2: AHCI channel at channel 2 on ahci0

ahcich3: AHCI channel at channel 3 on ahci0

ohci0: OHCI (generic) USB controller mem 0xffefe000-0xffefefff irq 16 at
device 19.0 on pci0

usbus0 on ohci0

ohci1: OHCI (generic) USB controller mem 0xffefd000-0xffefdfff irq 17 at
device 19.1 on pci0

usbus1 on ohci1

ohci2: OHCI (generic) USB controller mem 0xffefc000-0xffefcfff irq 18 at
device 19.2 on pci0

usbus2 on ohci2

ohci3: OHCI (generic) USB controller mem 0xffefb000-0xffefbfff irq 17 at
device 19.3 on pci0

usbus3 on ohci3

ohci4: OHCI (generic) USB controller mem 0xffefa000-0xffefafff irq 18 at
device 19.4 on pci0

usbus4 on ohci4


Re: 9.1 - 9.2 upgrade

2013-10-04 Thread Doug Hardie

On 4 October 2013, at 09:22, dweimer dwei...@dweimer.net wrote:

 On 10/04/2013 1:36 am, Doug Hardie wrote:
 On 3 October 2013, at 11:48, Doug Hardie bc...@lafn.org wrote:
 On 3 October 2013, at 10:49, Doug Hardie bc...@lafn.org wrote:
 I just did an upgrade using freebsd-update to 9.2.  This system uses a 
 custom kernel so I am rebuilding everything after the update completed.  
 However, I noticed that /usr/src/UPDATING has not been updated.  The first 
 entry still says:  9.1-RELEASE.  Is this correct?
 Well, it just got worse - The last reboot now fails:  I am using a remote 
 console and it shows:
 -- Press a key on the console to reboot --
 Rebooting...
 Consoles: internal video/keyboard  serial port
 BIOS drive A: is disk0
 BIOS drive C: is disk1
 BIOS 639kB/2087360kB available memory
 FreeBSD/x86 bootstrap loader, Revision 1.1
 (d...@zool.lafn.org, Thu Oct  3 04:23:13 PDT 2013)
 Can't work out which disk we are booting from.
 Guessed BIOS device 0x not found by probes, defaulting to disk0:
 panic: free: guard1 fail @ 0x7f481ed0 from 
 /usr/src/sys/boot/i386/loader/../../common/module.c:1004
 -- Press a key on the console to reboot --
 I can enter a string as it doesn't try to reboot again till the return is 
 entered.  I've tried b disk1, but it still only tries disk0.  The system 
 rebooted fine after the reboot after make kernel.  Mergemaster didn't seem 
 to affect anything dealing with boot.  Don't know what make delete-old does 
 but the descriptions lead me to not believe it could cause this.  This 
 system is on the other side of LA from me so its a major trip timewise.  
 Any ideas how this can be recovered remotely?
 Booting off the live CD didn't find anything obviously wrong.  I
 replaced the kernel with the old one and still the same error.  I am
 having the drive mailed to me and will work with it here.  However, it
 appears a new install is going to be required.  The old sysinstall had
 the capability to skip over the formatting of the disk by just
 entering quit.  It would then just replace the system components and
 leave everything else alone.  I don't see any obvious way to do the
 same thing with bsdinstall.  Is there a way to do that.  I don't want
 to have to completely rebuild the drive, but just replace the system.
 ___
 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
 
 Just want to clarify the steps that started this
 
 if I read everything right:
 
 Step 1:  freebsd-update from 9.1 to 9.2
 Step 2:  compile from source ?  Was this world, or just the custom kernel??
 Step 3:  make delete-old
 Step 4:  mergemaster
 Step 5:  reboot
 oops, something went wrong..
 
 If my suspicions are correct, the source was still 9.1 patch 7,  but the 
 system was running 9.2 from the binary update.  This may have caused the make 
 delete-old to delete things it shouldn't have
 
 The very first thing I would do is bring the disk up in another system and 
 make a backup copy of the data.
 
 I have never tried this process, I am basically just taking the steps I use 
 for updating a zfs system using boot environments, and applying them in order 
 to build a new kernel and world to an alternate directory, as a method of 
 recovering the system.
 
 The next step I would take is to then mount the file systems in an alternate 
 location, /mnt for example
 
 make MAKEOBJDIRPREFIX /mnt/usr/obj
 make DESTDIR /mnt
 cd /mnt/usr/src
 rm -r * .svn
 rm -r /usr/obj/*
 svn co https://svn0.us-west.freebsd.org/base/releng/9.2
 make buildwolrd
 make buildkernel
 make installkernel
 make installworld
 make -DBATCH_DELETE_OLD_FILES delete-old
 make -DBATCH_DELETE_OLD_FILES delete-old-libs
 mergemaster -Ui /mnt/usr/src -D /mnt
 
 With some luck the file system will now contain a boot-able FreeBSD install, 
 that will still have all the settings in place, except it will be the generic 
 kernel.  You should then just be able to build and install the custom kernel, 
 from the booted system as you normally would.
 

The exact sequence was:

Step 1:  freebsd-update from 9.1 to 9.2
Step 2:  make buildworld
Step 3:  make build_kernel KERNCONF=LAFN
Step 4:  make install_kernel KERNCONF=LAFN
Step 5:  reboot
Step 6:  mergemaster -p
Step 7:  make installworld
Step 8:  mergemaster -i
Step 9:  make delete-old
Step 10:  reboot
oops, something went wrong..

After step 5, uname -a still showed 9.2 but now it listed the kernel I built 
rather than generic.


___
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: 9.1 - 9.2 upgrade

2013-10-04 Thread Polytropon
On Fri, 4 Oct 2013 18:58:52 -0700, Doug Hardie wrote:
 The exact sequence was:
 
 Step 1:  freebsd-update from 9.1 to 9.2

Have you verified in /etc/freebsd-update.conf that src
is definitely part of what should be updated?



 Step 2:  make buildworld
 Step 3:  make build_kernel KERNCONF=LAFN
 Step 4:  make install_kernel KERNCONF=LAFN

I assume the correct targets buildkernel and installkernel
have been used. ;-)



 Step 5:  reboot

Attention: Into single-user mode.



 Step 6:  mergemaster -p
 Step 7:  make installworld
 Step 8:  mergemaster -i
 Step 9:  make delete-old
 Step 10:  reboot

Into multi-user mode again.



 oops, something went wrong..
 
 After step 5, uname -a still showed 9.2 but now it listed the
 kernel I built rather than generic.

Again, verify your configuration. Compare your steps with the
comment header of /usr/src/Makefile which illustrates the
exact procedure; from a (dated) 8-STABLE installation:

 1.  `cd /usr/src'   (or to the directory containing your source tree).
 2.  `make buildworld'
 3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
 4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
  [steps 3.  4. can be combined by using the kernel target]
 5.  `reboot'(in single user mode: boot -s from the loader prompt).
 6.  `mergemaster -p'
 7.  `make installworld'
 8.  `make delete-old'
 9.  `mergemaster'(you may wish to use -i, along with -U or -F).
10.  `reboot'
11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)


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


Re: 9.1 - 9.2 upgrade

2013-10-04 Thread Doug Hardie

On 4 October 2013, at 19:08, Polytropon free...@edvax.de wrote:

 On Fri, 4 Oct 2013 18:58:52 -0700, Doug Hardie wrote:
 The exact sequence was:
 
 Step 1:  freebsd-update from 9.1 to 9.2
 
 Have you verified in /etc/freebsd-update.conf that src
 is definitely part of what should be updated?

System is not bootable - can't verify anything…

 
 
 
 Step 2:  make buildworld
 Step 3:  make build_kernel KERNCONF=LAFN
 Step 4:  make install_kernel KERNCONF=LAFN
 
 I assume the correct targets buildkernel and installkernel
 have been used. ;-)
 

Yes

 
 
 Step 5:  reboot
 
 Attention: Into single-user mode.

Not possible since the system is located over 100 miles away.  Everything has 
to be done via remote console.


 
 
 
 Step 6:  mergemaster -p
 Step 7:  make installworld
 Step 8:  mergemaster -i
 Step 9:  make delete-old
 Step 10:  reboot
 
 Into multi-user mode again.
 
 
 
 oops, something went wrong..
 
 After step 5, uname -a still showed 9.2 but now it listed the
 kernel I built rather than generic.
 
 Again, verify your configuration. Compare your steps with the
 comment header of /usr/src/Makefile which illustrates the
 exact procedure; from a (dated) 8-STABLE installation:
 
 1.  `cd /usr/src'   (or to the directory containing your source tree).
 2.  `make buildworld'
 3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
 4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
  [steps 3.  4. can be combined by using the kernel target]
 5.  `reboot'(in single user mode: boot -s from the loader prompt).
 6.  `mergemaster -p'
 7.  `make installworld'
 8.  `make delete-old'
 9.  `mergemaster'(you may wish to use -i, along with -U or -F).
 10.  `reboot'
 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
 
 
 -- 
 Polytropon
 Magdeburg, Germany
 Happy FreeBSD user since 4.0
 Andra moi ennepe, Mousa, ...
 

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


Re: 9.1 - 9.2 upgrade

2013-10-04 Thread Polytropon
On Fri, 4 Oct 2013 19:42:15 -0700, Doug Hardie wrote:
 
 On 4 October 2013, at 19:08, Polytropon free...@edvax.de wrote:
 
  On Fri, 4 Oct 2013 18:58:52 -0700, Doug Hardie wrote:
  The exact sequence was:
  
  Step 1:  freebsd-update from 9.1 to 9.2
  
  Have you verified in /etc/freebsd-update.conf that src
  is definitely part of what should be updated?
 
 System is not bootable - can't verify anything…

Does the system (or better, its enclosure, software-wise)
allow booting a rescue system or an emergency media, such
as a FreeBSD v9 live system?

The file /etc/freebsd-update.conf should contain the line

Components src world kernel

if you want to make sure the source is properly updated,
along with the world and kernel (GENERIC).



  Step 5:  reboot
  
  Attention: Into single-user mode.
 
 Not possible since the system is located over 100 miles away.
 Everything has to be done via remote console.

Does this mean SSH only or do you have a _real_ console
transmission by which you can access the system _prior_ to
the OS providing the SSH access? I'm mentioning this because
the traditional approach requires (few) steps done in the
single-user mode where no SSH connectivity is provided in
the normal way...





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

Re: 9.1 - 9.2 upgrade

2013-10-04 Thread Doug Hardie

On 4 October 2013, at 20:03, Polytropon free...@edvax.de wrote:

 On Fri, 4 Oct 2013 19:42:15 -0700, Doug Hardie wrote:
 
 On 4 October 2013, at 19:08, Polytropon free...@edvax.de wrote:
 
 On Fri, 4 Oct 2013 18:58:52 -0700, Doug Hardie wrote:
 The exact sequence was:
 
 Step 1:  freebsd-update from 9.1 to 9.2
 
 Have you verified in /etc/freebsd-update.conf that src
 is definitely part of what should be updated?
 
 System is not bootable - can't verify anything…
 
 Does the system (or better, its enclosure, software-wise)
 allow booting a rescue system or an emergency media, such
 as a FreeBSD v9 live system?

Yes - but there is no one there who can successfully be told how to run it.  We 
have serious communications issues - they want to use back slashes and have no 
idea what a slash is.  Even if you tell them which key to use, they know better 
and use a back slash cause thats what Windoze uses.  The disk should be in the 
mail to me now.  I will be able to work with it when it arrives.

 
 The file /etc/freebsd-update.conf should contain the line
 
   Components src world kernel
 
 if you want to make sure the source is properly updated,
 along with the world and kernel (GENERIC).

As indicated before, I don't think all the source got updated.  The kernel 
showed 9.2 after recompilation.  However UPDATING was not updated.  Thats as 
much as I could check before.

 
 
 
 Step 5:  reboot
 
 Attention: Into single-user mode.
 
 Not possible since the system is located over 100 miles away.
 Everything has to be done via remote console.
 
 Does this mean SSH only or do you have a _real_ console
 transmission by which you can access the system _prior_ to
 the OS providing the SSH access? I'm mentioning this because
 the traditional approach requires (few) steps done in the
 single-user mode where no SSH connectivity is provided in
 the normal way…

I have a telnet box that has serial connections to the console ports.  That 
approach has been used without any issues since FreeBSD 2.5.  I do disable all 
ports during the process via an reduced rc.conf file.

 
 
 
 
 
 -- 
 Polytropon
 Magdeburg, Germany
 Happy FreeBSD user since 4.0
 Andra moi ennepe, Mousa, ...
 

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


Re: 9.1 - 9.2 upgrade

2013-10-04 Thread Polytropon
On Fri, 4 Oct 2013 21:49:18 -0700, Doug Hardie wrote:
 
 On 4 October 2013, at 20:03, Polytropon free...@edvax.de wrote:
 
  On Fri, 4 Oct 2013 19:42:15 -0700, Doug Hardie wrote:
  
  On 4 October 2013, at 19:08, Polytropon free...@edvax.de wrote:
  
  On Fri, 4 Oct 2013 18:58:52 -0700, Doug Hardie wrote:
  The exact sequence was:
  
  Step 1:  freebsd-update from 9.1 to 9.2
  
  Have you verified in /etc/freebsd-update.conf that src
  is definitely part of what should be updated?
  
  System is not bootable - can't verify anything…
  
  Does the system (or better, its enclosure, software-wise)
  allow booting a rescue system or an emergency media, such
  as a FreeBSD v9 live system?
 
 Yes - but there is no one there who can successfully be told
 how to run it.

Not even inserting a USB stick (with the FreeBSD memstick data)
or a CD?



 We have serious communications issues - they want to use back
 slashes and have no idea what a slash is.

Maybe that is the result of many years of administration on
Windows PCs. :-)



 Even if you tell them which key to use, they know better and
 use a back slash cause thats what Windoze uses.

Uh... knowing better would disqualify them as maintainers of
a server installation. The inability to learn (or even to read
and follow instructions) is a dangerous thing.



 The disk should be in the mail to me now.  I will be able to
 work with it when it arrives.

Okay, that's also a possible alternative. To be honest, that's
the first time I hear about this procedure. But doable.



  The file /etc/freebsd-update.conf should contain the line
  
  Components src world kernel
  
  if you want to make sure the source is properly updated,
  along with the world and kernel (GENERIC).
 
 As indicated before, I don't think all the source got updated. 
 The kernel showed 9.2 after recompilation.  However UPDATING
 was not updated.  Thats as much as I could check before.

I assume that this could be possible by inconsistently updated
sources. It would be a good start to remove /usr/src and download
the sources of the correct version via SVN _or_ freebsd-update
again. Before the next installation attempt, /usr/obj should be
removed as well, just to be sure.



  Step 5:  reboot
  
  Attention: Into single-user mode.
  
  Not possible since the system is located over 100 miles away.
  Everything has to be done via remote console.
  
  Does this mean SSH only or do you have a _real_ console
  transmission by which you can access the system _prior_ to
  the OS providing the SSH access? I'm mentioning this because
  the traditional approach requires (few) steps done in the
  single-user mode where no SSH connectivity is provided in
  the normal way…
 
 I have a telnet box that has serial connections to the console
 ports.  That approach has been used without any issues since
 FreeBSD 2.5.  I do disable all ports during the process via an
 reduced rc.conf file.

A serial console should also work, but even though I've been
using serial consoles (and _real_ serial terminals), one thing
I'm not sure about: Is it possible to interrupt (!) the boot
process at an early stage to get to the loader prompt and
boot into single user mode from there?

Ok
boot -s

If not, do you have the beastie menu (or whatever it is called
today) enabled to go to SUM to perform the make installworld step?

Anyway, if you can install everything is required with the disk
at home, and then send it back to that datacenter (according
to your characterization, the quotes are deserved), that should
solve the problems and make sure everything works as intended.



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

1st page in Google

2013-10-03 Thread Ryan
 

 

Hi,
 I Am Ryan, ( SEO Marketing Strategist )

 

You want to get your website in front of as many people as possible. Our SEO
services give you long-lasting results that extend beyond a quick, temporary
boost in rankings. We’ll help you achieve better rankings, increased
traffic, and more sales in the long run.

 

Our SEO consultants will talk with you about your business goals. They’ll
research your industry, your competition, and the keywords you want to
target. They’ll provide you with regular, detailed updates on your website’s
rankings and traffic.  

 

we have discounted offers $150 for 10-15 keywords

SEO with Mainstreethost includes:

ü  Initial Website Consultation

ü  Keyword Research

ü  Meta Data Alterations

ü  Front Page Content Consultation

ü  Internal Text Link Modifications

ü  Content Writing (additional charges may apply)

ü  Setup and Implementation of Google Analytics / Google Webmaster Tools

ü  Setup and Implementation of Bing Webmaster Tools

ü  Ranking / Status Reports

We’re working with small, medium-sized, and large businesses right now,
helping them improve their rankings and delivering them real, measurable
results.

 

Let me know if you are interested and I’ll present you with a proposal that
would not only improve sales of your company but also brand your products.

NOTE: Kindly let me know your phone number and best timing along with time
zone to give you a call to discuss more.

 

Thanks  Regards
 Ryan
( SEO Marketing Strategist )



 

 

___
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


1st page in Google

2013-10-03 Thread Ryan
 

 

Hi,
 I Am Ryan, ( SEO Marketing Strategist )

 

You want to get your website in front of as many people as possible. Our SEO
services give you long-lasting results that extend beyond a quick, temporary
boost in rankings. We’ll help you achieve better rankings, increased
traffic, and more sales in the long run.

 

Our SEO consultants will talk with you about your business goals. They’ll
research your industry, your competition, and the keywords you want to
target. They’ll provide you with regular, detailed updates on your website’s
rankings and traffic.  

 

we have discounted offers $150 for 10-15 keywords

SEO with Mainstreethost includes:

ü  Initial Website Consultation

ü  Keyword Research

ü  Meta Data Alterations

ü  Front Page Content Consultation

ü  Internal Text Link Modifications

ü  Content Writing (additional charges may apply)

ü  Setup and Implementation of Google Analytics / Google Webmaster Tools

ü  Setup and Implementation of Bing Webmaster Tools

ü  Ranking / Status Reports

We’re working with small, medium-sized, and large businesses right now,
helping them improve their rankings and delivering them real, measurable
results.

 

Let me know if you are interested and I’ll present you with a proposal that
would not only improve sales of your company but also brand your products.

NOTE: Kindly let me know your phone number and best timing along with time
zone to give you a call to discuss more.

 

Thanks  Regards
 Ryan
( SEO Marketing Strategist )



 

 

___
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


Perl packages fails to build

2013-10-03 Thread C. L. Martinez
Hi all,

 Using freebsd 9.2 amd64 and poudriere, perl fails to build:

/bin/mkdir -p 
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/.
install  -o root -g wheel -m 444
/wrkdirs/usr/ports/lang/perl5.14/work/BSDPAN-2007/BSDPAN.pm
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/BSDPAN.pm
/bin/mkdir -p 
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/BSDPAN
install  -o root -g wheel -m 444
/wrkdirs/usr/ports/lang/perl5.14/work/BSDPAN-2007/BSDPAN/Override.pm
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/BSDPAN/Override.pm
/bin/mkdir -p 
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/.
install  -o root -g wheel -m 444
/wrkdirs/usr/ports/lang/perl5.14/work/BSDPAN-2007/Config.pm
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/Config.pm
/bin/mkdir -p 
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/ExtUtils
install  -o root -g wheel -m 444
/wrkdirs/usr/ports/lang/perl5.14/work/BSDPAN-2007/ExtUtils/MM_Unix.pm
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/ExtUtils/MM_Unix.pm
/bin/mkdir -p 
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/ExtUtils
install  -o root -g wheel -m 444
/wrkdirs/usr/ports/lang/perl5.14/work/BSDPAN-2007/ExtUtils/MakeMaker.pm
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/ExtUtils/MakeMaker.pm
/bin/mkdir -p 
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/ExtUtils
install  -o root -g wheel -m 444
/wrkdirs/usr/ports/lang/perl5.14/work/BSDPAN-2007/ExtUtils/Packlist.pm
/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/BSDPAN/ExtUtils/Packlist.pm
 Compressing man pages
===  Installing for perl-5.14.4_1
===  Checking if lang/perl5.14 already installed
===   Registering installation for perl-5.14.4_1
pkg-static: 
lstat(/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/man/man3/):
No such file or directory
pkg-static: 
lstat(/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/5.14/man/):
No such file or directory
pkg-static: 
lstat(/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/site_perl/5.14/mach/sys/):
No such file or directory
pkg-static: 
lstat(/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/site_perl/5.14/mach/machine/):
No such file or directory
pkg-static: 
lstat(/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/site_perl/5.14/mach/auto/):
No such file or directory
pkg-static: 
lstat(/wrkdirs/usr/ports/lang/perl5.14/work/stage/usr/local/lib/perl5/site_perl/5.14/auto/):
No such file or directory
*** [fake-pkg] Error code 74

Stop in /usr/ports/lang/perl5.14.
===  Cleaning for perl-5.14.4_1
build of /usr/ports/lang/perl5.14 ended at Thu Oct  3 13:07:33 UTC 2013
build time: 00:05:13

Any idea??
___
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 routing problem

2013-10-03 Thread hrkesh sahu
Hi All,

I am facing a routing issue for the Interoperability  1.5 topology.

Please find the attachment of the exact topology map.



As per test setup –

Ø  Configured REF-Router2 NOT to transmit  Router Advertisement on
Network1. But REF-Router2 is able to transmit Router Advertisement on
Network2 with 2001:db8::3::/64 .

Ø  Configured a static route on TAR-RouterD ( ubuntu) Indicating
REF-Router2’s Link local address as the next hop for the Network2 .

Ø  But Ref-Router Not able to routes between Network1 and Network2.  Due to
this ICMPv6 request from TAR-router to the global address of REF-Host2 is
not working. There is no reply for this ICMPv6 request.

Ø  Same when I try to transmit ICMPv6 Echo request from REF-HOST2 to global
address of TAR-HOST1( Prefix of TAR-RouterD), no ICMPv6 reply.

Ø  Within Network1 , nodes are able to communicate. But when I try to
communicate Netwrok2 from Network1, it is not working.



Could you please suggest tell me if I am missing something to route the
traffic on REF-Router ?



I suspect  , as there is no Route Advertisement on Interface1 of the
Ref-Router, it is not able to route the traffic between the interfaces.



Please help me to find this solution.

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

9.1 - 9.2 upgrade, clang question

2013-10-03 Thread dweimer
When upgrading from 9.1 to 9.2 using source, is there any benefit to 
rebuilding twice, due to the clang version change?  So that the second 
buildworld/kernel is done from the updated clang 3.3, instead of the 
clang 3.1 that was in FreeBSD 9.1?


--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/
___
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: 9.1 - 9.2 upgrade, clang question

2013-10-03 Thread Volodymyr Kostyrko

03.10.2013 17:36, dweimer wrote:

When upgrading from 9.1 to 9.2 using source, is there any benefit to
rebuilding twice, due to the clang version change?  So that the second
buildworld/kernel is done from the updated clang 3.3, instead of the
clang 3.1 that was in FreeBSD 9.1?


During the buildworld first new compiler is built and then this new 
compiler is used to build everything else.


There may be other reasons to double build though... Maybe after 
cleaning system with `make delete-old`/`make delete-old-libs`?


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


Re: Soekris for a Trac server

2013-10-03 Thread Michael
Hello Bill,

thank you for your answer!

Bill Tillman wrote:
 The way technology has moved on these days I would approach this from a
 completely different manner. Soekris makes some cool little boxes, but the
 last time I looked they still had I486 cpu's...today may be different, 
 probably
 is. My point is that with computers so cheap these days why not just use
 a box, sans the drives and do a diskless boot from one of your FreeBSD
 servers...or better yet, setup another FreeBSD server using VM. It doesn't
 make sense to buy a box with VM technology so freely available.
Of course you are right that virtualisation is the cheapest way to go.
But this my actual setup and I am considering moving it to a physical
support because for my uses, I value some of its features (low-noise™ or
take-away™).

Best regards,
Michael

___
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


zfs over geli over zfs (was: Re: zfs flag denoting unclean shutdown?)

2013-10-03 Thread Nikos Vassiliadis

On 10/02/2013 08:13 PM, Matthew Seaman wrote:

On 02/10/2013 16:34, Nikos Vassiliadis wrote:

Is there a way to know if a zfs pool had an unclean shutdown?
An attribute or maybe something during mount time similar to what ufs
does (WARNING: / was not properly dismounted)?


Other than looking at the system logs for evidence of an abnormal
shutdown, no.  (Absence of anything in the logs is pretty good evidence
for the system falling over pretty hard... Usually something to do with
the power being turned off.)

However, due to the design of ZFS unclean shutdowns like this are
nowhere near as problematic as on UFS.  Basically, you're guaranteed
that what is written on disk is always consistent.  You might lose a few
transactions -- essentially the last few seconds of file system activity
-- but that doesn't usually make a great deal of difference after the
system reboots again.  Oh, yeah -- absolutely no time will be needed to
be spent cleaning and repairing filesystems: with ZFS, reboot after
crash is as fast as a normal reboot.


Thanks Matthew, I realized I should have used a more appropriate 
subject. I'll explain what my actual goal is:)


I am after a really specific use-case and the last minute transactions 
are important. Using a zpool over geli over a zvol. I'd like to know if 
during shutdown the kernel flushes all zfs files caches in order so 
these last minutes transactions won't be lost. The unmounting order is 
far from obvious (zfs over geli over zfs) and i wonder if such a scheme 
will succeed. I can't afford losing the last transactions of my home dir 
every time i shutdown my laptop;)


The obvious solution is to create two slices and dedicate a slice to 
geli. Like this:

mypool lives on slice1
myencpool lives on slice2.eli

I am after this:
mypool lives on slice1
myencpool lives on /dev/zvol/mypool/avolume.eli

The second scheme will allow me to have an encypted home and not to 
pre-allocate space. A quick test showed that it might work... On the 
other hand conceptually seems like a very bad idea haha.


I think I've heard people doing this zfs over geli over zfs before...

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


Problem with IPSec setup

2013-10-03 Thread fbsd-mbox

Hello.

Does anyone have a clue why kernel always directs ESP packets via 
default route (or default gateway in FIB 0), even if there are other 
FIBs with per-interface routes?


I'm stuck with the gateway, which is connected to 2 ISPs and the 
necessity to configure IPSec tunnels on both external channels. Using 
setfib(8) I've managed to successfully establish an IKE session via both 
channels (using a separate instance of racoon per each channel), but the 
tunnel is just not working.

Using IPFW's setfib option does not make any difference.

Is this a bug or I'm missing some point?
___
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: Soekris for a Trac server

2013-10-03 Thread Michael
Hi John,

John Levine wrote:
 Dunno about Soekris, but I'm very happy with one of these
 mini-box systems that cost about $250 with a 60GB SSD disk:

 http://www.mini-box.com/MiniPC-Value-Systems
thank you for your detailed answer and useful suggestion, I will
probably look for a similar product!

Regards,
Michael
___
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: FreeBSD routing problem

2013-10-03 Thread Julian H. Stacey

 From: hrkesh sahu hrisikeshs...@gmail.com
 Date: Thu, 3 Oct 2013 19:09:02 +0530
 To: Julian H. Stacey j...@berklix.com
 Cc: Polytropon free...@edvax.de,
 FreeBSD questions freebsd-questions@freebsd.org

Hi, No idea why it was To: me.

 Content-Type: text/html; charset=windows-1252
 Content-Transfer-Encoding: quoted-printable

I dislike MS  windows  quoted-printable, 


 Content-Type: application/msword; name=1.5.VendorD.Topology.doc
 Content-Disposition: attachment; filename=1.5.VendorD.Topology.doc

MS excrement not accepted.  http://www.berklix.com/~jhs/std/no_ms_format.txt

Cheers,
Julian
-- 
Julian Stacey, BSD Unix Linux C Sys Eng Consultant, Munich http://berklix.com
 Reply below not above, like a play script.  Indent old text with  .
 Send plain text.  No quoted-printable, HTML, base64, multipart/alternative.
___
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


9.1 - 9.2 upgrade

2013-10-03 Thread Doug Hardie
I just did an upgrade using freebsd-update to 9.2.  This system uses a custom 
kernel so I am rebuilding everything after the update completed.  However, I 
noticed that /usr/src/UPDATING has not been updated.  The first entry still 
says:  9.1-RELEASE.  Is this correct?


___
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


vBSDcon Is Coming: Oct 25 - 27, 2013 in Herndon, VA

2013-10-03 Thread Miller, Vincent (Rick)
vBSDcon is a BSD-related conference occurring *this month* from 25th – 27th, 
just 3 weeks away in the DC Metropolitan area.  At a cost of only USD$75, the 
time to register for this event is now!  vBSDcon has an amazing list of 
speakers from the FreeBSD and OpenBSD communities, but participation from all 
sectors of the community is encouraged.  Our list of speakers and their 
respective topics can be reviewed at http://www.vbsdcon.com/.

In addition to plenary speakers, vBSDcon will also have lightning talks.  The 
topics for these talks is chosen by you!  When attendees register for vBSDcon 
at http://www.vbsdcon.com/, you are given the opportunity to identify subjects 
and areas of interest to you.  This will be translated into a lightning talk to 
be given by one of our attendees.

Be sure not to miss this event hosted by Verisign!  This is your opportunity to 
come together with others in the BSD communities for a series of roundtable 
discussions, educational sessions, best practice conversations, and exclusive 
networking opportunities.

Registrations will be accepted now through October 23rd at 
http://www.vbsdcon.com/.  We look forward to seeing you all there!

--
Vincent (Rick) Miller
Systems Engineer
vmil...@verisign.commailto:vmil...@verisign.com

t: 703-948-4395  m: 703-581-3068
12061 Bluemont Way, Reston, VA  20190

http://www.vbsdcon.com
http://www.verisigninc.com

“This message (including any attachments) is intended only for the use of the 
individual or entity to which it is addressed, and may contain information that 
is non-public, proprietary, privileged, confidential and exempt from disclosure 
under applicable law or may be constituted as attorney work product. If you are 
not the intended recipient, you are hereby notified that any use, 
dissemination, distribution, or copying of this communication is strictly 
prohibited. If you have received this message in error, notify sender 
immediately and delete this message immediately.”
___
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: # portmaster -r pixman fails with !#/bin/sh list too long

2013-10-03 Thread Antonio Olivares
On Tue, Oct 1, 2013 at 8:46 AM, Lowell Gilbert
freebsd-questions-lo...@be-well.ilk.org wrote:
 Antonio Olivares olivares14...@gmail.com writes:

 I tried your advice with the -R option, it worked, but for only pixman
 the other ports that depend on it don't get rebuilt :(

 I try to use -x 'texlive-*' but it does not work :(
 I get

 Could not execute shell
 /usr/ports/Mk/bsd.port.mk,  line 1192:  warning /usr/bin/awk
 '/^#define[[:blank:]]FreeBSD_version/ {print $3}
 /usr/include/sys/param.h returned non-zero status
 /usr/local/sbin/portmaster:  rm: Argument list too long

 and it justs sits there.  Out of 3 machines only 1 is working because
 I overlooked the pixman update entry in /usr/src/UPDATING :(

 Please advice me as to how to get the desktop working again on these
 machines.  I did not want to shoot myself in the foot but I did so :(

 Try the '-R' again; it may get a bit farther each time.

 You can always recover by removing some of the ports and reinstalling
 them after the remaining ports are updated. You're going to have to
 rebuild a huge number of ports anyway, so this is not very different
 from using portmaster on everything.

 Good luck.

Have tried that, but it rebuilds pixman, but then X bombs out blurting
out messages that libpixman.so is missing :(

I have tried to remove print/texlive-scheme-full; removed it, but then
run portmaster -R pixman, and portmaster -r pixman and the running of
it stops with message that !#/bin/sh .. argument too long and comes up
with texlive-?-?-_1 or similar.  Have not been successful in
fixing this issue.  I have 2 machines working and 2 not working
because of this.  I am running out of ideas.  Is there another way to
fix this issue manually, i.e, going to /usr/ports/x11/pixman and
rebuilding it there or have to go one by one?

Thanks for your advice and suggestions but I am not getting there :(

Best Regards,


Antonio
___
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: 9.1 - 9.2 upgrade

2013-10-03 Thread Doug Hardie

On 3 October 2013, at 10:49, Doug Hardie bc...@lafn.org wrote:

 I just did an upgrade using freebsd-update to 9.2.  This system uses a custom 
 kernel so I am rebuilding everything after the update completed.  However, I 
 noticed that /usr/src/UPDATING has not been updated.  The first entry still 
 says:  9.1-RELEASE.  Is this correct?

Well, it just got worse - The last reboot now fails:  I am using a remote 
console and it shows:

-- Press a key on the console to reboot --
Rebooting...
Consoles: internal video/keyboard  serial port  
BIOS drive A: is disk0
BIOS drive C: is disk1
BIOS 639kB/2087360kB available memory

FreeBSD/x86 bootstrap loader, Revision 1.1
(d...@zool.lafn.org, Thu Oct  3 04:23:13 PDT 2013)
Can't work out which disk we are booting from.
Guessed BIOS device 0x not found by probes, defaulting to disk0:

panic: free: guard1 fail @ 0x7f481ed0 from 
/usr/src/sys/boot/i386/loader/../../common/module.c:1004
-- Press a key on the console to reboot --


I can enter a string as it doesn't try to reboot again till the return is 
entered.  I've tried b disk1, but it still only tries disk0.  The system 
rebooted fine after the reboot after make kernel.  Mergemaster didn't seem to 
affect anything dealing with boot.  Don't know what make delete-old does but 
the descriptions lead me to not believe it could cause this.  This system is on 
the other side of LA from me so its a major trip timewise.  Any ideas how this 
can be recovered remotely?
___
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: firefox: getting back several URL's as tabs?

2013-10-03 Thread Gary Aitken
On 10/02/13 14:49, Gary Kline wrote:

   well, it just happened again.  when I closed an unwanted URL, the
   other two instances of firefox vanished.  I know the Hard way of
   getting them all back, but does is there an easy way of refilling 
   both browsers?  oh, and if there is somewhere I can click to save 
   my bookmarks by-hand, please let me know   before my shoulder
   falls off!

Usually, if it crashes, just starting up will do it.
It should ask about restoring the previous session, 
or at least mine did the last time (quite a while ago)

To save and restore bookmarks:
  Bookmarks/Show All Bookmarks
  In the window that appears, check out the Import and Backup... menu item.
___
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: 9.1 - 9.2 upgrade

2013-10-03 Thread dweimer

On 10/03/2013 1:48 pm, Doug Hardie wrote:

On 3 October 2013, at 10:49, Doug Hardie bc...@lafn.org wrote:

I just did an upgrade using freebsd-update to 9.2.  This system uses a 
custom kernel so I am rebuilding everything after the update 
completed.  However, I noticed that /usr/src/UPDATING has not been 
updated.  The first entry still says:  9.1-RELEASE.  Is this correct?


Well, it just got worse - The last reboot now fails:  I am using a
remote console and it shows:

-- Press a key on the console to reboot --
Rebooting...
Consoles: internal video/keyboard  serial port
BIOS drive A: is disk0
BIOS drive C: is disk1
BIOS 639kB/2087360kB available memory

FreeBSD/x86 bootstrap loader, Revision 1.1
(d...@zool.lafn.org, Thu Oct  3 04:23:13 PDT 2013)
Can't work out which disk we are booting from.
Guessed BIOS device 0x not found by probes, defaulting to 
disk0:


panic: free: guard1 fail @ 0x7f481ed0 from
/usr/src/sys/boot/i386/loader/../../common/module.c:1004
-- Press a key on the console to reboot --


I can enter a string as it doesn't try to reboot again till the return
is entered.  I've tried b disk1, but it still only tries disk0.  The
system rebooted fine after the reboot after make kernel.  Mergemaster
didn't seem to affect anything dealing with boot.  Don't know what
make delete-old does but the descriptions lead me to not believe it
could cause this.  This system is on the other side of LA from me so
its a major trip timewise.  Any ideas how this can be recovered
remotely?
___
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


I wonder if your source update didn't correctly download, mine starts 
with:


Updating Information for FreeBSD current users
...[snip]...
Items affecting the ports and packages system can be found in
/usr/ports/UPDATING.  Please read that file before running portupgrade.

20130705:
hastctl(8)'s `status' command output changed to terse one-liner 
format.
Scripts using this should switch to `list' command or be 
rewritten.


20130618:
Fix a bug that allowed a tracing process (e.g. gdb) to write
...[snip]...
20121218:
With the addition of auditdistd(8), a new auditdistd user is now
depended on during installworld.  mergemaster -p can be used 
to add

the user prior to installworld, as documented in the handbook.

20121205:
9.1-RELEASE.
...[snip]...

I haven't a clue how to fix your non booting system short of booting off 
a FreeBSD disc, going to live CD, mounting the filesystems in a temp 
location and doing a buildworld/kernel over again with correct source 
tree.


--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/

___
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: 9.1 - 9.2 upgrade

2013-10-03 Thread Doug Hardie

On 3 October 2013, at 11:58, dweimer dwei...@dweimer.net wrote:

 On 10/03/2013 1:48 pm, Doug Hardie wrote:
 On 3 October 2013, at 10:49, Doug Hardie bc...@lafn.org wrote:
 I just did an upgrade using freebsd-update to 9.2.  This system uses a 
 custom kernel so I am rebuilding everything after the update completed.  
 However, I noticed that /usr/src/UPDATING has not been updated.  The first 
 entry still says:  9.1-RELEASE.  Is this correct?
 Well, it just got worse - The last reboot now fails:  I am using a
 remote console and it shows:
 -- Press a key on the console to reboot --
 Rebooting...
 Consoles: internal video/keyboard  serial port
 BIOS drive A: is disk0
 BIOS drive C: is disk1
 BIOS 639kB/2087360kB available memory
 FreeBSD/x86 bootstrap loader, Revision 1.1
 (d...@zool.lafn.org, Thu Oct  3 04:23:13 PDT 2013)
 Can't work out which disk we are booting from.
 Guessed BIOS device 0x not found by probes, defaulting to disk0:
 panic: free: guard1 fail @ 0x7f481ed0 from
 /usr/src/sys/boot/i386/loader/../../common/module.c:1004
 -- Press a key on the console to reboot --
 I can enter a string as it doesn't try to reboot again till the return
 is entered.  I've tried b disk1, but it still only tries disk0.  The
 system rebooted fine after the reboot after make kernel.  Mergemaster
 didn't seem to affect anything dealing with boot.  Don't know what
 make delete-old does but the descriptions lead me to not believe it
 could cause this.  This system is on the other side of LA from me so
 its a major trip timewise.  Any ideas how this can be recovered
 remotely?
 ___
 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
 
 I wonder if your source update didn't correctly download, mine starts with:
 
 Updating Information for FreeBSD current users
 ...[snip]...
 Items affecting the ports and packages system can be found in
 /usr/ports/UPDATING.  Please read that file before running portupgrade.
 
 20130705:
hastctl(8)'s `status' command output changed to terse one-liner format.
Scripts using this should switch to `list' command or be rewritten.
 
 20130618:
Fix a bug that allowed a tracing process (e.g. gdb) to write
 ...[snip]...
 20121218:
With the addition of auditdistd(8), a new auditdistd user is now
depended on during installworld.  mergemaster -p can be used to add
the user prior to installworld, as documented in the handbook.
 
 20121205:
9.1-RELEASE.
 ...[snip]...
 
 I haven't a clue how to fix your non booting system short of booting off a 
 FreeBSD disc, going to live CD, mounting the filesystems in a temp location 
 and doing a buildworld/kernel over again with correct source tree.

I have been using freebsd-update for quite awhile now and this is the first 
time it has failed.  However, I am not convinced the kernel is bad.  It never 
gets to the point of trying to load the kernel.  Something has failed in the 
bootstrap process itself and I have not figured out what is the right thing to 
enter at that prompt.  Being on-site is not a viable alternative…


___
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: zfs over geli over zfs

2013-10-03 Thread Matthew Seaman
On 03/10/2013 17:20, Nikos Vassiliadis wrote:
 I am after a really specific use-case and the last minute transactions
 are important. Using a zpool over geli over a zvol. I'd like to know if
 during shutdown the kernel flushes all zfs files caches in order so
 these last minutes transactions won't be lost. The unmounting order is
 far from obvious (zfs over geli over zfs) and i wonder if such a scheme
 will succeed. I can't afford losing the last transactions of my home dir
 every time i shutdown my laptop;)

If it's a normal clean shutdown, then yes, all pending transactions will
be committed to persistent storage.

Normally you'ld do something like this by creating geli devices on disk
partitions (usually via gpt nowadays), and then creating your zpool from
those geli devices.  (Typically you'ld just use one geli device in your
zvol, which doesn't offer any resilience but avoids potential
cryptographical fubars like having two crypttexts known to come from the
same plaintext: something that can make it considerably easier to break
the encryption.

Using a zfs exported as a raw device layered with geli is a good way to
get round that, but I think you're probably better off creating a
standard UFS on top of the geli partition, rather than creating a second
layer of zpool and zfses.

(I don't actually know: this is just me guessing without ever having
tried this in practice.  I'll willingly cede to anyone with actual
experience of this sort of thing.)

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.
PGP: http://www.infracaninophile.co.uk/pgpkey




signature.asc
Description: OpenPGP digital signature


Re: mtree: line 21: unknown user auditdistd

2013-10-02 Thread Trond Endrestøl
On Tue, 1 Oct 2013 12:19-0400, alexus wrote:

 I've re-run pwd_mkdb now auditdistd user is there, yet back to mergemaster
 issues:
 
 [root@f9 ~]# pwd_mkdb -p /etc/master.passwd
 [root@f9 ~]# id auditdistd
 uid=78(auditdistd) gid=77(audit) groups=77(audit)
 [root@f9 ~]# mergemaster
 
 *** Creating the temporary root environment in /var/tmp/temproot
  *** /var/tmp/temproot ready for use
  *** Creating and populating directory structure in /var/tmp/temproot
 
 install: illegal option -- l
 usage: install [-bCcMpSsv] [-B suffix] [-f flags] [-g group] [-m mode]
[-o owner] file1 file2
install [-bCcMpSsv] [-B suffix] [-f flags] [-g group] [-m mode]
[-o owner] file1 ... fileN directory
install -d [-v] [-g group] [-m mode] [-o owner] directory ...
 
   *** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
   the temproot environment
 
 [root@f9 ~]#

You need to semi-manually install a new version of mergemaster:

cd /usr/src/usr.sbin/mergemaster  make install

See the 20130430 entry in /usr/src/UPDATING.

 On Tue, Oct 1, 2013 at 11:52 AM, alexus ale...@gmail.com wrote:
 
  I even sort of have that user...
 
  f9# grep auditdistd /etc/*passwd
  /etc/master.passwd:auditdistd:*:78:77::0:0:Auditdistd unprivileged
  user:/var/empty:/usr/sbin/nologin
  /etc/passwd:auditdistd:*:78:77:Auditdistd unprivileged
  user:/var/empty:/usr/sbin/nologin
  f9#
 
  On Tue, Oct 1, 2013 at 11:32 AM, alexus ale...@gmail.com wrote:
 
  I've tried upgrading my FreeBSD 9.1 to 9.2 via freebsd-update and I guess
  I did something wrong and now I'm trying to run mergemaster and I'm unable
  to do so, although I do remember merging passwd file w/ new user auditdistd
 
  how can I re-run mergemaster?
 
  f9# mergemaster
 
  *** The directory specified for the temporary root environment,
  /var/tmp/temproot, exists.  This can be a security risk if untrusted
  users have access to the system.
 
Use 'd' to delete the old /var/tmp/temproot and continue
Use 't' to select a new temporary root directory
Use 'e' to exit mergemaster
 
Default is to use /var/tmp/temproot as is
 
  How should I deal with this? [Use the existing /var/tmp/temproot]
 
 *** Leaving /var/tmp/temproot intact
 
  *** Creating the temporary root environment in /var/tmp/temproot
   *** /var/tmp/temproot ready for use
   *** Creating and populating directory structure in /var/tmp/temproot
 
  mtree: line 21: unknown user auditdistd
 
*** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
the temproot environment
 
  f9#
 
  --
  http://alexus.org/

-- 
+---++
| Vennlig hilsen,   | Best regards,  |
| Trond Endrestøl,  | Trond Endrestøl,   |
| IT-ansvarlig, | System administrator,  |
| Fagskolen Innlandet,  | Gjøvik Technical College, Norway,  |
| tlf. mob.   952 62 567,   | Cellular...: +47 952 62 567,   |
| sentralbord 61 14 54 00.  | Switchboard: +47 61 14 54 00.  |
+---++___
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: mtree: line 21: unknown user auditdistd

2013-10-02 Thread Alexandre
On Wed, Oct 2, 2013 at 8:01 AM, Trond Endrestøl 
trond.endres...@fagskolen.gjovik.no wrote:

 On Tue, 1 Oct 2013 12:19-0400, alexus wrote:

  I've re-run pwd_mkdb now auditdistd user is there, yet back to
 mergemaster
  issues:
 
  [root@f9 ~]# pwd_mkdb -p /etc/master.passwd
  [root@f9 ~]# id auditdistd
  uid=78(auditdistd) gid=77(audit) groups=77(audit)
  [root@f9 ~]# mergemaster
 
  *** Creating the temporary root environment in /var/tmp/temproot
   *** /var/tmp/temproot ready for use
   *** Creating and populating directory structure in /var/tmp/temproot
 
  install: illegal option -- l
  usage: install [-bCcMpSsv] [-B suffix] [-f flags] [-g group] [-m mode]
 [-o owner] file1 file2
 install [-bCcMpSsv] [-B suffix] [-f flags] [-g group] [-m mode]
 [-o owner] file1 ... fileN directory
 install -d [-v] [-g group] [-m mode] [-o owner] directory ...
 
*** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
the temproot environment
 
  [root@f9 ~]#

 You need to semi-manually install a new version of mergemaster:

 cd /usr/src/usr.sbin/mergemaster  make install

 See the 20130430 entry in /usr/src/UPDATING.

  On Tue, Oct 1, 2013 at 11:52 AM, alexus ale...@gmail.com wrote:
 
   I even sort of have that user...
  
   f9# grep auditdistd /etc/*passwd
   /etc/master.passwd:auditdistd:*:78:77::0:0:Auditdistd unprivileged
   user:/var/empty:/usr/sbin/nologin
   /etc/passwd:auditdistd:*:78:77:Auditdistd unprivileged
   user:/var/empty:/usr/sbin/nologin
   f9#
  
   On Tue, Oct 1, 2013 at 11:32 AM, alexus ale...@gmail.com wrote:
  
   I've tried upgrading my FreeBSD 9.1 to 9.2 via freebsd-update and I
 guess
   I did something wrong and now I'm trying to run mergemaster and I'm
 unable
   to do so, although I do remember merging passwd file w/ new user
 auditdistd
  
   how can I re-run mergemaster?
  
   f9# mergemaster
  
   *** The directory specified for the temporary root environment,
   /var/tmp/temproot, exists.  This can be a security risk if
 untrusted
   users have access to the system.
  
 Use 'd' to delete the old /var/tmp/temproot and continue
 Use 't' to select a new temporary root directory
 Use 'e' to exit mergemaster
  
 Default is to use /var/tmp/temproot as is
  
   How should I deal with this? [Use the existing /var/tmp/temproot]
  
  *** Leaving /var/tmp/temproot intact
  
   *** Creating the temporary root environment in /var/tmp/temproot
*** /var/tmp/temproot ready for use
*** Creating and populating directory structure in /var/tmp/temproot
  
   mtree: line 21: unknown user auditdistd
  
 *** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
 the temproot environment
  
   f9#
  
   --
   http://alexus.org/

 --
 +---++
 | Vennlig hilsen,   | Best regards,  |
 | Trond Endrestøl,  | Trond Endrestøl,   |
 | IT-ansvarlig, | System administrator,  |
 | Fagskolen Innlandet,  | Gjøvik Technical College, Norway,  |
 | tlf. mob.   952 62 567,   | Cellular...: +47 952 62 567,   |
 | sentralbord 61 14 54 00.  | Switchboard: +47 61 14 54 00.  |
 +---++
 ___
 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

Hi Trond and Alexus,
The tool used by freebsd-update to merge system files is merge(1), not
mergemaster(8).
See manpage merge(1)
http://www.freebsd.org/cgi/man.cgi?query=mergeapropos=0sektion=0manpath=FreeBSD+9.2-RELEASEarch=defaultformat=html
for
more information.
I use mergemaster(8) tool if I deal with sources system upgrade process.

Kind regards,
Alexandre
___
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: Port of icedtea-web-1.4_1, on 64 bit system might have a problem in the install process.

2013-10-02 Thread Volodymyr Kostyrko

01.10.2013 19:09, dweimer wrote:

I was struggling to get itweb-javaws to execute, due to it not being
able to find libjava.so, after running it through truss, I was able to
determine that its looking for the library under /usr/local/lib/amd64,
the file is located in /usr/local/openjdk7/jre/lib/amd64, I was able to
work around the problem by creating a symbolic link to point
/usr/local/lib/amd64 to /usr/local/openjdk/jre/lib/amd64, as the amd64
sub-directory didn't exist in /usr/local/lib.

This does make me wonder though, if I am just missing something from my
environment, that's causing this.  Or is the port install not doing
something that it should be doing?


Never faced this, itweb-javaws works for me without library shuffling 
but with one tiny fix to startup script: `exec ${COMMAND[@]}`.


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


Re: Port of icedtea-web-1.4_1, on 64 bit system might have a problem in the install process.

2013-10-02 Thread Volodymyr Kostyrko

01.10.2013 21:12, dweimer wrote:

On 10/01/2013 11:09 am, dweimer wrote:

I was struggling to get itweb-javaws to execute, due to it not being
able to find libjava.so, after running it through truss, I was able to
determine that its looking for the library under /usr/local/lib/amd64,
the file is located in /usr/local/openjdk7/jre/lib/amd64, I was able
to work around the problem by creating a symbolic link to point
/usr/local/lib/amd64 to /usr/local/openjdk/jre/lib/amd64, as the amd64
sub-directory didn't exist in /usr/local/lib.

This does make me wonder though, if I am just missing something from
my environment, that's causing this.  Or is the port install not doing
something that it should be doing?

System is a new build of 9.2-RELEASE, compiled from source, source and
ports all built with clang where possible.


Just an update, this only worked the first time I executed it, now all I
get is:

java.lang.UnsatisfiedLinkError:
/usr/local/openjdk7/jre/lib/amd64/libsplashscreen.so:
/usr/local/openjdk7/jre/lib/amd64/libsplashscreen.so: Undefined symbol
jpeg_resync_to_restart


Try `-headless`. You wont see the shiny logo though...

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


Re: Port of icedtea-web-1.4_1, on 64 bit system might have a problem in the install process.

2013-10-02 Thread dweimer

On 10/02/2013 6:35 am, Volodymyr Kostyrko wrote:

01.10.2013 21:12, dweimer wrote:

On 10/01/2013 11:09 am, dweimer wrote:

I was struggling to get itweb-javaws to execute, due to it not being
able to find libjava.so, after running it through truss, I was able 
to
determine that its looking for the library under 
/usr/local/lib/amd64,

the file is located in /usr/local/openjdk7/jre/lib/amd64, I was able
to work around the problem by creating a symbolic link to point
/usr/local/lib/amd64 to /usr/local/openjdk/jre/lib/amd64, as the 
amd64

sub-directory didn't exist in /usr/local/lib.

This does make me wonder though, if I am just missing something from
my environment, that's causing this.  Or is the port install not 
doing

something that it should be doing?

System is a new build of 9.2-RELEASE, compiled from source, source 
and

ports all built with clang where possible.


Just an update, this only worked the first time I executed it, now all 
I

get is:

java.lang.UnsatisfiedLinkError:
/usr/local/openjdk7/jre/lib/amd64/libsplashscreen.so:
/usr/local/openjdk7/jre/lib/amd64/libsplashscreen.so: Undefined symbol
jpeg_resync_to_restart


Try `-headless`. You wont see the shiny logo though...


Thank you, this fixed that part, silly me, I was searching the help for 
things like -nosplash, and disable splash screen.


Didn't realize that this was the same thing:
  -headless Disables download window, other UIs.


--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/
___
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


DS-Lite

2013-10-02 Thread Pietro Paolini
I am struggling in finding some documentation which can help me to 
understand how to configure an DS-Lite ip tunnel ipv4-ipv6 |netowrk| 
ipv6-ipv4, my topology is composed by a Linux and a FreeBSD machine.


Linux (( TUNNEL )) FreeBSD

I know how to configure it in Linux but I have problem in retrieving 
those informations for FreeBSD, someone can point me on that ?


Thanks a lot.



Pietro Paolini
pulsarpie...@aol.com

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


zfs flag denoting unclean shutdown?

2013-10-02 Thread Nikos Vassiliadis

Hi,

Is there a way to know if a zfs pool had an unclean shutdown?
An attribute or maybe something during mount time similar to what ufs
does (WARNING: / was not properly dismounted)?

Thanks, Nikos
___
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: zfs flag denoting unclean shutdown?

2013-10-02 Thread Matthew Seaman
On 02/10/2013 16:34, Nikos Vassiliadis wrote:
 Is there a way to know if a zfs pool had an unclean shutdown?
 An attribute or maybe something during mount time similar to what ufs
 does (WARNING: / was not properly dismounted)?

Other than looking at the system logs for evidence of an abnormal
shutdown, no.  (Absence of anything in the logs is pretty good evidence
for the system falling over pretty hard... Usually something to do with
the power being turned off.)

However, due to the design of ZFS unclean shutdowns like this are
nowhere near as problematic as on UFS.  Basically, you're guaranteed
that what is written on disk is always consistent.  You might lose a few
transactions -- essentially the last few seconds of file system activity
-- but that doesn't usually make a great deal of difference after the
system reboots again.  Oh, yeah -- absolutely no time will be needed to
be spent cleaning and repairing filesystems: with ZFS, reboot after
crash is as fast as a normal reboot.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.
PGP: http://www.infracaninophile.co.uk/pgpkey




signature.asc
Description: OpenPGP digital signature


Where is pkg repository for 9.2-RELEASE (amd64)?

2013-10-02 Thread Winston
Summary:

Where is the (U.S.) pkg(ng) repository for amd64 9.2-RELEASE (i.e.,
what's the right URI for PACKAGESITE in pkg.conf)?


Things I tried that didn't work:

* pkg_add -r pkg  didn't create /usr/local/etc/pkg.conf

* pkg.conf.sample suggests http://pkg.freebsd.org/${ABI}/latest;,
  but the host name pkg.freebsd.org does not DNS resolve for me.

* URLs using pkgbeta.FreeBSD.org didn't work, and
  http://pkgbeta.FreeBSD.org/  itself says
  Currently this site only contains pkg bootstrap files!

Thanks!
 -WBE
___
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


firefox: getting back several URL's as tabs?

2013-10-02 Thread Gary Kline
Organization: Thought Unlimited.  Public service Unix since 1986.
Of_Interest: With 27 years  of service  to the  Unix  community.


guys,

well, it just happened again.  when I closed an unwanted URL, the
other two instances of firefox vanished.  I know the Hard way of
getting them all back, but does is there an easy way of refilling 
both browsers?  oh, and if there is somewhere I can click to save 
my bookmarks by-hand, please let me know   before my shoulder
falls off!

thanks in advance,

gary



-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
 Twenty-seven years of service to the Unix community.
http://www.thought.org/HOPE


___
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: Where is pkg repository for 9.2-RELEASE (amd64)?

2013-10-02 Thread Matthew Seaman
On 02/10/2013 21:07, Winston wrote:
 Summary:
 
 Where is the (U.S.) pkg(ng) repository for amd64 9.2-RELEASE (i.e.,
 what's the right URI for PACKAGESITE in pkg.conf)?
 
 
 Things I tried that didn't work:
 
 * pkg_add -r pkg  didn't create /usr/local/etc/pkg.conf
 
 * pkg.conf.sample suggests http://pkg.freebsd.org/${ABI}/latest;,
   but the host name pkg.freebsd.org does not DNS resolve for me.
 
 * URLs using pkgbeta.FreeBSD.org didn't work, and
   http://pkgbeta.FreeBSD.org/  itself says
   Currently this site only contains pkg bootstrap files!

Yeah -- and the bootstrap pkg on pkgbeta is severely out of date and has
some problems with the up to date DB schema.

Use PACKAGESITE=http://pkg-test.freebsd.org/pkg-test-${ABI}/latest

That's the kit that will form the official FreeBSD package repository;
it just lacks the crypto bits for signing the packages, which is why
it's calling itself 'pkg-test'

Oh -- there isn't an A record in the DNS for pkg-test.freebsd.org --
look up a SRV record for _http._tcp.pkg-test.freebsd.org instead.

(Yes, this is counter to RFC 2616.
https://github.com/freebsd/pkg/issues/550  There are moves afoot to
change to a new set of URL schemes: pkg+http://, pkg+https://,
pkg+ssh:// etc. but these are still under development)

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.
PGP: http://www.infracaninophile.co.uk/pgpkey




signature.asc
Description: OpenPGP digital signature


Soekris for a Trac server

2013-10-01 Thread Michael
I am planning to move a jail-hosted service to a physical device and
would like to hear the advices of experts here.


My service runs sshd, apache and trac (the ticket service) and I am
considering getting one of the products by soekris. I know that some
list users have some experience with these products so it would be very
nice for me to ear if this kind of product is suitable for my project
and if FreeBSD is doing well on these platforms.

Also I am bit unsure about the setup I should pick: we are a hand of
users for the service and I would like to know if a 64-MB Ram and a
166Mhz setup could do, or if I definitely should consider a faster CPU
or more RAM. Given my actual jail based setup, is there an easy way to
guess the required RAM — In the jail `top` reports a Size of 111M for
the Python process, but I guess the interpreter is taking things easy
when a lot of RAM is available, doesn't it?

Last, are FreeBSD jails lightweight enough to run in such a constrained
environment? It is not unlikely that the device evolves to run several
other services (like a nfs) and I would appreciate to be able to confine
services appropriately using jails.

Thank you for your comments!
Michael

___
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: # portmaster -r pixman fails with !#/bin/sh list too long

2013-10-01 Thread Lowell Gilbert
Antonio Olivares olivares14...@gmail.com writes:

 Dear folks,

 In updating ports I encounter above issue and cannot proceed.

 20130929:
   AFFECTS: users of x11/pixman
   AUTHOR: zeis...@freebsd.org

   The library version of x11/pixman has changed, and portrevision has
   been bumped in all dependent ports.  If you have external software that
   depends on pixman, this software needs to be recompiled.
   To recompile all software dependent on pixman, run:

   # portmaster -r pixman
   or
   # portupgrade -rf pixman

 The messages are that a pkg texlive-ub* and that #!/bin/sh list
 too long.  I try to run
 # portmaster -d -r pixman -x 'texlive-*'
 but it still fails in the same place :(

I continued with portmaster's -R option and got a lot further. You
could try either that or the command line that portmaster suggests 
when it bails out. 

 I am using texlive-freebsd from Romain Tartiere's googlecode page in
 case it is important.  Please advice me so I can succeed to fix these
 issue.  I lost X because I failed to read the /usr/src/UPDATING advice
 and then I realized that I overlooked this :(

I don't think that texlive is relevant; if you continue the process
instead of starting from scratch, you'll probably get farther. 

I'd prefer to actually debug the problem at its root, but it's the
middle of the night and I don't seem to have enough brain cells awake 
to figure anything out.

Good luck.
___
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: Contributing to FreeBSD

2013-10-01 Thread karan garg
On Tue, Oct 1, 2013 at 1:55 AM, Pascal Schmid pas...@lechindianer.dewrote:

 On 09/30/2013 04:30 PM, karan garg wrote:
  On Mon, Sep 30, 2013 at 6:00 PM, Jerry je...@seibercom.net wrote:
 
  On Mon, 30 Sep 2013 17:16:54 +0530
  karan garg articulated:
 
  Hi all,
 
  I am an open source enthusiast and new to freeBSD community. I am an
  RHCE and have a reasonable knowledge of linux administration,
  database, Bash Scripting, and C/C++.
 
  I want to contribute to the community. I have gone through the FreeBSD
  handbook, and list of various projects under the community. However,
  I was unable to determine a suitable project for me to get started.
  So, I would really appreciate if you could help me find a project
  that would require my field of knowledge.
 
  Also, I wish to apply for GSOC-2014 and have checked the ideas page
  but found the similar problems as above.
 
  Also, if you could give me a link of resources and handbook for me to
  go through before starting to contribute.
 
  Well, if you really want a suggestion, you could try updating the
  linux_base-f10-10_7 port that was released by Fedora on November 25,
  2008 to something newer, say the Fedora 19, released July 2, 2013.
 
  Thanks Jerry,
  But as this is my first experience, can you give me some links to go
  through before I start?
  According to what I found, portsnap is one of the tools that will help me
  for this.
 
  Also, is this the correct mailing list to keep posting on for this
 purpose?
 
  --
  Jerry ♔
 
  Disclaimer: off-list followups get on-list replies or get ignored.
  Please do not ignore the Reply-To header.
  __
 
  ___
  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
 
 
 
 
 Hi Karan,

 you should take a look at the FreeBSD porter's handbook
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/

Thanks a lot!
I will go through it at once.



and I think questions@ is the general purpose mailing list for all things :)

 If your uncertain about some options in your first port I'm sure the
 friendly people over at ports@
 will help you!

Thanks!


 Greetings,
 Pascal


 ___
 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 :)
Karan
___
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: # portmaster -r pixman fails with !#/bin/sh list too long

2013-10-01 Thread Antonio Olivares
Dear Sir,

I tried your advice with the -R option, it worked, but for only pixman
the other ports that depend on it don't get rebuilt :(

I try to use -x 'texlive-*' but it does not work :(
I get

Could not execute shell
/usr/ports/Mk/bsd.port.mk,  line 1192:  warning /usr/bin/awk
'/^#define[[:blank:]]FreeBSD_version/ {print $3}
/usr/include/sys/param.h returned non-zero status
/usr/local/sbin/portmaster:  rm: Argument list too long

and it justs sits there.  Out of 3 machines only 1 is working because
I overlooked the pixman update entry in /usr/src/UPDATING :(

Please advice me as to how to get the desktop working again on these
machines.  I did not want to shoot myself in the foot but I did so :(

Best Regards,


Antonio

On Tue, Oct 1, 2013 at 1:27 AM, Lowell Gilbert
freebsd-questions-lo...@be-well.ilk.org wrote:
 Antonio Olivares olivares14...@gmail.com writes:

 Dear folks,

 In updating ports I encounter above issue and cannot proceed.

 20130929:
   AFFECTS: users of x11/pixman
   AUTHOR: zeis...@freebsd.org

   The library version of x11/pixman has changed, and portrevision has
   been bumped in all dependent ports.  If you have external software that
   depends on pixman, this software needs to be recompiled.
   To recompile all software dependent on pixman, run:

   # portmaster -r pixman
   or
   # portupgrade -rf pixman

 The messages are that a pkg texlive-ub* and that #!/bin/sh list
 too long.  I try to run
 # portmaster -d -r pixman -x 'texlive-*'
 but it still fails in the same place :(

 I continued with portmaster's -R option and got a lot further. You
 could try either that or the command line that portmaster suggests
 when it bails out.

 I am using texlive-freebsd from Romain Tartiere's googlecode page in
 case it is important.  Please advice me so I can succeed to fix these
 issue.  I lost X because I failed to read the /usr/src/UPDATING advice
 and then I realized that I overlooked this :(

 I don't think that texlive is relevant; if you continue the process
 instead of starting from scratch, you'll probably get farther.

 I'd prefer to actually debug the problem at its root, but it's the
 middle of the night and I don't seem to have enough brain cells awake
 to figure anything out.

 Good luck.
___
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: # portmaster -r pixman fails with !#/bin/sh list too long

2013-10-01 Thread Lowell Gilbert
Antonio Olivares olivares14...@gmail.com writes:

 I tried your advice with the -R option, it worked, but for only pixman
 the other ports that depend on it don't get rebuilt :(

 I try to use -x 'texlive-*' but it does not work :(
 I get

 Could not execute shell
 /usr/ports/Mk/bsd.port.mk,  line 1192:  warning /usr/bin/awk
 '/^#define[[:blank:]]FreeBSD_version/ {print $3}
 /usr/include/sys/param.h returned non-zero status
 /usr/local/sbin/portmaster:  rm: Argument list too long

 and it justs sits there.  Out of 3 machines only 1 is working because
 I overlooked the pixman update entry in /usr/src/UPDATING :(

 Please advice me as to how to get the desktop working again on these
 machines.  I did not want to shoot myself in the foot but I did so :(

Try the '-R' again; it may get a bit farther each time. 

You can always recover by removing some of the ports and reinstalling
them after the remaining ports are updated. You're going to have to
rebuild a huge number of ports anyway, so this is not very different
from using portmaster on everything.

Good luck.
___
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: FreeBSD 9.2-RELEASE stability?

2013-10-01 Thread Mark Felder
On Mon, Sep 30, 2013, at 14:01, Brett Glass wrote:
 How stable are folks finding FreeBSD 9.2-RELEASE to be? The 
 improvements are welcome, but there have been a few troubling 
 messages about kernel panics and VM issues on the various mailing 
 lists. It's never clear until the release drops whether these are 
 actual problems with the software or hardware defects in individual 
 systems, so I am eager to hear how the new release is working for
 everyone.
 

I upgraded our two main backup servers which are doing I/O via
rsync/rsnapshot and sending ZFS snapshots to the other remote site every
15 minutes.

I had several instances where the machines went unresponsive. They
didn't panic, and they did respond to CTRL+ALT+DEL on the console, but
they lost all networking and wouldn't do anything else. The only change
was I enabled zfs prefetch which I previously had disabled for
performance reasons. It never caused this issue on 9.1 when I had it
enabled, though. The fix definitely was turning off prefetch again which
doesn't bother me too much, but I can't use this environment to try to
help debug it as it's important production data.
___
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: FreeBSD 9.2-RELEASE stability?

2013-10-01 Thread CeDeROM
On Tue, Oct 1, 2013 at 3:53 PM, Mark Felder f...@freebsd.org wrote:
 On Mon, Sep 30, 2013, at 14:01, Brett Glass wrote:
 How stable are folks finding FreeBSD 9.2-RELEASE to be?

For me freebsd-update from 9.1 to 9.2 went smooth on my workstation
laptop, the userland works fine :-)

I remember myself Nakatomi BSD 9.2 on the movie (in the reception
hall scene), I was su suprised back then to see BSD in this kind of
movie :-)

Best regards :-)
Tomek

-- 
CeDeROM, SQ7MHZ, http://www.tomek.cedro.info
___
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


mtree: line 21: unknown user auditdistd

2013-10-01 Thread alexus
I've tried upgrading my FreeBSD 9.1 to 9.2 via freebsd-update and I guess I
did something wrong and now I'm trying to run mergemaster and I'm unable to
do so, although I do remember merging passwd file w/ new user auditdistd

how can I re-run mergemaster?

f9# mergemaster

*** The directory specified for the temporary root environment,
/var/tmp/temproot, exists.  This can be a security risk if untrusted
users have access to the system.

  Use 'd' to delete the old /var/tmp/temproot and continue
  Use 't' to select a new temporary root directory
  Use 'e' to exit mergemaster

  Default is to use /var/tmp/temproot as is

How should I deal with this? [Use the existing /var/tmp/temproot]

   *** Leaving /var/tmp/temproot intact

*** Creating the temporary root environment in /var/tmp/temproot
 *** /var/tmp/temproot ready for use
 *** Creating and populating directory structure in /var/tmp/temproot

mtree: line 21: unknown user auditdistd

  *** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
  the temproot environment

f9#
___
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: mtree: line 21: unknown user auditdistd

2013-10-01 Thread alexus
I even sort of have that user...

f9# grep auditdistd /etc/*passwd
/etc/master.passwd:auditdistd:*:78:77::0:0:Auditdistd unprivileged
user:/var/empty:/usr/sbin/nologin
/etc/passwd:auditdistd:*:78:77:Auditdistd unprivileged
user:/var/empty:/usr/sbin/nologin
f9#



On Tue, Oct 1, 2013 at 11:32 AM, alexus ale...@gmail.com wrote:

 I've tried upgrading my FreeBSD 9.1 to 9.2 via freebsd-update and I guess
 I did something wrong and now I'm trying to run mergemaster and I'm unable
 to do so, although I do remember merging passwd file w/ new user auditdistd

 how can I re-run mergemaster?

 f9# mergemaster

 *** The directory specified for the temporary root environment,
 /var/tmp/temproot, exists.  This can be a security risk if untrusted
 users have access to the system.

   Use 'd' to delete the old /var/tmp/temproot and continue
   Use 't' to select a new temporary root directory
   Use 'e' to exit mergemaster

   Default is to use /var/tmp/temproot as is

 How should I deal with this? [Use the existing /var/tmp/temproot]

*** Leaving /var/tmp/temproot intact

 *** Creating the temporary root environment in /var/tmp/temproot
  *** /var/tmp/temproot ready for use
  *** Creating and populating directory structure in /var/tmp/temproot

 mtree: line 21: unknown user auditdistd

   *** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
   the temproot environment

 f9#




-- 
http://alexus.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: mtree: line 21: unknown user auditdistd

2013-10-01 Thread alexus
I've re-run pwd_mkdb now auditdistd user is there, yet back to mergemaster
issues:

[root@f9 ~]# pwd_mkdb -p /etc/master.passwd
[root@f9 ~]# id auditdistd
uid=78(auditdistd) gid=77(audit) groups=77(audit)
[root@f9 ~]# mergemaster

*** Creating the temporary root environment in /var/tmp/temproot
 *** /var/tmp/temproot ready for use
 *** Creating and populating directory structure in /var/tmp/temproot

install: illegal option -- l
usage: install [-bCcMpSsv] [-B suffix] [-f flags] [-g group] [-m mode]
   [-o owner] file1 file2
   install [-bCcMpSsv] [-B suffix] [-f flags] [-g group] [-m mode]
   [-o owner] file1 ... fileN directory
   install -d [-v] [-g group] [-m mode] [-o owner] directory ...

  *** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
  the temproot environment

[root@f9 ~]#



On Tue, Oct 1, 2013 at 11:52 AM, alexus ale...@gmail.com wrote:

 I even sort of have that user...

 f9# grep auditdistd /etc/*passwd
 /etc/master.passwd:auditdistd:*:78:77::0:0:Auditdistd unprivileged
 user:/var/empty:/usr/sbin/nologin
 /etc/passwd:auditdistd:*:78:77:Auditdistd unprivileged
 user:/var/empty:/usr/sbin/nologin
 f9#



 On Tue, Oct 1, 2013 at 11:32 AM, alexus ale...@gmail.com wrote:

 I've tried upgrading my FreeBSD 9.1 to 9.2 via freebsd-update and I guess
 I did something wrong and now I'm trying to run mergemaster and I'm unable
 to do so, although I do remember merging passwd file w/ new user auditdistd

 how can I re-run mergemaster?

 f9# mergemaster

 *** The directory specified for the temporary root environment,
 /var/tmp/temproot, exists.  This can be a security risk if untrusted
 users have access to the system.

   Use 'd' to delete the old /var/tmp/temproot and continue
   Use 't' to select a new temporary root directory
   Use 'e' to exit mergemaster

   Default is to use /var/tmp/temproot as is

 How should I deal with this? [Use the existing /var/tmp/temproot]

*** Leaving /var/tmp/temproot intact

 *** Creating the temporary root environment in /var/tmp/temproot
  *** /var/tmp/temproot ready for use
  *** Creating and populating directory structure in /var/tmp/temproot

 mtree: line 21: unknown user auditdistd

   *** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
   the temproot environment

 f9#




 --
 http://alexus.org/




-- 
http://alexus.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


Port of icedtea-web-1.4_1, on 64 bit system might have a problem in the install process.

2013-10-01 Thread dweimer
I was struggling to get itweb-javaws to execute, due to it not being 
able to find libjava.so, after running it through truss, I was able to 
determine that its looking for the library under /usr/local/lib/amd64, 
the file is located in /usr/local/openjdk7/jre/lib/amd64, I was able to 
work around the problem by creating a symbolic link to point 
/usr/local/lib/amd64 to /usr/local/openjdk/jre/lib/amd64, as the amd64 
sub-directory didn't exist in /usr/local/lib.


This does make me wonder though, if I am just missing something from my 
environment, that's causing this.  Or is the port install not doing 
something that it should be doing?


System is a new build of 9.2-RELEASE, compiled from source, source and 
ports all built with clang where possible.


--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/
___
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: mtree: line 21: unknown user auditdistd

2013-10-01 Thread Alexandre
On Tue, Oct 1, 2013 at 5:52 PM, alexus ale...@gmail.com wrote:

 I even sort of have that user...

 f9# grep auditdistd /etc/*passwd
 /etc/master.passwd:auditdistd:*:78:77::0:0:Auditdistd unprivileged
 user:/var/empty:/usr/sbin/nologin
 /etc/passwd:auditdistd:*:78:77:Auditdistd unprivileged
 user:/var/empty:/usr/sbin/nologin
 f9#



 On Tue, Oct 1, 2013 at 11:32 AM, alexus ale...@gmail.com wrote:

  I've tried upgrading my FreeBSD 9.1 to 9.2 via freebsd-update and I guess
  I did something wrong and now I'm trying to run mergemaster and I'm
 unable
  to do so, although I do remember merging passwd file w/ new user
 auditdistd
 
  how can I re-run mergemaster?
 
  f9# mergemaster
 
  *** The directory specified for the temporary root environment,
  /var/tmp/temproot, exists.  This can be a security risk if untrusted
  users have access to the system.
 
Use 'd' to delete the old /var/tmp/temproot and continue
Use 't' to select a new temporary root directory
Use 'e' to exit mergemaster
 
Default is to use /var/tmp/temproot as is
 
  How should I deal with this? [Use the existing /var/tmp/temproot]
 
 *** Leaving /var/tmp/temproot intact
 
  *** Creating the temporary root environment in /var/tmp/temproot
   *** /var/tmp/temproot ready for use
   *** Creating and populating directory structure in /var/tmp/temproot
 
  mtree: line 21: unknown user auditdistd
 
*** FATAL ERROR: Cannot 'cd' to /usr/src and install files to
the temproot environment
 
  f9#
 
 


 --
 http://alexus.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

Hi Alexus,

You should have a look to this topic on FreeBSD Forums
http://forums.freebsd.org/showthread.php?t=36454

Kind regards,
Alexandre
___
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: Port of icedtea-web-1.4_1, on 64 bit system might have a problem in the install process.

2013-10-01 Thread dweimer

On 10/01/2013 11:09 am, dweimer wrote:

I was struggling to get itweb-javaws to execute, due to it not being
able to find libjava.so, after running it through truss, I was able to
determine that its looking for the library under /usr/local/lib/amd64,
the file is located in /usr/local/openjdk7/jre/lib/amd64, I was able
to work around the problem by creating a symbolic link to point
/usr/local/lib/amd64 to /usr/local/openjdk/jre/lib/amd64, as the amd64
sub-directory didn't exist in /usr/local/lib.

This does make me wonder though, if I am just missing something from
my environment, that's causing this.  Or is the port install not doing
something that it should be doing?

System is a new build of 9.2-RELEASE, compiled from source, source and
ports all built with clang where possible.


Just an update, this only worked the first time I executed it, now all I 
get is:


java.lang.UnsatisfiedLinkError: 
/usr/local/openjdk7/jre/lib/amd64/libsplashscreen.so: 
/usr/local/openjdk7/jre/lib/amd64/libsplashscreen.so: Undefined symbol 
jpeg_resync_to_restart


I somewhat worked around it by installing the linux_sun_jre 7.40, and 
pointing icedtea webstart at it, searching online shows this to be most 
likely be a bug in the port of openjdk.


http://www.freebsd.org/cgi/query-pr.cgi?pr=119654

--
Thanks,
   Dean E. Weimer
   http://www.dweimer.net/
___
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: Soekris for a Trac server

2013-10-01 Thread Bill Tillman





 From: Michael michip...@gmail.com
To: freebsd-questions@freebsd.org freebsd-questions@freebsd.org 
Sent: Tuesday, October 1, 2013 2:22 AM
Subject: Soekris for a Trac server
 

I am planning to move a jail-hosted service to a physical device and
would like to hear the advices of experts here.


My service runs sshd, apache and trac (the ticket service) and I am
considering getting one of the products by soekris. I know that some
list users have some experience with these products so it would be very
nice for me to ear if this kind of product is suitable for my project
and if FreeBSD is doing well on these platforms.

Also I am bit unsure about the setup I should pick: we are a hand of
users for the service and I would like to know if a 64-MB Ram and a
166Mhz setup could do, or if I definitely should consider a faster CPU
or more RAM. Given my actual jail based setup, is there an easy way to
guess the required RAM — In the jail `top` reports a Size of 111M for
the Python process, but I guess the interpreter is taking things easy
when a lot of RAM is available, doesn't it?

Last, are FreeBSD jails lightweight enough to run in such a constrained
environment? It is not unlikely that the device evolves to run several
other services (like a nfs) and I would appreciate to be able to confine
services appropriately using jails.

Thank you for your comments!
Michael

___
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


The way technology has moved on these days I would approach this from a
completely different manner. Soekris makes some cool little boxes, but the
last time I looked they still had I486 cpu's...today may be different, probably
is. My point is that with computers so cheap these days why not just use
a box, sans the drives and do a diskless boot from one of your FreeBSD
servers...or better yet, setup another FreeBSD server using VM. It doesn't
make sense to buy a box with VM technology so freely available.
___
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: Soekris for a Trac server

2013-10-01 Thread John Levine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dunno about Soekris, but I'm very happy with one of these
mini-box systems that cost about $250 with a 60GB SSD disk:

http://www.mini-box.com/MiniPC-Value-Systems

I got a fan but it doesn't need it.  It runs ordinary amd64 FreeBSD
9.1, installed from a thumb drive.  It provides DNS, DHCP, and some
other random services on my home network.

It's also my backup server, running a four drive ZFS raid with an
ESATA controller, so I bumped the RAM up to 4GB.  My only complaint is
that the PCI slot doesn't have a matching cutout on the back panel for
for the ESATA adapter I have to use a riser card and leave the cover
off, which looks stupid but looks fine. 

It's just like any other FreeBSD box do I don't see why it wouldn't
run jails perfecty well.

R's,
John


-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.21 (FreeBSD)

iEYEARECAAYFAlJLKJsACgkQkEiFRdeC/kWt/QCeKyA1GOHNxWXtx+oXSLEYocay
L58An1PAV3zGKO9/9mvOhARkCkkgvExq
=jLRV
-END PGP SIGNATURE-
___
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


recover gpt partion

2013-10-01 Thread Zyumbilev, Peter
Hi,

I have hardware raid LSI - 20 TB, one GPT partion /dev/mfid0p1.

System is boatable from the system disk, however  GPT partion on raid
seem corrupted.

When I try to do fsck -y -t ufs I get

Cannot find file system superblock ioctl (GCINFO): Inappropriate ioctl
for device

cant't read bsd label.


What is the correct procedure to try recovery ?

Thanks,

Peter

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


<    1   2   3   4   5   6   7   8   9   10   >