<?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>Alain M. Lafon &#187; opensolaris</title> <atom:link href="http://blog.dispatched.ch/tag/opensolaris/feed/" rel="self" type="application/rss+xml" /><link>http://blog.dispatched.ch</link> <description>code, life and struggles thereof</description> <lastBuildDate>Mon, 16 Jan 2012 13:44:17 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Maradns on OpenSolaris(Sparc)</title><link>http://blog.dispatched.ch/2008/10/04/maradns-on-opensolarissparc/</link> <comments>http://blog.dispatched.ch/2008/10/04/maradns-on-opensolarissparc/#comments</comments> <pubDate>Sat, 04 Oct 2008 16:19:49 +0000</pubDate> <dc:creator>Alain M. Lafon</dc:creator> <category><![CDATA[articles]]></category> <category><![CDATA[dns]]></category> <category><![CDATA[maradns]]></category> <category><![CDATA[opensolaris]]></category> <category><![CDATA[sparc]]></category> <guid
isPermaLink="false">http://gefechtsdienst.de/?p=94</guid> <description><![CDATA[In order to compile Maradns (http://www.maradns.org) on a Sparc machine you have to edit the Makefile. I changed line 19-36 to following: # Uncomment the following three lines to get this to compile on Solaris LDFLAGS=-lxnet CC=cc $(LDFLAGS) -DSOLARIS -DNO_FLOCK M="CC=$(CC)" # These are currently unused, but will be needed again if we use flock() [...]]]></description> <content:encoded><![CDATA[<p>In order to compile Maradns (<a
href="http://www.maradns.org">http://www.maradns.org</a>) on a Sparc machine you have to edit the Makefile.<br
/> I changed line 19-36 to following:</p><pre class="box">
# Uncomment the following three lines to get this to compile on Solaris
 LDFLAGS=-lxnet
 CC=cc $(LDFLAGS) -DSOLARIS -DNO_FLOCK
 M="CC=$(CC)"
# These are currently unused, but will be needed again if we use flock() again
# CFLAGS=-I/usr/ucbinclude
# L="CC=$(CC) $(CFLAGS)"
# LDFLAGS=-L/usr/ucblib -lucb -lxnet
# end the Solaris section
# Non-Solaris version of "M"
#M="CC=$(CC) -O2 -Wall" DEBUG=-DNO_FLOCK
#V="VERSION=$(VERSION)"
# Debug
D="VERSION=$(VERSION)" DEBUG="-DDEBUG -DNO_FLOCK"
#FLAGS = -O2 -Wall
FLAGS = -g
</pre><p>afterwards a simple make did the job.</p> ]]></content:encoded> <wfw:commentRss>http://blog.dispatched.ch/2008/10/04/maradns-on-opensolarissparc/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>First installation troubles (Solaris)</title><link>http://blog.dispatched.ch/2008/10/04/first-installation-troubles-solaris/</link> <comments>http://blog.dispatched.ch/2008/10/04/first-installation-troubles-solaris/#comments</comments> <pubDate>Sat, 04 Oct 2008 16:19:28 +0000</pubDate> <dc:creator>Alain M. Lafon</dc:creator> <category><![CDATA[articles]]></category> <category><![CDATA[installation]]></category> <category><![CDATA[opensolaris]]></category> <category><![CDATA[Solaris]]></category> <category><![CDATA[Solaris 10]]></category> <guid
isPermaLink="false">http://gefechtsdienst.de/?p=92</guid> <description><![CDATA[Various small problems VIM / Cursor Keys If you wonder why VIM keeps writing &#8216;A&#8217;, &#8216;B&#8217;, &#8216;C&#8217;, &#8216;D&#8217; on your screen when it is supposed just to move the cursor in writing mode, the answer is that the cursor keys are not being mapped the right way. The solution is to extend your favourite .vimrc [...]]]></description> <content:encoded><![CDATA[<h1>Various small problems</h1></p><p><b>VIM / Cursor Keys</b><br
/> If you wonder why VIM keeps writing &#8216;A&#8217;, &#8216;B&#8217;, &#8216;C&#8217;, &#8216;D&#8217; on your screen when it is supposed just to move the cursor in writing mode, the answer is that the cursor keys are not being mapped the right way. The solution is to extend your favourite .vimrc file with:</p><pre class="box">
map! ^[OD ^[h
map! ^[OC ^[l
map! ^[OA ^[k
map! ^[OB ^[j
</pre><p><b>&#8220;/usr/ucb/cc: language optional software package not installed&#8221;</b><br
/> /usr/ucb/cc is only a wrapper to a real C compiler. Solaris 10 won&#8217;t have a C compiler preinstalled, normally. This means that you will have to install it yourself (Sun Studio would be a good idea, too). All you have to see to then is that your PATH is set correctly; meaning that /usr/ucb is either deleted or after your real compiler.</p><p></p><p><b>&#8220;WARNING: loghost could not be resolved.&#8221;</b><br
/> That&#8217;s because your syslogd doesn&#8217;t have a defined host to work on. To fix it simply add &#8220;loghost&#8221; to your 127.0.0.1 entry in the /etc/hosts file</p><pre class="box">
127.0.0.1       localhost loghost
</pre><p><b>&#8220;Sendmail: My unqualified host name (domain) unknown;&#8221;</b><br
/> If you get this warning on computer startup, then you haven&#8217;t configured a fully qualified domain name for your system. If you don&#8217;t need a mailing system on your computer the solution is easy by simply disabling the service via:</p><pre class="box">
svcadm disable sendmail
</pre><p>If you need a working mailsystem, there is a <a
href="http://www.sun.com/bigadmin/features/articles/config_sendmail.html">howto</a> from SUN.</td></tr></table> ]]></content:encoded> <wfw:commentRss>http://blog.dispatched.ch/2008/10/04/first-installation-troubles-solaris/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> </channel> </rss>

<!-- W3 Total Cache: Minify debug info:
Engine:             disk: basic
Theme:              44184
Template:           tag
-->
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: blog.dispatched.ch @ 2012-02-04 16:47:42 -->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk: basic
Cache key:          w3tc_blog.dispatched.ch_1_page_f9c98c7587e95e883050940e562df71c_gzip
Caching:            enabled
Status:             not cached
Creation Time:      0.498s
Header info:
ETag:               "274915380f43058ea86f113a32d41d8b"
Last-Modified:      Mon, 16 Jan 2012 13:44:17 GMT
Vary:               Accept-Encoding, Cookie
X-Powered-By:       W3 Total Cache/0.9.2.4
Content-Encoding:   gzip
X-Pingback:         http://blog.dispatched.ch/xmlrpc.php
Content-Type:       text/xml; charset=UTF-8
-->
