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