Difference between revisions of "Opensolaris"

From KeegansWiki
Jump to navigation Jump to search
m
Line 46: Line 46:
 
* Info on creating shares via windows: http://opensolaris.org/jive/thread.jspa?threadID=132276&tstart=0
 
* Info on creating shares via windows: http://opensolaris.org/jive/thread.jspa?threadID=132276&tstart=0
 
* Info on ACLs and security permissions http://www.aspdeveloper.net/tiki-index.php?page=SolarisCIFSPermissions
 
* Info on ACLs and security permissions http://www.aspdeveloper.net/tiki-index.php?page=SolarisCIFSPermissions
 +
 +
=iSCSI=
 +
*pkg install SUNWiscsi
 +
*pkg install SUNWiscsitgt
 +
*svcadm enable svc:/system/iscsitgt:default

Revision as of 08:03, 23 November 2010

Updating

Note: This has changed. To change publishers:

This is now out of date

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

Making it all work

  • mkdir /rzpool/data/finance
  • chmod 777 /rzpool/data/finance
  • Create share in mmc (folder is b:\rzpool\data\finance)
  • /usr/bin/chmod A=everyone@:rwxpdDaARWcCos:fd:allow /rzpool/data/finance/


Links

iSCSI

  • pkg install SUNWiscsi
  • pkg install SUNWiscsitgt
  • svcadm enable svc:/system/iscsitgt:default