<?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>Cypros Telephony &#187; solaris</title>
	<atom:link href="http://www.voiceworks.pl/cypromis/tag/solaris/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.voiceworks.pl/cypromis</link>
	<description>Random thoughts in an even more random world</description>
	<lastBuildDate>Mon, 11 Aug 2008 18:52:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9-rare</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Building freeswitch on Opensolaris Nevada</title>
		<link>http://www.voiceworks.pl/cypromis/2008/07/06/building-freeswitch-on-opensolaris-nevada/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/07/06/building-freeswitch-on-opensolaris-nevada/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 18:55:27 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[freeswitch]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[telephony]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/2008/07/06/building-freeswitch-on-opensolaris-nevada/</guid>
		<description><![CDATA[OpenSolaris Nevada
This is the distribution from the opensolaris.org guys, do not mix that up with os200805 which is the new OpenSolaris based distro from SUN.

 Select your development user. I will assume for the time being that the user is called freeswitch.
 Create the target directory for freeswitch

mkdir /opt/freeswitch; chown freeswitch /opt/freeswitch

 Give your build [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Building freeswitch on Opensolaris Nevada", url: "http://www.voiceworks.pl/cypromis/2008/07/06/building-freeswitch-on-opensolaris-nevada/" });</script>]]></description>
			<content:encoded><![CDATA[<h4>OpenSolaris Nevada</h4>
<p>This is the distribution from the opensolaris.org guys, do not mix that up with os200805 which is the new OpenSolaris based distro from SUN.</p>
<ul>
<li> Select your development user. I will assume for the time being that the user is called freeswitch.</li>
<li> Create the target directory for freeswitch</li>
</ul>
<pre>mkdir /opt/freeswitch; chown freeswitch /opt/freeswitch</pre>
<ul>
<li> Give your build and development user software installation rights</li>
</ul>
<pre>usermod -P "Software Installation" freeswitch</pre>
<ul>
<li> log out and log back in as the freeswitch user (so that the new permissions become active)</li>
</ul>
<ul>
<li> download and unpack the new jds-cbe beta package:</li>
</ul>
<pre>/usr/sfw/bin/wget <a class="external free" title="http://dlc.sun.com/osol/jds/downloads/cbe/test/desktop-cbe-1.7.0-rc1-x86.tar.bz2" rel="nofollow" href="http://dlc.sun.com/osol/jds/downloads/cbe/test/desktop-cbe-1.7.0-rc1-x86.tar.bz2">http://dlc.sun.com/osol/jds/downloads/cbe/test/desktop-cbe-1.7.0-rc1-x86.tar.bz2</a>
gtar xvfz desktop-cbe-1.7.0-rc1-x86.tar.bz2"</pre>
<p>Install JDS-CBE</p>
<pre>cd desktop-cbe-1.7.0-rc1
./cbe-install</pre>
<ul>
<li> leave everything as default. Select the SunStudio compiler as your default compiler.</li>
</ul>
<ul>
<li> Download the spec-files-extra repository into a subdirectory called SFE</li>
</ul>
<pre>svn co <a class="external free" title="https://pkgbuild.svn.sourceforge.net/svnroot/pkgbuild/spec-files-extra/trunk" rel="nofollow" href="https://pkgbuild.svn.sourceforge.net/svnroot/pkgbuild/spec-files-extra/trunk">https://pkgbuild.svn.sourceforge.net/svnroot/pkgbuild/spec-files-extra/trunk</a> SFE</pre>
<ul>
<li> Load the jds-cbe environment</li>
</ul>
<pre>. /opt/dtbld/bin/env.sh</pre>
<ul>
<li> Compile and install SFEunixodbc</li>
</ul>
<pre>cd SFE
pkgtool --download build SFEunixodbc.spec</pre>
<ul>
<li> Download freeswitch trunk</li>
</ul>
<pre>svn co <a class="external free" title="http://svn.freeswitch.org/svn/freeswitch/trunk" rel="nofollow" href="http://svn.freeswitch.org/svn/freeswitch/trunk">http://svn.freeswitch.org/svn/freeswitch/trunk</a> fstrunk</pre>
<ul>
<li> Prepare the freeswitch sources</li>
</ul>
<pre>cd fstrunk; ./bootstrap.sh</pre>
<ul>
<li> and edit the modules.conf file to select which modules you would like to have installed</li>
</ul>
<pre>vim modules.conf</pre>
<ul>
<li> Configure freeswitch sources for 64bit and let the c compiler apply some optimization</li>
</ul>
<pre>CFLAGS="-m64 -fast" CXXFLAGS="-m64 -fast" LDFLAGS="-m64" ./configure --prefix=/opt/freeswitch \

--enable-core-odbc-support --enable-core-libedit-support \

--enable-64 --with-openssl=/usr/sfw</pre>
<ul>
<li> or for 32bit</li>
</ul>
<pre>CFLAGS="-m32 -fast" CXXYFLAGS="-m32 -fast" LDFLAGS="-m32" ./configure --prefix=/opt/freeswitch \

--enable-core-odbc-support --enable-core-libedit-support \

--with-openssl=/usr/sfw</pre>
<ul>
<li> Drink a cup of coffee</li>
</ul>
<ul>
<li> run make <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<pre>gmake</pre>
<ul>
<li> Install freeswitch into its target directory</li>
</ul>
<pre>gmake install</pre>
<p>You are done <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>One of those days I will finish my SFE package than it will be even easier <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Technorati Tags: <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Freeswitch">Freeswitch</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/opensolaris">opensolaris</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/telephony">telephony</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/voip">voip</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/solaris">solaris</a></p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=Building+freeswitch+on+Opensolaris+Nevada&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F07%2F06%2Fbuilding-freeswitch-on-opensolaris-nevada%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/07/06/building-freeswitch-on-opensolaris-nevada/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The one problem with Live Upgrade on SPARC</title>
		<link>http://www.voiceworks.pl/cypromis/2008/05/16/the-one-problem-with-live-upgrade-on-sparc/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/05/16/the-one-problem-with-live-upgrade-on-sparc/#comments</comments>
		<pubDate>Fri, 16 May 2008 21:35:47 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[live upgrade]]></category>
		<category><![CDATA[lu]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/2008/05/16/the-one-problem-with-live-upgrade-on-sparc/</guid>
		<description><![CDATA[Imagine you just did your live upgrade on your SPARC after of course studying this or this and of course reading this and this, tested it and activated it and all seems ok &#8230;&#8230; but it always seems to boot back into the old environment, you got hit by luactivate being unable to change your [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "The one problem with Live Upgrade on SPARC", url: "http://www.voiceworks.pl/cypromis/2008/05/16/the-one-problem-with-live-upgrade-on-sparc/" });</script>]]></description>
			<content:encoded><![CDATA[<div style=''>Imagine you just did your live upgrade on your SPARC after of course studying <a href="http://hell.jedicoder.net/?p=39">this</a> or <a href="http://www.c0t0d0s0.org/archives/4102-Known,-but-underused-Solaris-Features-Live-Upgrade.html">this</a> and of course reading <a href="http://www.sun.com/bigadmin/features/articles/live_upgrade.html">this</a> and <a href="http://docs.sun.com/app/docs/doc/817-5505/6mkv5m1jq?a=view">this</a>, tested it and activated it and all seems ok &#8230;&#8230; but it always seems to boot back into the old environment, you got hit by luactivate being unable to change your boot settings cause your setting of:</p>
<p>diag-switch?</p>
<p>is set to true.</p>
<p>a simple setting of:</p>
<p>eeprom boot-device?=false</p>
<p>fixes that and allows live upgrade to handle its stuff like it should.</p>
</div>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=The+one+problem+with+Live+Upgrade+on+SPARC&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F05%2F16%2Fthe-one-problem-with-live-upgrade-on-sparc%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/05/16/the-one-problem-with-live-upgrade-on-sparc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where is SUN going with OpenSource ? An interview with Simon Phipps</title>
		<link>http://www.voiceworks.pl/cypromis/2008/04/30/where-is-sun-going-with-opensource-an-interview-with-simon-phipps/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/04/30/where-is-sun-going-with-opensource-an-interview-with-simon-phipps/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 09:20:06 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[foss]]></category>
		<category><![CDATA[openjdk]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[webmink]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/?p=119</guid>
		<description><![CDATA[I always like to read where corporations running FOSS projects I am involved in want to take them. If this is of interest for you, here is an Interview with Simon Phipps about SUNs vision for its OpenSource future
<script type="text/javascript">SHARETHIS.addEntry({ title: "Where is SUN going with OpenSource ? An interview with Simon Phipps", url: "http://www.voiceworks.pl/cypromis/2008/04/30/where-is-sun-going-with-opensource-an-interview-with-simon-phipps/" });</script>]]></description>
			<content:encoded><![CDATA[<p>I always like to read where corporations running FOSS projects I am involved in want to take them. If this is of interest for you, <a href="http://tinyurl.com/62sh3o" target="_blank">here is an Interview with Simon Phipps</a> about SUNs vision for its OpenSource future</p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=Where+is+SUN+going+with+OpenSource+%3F+An+interview+with+Simon+Phipps&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F04%2F30%2Fwhere-is-sun-going-with-opensource-an-interview-with-simon-phipps%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/04/30/where-is-sun-going-with-opensource-an-interview-with-simon-phipps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MilaX now a Project under the distrubutions community</title>
		<link>http://www.voiceworks.pl/cypromis/2008/04/25/milax-now-a-project-under-the-distrubutions-community/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/04/25/milax-now-a-project-under-the-distrubutions-community/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 08:48:58 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[milax]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/2008/04/25/milax-now-a-project-under-the-distrubutions-community/</guid>
		<description><![CDATA[Today we unhid the MilaX pages on www.opensolaris.org. We are now a project within the Distribution community and you can find us at http://www.opensolaris.org/os/project/milax.All discussions, bug reports, feature requests etc please to distribution-discuss@opensolaris.org. We are looking for help with new features and even more minimalisation so if you are interested, let us know, we are [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "MilaX now a Project under the distrubutions community", url: "http://www.voiceworks.pl/cypromis/2008/04/25/milax-now-a-project-under-the-distrubutions-community/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Today we unhid the MilaX pages on www.opensolaris.org. We are now a project within the Distribution community and you can find us at http://www.opensolaris.org/os/project/milax.<br />All discussions, bug reports, feature requests etc please to distribution-discuss@opensolaris.org. We are looking for help with new features and even more minimalisation so if you are interested, let us know, we are in the process of planning and creating a repository and all other required tools, if you want to help with anything, you are most welcome.</p>
<p>MilaX is a small size Live CD distribution which runs completely off a<br />
CD or a USB pendrive. It is based on Solaris Nevada and includes its<br />
basic features. What originally started as an experiment to see how<br />
much Solaris software could fit in miniCD eventually became a<br />
full-fledged OpenSolaris distribution. MilaX also it is possible to use<br />
as Rescue-CD. It can be installed on storage media with small<br />
capacities, like bootable business cards, USB flash drives, various<br />
memory cards, and Zip drives. MilaX is free to use, modify and<br />
distribute.</p>
<p></p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=MilaX+now+a+Project+under+the+distrubutions+community&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F04%2F25%2Fmilax-now-a-project-under-the-distrubutions-community%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/04/25/milax-now-a-project-under-the-distrubutions-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris 10 Update 5 available for download</title>
		<link>http://www.voiceworks.pl/cypromis/2008/04/15/solaris-10-update-5-available-for-download/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/04/15/solaris-10-update-5-available-for-download/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 21:37:41 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/2008/04/15/solaris-10-update-5-available-for-download/</guid>
		<description><![CDATA[here  
<script type="text/javascript">SHARETHIS.addEntry({ title: "Solaris 10 Update 5 available for download", url: "http://www.voiceworks.pl/cypromis/2008/04/15/solaris-10-update-5-available-for-download/" });</script>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sun.com/software/solaris/get.jsp">here <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </a></p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=Solaris+10+Update+5+available+for+download&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F04%2F15%2Fsolaris-10-update-5-available-for-download%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/04/15/solaris-10-update-5-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSolaris Day at SUN Tech Days St. Petersburg, Russia</title>
		<link>http://www.voiceworks.pl/cypromis/2008/04/04/opensolaris-day-at-sun-tech-days-st-petersburg-russia/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/04/04/opensolaris-day-at-sun-tech-days-st-petersburg-russia/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 06:54:51 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[Fairs, Conferences & Summits]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[russia]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[sun tech days]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/?p=114</guid>
		<description><![CDATA[Fun times in St. Petersburg. My half hearted knowledge of Russian that I nearly forgot comes very usefull here listening to very interesting presentations about all stuff SUN. Ian Murdoch had a little interactive talk at a Linux Usergroup Meeting at the University here and managed to tell people a bit about the new ways [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "OpenSolaris Day at SUN Tech Days St. Petersburg, Russia", url: "http://www.voiceworks.pl/cypromis/2008/04/04/opensolaris-day-at-sun-tech-days-st-petersburg-russia/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Fun times in St. Petersburg. My half hearted knowledge of Russian that I nearly forgot comes very usefull here listening to very interesting presentations about all stuff SUN. Ian Murdoch had a little interactive talk at a Linux Usergroup Meeting at the University here and managed to tell people a bit about the new ways Opensolaris is taking in terms of usabilit, easier access, licensing and the like. I still think that we as the OpenSolaris community should insist more on that we are making the system more accessible, more easy to use, easier to install, easier to manage, more accessible for developers. We should pass to people more than the usual talk about dtrace and zfs. What about stability ? What about the thousands and thousands of places solaris is being real life tested and hardened ? What about the predictability of the Kernel ? As much as I like Ians presentations (his keynote speech at todays OpenSolaris Day Opening was purely fantastic), I dislike the notion coming through of a linuxisation. Worst in all this is that I cannot really see a linuxisation happening to OpenSolaris. I see everything else happening. Indiana making OpenSolaris easier to use, more familiar etc. I see that you get choice now to use GNU style utilities if you like. I see tons and tons of popular Applications from the OpenSource and non OpenSource World being ported (yes I know this is a shameless plug for the Software Porters Community I lead <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) but its not in any form a linuxisation.</p>
<p>We are far too much defending ourselves against the image of being anti linux or anti something. Are we an anti movement ? I doubt it. We are pro familiarity. We are pro stability. We are pro innovation. We should show that more.</p>
<p>Maybe my writeup this morning is a bit confusing but to summarize my thinking, lets stop dealing so much with comparisons with other systems, lets show more of what we bring to the community, how we enable developers to dig deep down into the system (Ian plugged that nicely for PHP and Ruby developers today), how we are leading the way of the industry into an Adoption led Marketspace (hi Simon <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) and how OpenSolaris is leading the way for tested, commercialy viable systems and applications into this new world of community and industry cooperation.</p>
<p>Just my 2 Rubels worth of thought for the day</p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=OpenSolaris+Day+at+SUN+Tech+Days+St.+Petersburg%2C+Russia&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F04%2F04%2Fopensolaris-day-at-sun-tech-days-st-petersburg-russia%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/04/04/opensolaris-day-at-sun-tech-days-st-petersburg-russia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSolaris Events Calendar created</title>
		<link>http://www.voiceworks.pl/cypromis/2008/03/31/opensolaris-events-calendar-created/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/03/31/opensolaris-events-calendar-created/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 20:27:09 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/2008/03/31/opensolaris-events-calendar-created/</guid>
		<description><![CDATA[To have a fixed place for Opensolaris related events, events we as a community participate, user group meetings and potential events for the community to participate in, I created a calendar in the advocacy community. Everybody is welcome to send me updates to cypromis at opensolaris dot org. If you would like to participate in [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "OpenSolaris Events Calendar created", url: "http://www.voiceworks.pl/cypromis/2008/03/31/opensolaris-events-calendar-created/" });</script>]]></description>
			<content:encoded><![CDATA[<p>To have a fixed place for Opensolaris related events, events we as a community participate, user group meetings and potential events for the community to participate in, I created a calendar in the advocacy community. Everybody is welcome to send me updates to cypromis at opensolaris dot org. If you would like to participate in keeping the calendars up to date, please send me your gmail details and I will add you to the calendars.<br />I am also working on a speaker index and helpers index page on the genunix wiki that will help speakers, helpers and event organisers to find each others. If you have any input for that, want to be listed or have any questions, let me know</p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/opensolaris" rel="tag">opensolaris</a>, <a class="performancingtags" href="http://technorati.com/tag/solaris" rel="tag">solaris</a>, <a class="performancingtags" href="http://technorati.com/tag/events" rel="tag">events</a></p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=OpenSolaris+Events+Calendar+created&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F03%2F31%2Fopensolaris-events-calendar-created%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/03/31/opensolaris-events-calendar-created/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Community voted for a more SUN influenced OpenSolaris.org ?</title>
		<link>http://www.voiceworks.pl/cypromis/2008/03/28/community-voted-for-a-more-sun-influenced-opensolarisorg/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/03/28/community-voted-for-a-more-sun-influenced-opensolarisorg/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 16:59:23 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[ogb]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/2008/03/28/community-voted-for-a-more-sun-influenced-opensolarisorg/</guid>
		<description><![CDATA[Todays results of the OGB elections show quite a strong trend in the opensolaris.org community towards stronger impact and influence from SMI I think. 6 out of 7 elects are SMI employees, there is an influx of more senior SUN people and all over it seems that everybody who was screaming for SUN to give [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Community voted for a more SUN influenced OpenSolaris.org ?", url: "http://www.voiceworks.pl/cypromis/2008/03/28/community-voted-for-a-more-sun-influenced-opensolarisorg/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Todays results of the OGB elections show quite a strong trend in the opensolaris.org community towards stronger impact and influence from SMI I think. 6 out of 7 elects are SMI employees, there is an influx of more senior SUN people and all over it seems that everybody who was screaming for SUN to give more power to the community has been voted out of the OGB by exactly that community he wanted to represent having more power. Fun. No polls needed I guess than. Stronger SMI influence it is, Indiana is the way to go forward as elected by the community.</p>
<p>I must say I like this since it fits to my line of thought.</p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=Community+voted+for+a+more+SUN+influenced+OpenSolaris.org+%3F&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F03%2F28%2Fcommunity-voted-for-a-more-sun-influenced-opensolarisorg%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/03/28/community-voted-for-a-more-sun-influenced-opensolarisorg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Development with JDS-CBE on Solaris 10 for Fun and Profit part II &#8211; lets use it to make vim</title>
		<link>http://www.voiceworks.pl/cypromis/2008/03/04/development-with-jds-cbe-on-solaris-10-for-fun-and-profit-part-ii-lets-use-it-to-make-vim/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/03/04/development-with-jds-cbe-on-solaris-10-for-fun-and-profit-part-ii-lets-use-it-to-make-vim/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 12:30:36 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Packaging]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[SunStudio]]></category>
		<category><![CDATA[indiana]]></category>
		<category><![CDATA[jds-cbe]]></category>
		<category><![CDATA[nevada]]></category>
		<category><![CDATA[pkgbuild]]></category>
		<category><![CDATA[pkgtool]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[spec]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/2008/03/04/development-with-jds-cbe-on-solaris-10-for-fun-and-profit-part-ii-lets-use-it-to-make-vim/</guid>
		<description><![CDATA[As always there are some assumptions from my side. You read the part I article, you know the standard solaris pkgadd, pkginfo and pkgrm tools, you have at least heard of the subversion revision control system, environment variables do not scare you and a PATH is not a road through the woods. Oh yes and [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Development with JDS-CBE on Solaris 10 for Fun and Profit part II &#8211; lets use it to make vim", url: "http://www.voiceworks.pl/cypromis/2008/03/04/development-with-jds-cbe-on-solaris-10-for-fun-and-profit-part-ii-lets-use-it-to-make-vim/" });</script>]]></description>
			<content:encoded><![CDATA[<p>As always there are some assumptions from my side.<span style="font-style: italic"> You read the part I article, you know the standard solaris pkgadd, pkginfo and pkgrm tools, you have at least heard of the subversion revision control system, environment variables do not scare you and a PATH is not a road through the woods. Oh yes and &#8216;jdsuser&#8217; is the user I assume you setup correctly according o part I.</span></p>
<p>This part actually does not make much difference between Solaris 10 and SXCE and I think Indiana neither, but what the heck, I will describe the latter two scenarios in part III and IV, sicne especialy for Indiana you will want to know how we can help you with creating IPS packages. Anyway, lets the games begin.</p>
<p>First lets get into the right environment, so lets do:</p>
<p><tt>. /opt/jdsbld/bin/env.sh</tt></p>
<p>feels much better now that we have the right VARS and PATH set.</p>
<p>Now lets get the SFE repository. Create a nice directory where you want to keep all your project files. Change into it and do:</p>
<p><font face="arial,sans"><tt>svn co https://pkgbuild.svn.sourceforge.net/svnroot/pkgbuild/spec-files-extra/trunk SFE</tt></font></p>
<p>after a while of downloading you should now have a complete copy of the SFE repository. A a first example we will build a package of VIM.<br />
Change into the freshly created SFE repo directory, and build the package. Since we want to build a package that can be transferred to other machines we have, lets make the package a one file package in datastream format. Since vim depends on cscope and ctags and pkgtool will not let us build packages whose dependencies haven&#8217;t been met, we add SFEctags.spec and SFEcscope.spec to the end of the line to build it as well.<br />
Here we go</p>
<p><tt>cd SFE<br />
pkgtool --interactive --download --pkgformat=ds  build SFEvim.spec SFEctags.spec SFEcscope.spec<br />
</tt></p>
<p>After some downlaoding, some compiling we should now have a package called SFEvim.pkg in ~/jdsuser/packages/PKGS/SFEvim.pkg, which we can install and copy to other solaris 10 boxens to be installed there as well as usual with pkgadd. On our box its already installed. Would we have wanted not to install it, pkgtool would have required the command build-only instead of build, and we would have had to build and install SFEctags and SFEcscope first and than just create the SFEvim package.</p>
<p>Congrats for building your first SFE based SVR4 package.</p>
<p class="flockcredit" style="text-align: right; color: #cccccc; font-size: x-small">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999999; font-weight: bold" target="_new" title="Flock Browser">Flock Browser</a></p>
<p><!-- technorati tags begin --></p>
<p><!-- technorati tags end --></p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=Development+with+JDS-CBE+on+Solaris+10+for+Fun+and+Profit+part+II+%26%238211%3B+lets+use+it+to+make+vim&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F03%2F04%2Fdevelopment-with-jds-cbe-on-solaris-10-for-fun-and-profit-part-ii-lets-use-it-to-make-vim%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/03/04/development-with-jds-cbe-on-solaris-10-for-fun-and-profit-part-ii-lets-use-it-to-make-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Development with JDS-CBE on Solaris 10 for Fun and Profit part I &#8211; installation and setup</title>
		<link>http://www.voiceworks.pl/cypromis/2008/03/03/development-with-jds-cbe-on-solaris-10-for-fun-and-profit/</link>
		<comments>http://www.voiceworks.pl/cypromis/2008/03/03/development-with-jds-cbe-on-solaris-10-for-fun-and-profit/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 12:51:38 +0000</pubDate>
		<dc:creator>Michal Bielicki</dc:creator>
				<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Packaging]]></category>
		<category><![CDATA[Solaris & OpenSolaris]]></category>
		<category><![CDATA[SunStudio]]></category>
		<category><![CDATA[indiana]]></category>
		<category><![CDATA[jds-cbe]]></category>
		<category><![CDATA[nevada]]></category>
		<category><![CDATA[pkgbuild]]></category>
		<category><![CDATA[pkgtool]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[spec]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://www.voiceworks.pl/cypromis/2008/03/03/development-with-jds-cbe-on-solaris-10-for-fun-and-profit/</guid>
		<description><![CDATA[    JDS-CBE is the common build environment used by the Java Desktop System people as well as by porters who utilize the Spec Files Extra repository and the pkgbuild utilities. This makes it possible to use rpm like .spec files on Solaris and Opensolaris. The syntax is pretty much the same as [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "Development with JDS-CBE on Solaris 10 for Fun and Profit part I &#8211; installation and setup", url: "http://www.voiceworks.pl/cypromis/2008/03/03/development-with-jds-cbe-on-solaris-10-for-fun-and-profit/" });</script>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.opensolaris.org/os/project/jds/contributing/building/#jds-cbe">    JDS-CBE</a> is the common build environment used by the Java Desktop System people as well as by porters who utilize the S<a href="http://pkgbuild.sourceforge.net/spec-files-extra/">pec Files Extra</a> repository and the pkgbuild utilities. This makes it possible to use rpm like .spec files on Solaris and Opensolaris. The syntax is pretty much the same as on penguin systems besides some additional tags needed to generate correct SysV Solaris packages.</p>
<p>I will assume in this article that the reader knows how to setup a developers workstation on Solaris 10 with SunStudio 12 or SunStudio Express. You will need to leave space for the common build environment on /opt, space for the SFE spec files and packages bulding and storage in your home directory and of course ahve enough space on your /usr partition for installing all the nice packages you create <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I also assume that you know about having enough swap space to run sunstudio and know how to compile software with it.</p>
<p>OK, so lets go.<br />
Start with patching your system to the latest patchlevel. When done, insert your Solaris10U4 DVD or mount your iso image. Once you are done with that, you will need to select the user that will be your build user (we will use jdsuser for now) and change his security preferences by issuing the following command (thanks to trochej for corrrecting me. I first advised against better knowledge to edit the user_attr file directly):</p>
<pre>usermod -P "Software Installation" jdsuser</pre>
<pre></pre>
<p>download the following file:</p>
<p><a href="http://dlc.sun.com/osol/jds/downloads/cbe/jds-cbe-1.6.0-src.tar">http://dlc.sun.com/osol/jds/downloads/cbe/jds-cbe-1.6.0-src.tar</a></p>
<p>and extract it somewhere where you want to build it, it will need some space since it will create quite some new packages.<br />
Change into the directory the unpacking process created called jds-cbe-1.6.0.<br />
We will need to edit the file cbe-install but before we do that we need to change its permissions. So go ahead and do a</p>
<p>chmod 755 cbe-install</p>
<p>and than open the file cbe-install in your favorite editor and remove the two words:</p>
<p>SUNWsmbaS and SUNWseuos.</p>
<p>Save the file and run it <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The install will ask for an installation directory, agree with it. It will complain about the compiler version not being the recommended one, ignore that and answer yes when it asks you if you want to use this compiler anyway.<br />
CBE will now install all required optional packages as well as create some new ones and install them in /opt/jdsbld. Once finished you have all required stuff to use SFE and specfiles on your Solaris 10 box.</p>
<p>To use jds-cbe, just source /opt/jdsbld/bin/env.sh like this:</p>
<p>. /opt/jdsbld/bin/env.sh</p>
<p>and yes, there is a dot at the beginning of the former line.</p>
<p>Enjoy <img src='http://www.voiceworks.pl/cypromis/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><!-- technorati tags end --></p>
<p><a href="http://sharethis.com/item?&wp=2.9-rare&amp;publisher=9e325339-6adc-4778-8de7-37e61f76f06d&amp;title=Development+with+JDS-CBE+on+Solaris+10+for+Fun+and+Profit+part+I+%26%238211%3B+installation+and+setup&amp;url=http%3A%2F%2Fwww.voiceworks.pl%2Fcypromis%2F2008%2F03%2F03%2Fdevelopment-with-jds-cbe-on-solaris-10-for-fun-and-profit%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.voiceworks.pl/cypromis/2008/03/03/development-with-jds-cbe-on-solaris-10-for-fun-and-profit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
