Re: System initialization

2012-04-19 Thread perryh
Brett Glass wrote: > I have several nearly identical servers in my network, and would > like to control their configurations entirely from one file ... You might find sysutils/puppet useful. ___ freebsd-questions@freebsd.org mailing list http://lists.

Re: mounting ext2fs

2012-04-19 Thread perryh
"Julian H. Stacey" wrote: > > what does lsvfs show ? > > Maybe try: dd if=/dev/da0s1 count=20 of=/tmp/t ; file /tmp/t > (it show interesting stuff on my /xp anyway ). Easier: file -s /dev/da0s1 ___ freebsd-questions@freebsd.org mailing list http://li

Re: Can FreeBSD 9.0-RELEASE mount Ext3 file system ?

2012-04-19 Thread Xavier
On Wed, Apr 18, 2012 at 02:12:41PM +0200, Julian H. Stacey wrote: Hi Julian, > Hi, > Reference: > > From:Xavier > > Date:Sat, 7 Apr 2012 22:25:28 +0200 > > Message-id: > > Xavier wrote: > > On Sat, Apr 07, 2012 at 04:15:41PM -0400, ill...@gmail.com wrote: > > > > Hi, > > > >

Re: mounting ext2fs

2012-04-19 Thread Matthias Apitz
El día Thursday, April 19, 2012 a las 09:42:22AM -0700, per...@pluto.rain.com escribió: > "Julian H. Stacey" wrote: > > > > what does lsvfs show ? > > > > Maybe try: dd if=/dev/da0s1 count=20 of=/tmp/t ; file /tmp/t > > (it show interesting stuff on my /xp anyway ). > > Easier: file -s /dev/

Re: mounting ext2fs

2012-04-19 Thread Warren Block
On Thu, 19 Apr 2012, Matthias Apitz wrote: the problem with (this) cardreader seems to be that the card must already inserted at boot time; a later switch to another card, for example from a card with 'msdosfs' to a card with 'ext2fs', gives the problem in my first mail; don't know if this is a

Re: Re[4]: Problem with vlans on igb (was: fsck problem FreeBSD 8.3)

2012-04-19 Thread Damien Fleuriot
Well, you see me glad that this fixes your problems. You might want to see with Jack Vogel who maintains the Intel drivers, if you can track down the issue and perhaps even find a fix for it. Taking the liberty of CCing you Jack. 2012/4/18 Eugen Konkov : > Hi, Damien. > > With this configurat

Re: how to add es_MX locale ?

2012-04-19 Thread jbiskofski
Matt, Thanks for the help I was able to build the locale I needed with your instructions. I will be submitting it. Thanks again for your help. - Jose On Wed, Apr 18, 2012 at 5:09 PM, Matthew Seaman wrote: > On 18/04/2012 21:27, jbiskofski wrote: > > I dont see it in the response from "locale -a

Re: blu ray recorders

2012-04-19 Thread Shane Ambler
On 16/04/2012 18:04, Wojciech Puchar wrote: today BD recordable disks have prices that make sense as well as recorders. but as i never had one i want to ask - how it is used under FreeBSD. Does growisofs work just like with DVD-R or other tools are needed? I have an LG BH12LS38 blu-ray burner

pcre library linking issues

2012-04-19 Thread Aleksandr Miroslav
I inadvertently updated my PCRE library and in the process broke a number of things that depended on the old library. I now have a number of binaries that look like this: /usr/local/bin$ $ ldd gtester gtester: libglib-2.0.so.0 => /usr/local/lib/libglib-2.0.so.0 (0x2809)

Re: pcre library linking issues

2012-04-19 Thread Lars Eighner
On Thu, 19 Apr 2012, Aleksandr Miroslav wrote: I inadvertently updated my PCRE library and in the process broke a number of things that depended on the old library. Not the right answer but works: Create a symbolic link in the library so libpcre.so.0 points to libpcre.so.1 The old library sh

Re: blu ray recorders

2012-04-19 Thread Dean E. Weimer
On 19.04.2012 09:55, Shane Ambler wrote: On 16/04/2012 18:04, Wojciech Puchar wrote: today BD recordable disks have prices that make sense as well as recorders. but as i never had one i want to ask - how it is used under FreeBSD. Does growisofs work just like with DVD-R or other tools are nee

Re: pcre library linking issues

2012-04-19 Thread Greg Larkin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 4/19/12 11:28 AM, Lars Eighner wrote: > On Thu, 19 Apr 2012, Aleksandr Miroslav wrote: > >> I inadvertently updated my PCRE library and in the process broke >> a number of things that depended on the old library. >> > Not the right answer but work

Re: System initialization

2012-04-19 Thread Daniel Staal
On 2012-04-18 19:23, Brett Glass wrote: And then, there's the question of how to restart daemons (but not the whole system!) when configurations are changed... when this is possible. Monit can be configured to do this, as a side effect of monitoring your daemons. It also likes to be in char

Re: pcre library linking issues

2012-04-19 Thread John Levine
>libpcre.so.0 => not found (0x0) > >What can I do to fix this in the meantime? It should have saved the old one as /usr/local/lib/compat/pkg/libpcre.so.0. If it's there, try this so your programs can find it: # ldconfig -m /usr/local/lib/compat/pkg If it's not there, go get it from

Re: mounting ext2fs

2012-04-19 Thread Matthias Apitz
El día Thursday, April 19, 2012 a las 08:29:52AM -0600, Warren Block escribió: > On Thu, 19 Apr 2012, Matthias Apitz wrote: > > > the problem with (this) cardreader seems to be that the card must > > already inserted at boot time; a later switch to another card, for > > example from a card with '

Re: mounting ext2fs

2012-04-19 Thread Adam Vande More
On Thu, Apr 19, 2012 at 1:59 PM, Matthias Apitz wrote: > What do you expect exactly from this command? The actual shell will open > /dev/da0 for writing + truncating and will connect (dup) its fd 1 to it; > then it will execute 'true', perhaps as buit-in; so what? > As he stated, it forces a GEO

Re: mounting ext2fs

2012-04-19 Thread Warren Block
On Thu, 19 Apr 2012, Matthias Apitz wrote: El día Thursday, April 19, 2012 a las 08:29:52AM -0600, Warren Block escribió: On Thu, 19 Apr 2012, Matthias Apitz wrote: the problem with (this) cardreader seems to be that the card must already inserted at boot time; a later switch to another card

Re: pcre library linking issues

2012-04-19 Thread RW
On Thu, 19 Apr 2012 10:28:43 -0500 (CDT) Lars Eighner wrote: > The old library should have been moved to a compatibility library so > that things that still depended on it could find it. This did not > happen for some reason. Only portupgrade does that by default. It's an option on portmaster,

Re: pcre library linking issues

2012-04-19 Thread Aleksandr Miroslav
On Thu, Apr 19, 2012 at 11:28 AM, Lars Eighner wrote: > Create a symbolic link in the library so libpcre.so.0 points to > libpcre.so.1 Thank you, this worked. Alex ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Changing psm (mouse) resolution?

2012-04-19 Thread Ronald F. Guilmette
The man page for the psm driver says: ... The current resolution can be changed at runtime. Unfortunately, it fails to mention any sort of command line utility that would provide this functionality. Is there a command line utility that provides this functionality? Or do I need to write on

Re: Changing psm (mouse) resolution?

2012-04-19 Thread Dan Nelson
In the last episode (Apr 19), Ronald F. Guilmette said: > The man page for the psm driver says: > > ... The current resolution can be changed at runtime. > > Unfortunately, it fails to mention any sort of command line utility that > would provide this functionality. > > Is there a command li

Re: /usr/local/java/jboss5 fails to build

2012-04-19 Thread Horst Leitenmueller
hi vermaden, here is the howto and all needed changes... installation is done on a 8.2-RELEASE-p6 FreeBSD amd64 with openjdk6 what is missing is a settings.xml which must be located in the home directory of root, or the one who is installing ports /root/.m2/settings.xml file is attached in t

Re: /usr/local/java/jboss5 fails to build

2012-04-19 Thread vermaden
Hi and thank You very much ;) I will try this process tomorrow at 9.0 amd64. Also, about the provided HOWTO ... > how to patch, i run "make install" in /usr/ports/java/jboss5 > when jboss-src is downloaded and extracted i interrupted the build This should be possible by typing *make extract* ins

Re: Changing psm (mouse) resolution?

2012-04-19 Thread Polytropon
On Thu, 19 Apr 2012 14:25:48 -0700, Ronald F. Guilmette wrote: > > > The man page for the psm driver says: > > ... The current resolution can be changed at runtime. > > Unfortunately, it fails to mention any sort of command line utility > that would provide this functionality. It's mention

Re: mounting ext2fs

2012-04-19 Thread perryh
Warren Block wrote: > On Thu, 19 Apr 2012, Matthias Apitz wrote: > > the problem with (this) cardreader seems to be that the card must > > already inserted at boot time; a later switch to another card, for > > example from a card with 'msdosfs' to a card with 'ext2fs', gives the > > problem in my

Re: pcre library linking issues

2012-04-19 Thread Warren Block
On Thu, 19 Apr 2012, Aleksandr Miroslav wrote: On Thu, Apr 19, 2012 at 11:28 AM, Lars Eighner wrote: Create a symbolic link in the library so libpcre.so.0 points to libpcre.so.1 Thank you, this worked. It's a temporary measure, so rebuild everything that wants the old library, then remove