Re: NFS file modes consistency among different operating systems

2013-09-17 Thread Mehmet Erol Sanliturk
On Tue, Sep 17, 2013 at 1:28 AM, aurfalien aurfal...@gmail.com wrote:

 
  When a file is modified by a user ,

 Whats that users umask?

 - aurf



755

Thank you very much .

Mehmet Erol Sanliturk
___
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: NFS file modes consistency among different operating systems

2013-09-17 Thread Mehmet Erol Sanliturk
On Tue, Sep 17, 2013 at 1:32 AM, aurfalien aurfal...@gmail.com wrote:

  When a file is modified by a user

 Also curious whats that users group?

 - aurf




Linux
   user a: 1000 in group :1000
  group n  id : 1001 ( member : a )

FreeBSD :
   user b : 1001 in group 1001

NFS Server : group id : 1000


User a is not able to use files created or  modified by user b , and vice
versa .
Users a and b are not able to use or modify files created or modified by
Windows XP user . There is no any restriction for the Windows XP user .

Thank you very much .

Mehmet Erol Sanliturk
___
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: syslog-ng33 fails to build

2013-09-17 Thread C. L. Martinez
On Sun, Sep 15, 2013 at 11:40 PM, CyberLeo Kitsana
cyber...@cyberleo.net wrote:
 On 09/13/2013 01:53 AM, C. L. Martinez wrote:
 Hi all,

  I am trying to build syslog-ng33 (release 3.3.9) using a poudriere
 server, but build process fails:

 snip
 configure: error: in
 `/wrkdirs/usr/ports/sysutils/syslog-ng33/work/syslog-ng-3.3.9':
 configure: error: The pkg-config script could not be found or is too
 old.  Make sure it
 is in your PATH or set the PKG_CONFIG environment variable to the full
 path to pkg-config.

 Alternatively, you may set the environment variables EVTLOG_CFLAGS
 and EVTLOG_LIBS to avoid the need to call pkg-config.
 See the pkg-config man page for more details.

 It is strange, because previous build (on August 27) works without problems 
 ...

 Any idea??

 Probably because syslog-ng relies upon pkgconfig, but assumes it will be
 installed by one of the dependent ports so doesn't explicitly declare
 the dependency. Poudriere has a habit of only installing the immediate
 dependencies of the package it is currently compiling, so exposes such
 issues when a port is updated, but none of its dependencies are. Bug
 ports/181098 is another I found like this.

 Add this to the port's Makefile after the include of bsd.port.options.mk:

 USES+= pkgconfig

 If that corrects the issue you're seeing, submit a pr.

 --
 Fuzzy love,
 -CyberLeo
 Technical Administrator
 CyberLeo.Net Webhosting
 http://www.CyberLeo.Net
 cyber...@cyberleo.net



Many thanks CyberLeo ... It works. I have opened pr last week about
this (but instead against syslog-ng33, it is about syslog-ng 3.4.3,
but the problem is the same)

http://www.freebsd.org/cgi/query-pr.cgi?pr=182061
___
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 stuck during the boot process.

2013-09-17 Thread Atar
Hi there!!

When I try to boot FreeBSD from a USB stick, it stuck during the boot process. 
But if I boot it in safe mode, it succeeds to boot. How can I figure out what's 
wrong with the standard boot process? I can't even log the boot messages since 
the computer stuck and not respond.

Thanks in advance!!

Atar.
___
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 stuck during the boot process.

2013-09-17 Thread Polytropon
On Tue, 17 Sep 2013 12:15:58 +0300, Atar wrote:
 When I try to boot FreeBSD from a USB stick, it stuck during the
 boot process. But if I boot it in safe mode, it succeeds to boot.
 How can I figure out what's wrong with the standard boot process?
 I can't even log the boot messages since the computer stuck and
 not respond.

You could try a verbose boot (equivalent: boot -v) and see _when_
the system stops resonding. It would help to post the error message
(last lines of console output) to the list to get a better impression
about what's happening.

If I remember correctly, safe mode refers to the mode with ACPI
disabled, right? In this case, it _could_ be an ACPI problem (a really
wild guess, as you have provided no information about the system you
are trying to boot FreeBSD on).



-- 
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: FreeBSD stuck during the boot process.

2013-09-17 Thread Michael Sierchio
On Tue, Sep 17, 2013 at 9:47 AM, atar atar.yo...@gmail.com wrote:
 Polytropon free...@edvax.de wrote:

 On Tue, 17 Sep 2013 12:15:58 +0300, Atar wrote:

 When I try to boot FreeBSD from a USB stick, it stuck during the
 boot process. But if I boot it in safe mode, it succeeds to boot.

 Yes, you remember correctly, safe mode disable the ACPI support
 automatically.

The problem may also be that USB devices take a long time to settle.
I suggest these in your /boot/loader.conf

hint.acpi.0.disabled=1
kern.cam.boot_delay=1
kern.cam.scsi_delay=2000

The CAM boot delay is needed for USB booting on some of my machines,
esp. Soekris boxes.  10 seconds is safe.

- M
___
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 stuck during the boot process.

2013-09-17 Thread atar

Polytropon free...@edvax.de wrote:


On Tue, 17 Sep 2013 12:15:58 +0300, Atar wrote:

When I try to boot FreeBSD from a USB stick, it stuck during the
boot process. But if I boot it in safe mode, it succeeds to boot.
How can I figure out what's wrong with the standard boot process?
I can't even log the boot messages since the computer stuck and
not respond.


You could try a verbose boot (equivalent: boot -v) and see _when_
the system stops resonding. It would help to post the error message
(last lines of console output) to the list to get a better impression
about what's happening.

If I remember correctly, safe mode refers to the mode with ACPI
disabled, right? In this case, it _could_ be an ACPI problem (a really
wild guess, as you have provided no information about the system you
are trying to boot FreeBSD on).


Thanks for replying!!

Yes, you remember correctly, safe mode disable the ACPI support  
automatically.


I think it's a problem in the ACPI system because when I disable ACPI, it  
boot successfully even without choosing safe mode.


But what that is strange here, is that Microsoft Windows and Linux  
(Debian) are able to boot with ACPI enabled. furthermore, some days ago  
FreeBSD itself succeeded to boot also with ACPI support enabled.


As for the error messages, there's not a particular error message. it  
simply stuck during the initialization of the PCI bus.


Here are the last eight lines:


pcib2: ACPI PCI-PCI bridge at device 30.0 on pci0
pcib2: domain   0
pcib2: secondary bus2
pcib2: subordinate bus  2
pcib2: no prefetched decode
pcib2 Subtractively decoded bridge.
pcib2: ACPI PCI bus on pcib2
pcib2: domain=0, physical bus=2


Regards,

atar.
___
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: NFS file modes consistency among different operating systems

2013-09-17 Thread aurfalien

On Sep 16, 2013, at 11:27 PM, Mehmet Erol Sanliturk wrote:

 
 
 
 On Tue, Sep 17, 2013 at 1:28 AM, aurfalien aurfal...@gmail.com wrote:
 
  When a file is modified by a user ,
 
 Whats that users umask?
 
 - aurf
 
 
 755

Ok, well thats your answer.

Only that user can mod the file, every one else has rx privs.

I'd highly recommend this book;

http://shop.oreilly.com/product/9780596003432.do

And book mark this;

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

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


this 48-core box...

2013-09-17 Thread Michael Chen

I'm considering bidding on this 48-core box:

http://www.ebay.com/itm/Supermicro-A-Server-1042G-TF-1U-H8QG6-4-CPUS-48-cores-2-2Ghz-128GB-RAM-/151119828428?pt=COMP_EN_Servershash=item232f7195cc

Does anyone have experience with it and can I use all the cores?

Thanks!
___
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: this 48-core box...

2013-09-17 Thread iamatt
Hi.   Not sure if you can use all cores.   It has been and still is my
experience that SM is crap.   We have several SM gpu and SM/Calxeda  Arm
clusters and they really lack in may ways from ipmi to chassis management
to the corners they cut with the processor to memory mappings.

I would consider looking at SGI UV,  ultraviolet system for a fat node type
system but they are not cheap.   We have plenty of those and they can build
it the way you want.   Lead time is a couple of months due to build  to
order.   Support from SM sucks too. :)
On Sep 17, 2013 12:17 PM, Michael Chen mich...@foxbatcapital.com wrote:

 I'm considering bidding on this 48-core box:

 http://www.ebay.com/itm/**Supermicro-A-Server-1042G-TF-**
 1U-H8QG6-4-CPUS-48-cores-2-**2Ghz-128GB-RAM-/151119828428?**
 pt=COMP_EN_Servershash=**item232f7195cchttp://www.ebay.com/itm/Supermicro-A-Server-1042G-TF-1U-H8QG6-4-CPUS-48-cores-2-2Ghz-128GB-RAM-/151119828428?pt=COMP_EN_Servershash=item232f7195cc

 Does anyone have experience with it and can I use all the cores?

 Thanks!
 __**_
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/**mailman/listinfo/freebsd-**questionshttp://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-**
 unsubscr...@freebsd.org 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


Re: this 48-core box...

2013-09-17 Thread Dennis Glatting



On Tue, 17 Sep 2013, Michael Chen wrote:


I'm considering bidding on this 48-core box:

http://www.ebay.com/itm/Supermicro-A-Server-1042G-TF-1U-H8QG6-4-CPUS-48-cores-2-2Ghz-128GB-RAM-/151119828428?pt=COMP_EN_Servershash=item232f7195cc

Does anyone have experience with it and can I use all the cores?




I have one of those boards running 32 cores. You MUST run FreeBSD 9+ if 
you want access to more than 32 cores.


Currently there is a bug in the stable/9 mfs drivers that do not allow you 
to boot from a RAID array. I believe a patch has been submitted. I have a 
copy of the patch and it works fine.


I have had significant problems with ZFS under stable/9 however I haven't 
tried recent updates, rather I had to punt back to stable/8 (production 
machine).


I have 22 3TB disks, 4 256GB SSDs, 256GB RAM, and 4x16 cores on my 
machine. I also have a 10GbE cardin my machine that runs fine.


I DO NOT use the CD.

Other than the issues I mentioned, runs fine.



___
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: this 48-core box...

2013-09-17 Thread Dennis Glatting


Forgot to mention:

1) My board is mounted in a SC848 Chassis and I use active cooling.

2) DO NOT run a chassis like the SC848 with the top off or the disks will 
overheat. :)




On Tue, 17 Sep 2013, Michael Chen wrote:


I'm considering bidding on this 48-core box:

http://www.ebay.com/itm/Supermicro-A-Server-1042G-TF-1U-H8QG6-4-CPUS-48-cores-2-2Ghz-128GB-RAM-/151119828428?pt=COMP_EN_Servershash=item232f7195cc

Does anyone have experience with it and can I use all the cores?

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


Re: this 48-core box...

2013-09-17 Thread Dennis Glatting



On Tue, 17 Sep 2013, iamatt wrote:


Hi.   Not sure if you can use all cores.   It has been and still is my
experience that SM is crap.   We have several SM gpu and SM/Calxeda  Arm
clusters and they really lack in may ways from ipmi to chassis management
to the corners they cut with the processor to memory mappings.

I would consider looking at SGI UV,  ultraviolet system for a fat node type
system but they are not cheap.   We have plenty of those and they can build
it the way you want.   Lead time is a couple of months due to build  to
order.   Support from SM sucks too. :)
On Sep 17, 2013 12:17 PM, Michael Chen mich...@foxbatcapital.com wrote:



I have three personal systems and two work systems running using the H8DG6 
MBs and they work fine.





I'm considering bidding on this 48-core box:

http://www.ebay.com/itm/**Supermicro-A-Server-1042G-TF-**
1U-H8QG6-4-CPUS-48-cores-2-**2Ghz-128GB-RAM-/151119828428?**
pt=COMP_EN_Servershash=**item232f7195cchttp://www.ebay.com/itm/Supermicro-A-Server-1042G-TF-1U-H8QG6-4-CPUS-48-cores-2-2Ghz-128GB-RAM-/151119828428?pt=COMP_EN_Servershash=item232f7195cc

Does anyone have experience with it and can I use all the cores?

Thanks!
__**_
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/**mailman/listinfo/freebsd-**questionshttp://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-**
unsubscr...@freebsd.org 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


___
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: this 48-core box...

2013-09-17 Thread Dennis Glatting



On Tue, 17 Sep 2013, iamatt wrote:


Hi.   Not sure if you can use all cores.   It has been and still is my
experience that SM is crap.   We have several SM gpu and SM/Calxeda  Arm
clusters and they really lack in may ways from ipmi to chassis management
to the corners they cut with the processor to memory mappings.



Just to clarify:

My use is simply as servers and workstations. Generally I don't use IPMI 
on these systems. I have had trouble with the PCIe slots. Specifically, on 
the dual core boards some slots are serviced by one set of hardware and 
other slots by other sets of hardware. Consequently, if you don't have all 
cores populated then corresponding PCIe slots will not work.


Can't say about the four core system, though.




I would consider looking at SGI UV,  ultraviolet system for a fat node type
system but they are not cheap.   We have plenty of those and they can build
it the way you want.   Lead time is a couple of months due to build  to
order.   Support from SM sucks too. :)
On Sep 17, 2013 12:17 PM, Michael Chen mich...@foxbatcapital.com wrote:


I'm considering bidding on this 48-core box:

http://www.ebay.com/itm/**Supermicro-A-Server-1042G-TF-**
1U-H8QG6-4-CPUS-48-cores-2-**2Ghz-128GB-RAM-/151119828428?**
pt=COMP_EN_Servershash=**item232f7195cchttp://www.ebay.com/itm/Supermicro-A-Server-1042G-TF-1U-H8QG6-4-CPUS-48-cores-2-2Ghz-128GB-RAM-/151119828428?pt=COMP_EN_Servershash=item232f7195cc

Does anyone have experience with it and can I use all the cores?

Thanks!
__**_
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/**mailman/listinfo/freebsd-**questionshttp://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-**
unsubscr...@freebsd.org 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


___
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: this 48-core box...

2013-09-17 Thread iamatt
We discovered some performance issues with the the SM boards and how they
are layed out.  Granted these were being used  with  HPC clusters in a
fortran development environment used in OG industry.  You probably would
not even notice these running your typical web servers on them.  The ipmi
is pretty annoying and even worse if you get their 10 blade chassis
systems.  Another thing they lack is the error logging abilities and tools
that you get with a fully integrated  system from  say,  ibm, sgi.  Or
other utilities to change bios settings on the fly ..  like IBM Advanced
Settings Utility.  All of these may not matter as much I suppose  with a
small server environment.  You pay what you get for.


On Tue, 17 Sep 2013, iamatt wrote:

 Hi.   Not sure if you can use all cores.   It has been and still is my
 experience that SM is crap.   We have several SM gpu and SM/Calxeda  Arm
 clusters and they really lack in may ways from ipmi to chassis management
 to the corners they cut with the processor to memory mappings.


Just to clarify:

My use is simply as servers and workstations. Generally I don't use IPMI on
these systems. I have had trouble with the PCIe slots. Specifically, on the
dual core boards some slots are serviced by one set of hardware and other
slots by other sets of hardware. Consequently, if you don't have all cores
populated then corresponding PCIe slots will not work.

Can't say about the four core system, though.



 I would consider looking at SGI UV,  ultraviolet system for a fat node type
 system but they are not cheap.   We have plenty of those and they can build
 it the way you want.   Lead time is a couple of months due to build  to
 order.   Support from SM sucks too. :)
 On Sep 17, 2013 12:17 PM, Michael Chen mich...@foxbatcapital.com
 wrote:

  I'm considering bidding on this 48-core box:

 http://www.ebay.com/itm/Supermicro-A-Server-1042G-TF-http://www.ebay.com/itm/**Supermicro-A-Server-1042G-TF-**
 1U-H8QG6-4-CPUS-48-cores-2-2Ghz-128GB-RAM-/151119828428?
 pt=COMP_EN_Servershash=item232f7195cchttp://www.**
 ebay.com/itm/Supermicro-A-**Server-1042G-TF-1U-H8QG6-4-**
 CPUS-48-cores-2-2Ghz-128GB-**RAM-/151119828428?pt=COMP_EN_**
 Servershash=item232f7195cchttp://www.ebay.com/itm/Supermicro-A-Server-1042G-TF-1U-H8QG6-4-CPUS-48-cores-2-2Ghz-128GB-RAM-/151119828428?pt=COMP_EN_Servershash=item232f7195cc
 

 Does anyone have experience with it and can I use all the cores?

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

  __**_
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/**mailman/listinfo/freebsd-**questionshttp://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-**
 unsubscr...@freebsd.org 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


Old GPT/GELI disk issue

2013-09-17 Thread Andre Goree

Hey list,

I have a disk that was at one time part of a GPT/GELI configuration and 
thus, had a passphrase attached to it.


I've since reformatted that disk and am using it for another purpose, 
but the system still appears to think the disk should be unlocked via 
passphrase.  I always have to enter some arbitrary passphrase to get 
past the prompt, after which the system continues to boot as normal.  I 
thought all I would need to do is comment the corresponding parts in 
/boot/loader.conf, but that doesn't appear to be the case.  Anyone have 
any insight?


/dev/ada2 is the disk in question.  It is now used in a zpool where ZFS 
has direct access (no partitioning).


root@daemon ~ # cat /boot/loader.conf
...
# Encyrption settings
aesni_load=YES
geom_eli_load=YES
#geli_ada1p2_keyfile0_load=YES
#geli_ada1p2_keyfile0_type=ada1p2:geli_keyfile0
#geli_ada1p2_keyfile0_name=/boot/encryption.key
#geli_ada2p1_keyfile0_load=YES
#geli_ada2p1_keyfile0_type=ada2p1:geli_keyfile0
#geli_ada2p1_keyfile0_name=/boot/encryption.key
geli_ada3p1_keyfile0_load=YES
geli_ada3p1_keyfile0_type=ada3p1:geli_keyfile0
geli_ada3p1_keyfile0_name=/boot/encryption.key2

root@daemon ~ # dmesg |grep ada2
ada2 at ahcich2 bus 0 scbus2 target 0 lun 0
ada2: ST31000528AS CC44 ATA-8 SATA 2.x device
ada2: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
ada2: Command Queueing enabled
ada2: 953869MB (1953525168 512 byte sectors: 16H 63S/T 16383C)
ada2: Previously was known as ad8
GEOM: ada2: the primary GPT table is corrupt or invalid.
GEOM: ada2: using the secondary instead -- recovery strongly advised.
Enter passphrase for ada2p1: ugen0.2: Dell at usbus0
GEOM_ELI: Wrong key for ada2p1. Tries left: 2.
Enter passphrase for ada2p1: GEOM_ELI: Wrong key for ada2p1. Tries left: 
1.
Enter passphrase for ada2p1: GEOM_ELI: Wrong key for ada2p1. No tries 
left.


root@daemon ~ # zpool status
  pool: nas2
 state: ONLINE
  scan: resilvered 717G in 5h43m with 0 errors on Sun Apr  7 19:54:29 
2013

config:

NAME  STATE READ WRITE CKSUM
nas2  ONLINE   0 0 0
  ada3p1.eli  ONLINE   0 0 0

errors: No known data errors

  pool: nas3
 state: ONLINE
  scan: none requested
config:

NAMESTATE READ WRITE CKSUM
nas3ONLINE   0 0 0
  ada2  ONLINE   0 0 0
  ada1  ONLINE   0 0 0

root@daemon ~ # gpart list
Geom name: ada0
modified: false
state: OK
fwheads: 16
fwsectors: 63
last: 976773134
first: 34
entries: 128
scheme: GPT
Providers:
1. Name: ada0p1
   Mediasize: 65536 (64k)
   Sectorsize: 512
   Stripesize: 0
   Stripeoffset: 17408
   Mode: r0w0e0
   rawuuid: 9e6ac2d4-6a8b-11e2-bf8c-00123f7d40e2
   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: 34359738368 (32G)
   Sectorsize: 512
   Stripesize: 0
   Stripeoffset: 82944
   Mode: r1w1e1
   length: 4294967296
   offset: 51539690496
   type: freebsd-ufs
   index: 4
   end: 109052065
   start: 100663458
5. Name: ada0p5
   Mediasize: 434865438720 (405G)
   Sectorsize: 512
   Stripesize: 0
   Stripeoffset: 82944
   Mode: r1w1e1
   rawuuid: f7a88d9e-6a8b-11e2-bf8c-00123f7d40e2
   rawtype: 516e7cb6-6ecf-11d6-8ff8-00022d09712b
   label: (null)
   length: 434865438720
   offset: 55834657792
   type: freebsd-ufs
   index: 5
   end: 958398625
   start: 109052066
6. Name: ada0p6
   Mediasize: 9407748096 (8.8G)
   Sectorsize: 512
   Stripesize: 0
   Stripeoffset: 1073824768
   Mode: r1w1e0
   rawuuid: 0040409a-6a8c-11e2-bf8c-00123f7d40e2
   rawtype: 516e7cb5-6ecf-11d6-8ff8-00022d09712b
   label: (null)
   length: 9407748096
   offset: 490700096512
   type: freebsd-swap
   index: 6
   end: 976773133
   start: 958398626
Consumers:
1. Name: ada0
   Mediasize: 500107862016 (465G)
   Sectorsize: 512
   Mode: r5w5e9

Geom name: ada3
modified: false
state: OK
fwheads: 16
fwsectors: 63
last: 1953523021
first: 34
entries: 128
scheme: GPT
Providers:
1. Name: ada3p1
   Mediasize: 1000203763712 (931G)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r1w1e1
   rawuuid: 670fd8d5-7628-11e2-aecd-00123f7d40e2
   rawtype: 516e7cba-6ecf-11d6-8ff8-00022d09712b
   label: (null)
   length: 1000203763712
   offset: 20480
   type: freebsd-zfs
   index: 1
   end: 1953523015
   start: 40
Consumers:
1. Name: ada3
   Mediasize: 1000203804160 (931G)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r1w1e2

--
Andre Goree
-=-=-=-=-=-
Email - andre at drenet.net
Website   - http://www.drenet.net
PGP key   - http://www.drenet.net/0x83ADAAAB.asc
-=-=-=-=-=-
___
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: persistence in freeBSD

2013-09-17 Thread Steve O'Hara-Smith
On Mon, 16 Sep 2013 10:29:26 -0400
Sam Fourman Jr. sfour...@gmail.com wrote:

 mount -o rw /

That would need to be

mount -u -o rw /

-- 
Steve O'Hara-Smith st...@sohara.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