<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Coretanium &#187; Solaris</title>
	<atom:link href="http://www.coretanium.net/category/solaris/feed" rel="self" type="application/rss+xml" />
	<link>http://www.coretanium.net</link>
	<description>tech blah blah</description>
	<lastBuildDate>Tue, 20 Sep 2011 07:21:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Solaris Core Install Recipe</title>
		<link>http://www.coretanium.net/solaris-core-install-recipe-2</link>
		<comments>http://www.coretanium.net/solaris-core-install-recipe-2#comments</comments>
		<pubDate>Mon, 08 Feb 2010 23:34:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.coretanium.net/?p=342</guid>
		<description><![CDATA[This is a recipe I use when installing Solaris 10 (Core only). It&#8217;s easier to install the needed software than to trim down a full install and I like the fact that I have a clean server to start off with the minimal software installed. For disk layout, you can do whatever your comfortable with [...]]]></description>
			<content:encoded><![CDATA[<p>This is a recipe I use when installing Solaris 10 (Core only). It&#8217;s easier to install the needed software than to trim down a full install and I like the fact that I have a clean server to start off with the minimal software installed.</p>
<p>For disk layout, you can do whatever your comfortable with or follow the software that will be running on your servers guides for setting up the disk slices etc.</p>
<p>Start by installing only the core product, If I remember correctly it&#8217;s around 1.2GB in size. Once this has been done, and you have logged into your machine install the following packages from DVD/CD-ROM;</p>
<p><code>mkdir /mnt/cdrom<br />
mount -F hsfs /dev/dsk/c0t2d0s2 /mnt/cdrom<br />
pkgadd -d /mnt/cdrom/Solaris_10/Product/*ssh*</code></p>
<p>This will install;</p>
<p>SUNWsshcu SUNWsshdr SUNWsshdu SUNWsshr and SUNWsshu</p>
<p><code>pkgadd -d /mnt/cdrom/Solaris_10/Product/SUNWbash</code></p>
<p>Generate host keys;</p>
<p><code>/lib/svc/method/sshd -c<br />
svcadm enable ssh<br />
svcadm restart ssh</code></p>
<p>Or another way of generating host keys;</p>
<p><code>cd /etc/ssh<br />
ssh-keygen -t rsa -f ssh_host_rsa_key<br />
ssh-keygen -t dsa -f ssh_host_dsa_key<br />
svcadm enable ssh<br />
svcadm restart ssh<br />
</code></p>
<p>Install openssl, wget either from DVD/CD-ROM or you can grab it from the sunfreeware.com FTP site.</p>
<p>vi get_files.sh</p>
<p><code>#!/bin/sh</p>
<p>cd /tmp</p>
<p>ftp -i -n -v ftp.sunfreeware.com &lt;&lt; EOF<br />
user "anonymous" "your@email.com"<br />
cd pub/freeware/sparc/10<br />
bin<br />
mget gzip-1.4-sol10-sparc-local<br />
mget wget-1.12-sol10-sparc-local.gz<br />
mget libintl-3.4.0-sol10-sparc-local.gz<br />
mget openssl-0.9.8l-sol10-sparc-local.gz<br />
mget libiconv-1.13.1-sol10-sparc-local.gz<br />
mget libgcc-3.4.6-sol10-sparc-local.gz<br />
bye<br />
EOF</code></p>
<p>:wq</p>
<p>chmod +x get_files.sh</p>
<p>./get_files</p>
<p>Once downloaded, install gzip first as you&#8217;ll need it to extract the rest of the archived packages you just downloaded;</p>
<p><code>pkgadd -d . gzip-1.4-sol10-sparc-local all<br />
gunzip *.gz<br />
pkgadd -d . &lt;packagename&gt; all</code></p>
<p>You now have a basic skeleton machine with SSH, bash and wget.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/solaris-core-install-recipe-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris 10 Enable SSH</title>
		<link>http://www.coretanium.net/solaris-10-enable-ssh</link>
		<comments>http://www.coretanium.net/solaris-10-enable-ssh#comments</comments>
		<pubDate>Mon, 08 Feb 2010 22:45:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.coretanium.net/solaris-10-enable-ssh</guid>
		<description><![CDATA[On Solaris 10, you can quickly enable SSH by performing the steps below; svcadm enable ssh svcadm restart ssh If you need to login as root, remember to set PermitRootLogin to yes and restart the daemon.]]></description>
			<content:encoded><![CDATA[<p>On Solaris 10, you can quickly enable SSH by performing the steps below;</p>
<p>svcadm enable ssh</p>
<p>svcadm restart ssh</p>
<p>If you need to login as root, remember to set PermitRootLogin to yes and restart the daemon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/solaris-10-enable-ssh/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux &amp; Solaris enable/disable X on boot</title>
		<link>http://www.coretanium.net/linux-solaris-enabledisable-x-on-boot</link>
		<comments>http://www.coretanium.net/linux-solaris-enabledisable-x-on-boot#comments</comments>
		<pubDate>Sun, 07 Feb 2010 20:44:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.coretanium.net/linux-solaris-enabledisable-x-on-boot</guid>
		<description><![CDATA[Linux Disable automatic startup of X on boot Change the default run level in /etc/inittab to 3 id:3:initdefault: Enable automatic startup of X on boot Change the default run level in /etc/inittab to 5 id:5:initdefault: Solaris 10 Disable automatic startup of X on boot # /usr/dt/bin/dtconfig -d Enable automatic startup of X on boot # [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="TEXT-DECORATION: underline">Linux</span></strong> <br/><br/>Disable automatic startup of X on boot <br/>Change the default run level in /etc/inittab to 3 <br/><code>id:3:initdefault:</code></p>
<p>Enable automatic startup of X on boot <br/>Change the default run level in /etc/inittab to 5 <br/><code>id:5:initdefault:</code></p>
<p><strong><span style="TEXT-DECORATION: underline">Solaris 10</span></strong></p>
<p>Disable automatic startup of X on boot <br/><code># /usr/dt/bin/dtconfig -d</code></p>
<p>Enable automatic startup of X on boot <br/><code># /usr/dt/bin/dtconfig -e</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/linux-solaris-enabledisable-x-on-boot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris 10 text mode installation</title>
		<link>http://www.coretanium.net/solaris-10-text-mode-installation</link>
		<comments>http://www.coretanium.net/solaris-10-text-mode-installation#comments</comments>
		<pubDate>Sun, 07 Feb 2010 14:30:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.coretanium.net/?p=278</guid>
		<description><![CDATA[To install Solaris in text mode, do the following from OBP; boot cdrom - w Your solaris installation will start in text mode.]]></description>
			<content:encoded><![CDATA[<p>To install Solaris in text mode, do the following from OBP;</p>
<p><code>boot cdrom - w</code></p>
<p>Your solaris installation will start in text mode.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/solaris-10-text-mode-installation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find CDROM device on Solaris 10</title>
		<link>http://www.coretanium.net/how-to-find-cdrom-device-on-solaris-10</link>
		<comments>http://www.coretanium.net/how-to-find-cdrom-device-on-solaris-10#comments</comments>
		<pubDate>Thu, 07 May 2009 14:40:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.coretanium.net/?p=284</guid>
		<description><![CDATA[I recently had to install Solaris 10 on a old Ultra 10 workstation and had trouble figuring out which device was the cdrom… This is how I found it; # iostat -En c0t0d0 Soft Errors: 0 Hard Errors: 0 Transport Errors: 0 Model: IC35L060AVER07-0 Revision: ER6OA46A Serial No: SZPTZNM Size: 61.49GB &#60;61492838400 bytes&#62; Media Error: [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to install Solaris 10 on a old Ultra 10 workstation and had trouble figuring out which device was the cdrom…</p>
<p>This is how I found it;</p>
<p><code># iostat -En<br />
c0t0d0           Soft Errors: 0 Hard Errors: 0 Transport Errors: 0<br />
Model: IC35L060AVER07-0 Revision: ER6OA46A Serial No:          SZPTZNM<br />
Size: 61.49GB &lt;61492838400 bytes&gt;<br />
Media Error: 0 Device Not Ready: 0  No Device: 0 Recoverable: 0<br />
Illegal Request: 0<br />
c0t2d0           Soft Errors: 3 Hard Errors: 0 Transport Errors: 1<br />
Vendor: SAMSUNG  Product: CD-ROM SC-148F   Revision: PS06 Serial No:<br />
Size: 0.49GB &lt;492834816 bytes&gt;<br />
Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0<br />
Illegal Request: 3 Predictive Failure Analysis: 0</code></p>
<p>I could then mount it;</p>
<p><code>mount -F hsfs -o ro /dev/dsk/c0t2d0s2 /mnt/cdrom</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/how-to-find-cdrom-device-on-solaris-10/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Solaris update CD-ROM alias</title>
		<link>http://www.coretanium.net/solaris-update-cd-rom-alias</link>
		<comments>http://www.coretanium.net/solaris-update-cd-rom-alias#comments</comments>
		<pubDate>Thu, 18 Oct 2007 18:42:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.coretanium.net/solaris-update-cd-rom-alias</guid>
		<description><![CDATA[If you have an Ultra 5/10 with&#160;two IDE drives and a CD-ROM, then&#160;you need to update the cdrom device alias in the EEPROM as&#160;below; Original; devaliascdrom /pci@1f,0/pci@1,1/ide@3/cdrom@2,0:f If the CD-ROM is a slave on the primary controller: ok nvalias cdrom /pci@1f,0/pci@1,1/ide@3/cdrom@1,0:f If the CD-ROM is a slave on the secondary controller: ok nvalias cdrom /pci@1f,0/pci@1,1/ide@3/cdrom@3,0:f [...]]]></description>
			<content:encoded><![CDATA[<p>If you have an Ultra 5/10 with&nbsp;two IDE drives and a CD-ROM, then&nbsp;you need to update the cdrom device alias in the EEPROM as&nbsp;below;</p>
<p>Original;</p>
<p>devalias<br /><i>cdrom /pci@1f,0/pci@1,1/ide@3/cdrom@2,0:f</i></p>
<p>If the CD-ROM is a slave on the primary controller: </p>
<p><i>ok nvalias cdrom /pci@1f,0/pci@1,1/ide@3/cdrom@1,0:f</i></p>
<p>If the CD-ROM is a slave on the secondary controller: </p>
<p><i>ok nvalias cdrom /pci@1f,0/pci@1,1/ide@3/cdrom@3,0:f</i></p>
<p>You should now be able to boot from your cdrom.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/solaris-update-cd-rom-alias/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris shutdown/reboot</title>
		<link>http://www.coretanium.net/solaris-shutdownreboot</link>
		<comments>http://www.coretanium.net/solaris-shutdownreboot#comments</comments>
		<pubDate>Fri, 07 Apr 2006 15:52:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.coretanium.net/?p=292</guid>
		<description><![CDATA[Shutdown shutdown -y -i5 -g0 or sync;sync;init 5 or poweroff Reboot shutdown -y -i6 -g0 or sync;sync;init 6 or reboot]]></description>
			<content:encoded><![CDATA[<p><strong>Shutdown</strong></p>
<p><code>shutdown -y -i5 -g0</code></p>
<p>or</p>
<p><code>sync;sync;init 5</code></p>
<p>or</p>
<p><code>poweroff</code></p>
<p><strong>Reboot</strong></p>
<p><code>shutdown -y -i6 -g0</code></p>
<p>or</p>
<p><code>sync;sync;init 6</code></p>
<p>or</p>
<p><code>reboot</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.coretanium.net/solaris-shutdownreboot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

