<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Shinearth&#039;s Blog</title>
	<atom:link href="http://shinearth.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://shinearth.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 26 Oct 2009 05:02:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='shinearth.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Shinearth&#039;s Blog</title>
		<link>http://shinearth.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://shinearth.wordpress.com/osd.xml" title="Shinearth&#039;s Blog" />
	<atom:link rel='hub' href='http://shinearth.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Domain Name Server (DNS) Configuration and Administration</title>
		<link>http://shinearth.wordpress.com/2009/10/26/domain-name-server-dns-configuration-and-administration/</link>
		<comments>http://shinearth.wordpress.com/2009/10/26/domain-name-server-dns-configuration-and-administration/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 05:02:59 +0000</pubDate>
		<dc:creator>shinearth</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://shinearth.wordpress.com/?p=11</guid>
		<description><![CDATA[Configuration of DNS services under Linux involves the following steps: To enable DNS services, the &#8220;/etc/host.conf&#8221; file should look like this: # Lookup names via /etc/hosts first, then by DNS query order hosts, bind # We don't have machines with multiple addresses multi on # Check for IP address spoofing nospoof on # Warn us [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinearth.wordpress.com&amp;blog=10088378&amp;post=11&amp;subd=shinearth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Configuration of DNS services under Linux involves the following steps:</p>
<ol type="1">
<li>To enable DNS services, the &#8220;<tt><tt>/etc/host.conf</tt></tt>&#8221; file should look like this:<br />
<table border="0" width="90%" bgcolor="#e0e0e0">
<tbody>
<tr>
<td>
<pre># Lookup names via /etc/hosts first, then by DNS query
order hosts, bind
# We don't have machines with multiple addresses
multi on
# Check for IP address spoofing
nospoof on
# Warn us if someone attempts to spoof
alert on</pre>
</td>
</tr>
</tbody>
</table>
<p>The extra spoof detection adds a bit of a performance hit to DNS lookups (although negligible), so if you&#8217;re not too worried about this you may wish to disable the &#8220;nospool&#8221; and &#8220;alert&#8221; entries.</li>
<li>Configure the &#8220;<tt><tt>/etc/hosts</tt></tt>&#8221; file as needed.   Typically there doesn&#8217;t need to be much in here, but for improved performance you can add any hosts you access often (such as local servers) to avoid performing DNS lookups on them.</li>
<li>The &#8220;<tt><tt>/etc/named.conf</tt></tt>&#8221; file should be configured to point to your DNS tables according to the example below.
<div>
<blockquote><p><strong>Note: </strong>(Note: IP addresses shown are examples only and must be replaced with your own class addresses!):</p></blockquote>
</div>
<table border="0" width="90%" bgcolor="#e0e0e0">
<tbody>
<tr>
<td>
<pre>options {
	// DNS tables are located in the /var/named directory
	directory "/var/named";

	// Forward any unresolved requests to our ISP's name server
	// (this is an example IP address only -- do not use!)
	forwarders {
		123.12.40.17;
	};

	/*
	 * If there is a firewall between you and nameservers you want
	 * to talk to, you might need to uncomment the query-source
	 * directive below.  Previous versions of BIND always asked
	 * questions using port 53, but BIND 8.1 uses an unprivileged
	 * port by default.
	 */
	// query-source address * port 53;
};

// Enable caching and load root server info
zone "named.root" {
	type hint;
	file "";
};

// All our DNS information is stored in /var/named/mydomain_name.db
// (eg. if mydomain.name = foobar.com then use foobar_com.db)
zone "mydomain.name" {
	type master;
	file "mydomain_name.db";
	allow-transfer { 123.12.41.40; };
};

// Reverse lookups for 123.12.41.*, .42.*, .43.*, .44.* class C's
// (these are example Class C's only -- do not use!)
zone "12.123.IN-ADDR.ARPA" {
	type master;
	file "123_12.rev";
	allow-transfer { 123.12.41.40; };
};

// Reverse lookups for 126.27.18.*, .19.*, .20.* class C's
// (these are example Class C's only -- do not use!)
zone "27.126.IN-ADDR.ARPA" {
	type master;
	file "126_27.rev";
	allow-transfer { 123.12.41.40; };
};</pre>
</td>
</tr>
</tbody>
</table>
<div>
<blockquote><p><strong>Tip: </strong>Tip: Make note of the <tt>allow-transfer</tt> options above, which restricts DNS zone transfers to a given IP address.   In our example, we are allowing the host at 123.12.41.40 (probably a slave DNS server in our domain) to request zone transfers.  If you omit this option, anyone on the Internet will be able to request such transfers.   As the information provided is often used by spammers and IP spoofers, I strongly recommend you restrict zone transfers except to your slave DNS server(s), or use the loopback address, &#8220;<tt>127.0.0.1</tt>&#8221; instead.</p></blockquote>
</div>
</li>
<li>Now you can set up your DNS tables in the &#8220;<tt><tt>var/named/</tt></tt>&#8221; directory as configured in the &#8220;<tt><tt>/etc/named.conf</tt></tt>&#8221; file in step three.  Configuring DNS database files for the first time is a major undertaking, and is beyond the scope of this document.  There are several guides, online and in printed form that should be referred to.  However, several examples are provided below.
<p>Sample entries in the &#8220;<tt><tt>/var/named/mydomain_name.db</tt></tt>&#8221; forward lookup file:</p>
<table border="0" width="90%" bgcolor="#e0e0e0">
<tbody>
<tr>
<td>
<pre>; This is the Start of Authority (SOA) record.  Contains contact
; &amp; other information about the name server.  The serial number
; must be changed whenever the file is updated (to inform secondary
; servers that zone information has changed).
    @ IN SOA mydomain.name.  postmaster.mydomain.name. (
	19990811	; Serial number
	3600		; 1 hour refresh
	300		; 5 minutes retry
	172800		; 2 days expiry
	43200 )		; 12 hours minimum

; List the name servers in use.  Unresolved (entries in other zones)
; will go to our ISP's name server isp.domain.name.com
	IN NS		mydomain.name.
	IN NS		isp.domain.name.com.

; This is the mail-exchanger.  You can list more than one (if
; applicable), with the integer field indicating priority (lowest
; being a higher priority)
	IN MX		mail.mydomain.name.

; Provides optional information on the machine type &amp; operating system
; used for the server
	IN HINFO	Pentium/350	LINUX

; A list of machine names &amp; addresses
    spock.mydomain.name.    IN A    123.12.41.40   ; OpenVMS Alpha
    mail.mydomain.name.     IN A    123.12.41.41   ; Linux (main server)
    kirk.mydomain.name.     IN A    123.12.41.42   ; Windows NT (blech!)

; Including any in our other class C's
    twixel.mydomain.name.   IN A    126.27.18.161  ; Linux test machine
    foxone.mydomain.name.   IN A    126.27.18.162  ; Linux devel. kernel

; Alias (canonical) names
    gopher	IN CNAME	mail.mydomain.name.
    ftp		IN CNAME	mail.mydomain.name.
    www		IN CNAME	mail.mydomain.name.</pre>
</td>
</tr>
</tbody>
</table>
<p>Sample entries in the &#8220;<tt><tt>/var/named/123_12.rev</tt></tt>&#8221; reverse lookup file:</p>
<table border="0" width="90%" bgcolor="#e0e0e0">
<tbody>
<tr>
<td>
<pre>; This is the Start of Authority record.  Same as in forward lookup table.
    @ IN SOA mydomain.name.  postmaster.mydomain.name. (
	19990811	; Serial number
	3600		; 1 hour refresh
	300		; 5 minutes retry
	172800		; 2 days expiry
	43200 )		; 12 hours minimum

; Name servers listed as in forward lookup table
	IN NS		mail.mydomain.name.
	IN NS		isp.domain.name.com.

; A list of machine names &amp; addresses, in reverse.  We are mapping
; more than one class C here, so we need to list the class B portion
; as well.
    40.41	IN PTR    spock.mydomain.name.
    41.41	IN PTR    mail.mydomain.name.
    42.41	IN PTR    kirk.mydomain.name.

; As you can see, we can map our other class C's as long as they are
; under the 123.12.* class B addresses
    24.42	IN PTR    tsingtao.mydomain.name.
    250.42	IN PTR    redstripe.mydomain.name.
    24.43	IN PTR    kirin.mydomain.name.
    66.44	IN PTR    sapporo.mydomain.name.

; No alias (canonical) names should be listed in the reverse lookup
; file (for obvious reasons).</pre>
</td>
</tr>
</tbody>
</table>
<p>Any other reverse lookup files needed to map addresses in a different class B (such as 126.27.*) can be created, and would look much the same as the example reverse lookup file above.</li>
<li>Make sure the named daemon is running. This daemon is usually started from the &#8220;<tt><tt>/etc/rc.d/init.d/named</tt></tt>&#8221; file upon system boot. You can also start and stop the daemon manually; type &#8220;<tt>named start</tt>&#8221; and &#8220;<tt>named stop</tt>&#8221;, respectively.</li>
<li>Whenever changes are made to the DNS tables, the DNS server should be restarted by typing &#8220;<tt>/etc/rc.d/init.d/named restart</tt>&#8221;.  You may then wish to test your changes by using a tool such as &#8220;<tt>nslookup</tt>&#8221; to query the machine you have added or changed.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shinearth.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shinearth.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shinearth.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shinearth.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shinearth.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shinearth.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shinearth.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shinearth.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shinearth.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shinearth.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shinearth.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shinearth.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shinearth.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shinearth.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinearth.wordpress.com&amp;blog=10088378&amp;post=11&amp;subd=shinearth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shinearth.wordpress.com/2009/10/26/domain-name-server-dns-configuration-and-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ca1bdfa791f1f725d765d1bd291ff11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shinearth</media:title>
		</media:content>
	</item>
		<item>
		<title>Install VMWare in Linux</title>
		<link>http://shinearth.wordpress.com/2009/10/25/install-vmware-in-linux/</link>
		<comments>http://shinearth.wordpress.com/2009/10/25/install-vmware-in-linux/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 12:22:54 +0000</pubDate>
		<dc:creator>shinearth</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mint]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://shinearth.wordpress.com/?p=7</guid>
		<description><![CDATA[go to http://www.vmware.com/ and download VMWare, as well as an evaluation license Download into the /tmp directory, and unpack it by running: tar -zxvf VMware-X.X.X-XXX.tar.gz Now move the new directory to /use/local/src for installing. mv vmware-distrib /usr/local/src You should now change directories into it and locate the installer. cd /usr/local/src/vmware-distrib ls There should be a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinearth.wordpress.com&amp;blog=10088378&amp;post=7&amp;subd=shinearth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>go to http://www.vmware.com/ and download VMWare, as well as an evaluation license</p>
<p>Download into the /tmp directory, and unpack it by running:</p>
<p><strong>tar -zxvf VMware-X.X.X-XXX.tar.gz</strong></p>
<p>Now move the new directory to /use/local/src for installing.</p>
<p><strong>mv vmware-distrib /usr/local/src</strong></p>
<p>You should now change directories into it and locate the installer.</p>
<p><strong>cd /usr/local/src/vmware-distrib</strong></p>
<p><strong>ls</strong></p>
<p>There should be a program name &#8220;vmware-install.pl.&#8221; Run it:</p>
<p><strong>./vmware-install.pl</strong></p>
<p>This script is very handy, I just pressed  on everything except where  to install the binary files. I always like to keep binary files in the  /usr/local directory.</p>
<p>After it is installed, change directories to where you had it install the  binary files, in my case, /usr/local/vmware.</p>
<p><strong>cd /usr/local/vmware</strong></p>
<p>The easiest way to get it going is to start it up with the vmware command.</p>
<p><strong>./vmware</strong></p>
<p>This will kiskstart VMware. Now it will ask you for various things. One will  be to place your license in a specific place. Find the license file you  dowloaded and place it there, and remember to rename it to &#8216;license.&#8217; Next  choose &#8220;Run the Configuration Wizard&#8221; and click &#8220;next.&#8221;</p>
<p>It is a pretty simple setup, click the next button again and get past the  rubbish. Now choose the OS you are going to install, I chose Windows 98. It  will now ask for a directory, make sure wherever you install it, there is enough room for your OS, I used about 1100mb for my C: directory. And  remember, we are picking &#8220;New Virtual Disk&#8221; for the Virtaul Disk setup menu.  Enable your devices, such as cdrom and floppy. When it comes to networking there are a few options, I chose &#8220;Host-Only Networking&#8221;, which create a  &#8220;virual network&#8221; between the host OS and the VM.</p>
<p>If you already have a LAN up, choose &#8220;Bridged Networking&#8221;. If everything is  to your liking, click &#8220;Done&#8221;. By the way, dont worry about the ram issue just  yet.  Also, you can change the networking setup anytime.</p>
<p>Next, stick in your CDROM or boot diskette for your Virtual OS and click  &#8220;Power On.&#8221; Just go trough the steps to install the OS.</p>
<p>If you are using a RECOVERY DISK to install your OS, you must remember that  none of your special drivers are nesessary. VMware sets up virtual hardware,  if you ar using win32, then your NIC will be the AMD network card. This is  okay. Also, your display will be 16 colors and 640&#215;480 resolution, and cant  be changed until you get connected to the net is the VM.</p>
<p>Once you have it installed in will boot up. The boots for the VM are  typically slower than normal, but once it is done it will be better. The  first boot will take 5+ minutes. Now, back in the Linux console, use the  &#8220;ifconfig&#8221; command and see if there is a vmnet1 interface device. If so,  make sure it&#8217;s IP is 172.16.27.1. If not, you must bind that address to the  NIC, also, if you are running bridged networking, you can skip that step.</p>
<p>Now you must setup networking for the VM. It is fairly easy in window, just  right click on the &#8220;Network Neighborhood&#8221; icon and click &#8220;properties.&#8221;  Now  find TCP/IP for the AMD NIC. Select &#8220;properties&#8221; for it as well.   Now make the IP 172.16.27.2 then next part nessecitates another guide. You need to look at <a href="http://www.linuxhelp.net/guides/ipmasq/">Janou&#8217;s IP Masquerading Guide</a>, unless you already have it up. You must make the windows gateway 172.16.27.1 and setup DNS for  the VM according to the IP Masq Guide.</p>
<p>Once you get internet connectivity in the VM, go back to the vmware site and  download the VMware Tools for your VM OS. Installing this will tweak the OS  and also give you a virtual video card. This card will be able to do anything that X is setup for. The setup for Vmware Tools is very easy, and  thus needs little explanation. In windows, double-click on the file you  downloaded and it will run things through for you.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shinearth.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shinearth.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shinearth.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shinearth.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shinearth.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shinearth.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shinearth.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shinearth.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shinearth.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shinearth.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shinearth.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shinearth.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shinearth.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shinearth.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinearth.wordpress.com&amp;blog=10088378&amp;post=7&amp;subd=shinearth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shinearth.wordpress.com/2009/10/25/install-vmware-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ca1bdfa791f1f725d765d1bd291ff11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shinearth</media:title>
		</media:content>
	</item>
		<item>
		<title>install ATI driver to Linux Mint (Ubuntu)</title>
		<link>http://shinearth.wordpress.com/2009/10/24/install-ati-driver-to-linux-mint-ubuntu/</link>
		<comments>http://shinearth.wordpress.com/2009/10/24/install-ati-driver-to-linux-mint-ubuntu/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 04:40:31 +0000</pubDate>
		<dc:creator>shinearth</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mint]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://shinearth.wordpress.com/?p=3</guid>
		<description><![CDATA[follow this steps: sudo apt-get update sudo apt-get install linux-restricted-modules-$(uname -r) sudo apt-get install xorg-driver-fglrx sudo depmod -a add in: /etc/modules the line: fglrx sudo ln -s /usr/lib/dri /usr/lib/xorg/modules/dri use this: xorg.conf # /etc/X11/xorg.conf (xorg X Window System server configuration file) # # This file was generated by dexconf, the Debian X Configuration tool, using [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinearth.wordpress.com&amp;blog=10088378&amp;post=3&amp;subd=shinearth&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>follow this steps:</p>
<ul>
<li>sudo apt-get update</li>
<li>sudo apt-get install linux-restricted-modules-$(uname -r)</li>
<li>sudo apt-get install xorg-driver-fglrx</li>
<li>sudo depmod -a</li>
</ul>
<ul>
<li>add in: /etc/modules       the line: fglrx</li>
</ul>
<ul>
<li>sudo ln -s /usr/lib/dri /usr/lib/xorg/modules/dri</li>
</ul>
<p><strong>use this: xorg.conf</strong></p>
<p># /etc/X11/xorg.conf (xorg X Window System server configuration file)<br />
#<br />
# This file was generated by dexconf, the Debian X Configuration tool, using<br />
# values from the debconf database.<br />
#<br />
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.<br />
# (Type &#8220;man /etc/X11/xorg.conf&#8221; at the shell prompt.)<br />
#<br />
# This file is automatically updated on xserver-xorg package upgrades *only*<br />
# if it has not been modified since the last upgrade of the xserver-xorg<br />
# package.<br />
#<br />
# If you have edited this file but would like it to be automatically updated<br />
# again, run the following command:<br />
# sudo dpkg-reconfigure -phigh xserver-xorg</p>
<p>Section &#8220;Files&#8221;<br />
FontPath &#8220;/usr/share/X11/fonts/misc&#8221;<br />
FontPath &#8220;/usr/share/X11/fonts/cyrillic&#8221;<br />
FontPath &#8220;/usr/share/X11/fonts/100dpi/:unscaled&#8221;<br />
FontPath &#8220;/usr/share/X11/fonts/75dpi/:unscaled&#8221;<br />
FontPath &#8220;/usr/share/X11/fonts/Type1&#8243;<br />
FontPath &#8220;/usr/share/X11/fonts/100dpi&#8221;<br />
FontPath &#8220;/usr/share/X11/fonts/75dpi&#8221;<br />
FontPath &#8220;/usr/share/fonts/X11/misc&#8221;<br />
# path to defoma fonts<br />
FontPath &#8220;/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType&#8221;<br />
EndSection</p>
<p>Section &#8220;Module&#8221;<br />
Load &#8220;i2c&#8221;<br />
Load &#8220;bitmap&#8221;<br />
Load &#8220;ddc&#8221;<br />
Load &#8220;dri&#8221;<br />
Load &#8220;extmod&#8221;<br />
Load &#8220;freetype&#8221;<br />
Load &#8220;glx&#8221;<br />
Load &#8220;int10&#8243;<br />
Load &#8220;type1&#8243;<br />
Load &#8220;vbe&#8221;<br />
EndSection</p>
<p>Section &#8220;Extensions&#8221;<br />
Option &#8220;Composite&#8221; &#8220;false&#8221;<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;Generic Keyboard&#8221;<br />
Driver &#8220;kbd&#8221;<br />
Option &#8220;CoreKeyboard&#8221;<br />
Option &#8220;XkbRules&#8221; &#8220;xorg&#8221;<br />
Option &#8220;XkbModel&#8221; &#8220;pc105&#8243;<br />
Option &#8220;XkbLayout&#8221; &#8220;us&#8221;<br />
Option &#8220;XkbVariant&#8221; &#8220;latin9&#8243;<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;Configured Mouse&#8221;<br />
Driver &#8220;mouse&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/input/mice&#8221;<br />
Option &#8220;Protocol&#8221; &#8220;ExplorerPS/2&#8243;<br />
Option &#8220;ZAxisMapping&#8221; &#8220;4 5&#8243;<br />
Option &#8220;Buttons&#8221; &#8220;5&#8243;<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Identifier &#8220;Synaptics Touchpad&#8221;<br />
Driver &#8220;synaptics&#8221;<br />
Option &#8220;SendCoreEvents&#8221; &#8220;true&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/psaux&#8221;<br />
Option &#8220;Protocol&#8221; &#8220;auto-dev&#8221;<br />
Option &#8220;HorizScrollDelta&#8221; &#8220;0&#8243;<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Driver &#8220;wacom&#8221;<br />
Identifier &#8220;stylus&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/wacom&#8221; # Change to<br />
# /dev/input/event<br />
# for USB<br />
Option &#8220;Type&#8221; &#8220;stylus&#8221;<br />
Option &#8220;ForceDevice&#8221; &#8220;ISDV4&#8243; # Tablet PC ONLY<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Driver &#8220;wacom&#8221;<br />
Identifier &#8220;eraser&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/wacom&#8221; # Change to<br />
# /dev/input/event<br />
# for USB<br />
Option &#8220;Type&#8221; &#8220;eraser&#8221;<br />
Option &#8220;ForceDevice&#8221; &#8220;ISDV4&#8243; # Tablet PC ONLY<br />
EndSection</p>
<p>Section &#8220;InputDevice&#8221;<br />
Driver &#8220;wacom&#8221;<br />
Identifier &#8220;cursor&#8221;<br />
Option &#8220;Device&#8221; &#8220;/dev/wacom&#8221; # Change to<br />
# /dev/input/event<br />
# for USB<br />
Option &#8220;Type&#8221; &#8220;cursor&#8221;<br />
Option &#8220;ForceDevice&#8221; &#8220;ISDV4&#8243; # Tablet PC ONLY<br />
EndSection</p>
<p>Section &#8220;Device&#8221;<br />
Identifier &#8220;ATI Technologies, Inc. Radeon Xpress Series Generic&#8221;<br />
Driver &#8220;fglrx&#8221;<br />
BusID &#8220;PCI:1:5:0&#8243;<br />
EndSection</p>
<p>Section &#8220;Monitor&#8221;<br />
Identifier &#8220;Generic Monitor&#8221;<br />
Option &#8220;DPMS&#8221;<br />
EndSection</p>
<p>Section &#8220;Screen&#8221;<br />
Identifier &#8220;Default Screen&#8221;<br />
Device &#8220;ATI Technologies, Inc. Radeon Xpress Series Generic&#8221;<br />
Monitor &#8220;Generic Monitor&#8221;<br />
DefaultDepth 24<br />
SubSection &#8220;Display&#8221;<br />
Depth 1<br />
Modes &#8220;1280&#215;800&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 4<br />
Modes &#8220;1280&#215;800&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 8<br />
Modes &#8220;1280&#215;800&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 15<br />
Modes &#8220;1280&#215;800&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 16<br />
Modes &#8220;1280&#215;800&#8243;<br />
EndSubSection<br />
SubSection &#8220;Display&#8221;<br />
Depth 24<br />
Modes &#8220;1280&#215;800&#8243;<br />
EndSubSection<br />
EndSection</p>
<p>Section &#8220;ServerLayout&#8221;<br />
Identifier &#8220;Default Layout&#8221;<br />
Screen &#8220;Default Screen&#8221;<br />
InputDevice &#8220;Generic Keyboard&#8221;<br />
InputDevice &#8220;Configured Mouse&#8221;<br />
InputDevice &#8220;stylus&#8221; &#8220;SendCoreEvents&#8221;<br />
InputDevice &#8220;cursor&#8221; &#8220;SendCoreEvents&#8221;<br />
InputDevice &#8220;eraser&#8221; &#8220;SendCoreEvents&#8221;<br />
InputDevice &#8220;Synaptics Touchpad&#8221;<br />
EndSection</p>
<p>Section &#8220;DRI&#8221;<br />
Mode 0666<br />
EndSection</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shinearth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shinearth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shinearth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shinearth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shinearth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shinearth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shinearth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shinearth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shinearth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shinearth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shinearth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shinearth.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shinearth.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shinearth.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shinearth.wordpress.com&amp;blog=10088378&amp;post=3&amp;subd=shinearth&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shinearth.wordpress.com/2009/10/24/install-ati-driver-to-linux-mint-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8ca1bdfa791f1f725d765d1bd291ff11?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shinearth</media:title>
		</media:content>
	</item>
	</channel>
</rss>
