Difference between revisions of "Opensolaris"

From KeegansWiki
Jump to navigation Jump to search
Line 13: Line 13:
 
=CIFS=
 
=CIFS=
 
==Unix Way==
 
==Unix Way==
* zfs create –o casesensitivy=mixed rzpool/data
+
* zfs create -o casesensitivity=mixed rzpool/data/
 
* zfs sharesmb=name=data rzpool/data
 
* zfs sharesmb=name=data rzpool/data
 
* zfs set sharesmb=on rzpool/data
 
* zfs set sharesmb=on rzpool/data
Line 23: Line 23:
  
 
Note that at this point, everyone has full control (because of the big chmod above)
 
Note that at this point, everyone has full control (because of the big chmod above)
 
  
 
==Windows Way==
 
==Windows Way==

Revision as of 05:57, 24 August 2010

Updating

PUBLISHER                             TYPE     STATUS   URI
opensolaris.org-dev      (preferred)  origin   online   http://pkg.opensolaris.org:80/dev/
opensolaris.org                       origin   online   http://pkg.opensolaris.org/release/
  • pkg refresh
  • pkg image-update

CIFS

Unix Way

  • zfs create -o casesensitivity=mixed rzpool/data/
  • zfs sharesmb=name=data rzpool/data
  • zfs set sharesmb=on rzpool/data
  • this is for share permissions
    • zfs sharesmb=abe=true rzpool/data
  • this is for security permissions
    • /usr/bin/chmod A=everyone@:rwxpdDaARWcCos:fd:allow /rzpool/data/
  • chmod 777 /rzpool/data

Note that at this point, everyone has full control (because of the big chmod above)

Windows Way

To create shares, must add domain user to local admins on unix box:

  • smbadm add-member -m domainadmin 'administrators'

This might be required

  • sharemgr set -P smb -p abe=true -s /rzpool/new smb

Links