<?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>Tuts4Tech &#187; howto</title>
	<atom:link href="http://tuts4tech.net/tag/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuts4tech.net</link>
	<description>Tech Tutorials</description>
	<lastBuildDate>Sun, 18 Jul 2010 01:41:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Configuring LDAP Clients</title>
		<link>http://tuts4tech.net/2009/07/02/configuring-ldap-clients/</link>
		<comments>http://tuts4tech.net/2009/07/02/configuring-ldap-clients/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 02:59:42 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ldap]]></category>
		<category><![CDATA[pam]]></category>
		<category><![CDATA[slapd]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=419</guid>
		<description><![CDATA[Install Needed Packages We need to install the following packages on our LDAP server apt-get install libnss-ldap libpam-ldap nscd LDAP Account for root: cn=admin,dc=home,dc=local Password: your-ldap-admin-password Make local root database admin: yes Database require logging in: No Root login account: cn=admin,dc=home,dc=local Root login password: your-ldap-admin-password Configuration Files /etc/libnss-ldap.conf nano /etc/libnss-ldap.conf host IP-OF-LDAP-SERVER base dc=home,dc=local bind_policy [...]]]></description>
			<content:encoded><![CDATA[<h3>Install Needed Packages</h3>
<ol>
<li>We need to install the following packages on our LDAP server
<pre class="brush: bash;">apt-get install libnss-ldap libpam-ldap nscd</pre>
<p>
<pre class="brush: plain;">LDAP Account for root: cn=admin,dc=home,dc=local
Password: your-ldap-admin-password
Make local root database admin: yes
Database require logging in: No
Root login account: cn=admin,dc=home,dc=local
Root login password: your-ldap-admin-password </pre>
</li>
</ol>
<p><span id="more-419"></span>
<ol>
<h3>Configuration Files</h3>
<li>/etc/libnss-ldap.conf
<pre class="brush: plain;">nano /etc/libnss-ldap.conf</pre>
<p>
<pre class="brush: plain;">host IP-OF-LDAP-SERVER
base dc=home,dc=local
bind_policy soft
rootbinddn cn=admin,dc=home,dc=local</pre>
</li>
<li>/etc/pam_ldap.conf
<pre class="brush: plain;">/etc/pam_ldap.conf</pre>
<p>
<pre class="brush: plain;">host IP-OF-LDAP-SERVER
base dc=home,dc=local
rootbinddn cn=admin,dc=home,dc=local</pre>
</li>
<li>Now we need to add pam_ldap so some of the pam configs
<pre class="brush: plain;">nano /etc/pam.d/common-account
account sufficient pam_ldap.so
account required pam_unix.so
#if you want user homedir to be created on first login
#session required pam_mkhomedir.so umask=0022 skel=/etc/skel/ silent

nano /etc/pam.d/common-auth
auth sufficient pam_ldap.so
auth required pam_unix.so nullok_secure use_first_pass

nano /etc/pam.d/common-password
password sufficient pam_ldap.so
password required pam_unix.so nullok obscure min=4 max=8 md5

nano /etc/pam.d/common-session
session sufficient pam_ldap.so
session required pam_unix.so
session optional pam_foreground.so</pre>
</li>
<li>Finally we need to edit /etc/nsswitch.conf
<pre class="brush: bash;">nano /etc/nsswitch.conf</pre>
<p>
<pre class="brush: plain;">passwd:         compat ldap
group:          compat ldap
shadow:         compat ldap</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/07/02/configuring-ldap-clients/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting Up Arch Linux</title>
		<link>http://tuts4tech.net/2009/06/03/setting-up-arch-linux/</link>
		<comments>http://tuts4tech.net/2009/06/03/setting-up-arch-linux/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 16:54:35 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[lesson]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://tuts4tech.co.cc/?p=234</guid>
		<description><![CDATA[First of all update your system pacman -Syu Install xorg pacman -S xorg-server If you have a nvidia graphics card then you need to install these pacman -S nvidia nvidia-utils If you have a ati card then you need to install these pacman -S catalyst catalyst-utils Create your system admin user useradd -m -G users,audio,lp,optical,storage,video,wheel,power [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>First of all update your system
<pre class="brush: plain;">pacman -Syu</pre>
</li>
<li>Install xorg
<pre class="brush: plain;">pacman -S xorg-server</pre>
</li>
<li>If you have a nvidia graphics card then you need to install these
<pre class="brush: plain;">pacman -S nvidia nvidia-utils</pre>
<p>If you have a ati card then you need to install these
<pre class="brush: plain;">pacman -S catalyst catalyst-utils</pre>
</li>
<li>Create your system admin user
<pre class="brush: plain;">useradd -m -G users,audio,lp,optical,storage,video,wheel,power -s /bin/bash YOUR-USER-NAME-HERE</pre>
<p>Now we need to set a password for that user so type the following
<pre class="brush: plain;">passwd YOUR-USER-NAME-HERE</pre>
</li>
<li>Install some packages
<pre class="brush: plain;">pacman -S hal mesa openssh gnome gdm firefox gnome-terminal gedit file-roller gconf-editor gcalctool evince nautilus-cd-burner gnome-volume-manager gnome-power-manager ttf-ms-fonts ttf-dejavu ttf-bitstream-vera ttf-liberation flashplugin jre archlinux-themes-gdm numlockx alsa-utils codecs gstreamer0.10 gstreamer0.10-python gstreamer0.10-ffmpeg gstreamer0.10-good gstreamer0.10-bad gstreamer0.10-ugly gstreamer0.10-good-plugins gstreamer0.10-ugly-plugins gstreamer0.10-bad-plugins gstreamer0.10-base gstreamer0.10-base-plugins gstreamer0.10-pitfdll skype rdesktop pidgin purple-plugin-pack pidgin-encryption pidgin-libnotify aspell-en nmap wireshark irssi filezilla openoffice-base gnome-themes-extras gtk2-themes-collection tango-icon-theme tango-icon-theme-extras archlinux-themes-gdm hwd sudo</pre>
</li>
<li>Generate a Xorg Config
<pre class="brush: plain;">hwd -xa</pre>
<p>If you have a nvidia graphics card do this aswell
<pre class="brush: plain;">nvidia-xconfig</pre>
</li>
<li>Configuring audio run the following and set your volume levels
<pre class="brush: plain;">alsamixer</pre>
<p>you can test you sound using
<pre class="brush: plain;">aplay /usr/share/sounds/alsa/Front_Center.wav</pre>
<p>and then when your happy with it run
<pre class="brush: plain;">alsactl store</pre>
<p>and finally add alsa to your daemons line of rc.conf
<pre class="brush: plain;">DAEMONS=(syslog-ng !network netfs crond fam hal networkmanager alsa)</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/06/03/setting-up-arch-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
