Links

McCoyFam Webmail (powered by Google Apps)

The Family

Mark McCoy - Me
Helen McCoy - My Mom
Nick McCoy - My Son

Solaris 10 post-install steps

Drive mirroring

Enable auth logging

  1. Uncomment the following line in /etc/syslog.conf:
      auth.notice   ifdef(`LOGHOST', /var/log/authlog, @loghost)
  2. restart syslog:
      svcadm restart system-log

Create Initial user

NOTE: Put this line at the end of /etc/pam.conf first, so that new users will have their passwords synch'ed into the CIFS password database from the beginning.

other   password required       pam_smb_passwd.so.1     nowarn
NEWUSER=mark
zfs create zdata/export
zfs set mountpoint=/export zdata/export
zfs set compression=on zdata/export
zfs create zdata/export/home
zfs create zdata/export/home/$NEWUSER
useradd -d /home/$NEWUSER -s /usr/bin/zsh $NEWUSER
chown -R $NEWUSER /export/home/$NEWUSER

Enable auto mounted /home

NOTE: newer OpenSolaris releases no longer use the automounter for /home. I kind of like it, so I add it back in.

  1. Create the following line in /etc/auto_home:
    * localhost:/export/home/&
    
  2. restart autofs:
      svcadm restart autofs

Enable remote access to web console

svccfg -s svc:/system/webconsole setprop options/tcp_listen = true
svcadm refresh svc:/system/webconsole
svcadm disable webconsole
svcadm enable webconsole

Configure CIFS (SMB) server to share your home directory

svcadm enable -r smb/server
zfs set sharesmb=name=mark zdata/export/home/mark
sharemgr show -vp
smbadm join -w mccoy
 
 
computers/solaris_10_post-install.txt · Last modified: 2008/04/19 00:39 by mark
 
Recent changes RSS feed Driven by DokuWiki