<?xml version="1.0" encoding="utf-8"?>
<!-- generator="alien-green-chile-technology/1.1" -->

<rss version="2.0">
	<channel>
		<title>Montana Freelance Technology - Latest Items</title>
		<link>http://mtfreetech.us</link>
		<description>Latest items from the Montana Freelance Technology home page.</description>
		<language>en</language>
		<copyright>Copyright J L Kolpin - All Rights Reserved</copyright>
		<ttl>1440</ttl>
		<item>
			<title>My Ustream Channel</title>
			<link>http://mtfreetech.us</link>
			<description>&lt;p&gt;This summer I am going to attempt to do some live streams via my Android phone using Ustream.&lt;/p&gt;

&lt;center&gt;&lt;iframe src=&quot;http://www.ustream.tv/embed/10651483&quot; width=&quot;360&quot; height=&quot;240&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border: 0px none transparent;&quot;&gt;&lt;/iframe&gt;&lt;/center&gt;
</description>
		</item>
		<item>
			<title>Debian Squeeze EEEPC Touchpad Scrolling and Click</title>
			<link>http://mtfreetech.us</link>
			<description>Just wanted to drop this in here because it was a hard search. This is what is required to enable two finger scrolling and touchpad clicks in /etc/X11/xorg.conf.

First the touchpad stanza:

Section &quot;InputDevice&quot;
        Identifier      &quot;Touchpad&quot;
        Driver          &quot;synaptics&quot;
        Option          &quot;Device&quot;                &quot;/dev/input/mouse0&quot;
        Option          &quot;Protocol&quot;              &quot;auto-dev&quot;
        Option          &quot;VertTwoFingerScroll&quot;   &quot;1&quot;
        Option          &quot;HorizTwoFingerScroll&quot;  &quot;1&quot;
        Option          &quot;TapButton1&quot;            &quot;1&quot;
        Option          &quot;TapButton2&quot;            &quot;2&quot;
        Option          &quot;TapButton3&quot;            &quot;3&quot;
EndSection

Next the server layout:

Section &quot;ServerLayout&quot;
	Identifier     &quot;X.org Configured&quot;
	Screen      0  &quot;Screen0&quot; 0 0
	InputDevice    &quot;Touchpad&quot; &quot;CorePointer&quot;
	InputDevice    &quot;Keyboard0&quot; &quot;CoreKeyboard&quot;
EndSection</description>
		</item>
		<item>
			<title>Mac G3 iBook Debian PPC xorg Setup</title>
			<link>http://mtfreetech.us</link>
			<description>&lt;p&gt;I only found tidbits of information here and there that covered what works. I wanted to share what I did on a G3 iBook to get things working with Squeeze.&lt;/p&gt;

&lt;p&gt;First things first.. Go to &lt;a href=&#039;http://www.debian.org&#039;&gt;Debian.org&lt;/a&gt; and download the PPC Disk 1 installer for XFCE-LXDE. Once you have burned the iso, do the install however you would do it but when it ejects the disk, just pop it right back in.&lt;/p&gt;
&lt;p&gt;Reboot the machine and hold the &quot;c&quot; key down at boot in order to boot from the cd-rom again. This time when it shows you the installer list you enter &quot;rescue&quot; without the quotes. Run through the rescue disk setup and then have it open a terminal on a disk. On mine it was /dev/hda3.&lt;/p&gt;
&lt;p&gt;The terminal is tricky to see and shows up at the bottom of the screen in the blue/grey box. in the terminal try giving the ls command to see what you can see. If you see nothng, try &quot;cd /&quot; to cd to root and then ls again. you should see the root partition file system. Try all of them until you find yours.&lt;/p&gt;
&lt;p&gt;Once you found root, ls /etc/init.d and make sure gdm is present the&lt;/p&gt;
&lt;p&gt;mv /etc/init.d/gdm /etc/init.d/gdm.disabled&lt;/p&gt;
&lt;p&gt;Finally type &quot;exit&quot; no quotes and reboot. The reason you needed to do that was because the default xorg settings are incorrect and cause the entire machine to lock up tight.&lt;/p&gt;
&lt;p&gt;Once rebooted to the login prompt, logged in as root you need to create a defualt xorg.conf because one doesn&#039;t exist yet.&lt;/p&gt;
&lt;p&gt;Xorg -configure&lt;/p&gt;
&lt;p&gt;Things will flash, it will probably error out, but you will have an xorg.conf.new in your /root directory. Now you have to copy your config to /etc/X11/xorg.conf&lt;/p&gt;
&lt;p&gt;cp /root/corg.conf.new /etc/X11/xorg.conf&lt;/p&gt;
&lt;p&gt;Nest xorg.conf had to be edited just as so using nano or joe &quot;nano /etc/X11/xorg.conf&quot;.&lt;/p&gt;
&lt;p&gt;
Section &quot;ServerLayout&quot;
	Identifier     &quot;X.org Configured&quot;
	Screen      0  &quot;Screen0&quot; 0 0
	InputDevice    &quot;Mouse0&quot; &quot;CorePointer&quot;
	InputDevice    &quot;Keyboard0&quot; &quot;CoreKeyboard&quot;
EndSection

Section &quot;Files&quot;
	ModulePath   &quot;/usr/lib/xorg/modules&quot;
	FontPath     &quot;/usr/share/fonts/X11/misc&quot;
	FontPath     &quot;/usr/share/fonts/X11/cyrillic&quot;
	FontPath     &quot;/usr/share/fonts/X11/100dpi/:unscaled&quot;
	FontPath     &quot;/usr/share/fonts/X11/75dpi/:unscaled&quot;
	FontPath     &quot;/usr/share/fonts/X11/Type1&quot;
	FontPath     &quot;/usr/share/fonts/X11/100dpi&quot;
	FontPath     &quot;/usr/share/fonts/X11/75dpi&quot;
	FontPath     &quot;/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType&quot;
	FontPath     &quot;built-ins&quot;
EndSection

Section &quot;Module&quot;
	Load  &quot;extmod&quot;
	Load  &quot;dbe&quot;
	Load  &quot;record&quot;
	Load  &quot;dri&quot;
	Load  &quot;dri2&quot;
	Load  &quot;glx&quot;
EndSection

Section &quot;InputDevice&quot;
	Identifier  &quot;Keyboard0&quot;
	Driver      &quot;kbd&quot;
EndSection

Section &quot;InputDevice&quot;
	Identifier  &quot;Mouse0&quot;
	Driver      &quot;mouse&quot;
	Option	    &quot;Protocol&quot; &quot;auto&quot;
	Option	    &quot;Device&quot; &quot;/dev/input/mice&quot;
	Option	    &quot;ZAxisMapping&quot; &quot;4 5 6 7&quot;
EndSection

Section &quot;Monitor&quot;
	Identifier   &quot;Monitor0&quot;
	VendorName   &quot;Monitor Vendor&quot;
	ModelName    &quot;Monitor Model&quot;
	HorizSync	50.0 - 60.0
	VertRefresh	43.0 - 117.0
#	Option		&quot;DPMS&quot; 
EndSection

Section &quot;Device&quot;
        ### Available Driver options are:-
        ### Values: &lt;i&gt;: integer, &lt;f&gt;: float, &lt;bool&gt;: &quot;True&quot;/&quot;False&quot;,
        ### &lt;string&gt;: &quot;String&quot;, &lt;freq&gt;: &quot;&lt;f&gt; Hz/kHz/MHz&quot;
        ### [arg]: arg optional
        #Option     &quot;NoAccel&quot;            	# [&lt;bool&gt;]
        #Option     &quot;SWcursor&quot;           	# [&lt;bool&gt;]
        #Option     &quot;Dac6Bit&quot;            	# [&lt;bool&gt;]
        #Option     &quot;Dac8Bit&quot;            	# [&lt;bool&gt;]
        #Option     &quot;DMAForXv&quot;           	# [&lt;bool&gt;]
        #Option     &quot;ForcePCIMode&quot;       	# [&lt;bool&gt;]
        #Option     &quot;CCEPIOMode&quot;         	# [&lt;bool&gt;]
        #Option     &quot;CCENoSecurity&quot;      	# [&lt;bool&gt;]
        #Option     &quot;CCEusecTimeout&quot;     	# &lt;i&gt;
        #Option     &quot;AGPMode&quot;            	# &lt;i&gt;
        #Option     &quot;AGPSize&quot;            	# &lt;i&gt;
        #Option     &quot;RingSize&quot;           	# &lt;i&gt;
        #Option     &quot;BufferSize&quot;         	# &lt;i&gt;
        #Option     &quot;EnablePageFlip&quot;     	# [&lt;bool&gt;]
        #Option     &quot;Display&quot;            	# &lt;str&gt;
        #Option     &quot;PanelWidth&quot;         	# &lt;i&gt;
        #Option     &quot;PanelHeight&quot;        	# &lt;i&gt;
        #Option     &quot;ProgramFPRegs&quot;      	# [&lt;bool&gt;]
        #Option     &quot;UseFBDev&quot;           	# [&lt;bool&gt;]
        #Option     &quot;VideoKey&quot;           	# &lt;i&gt;
        #Option     &quot;ShowCache&quot;          	# [&lt;bool&gt;]
        #Option     &quot;VGAAccess&quot;          	# [&lt;bool&gt;]
	Identifier  &quot;Card0&quot;
	Driver      &quot;r128&quot;
	VendorName  &quot;ATI Technologies Inc&quot;
	BoardName   &quot;Rage Mobility M3 AGP 2x&quot;
	BusID       &quot;PCI:0:16:0&quot;
	Option	    &quot;UseFBDev&quot;	&quot;True&quot;
EndSection

Section &quot;Screen&quot;
	Identifier &quot;Screen0&quot;
	Device     &quot;Card0&quot;
	Monitor    &quot;Monitor0&quot;
	DefaultDepth	24
	SubSection &quot;Display&quot;
		Depth     24
		Modes	  &quot;1024x768&quot;
	EndSubSection
EndSection
&lt;/p&gt;
&lt;p&gt;# cp /etc/init.d/gdm.disabled /etc/init.d/gdm&lt;/p&gt;
&lt;p&gt;# /etc/init.d/gdm/start&lt;/p&gt;
&lt;p&gt;Woohoo! (I hope this helped!).&lt;/p&gt;
</description>
		</item>
		<item>
			<title>Debian Multimedia</title>
			<link>http://mtfreetech.us</link>
			<description>&lt;p&gt;&lt;a href=&#039;http://debian-multimedia.org/&#039; target=&#039;_blank&#039;&gt;http://debian-multimedia.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A repository of (I believe) mostly non-free multimedia related packages. If you want the most multimedia capabilities on your Debian machine, this repository is pretty much necessary. Just as a reminder, this is probably only a good idea for a desktop and not a server/host for the most part.&lt;/p&gt;
&lt;p&gt;I&#039;m not posting any repository links because they could change. It is best just to go to their site and get the latest information.&lt;/p&gt;

</description>
		</item>
		<item>
			<title>Rich Guy To Obama: Raise My Taxes Please </title>
			<link>http://mtfreetech.us</link>
			<description>&lt;div style=&#039;text-align:center;&#039;&gt;&lt;iframe width=&quot;339&quot; height=&quot;230&quot; src=&quot;https://www.youtube.com/embed/2upNNFLoA_Y?rel=0&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;p&gt;I just thought this was kind of funny. The guy probably has more money than Obama.&lt;/p&gt;</description>
		</item>
	</channel>
</rss>
