NVIDIA
- "grep EDID /var/log/Xorg.0.log" <= should tell you whether the monitor was identified during boot. If not, run the following:
- /usr/bin/nvidia-xconfig - creates /etc/X11/xorg.conf
- /usr/bin/nvidia-settings - Edit resolution here.
Disable NWAM (NetWork AutoMagic)
- svcadm disable physical:nwam
- svcadm enable physical:default
Network setup
- /etc/hostname.<int> <= contains hostname from /etc/hosts
- /etc/defaultrouter
- /etc/netmasks
- /etc/resolv.conf
- /etc/nsswitch.conf <= add "dns" to "hosts"
IPF
- Edit /etc/ipf ipf.conf, ipnat.conf, pfil.ap
- Enable ipfilter: svcadm enable network/ipfilter
- ipf -I -Fa -f /etc/ipf/ipf.conf
- ipnat -CF -f /etc/ipf/ipnat.conf
Dual Interface - enable ipforwarding
- routeadm -e ipv4-forwarding
- ifconfig nge0 router
- ifconfig nge1 router
Cloning Drive Partition Tables
-
prtvtoc /dev/rdsk/c0t0d0s2 | fmthard -s - /dev/rdsk/c0t1d0s2
ZFS - Mirror root parition after initial install
- zpool list / zpool status
- Assuming
c5t0d0s0 is root, repartition c5t1d0s0 to match. (Make sure you delete
"s2", the full drive partition, or you'll get an overlap error.)
- zpool attach rpool c5t0d0s0 c5t1d0s0
ZFS - Create a raidz pool
- Partition drives to match, in this case "s0" is the same size.
- zpool create -f p01 raidz c7t0d0s0 c7t1d0s0 c8t0d0s0
- zpool status
ZFS - Create File Systems
- zpool list / zpool status
- zfs create p01/CDIMAGES
- zfs list / df -k
Configuring rsyncd
- Download the "manifest": http://opensolaris.org/os/community/smf/manifests/rsync.xml
- May need to update rsync.xml and reload to set correct path.
- Install the manifest: "svccfg import rsync.xml"
- Create /etc/rsyncd.conf
- Start the service: "svcadm enable svc:/network/rsync:", may need to clear it first: "svcadm clear svc:/network/rsync:"
- Run "svcs | grep rsync".
- svcs -xv - if it's in "maintenance" state, this provided info.
- Enable
access in /etc/ipf/ipf.conf: "pass in quick on nge0 proto tcp from
10.22.44.1 to any port = 873 keep state" and restart the firewall.
- Good Windows Rsync Client: DeltaCopy
BlastWave/Nevada - Installing Software
- BlastWave HOWTO
- pkgadd -d http://blastwave.network.com/csw/pkg_get.pkg
- Assure US respository: vi /opt/csw/etc/pkg-get.conf
- Ex Install wget
- /opt/csw/bin/pkg-get -U <= updates the descriptions file
- /opt/csw/bin/pkg-get -i wget <= installs wget (and dependencies)
Keywords: opensolaris