search for: gavinm

Displaying 5 results from an estimated 5 matches for "gavinm".

Did you mean: gavin
2007 Apr 24
2
zfs submounts and permissions with autofs
Hi, Is it expected that if I have filesystem tank/foo and tank/foo/bar (mounted under /tank) then in order to be able to browse via /net down into tank/foo/bar I need to have group/other permissions on /tank/foo open? # zfs create tank/foo # zfs create tank/foo/bar # chown gavinm /tank/foo /tank/foo/bar # zfs set sharenfs=rw tank/foo # ls -laR /tank/foo /tank/foo: total 9 drwxr-xr-x 3 gavinm sys 3 Apr 24 00:24 . drwxr-xr-x 9 root sys 9 Apr 24 00:23 .. drwxr-xr-x 2 gavinm sys 2 Apr 24 00:24 bar /tank/foo/bar: total 6 drwxr-xr-...
2008 Sep 01
1
RFE: allow zfs to interpret ''.'' as da datatset?
...39; interpreted to mean the dataset corresponding to the current working directory. This would shorten what I find to be a very common operaration - that of discovering your current (working directory) dataset and performing some operation on it. I usally do this with df and some cut and paste: (gavinm at hyper:fx-review/fmaxvm-review2/usr/src/uts )-> df -h . Filesystem size used avail capacity Mounted on tank/scratch/gavinm/fx-review/fmaxvm-review2 1.0T 15G 287G 5% /tank/scratch/gavinm/fx-review/fmaxvm-review2 (gavinm at hyper:fx-review/fma...
2006 Oct 31
0
6390211 amd64 panicsys() is always called with on_panic_stack == 1
Author: gavinm Repository: /hg/zfs-crypto/gate Revision: 78871a9ce8d1373b87f1fa84c7b657d028f873c1 Log message: 6390211 amd64 panicsys() is always called with on_panic_stack == 1 6406417 ereport_size not big enough for nvlist bloat Files: update: usr/src/uts/common/sys/fm/util.h update: usr/src/uts/i86pc/cpu/am...
2007 Jan 30
3
Export ZFS over NFS ?
I''ve got my first server deployment with ZFS. Consolidating a pair of other file servers that used to have a dozen or so NFS exports in /etc/dfs/dfstab similar to; /export/solaris/images /export/tools /export/ws ..... and so on.... For the new server, I have one large zfs pool; -bash-3.00# df -hl bigpool 16T 1.5T 15T 10% /export that I am starting to
2006 Aug 19
5
Form helpers don''t work with facade columns?
Hello all, I''ve been trying to use a facade column but I notice that the form helpers don''t seem to respect the facade. In the following example I''m trying to story the prices as Integer values but present them to the user as decimals. class Product < ActiveRecord::Base def price=(new_price) write_attribute(:price, Float(new_price)*100) end def price