<?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>ZZTopping &#187; sara</title>
	<atom:link href="http://blog.zztopping.com/tag/sara/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.zztopping.com</link>
	<description>A Blog by a Non-Blogger</description>
	<lastBuildDate>Mon, 19 Apr 2010 16:22:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Installing Dell OMSA on a 64-bit Debian Server</title>
		<link>http://blog.zztopping.com/2008/04/29/dell-omsa-debian-64bit/</link>
		<comments>http://blog.zztopping.com/2008/04/29/dell-omsa-debian-64bit/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 20:13:44 +0000</pubDate>
		<dc:creator>ZZTopping</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[omsa]]></category>
		<category><![CDATA[openmanage]]></category>
		<category><![CDATA[pam]]></category>
		<category><![CDATA[sara]]></category>

		<guid isPermaLink="false">http://blog.zztopping.com/?p=11</guid>
		<description><![CDATA[Dell doesn&#8217;t quite support Debian(my favorite GNU/Linux server distro) for its OpenManage services line, but much work has been made by others on this front. Getting this done on 64-bit is a bit trickier still. First, the easiest way to get OMSA(the openmanage service) on your box is to add the sara repositories to your [...]]]></description>
			<content:encoded><![CDATA[<p>Dell doesn&#8217;t quite support Debian(my favorite GNU/Linux server distro) for its OpenManage services line, but much work has been made by others on this front. Getting this done on 64-bit is a bit trickier still.</p>
<p>First, the easiest way to get OMSA(the openmanage service) on your box is to add the sara repositories to your apt.</p>
<p>add to the bottom of /etc/apt/sources.list:</p>
<pre><tt>deb ftp://ftp.sara.nl/pub/sara-omsa dell  sara

</tt></pre>
<p>Now, (as root) run</p>
<pre>aptitude update</pre>
<p>to update your package list(from this new repository) then</p>
<pre>aptitude install dellomsa</pre>
<p>to download and install the package.</p>
<p>Once that is done, you may need to start the service:</p>
<p>/etc/init.d/dsm_om_connsvc start</p>
<p>If you are running 32-bit, you are done. If you have 64-bit, here is where it gets a lil hairy.</p>
<p>You have to download the following <strong>32-bit</strong> debs from the main debian repository. <strong>Links provided are for the STABLE branch</strong>, if you are running unstable, please find your own links <img src='http://blog.zztopping.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<ul>
<li><a href="http://packages.debian.org/etch/i386/libpam-modules/download" target="_blank">libpam-modules</a></li>
<li><a href="http://packages.debian.org/etch/i386/libsepol1/download" target="_blank">libsepol1</a></li>
<li><a href="http://packages.debian.org/etch/i386/libselinux1/download" target="_blank">libselinux1</a></li>
</ul>
<p>After you downloaded each of these <strong>32-bit</strong>(i386) debs, extract the files out of them(do not install) with the dpkg -x command. If you can&#8217;t figure out how to do that, just read the dpkg manual.</p>
<p>Example:</p>
<pre>dpkg -x libselinux1_1.32-3_i386.deb ./temp</pre>
<p>When you are done you should find the following 4 files wherever you extracted them.</p>
<pre>libsepol.so.1
libselinux.so.1
pam_unix.so
pam_nologin.so</pre>
<p>Once you find these files, copy the two files that start with &#8220;libse&#8221; to the /lib32 directory and the two &#8220;pam_&#8221; files to the /lib32/security directory(you may have to create the security subdirectory).</p>
<p>Now, edit the /etc/pam.d/omauth file and replace the uncommented out lines with the path starting with /lib/security to /lib32/security. It should look something like this when you are done.(ignoring the commented out lines at the top)</p>
<pre>auth       required     /lib32/security/pam_unix.so nullok
auth       required     /lib32/security/pam_nologin.so
account    required     /lib32/security/pam_unix.so nullok</pre>
<p>One last step! Its an easy one. Just run the command ldconfig. This will update pam to read the new config files(the one you just edited) and now openmanage will be looking in the correct spot!</p>
<p>Now just browse to your web interface:(change IP as necessary). <strong>Make sure you use https to browse it, http will not work.</strong></p>
<pre style="padding-left: 30px;">https://10.1.1.1:1311/</pre>
<p>Login as root and BAM you are done.</p>
<p>This guide was built from a conglomoration of sites:(kudos to them!)</p>
<p><a href="http://linux.dell.com/debian_9g.shtml" target="_blank">http://linux.dell.com/debian_9g.shtml</a></p>
<p><a href="http://lists.us.dell.com/pipermail/linux-poweredge/2007-June/031531.html" target="_blank">http://lists.us.dell.com/pipermail/linux-poweredge/2007-June/031531.html</a></p>
<p><a href="http://blog.loftninjas.org/?p=100" target="_blank">http://blog.loftninjas.org/?p=100</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.zztopping.com/2008/04/29/dell-omsa-debian-64bit/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
	</channel>
</rss>
