Re: 9.2-RC1: Problem with Kernel

2013-08-11 Thread Walter Hurry
On Sat, 10 Aug 2013 21:29:10 +0200, Polytropon wrote:

 On Sat, 10 Aug 2013 19:04:29 + (UTC), Walter Hurry wrote:
 This is 9.2-RC1 on amd64 (upgraded from 9.2-BETA1 by refetching the
 source from releng/9.2 and rebuilding kernel and world).
 
 The kernel compiles and runs fine using the supplied GENERIC, but when
 I try to use my custom kenel config file, on reboot I get this:
 
 Mounting from ufs:/dev/ada0p2 failed with error 19
 
 What module(s) have I missed?
 
 Diff against the GENERIC kernel. Maybe device xhci?
 What bootable media is listed when you type ? at the mountroot prompt?
 If GENERIC boots and your kernel doesn't, there should be a significant
 difference regarding the config file's content. :-)

Thanks for the reply. When I type ? at the mountroot prompt I get:

List of GEOM managed disk devices:

with nothing shown.

After restoring the GENERIC kernel, the output from 'gpart list' is:

Geom name: ada0
modified: false
state: OK
fwheads: 16
fwsectors: 63
last: 41943006
first: 34
entries: 128
scheme: GPT
Providers:
1. Name: ada0p1
   Mediasize: 65536 (64k)
   Sectorsize: 512
   Stripesize: 0
   Stripeoffset: 17408
   Mode: r0w0e0
   rawuuid: c5ae2f8e-f5e1-11e2-92dd-08002755f0f7
   rawtype: 83bd6b9d-7f41-11dc-be0b-001560b84f0f
   label: (null)
   length: 65536
   offset: 17408
   type: freebsd-boot
   index: 1
   end: 161
   start: 34
2. Name: ada0p2
   Mediasize: 20401029120 (19G)
   Sectorsize: 512
   Stripesize: 0
   Stripeoffset: 82944
   Mode: r1w1e1
   rawuuid: c5ba5d2c-f5e1-11e2-92dd-08002755f0f7
   rawtype: 516e7cb6-6ecf-11d6-8ff8-00022d09712b
   label: (null)
   length: 20401029120
   offset: 82944
   type: freebsd-ufs
   index: 2
   end: 39845921
   start: 162
3. Name: ada0p3
   Mediasize: 1073707008 (1G)
   Sectorsize: 512
   Stripesize: 0
   Stripeoffset: 3221242880
   Mode: r1w1e0
   rawuuid: c5ccb46a-f5e1-11e2-92dd-08002755f0f7
   rawtype: 516e7cb5-6ecf-11d6-8ff8-00022d09712b
   label: (null)
   length: 1073707008
   offset: 20401112064
   type: freebsd-swap
   index: 3
   end: 41943005
   start: 39845922
Consumers:
1. Name: ada0
   Mediasize: 21474836480 (20G)
   Sectorsize: 512
   Mode: r2w2e3

(This is a small VirtualBox VM.)

Kernel config is at http://paste2.org/h17Ih0PD

___
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


sysvipc only for one jail

2013-08-11 Thread David Demelier
Hi,

I would like to enable sysvipc only for one jail (defined in
/etc/rc.conf). It's possible with jail.conf but this is not supported
with jails listed in /etc/rc.conf.

Is it possible without using the global jail_sysvipc_allow ?

Cheers,

-- 
Demelier David
___
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.2-RC1: Problem with Kernel

2013-08-11 Thread Ian Smith
In freebsd-questions Digest, Vol 479, Issue 8, Message: 10
On Sun, 11 Aug 2013 09:43:57 + (UTC) Walter Hurry walterhu...@gmail.com 
wrote:
  On Sat, 10 Aug 2013 21:29:10 +0200, Polytropon wrote:
  
   On Sat, 10 Aug 2013 19:04:29 + (UTC), Walter Hurry wrote:
   This is 9.2-RC1 on amd64 (upgraded from 9.2-BETA1 by refetching the
   source from releng/9.2 and rebuilding kernel and world).
   
   The kernel compiles and runs fine using the supplied GENERIC, but when
   I try to use my custom kenel config file, on reboot I get this:
   
   Mounting from ufs:/dev/ada0p2 failed with error 19
   
   What module(s) have I missed?
   
   Diff against the GENERIC kernel. Maybe device xhci?
   What bootable media is listed when you type ? at the mountroot prompt?
   If GENERIC boots and your kernel doesn't, there should be a significant
   difference regarding the config file's content. :-)
  
  Thanks for the reply. When I type ? at the mountroot prompt I get:
  
  List of GEOM managed disk devices:
  
  with nothing shown.
  
  After restoring the GENERIC kernel, the output from 'gpart list' is:
  
  Geom name: ada0
[..]
  Consumers:
  1. Name: ada0
 Mediasize: 21474836480 (20G)
 Sectorsize: 512
 Mode: r2w2e3
  
  (This is a small VirtualBox VM.)
  
  Kernel config is at http://paste2.org/h17Ih0PD

Please Walter, it's not fair to make us do the work of figuring out what 
you've changed from GENERIC in that, when all you need to provide is:

# diff -uw /path/to/GENERIC /path/to/YOURKERNEL

More ideal for custom kernel configs - for just these occasions - is:

include GENERIC
ident YOURKERNEL
# custom {no,}device and {no,}options statements

cheers, Ian
___
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: sysvipc only for one jail

2013-08-11 Thread Maciej Suszko
David Demelier demelier.da...@gmail.com wrote:
 Hi,
 
 I would like to enable sysvipc only for one jail (defined in
 /etc/rc.conf). It's possible with jail.conf but this is not supported
 with jails listed in /etc/rc.conf.
 
 Is it possible without using the global jail_sysvipc_allow ?

You can specify different params for each jail using _parameters, for
example:

jail_jailname_params=allow.chflags=1 allow.sysvipc=1

-- 
regards, Maciej Suszko.


signature.asc
Description: PGP signature


Re: sysvipc only for one jail

2013-08-11 Thread Maciej Suszko
Maciej Suszko mac...@suszko.eu wrote:
[...]
 
 You can specify different params for each jail using _parameters, for
 example:
 
 jail_jailname_params=allow.chflags=1 allow.sysvipc=1

Sorry, my mistake - it should be jail_jailname_parameters= of course.
-- 
regards, Maciej Suszko.


signature.asc
Description: PGP signature


Q?

2013-08-11 Thread Peaceful Flowers

Hello, we are extracting data from http://www.bbbike.org/ for bicycle parkings, 
then we found lot of data registered as bicycle_parking while other 
registered as parking

The question: is parking the same and refer to also bicycle_parking since 
the database http://www.bbbike.org/ is for bikes cycle?
___
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: BSD Magazine

2013-08-11 Thread dgmm
On Wednesday 07 August 2013 18:43:45 Frank Leonhardt wrote:
 No man but a blockhead ever wrote, except for money.
 - Samuel Johnson

That sentiment pretty much wipes out FreeBSD and FOSS in general.
___
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.2-RC1: Problem with Kernel

2013-08-11 Thread Walter Hurry
On Sun, 11 Aug 2013 22:47:36 +1000, Ian Smith wrote:

 In freebsd-questions Digest, Vol 479, Issue 8, Message: 10 On Sun, 11
 Aug 2013 09:43:57 + (UTC) Walter Hurry walterhu...@gmail.com
 wrote:
   On Sat, 10 Aug 2013 21:29:10 +0200, Polytropon wrote:
   
On Sat, 10 Aug 2013 19:04:29 + (UTC), Walter Hurry wrote:
This is 9.2-RC1 on amd64 (upgraded from 9.2-BETA1 by refetching
the source from releng/9.2 and rebuilding kernel and world).

The kernel compiles and runs fine using the supplied GENERIC, but
when I try to use my custom kenel config file, on reboot I get
this:

Mounting from ufs:/dev/ada0p2 failed with error 19

What module(s) have I missed?

Diff against the GENERIC kernel. Maybe device xhci?
What bootable media is listed when you type ? at the mountroot
prompt?
If GENERIC boots and your kernel doesn't, there should be a
significant difference regarding the config file's content. :-)
   
   Thanks for the reply. When I type ? at the mountroot prompt I get:
   
   List of GEOM managed disk devices:
   
   with nothing shown.
   
   After restoring the GENERIC kernel, the output from 'gpart list' is:
   
   Geom name: ada0
 [..]
   Consumers:
   1. Name: ada0
  Mediasize: 21474836480 (20G)
  Sectorsize: 512 Mode: r2w2e3
   
   (This is a small VirtualBox VM.)
   
   Kernel config is at http://paste2.org/h17Ih0PD
 
 Please Walter, it's not fair to make us do the work of figuring out what
 you've changed from GENERIC in that, when all you need to provide is:
 
 # diff -uw /path/to/GENERIC /path/to/YOURKERNEL
 
 More ideal for custom kernel configs - for just these occasions - is:
 
 include GENERIC ident YOURKERNEL # custom {no,}device and {no,}options
 statements
 
Sorry. A diff wouldn't have helped much, as every line had changed due to 
my reformatting. Never mind, I'll work it out for myself by a process of 
elimination - and I'll post the answer here just in case anyone else is 
interested.


___
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


Freebsddiary.org - Integrated marketing help

2013-08-11 Thread Ethan Lim
p style=margin-bottom:0cmfont color=#ff face=Verdana,  
sans-serifbFreebsddiary.org/b/fontfont color=#fffont  
face=Verdana, sans-serif Team,/font/font/p
p style=margin-bottom:0cmfont color=#fffont face=Verdana,  
sans-seriffontI

thought you might like to know some reasons why you are not getting
enough Social Media and Organic search engine traffic  
for bFreebsddiary.org./b/font/font/font/p
p style=margin-bottom:0cmfont color=#fffont face=Verdana,  
sans-serif1.

Your website bFreebsddiary.org /bis
not ranking top in Google organic searches for many competitive
keyword phrases./font/font/p
p style=margin-bottom:0cm
font color=#fffont face=Verdana, sans-serif2.
Your company is not doing well in most of the Social Media  
Websites./font/font/p

p style=margin-bottom:0cm
font color=#fffont face=Verdana, sans-serif3.
Your site is not user friendly on mobile devices./font/font/p
p style=margin-bottom:0cmfont color=#fffont face=Verdana,  
sans-serifThere

are many additional improvements that could be made to your website,
and if you would like to learn about them, and are curious to know
what our working together would involve, then I would be glad to
provide you with a detailed analysis in the form of a bWEBSITE
AUDIT REPORT for FREE/b./font/font/p
p style=margin-bottom:0cm
font color=#fffont face=Verdana, sans-serifOur
clients consistently tell us that their customers find them because
they are at the top of the Google search rankings. Being at the top
left of Google (#1- #3 organic positions) is the best thing you can
do for your company#39;s website traffic and online reputation. You will
be happy to know that, my team is willing to guarantee you 1supst/sup
page Google ranking for most of your targeted keyword phrases in our
six month ongoing campaign./font/font/p
p style=margin-bottom:0cmfont color=#fffont face=Verdana,  
sans-serifSound

interesting? Feel free to email us or alternatively you can provide
me with your phone number and the best time to call you. I am also
available to meet you in person and present you this website audit
report.br--WBR--WBR-brBest
Regards,brbEthan Lim/bbrSEO
Analystbr(315)-895-1453brbrbPS
I: /bI
am not spamming. I have studied your website and believe I can help
with your business promotion. If you still want us to not contact
you, you can ignore this email or ask to remove and I will not
contact again./font/font/p
p style=margin-bottom:0cm
font color=#fffont face=Verdana, sans-serifbPS
II/b: I found your site using Google search and after having a look
over your website I recommend you to implement future technologies
such as HTML5 and Responsive Design to make your site more accessible
in mobile phone, tablets, desktop etc./font/font/p
___
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