<?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> &#187; lenny</title>
	<atom:link href="http://www.oojahtech.com/tag/lenny/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oojahtech.com</link>
	<description></description>
	<lastBuildDate>Thu, 22 Jul 2010 17:16:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>NFS (Network File Server) in Debian Lenny</title>
		<link>http://www.oojahtech.com/2009/09/25/nfs-network-file-server-in-debian-lenny/</link>
		<comments>http://www.oojahtech.com/2009/09/25/nfs-network-file-server-in-debian-lenny/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 06:16:15 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[NFS]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Server apt-get install nfs-kernel-server nfs-common portmap Client apt-get install nfs-common portmap edit /etc/exports to identify the path to the directory you wish to share, and indicate the IP address(es) (use * as a wildcard) you wish to have access to you files. /home/user/myfiles 192.168.0.*(rw,root_squash) sudo exportfs -a Access from Windows XP Download the MS Unix [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Server</strong></p>
<blockquote><p>apt-get install nfs-kernel-server nfs-common portmap</p></blockquote>
<p><strong>Client</strong></p>
<blockquote><p>apt-get install nfs-common portmap</p></blockquote>
<p>
edit /etc/exports to identify the path to the directory you wish to share, and indicate the IP address(es) (use * as a wildcard) you wish to have access to you files.</p>
<blockquote><p>/home/user/myfiles 192.168.0.*(rw,root_squash)<br />
<br />sudo exportfs -a
</p></blockquote>
<p><strong>Access from Windows XP</strong></p>
<p>
Download the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=896C9688-601B-44F1-81A4-02878FF11778&amp;displaylang=en">MS Unix layer</a> and run self extractor and execute SfuSetup. click change the default behavior to case sensitive and enable set uid behavior select local username mapping server and password group files. copy /etc/passwd and /etc/group to your windows computer and specify path and reboot computer</p>
<p>
run services for Unix administrations and in the NFS client make all user groups and others read and writable. open Windows Explorer under network places you should see a NFS tree, and within it you should see your servers IP address. if everything worked you should have access to your NFS directories via windows.
</p>
<p><strong>Access in Linux</strong></p>
<p>To mount as root (create desired mount point first and replace IP with your servers IP):</p>
<p>mount 200.100.10.1:/home/nfs /mnt/nfs
</p>
<p>to mount on boot edit/etc/fstab the extra options control read and write access by blocks)</p>
<blockquote><p>200.100.10.1:/home/nfs    /pub   nfs    rsize=8192,wsize=8192,timeo=14,intr</p></blockquote>
<p><em><br />
it should be noted that vfat and ntfs filesytems have issues with the nfs protocol and can result in sporadic performance and data corruption.</em></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/09/25/nfs-network-file-server-in-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian Lenny on an ASUS Eee PC 1005HA</title>
		<link>http://www.oojahtech.com/2009/09/23/debian-lenny-on-an-asus-eee-pc-1005ha/</link>
		<comments>http://www.oojahtech.com/2009/09/23/debian-lenny-on-an-asus-eee-pc-1005ha/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 06:36:10 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Download the netinst cd Remove all partition tables on pendrive Download boot image As root preform (where as /dev/sdX is your USB device): zcat boot.img.gz > /dev/sdX Copy iso image to flashdrive Plug the pendrive into the netbook and boot (hold escape at the bios splash to select the boot device). Begin install as normal. [...]]]></description>
			<content:encoded><![CDATA[<p>Download the <a href="http://www.us.debian.org/CD/netinst/">netinst cd</a></p>
<p>Remove all partition tables on pendrive</p>
<p>Download <a href="http://ftp.us.debian.org/debian/dists/lenny/main/installer-i386/current/images/hd-media/boot.img.gz">boot image</a></p>
<p>As root preform (where as /dev/sdX is your USB device):</p>
<blockquote><p>zcat boot.img.gz > /dev/sdX</p></blockquote>
<p>Copy iso image to flashdrive</p>
<p>Plug the pendrive into the netbook and boot (hold escape at the bios splash to select the boot device). Begin install as normal. No network device will be found, select no etherent card and continue as normal. When it came to configuring apt I hit the go back button till I am asked if I want to continue without a network connection.  The install will finish and reboot. Upon reboot you are presented with a base line system.</p>
<p>Format pendrive to ext3 and copy the 2.6.31 kernel <a href="http://dl.robertalks.com/kernel/2.6.31-final/linux-image-2.6.31-final_1_i386.deb">image</a> and <a href="http://dl.robertalks.com/kernel/2.6.31-final/linux-headers-2.6.31-final_1_i386.deb">headers</a> packages; thanks to <a href="http://blog.robertalks.com/index.php/2009/09/10/kernel-2-6-31-final-released-for-debianubuntu-final/">Robertalks.com</a> </p>
<p>Login as root and mount flash drive and install the image first then the headers with dpkg. reboot and the 2.6.31 kernal will be the default on grub. Log into root again, plug in an ethernet cable connected to a router/modem and issue the command:</p>
<blockquote><p>dhclient eth0</p></blockquote>
<p>Check the connection by updating apt and see that all entries in the sources.list where found.  Edit /etc/apt/sources.list with nano and add my favorite mirror.</p>
<blockquote><p>deb http://mirror.its.uidaho.edu/pub/debian/ lenny main cont rib non-free</p></blockquote>
<p>Apt-get update and upgrade and all is well.  Now, install a basic X environment and configure</p>
<blockquote><p>apt-get install x-window-system-core fluxbox<br />
Xorg -configure<br /> <br />
cp xorg.conf.net /etc/X11/xorg.conf
</p></blockquote>
<p>Install sudo with apt-get and configure </p>
<blockquote><p>apt-get install sudo<br />
visudo</p></blockquote>
<p>Towards the end remove the comment from the %sudo line and replace NOPASSWD: with (All) and hit ctrl X to exit. Add the regular user to the sudo group</p>
<blockquote><p>
gpasswd -a myuser sudo</p></blockquote>
<p>Exit root and login as regular user and edit .xinitrc</p>
<blockquote><p>
exec startfluxbox</p></blockquote>
<p>
Test X with the command startx and there should be a working fluxbox desktop. </p>
<p>
Open up a terminal and type sudo tasksel. Select laptop and press ok, tasksell will then fetch all laptop related packages and configure them. Then I install synaptic, which has the added benefit of installing a general gtk enviroment for future gtk application. Also install gtk-theme-switch and gtk-engines. Type switch2 to adjust the gtk-theme for you X enviroment (I selected crux). Underneath applications system package management find synaptic. Upon running it the gksu dialog pops up; type in root (to change to sudo mode open terminal and type gksu-properties). With synaptic, install laptop-mode-tools laptop-net.</p>
<p>To get wireless access add to the /etc/apt/sources.list </p>
<blockquote><p>deb http://www.backports.org/debian lenny-backports main contrib non-free</p></blockquote>
<p>
Update apt and install debian-backports-keyring and wicd. Afterwards add the user to the netdev group and restart dbus.</p>
<blockquote><p>Sudo gpasswd -a user netdev.<br />
Sudo /etc/init.d/dbus restart</p></blockquote>
<p>Exit fluxbox and exit user. Log back in as user and startx. In the applications under network and monitor WICD is now listed. Click on it and it loads in the system tray. Right click and find the available wireless services.</p>
<p>to get sound working install alsa-utils and its dependencies. Then run sudo alsaconf and select hda-intel</p>
<p>add deb http://eeepc.debian.net/debian lenny main contrib non-free to /etc/apt/sources.list then:</p>
<blockquote><p>wget http://eeepc.debian.net/debian/archive-key-eeepc.asc<br />
sudo apt-key add archive-key-eeepc.asc</p></blockquote>
<p>Install eeepc-acpi-scripts</p>
<p>
To get the webcam to work first download the <a href="http://dl.robertalks.com/kernel/2.6.31-final/linux-source-2.6.31-final_1_all.deb">2.6.31 source</a> and install. Now, install v4l-conf dov4l gspca-source libpt-plugins-v4l2 gcc-4.2 and run as root:</p>
<p>
I spent over 3 hours trying to get the webcam working with no luck. After walking away from it, I downgraded to the 2.6.30 image and headers found in the backports, and could see myself when I ran luvcview.However, the trade off is that my eth0 device is no longer availible, but I always connect with wireless with my netbook.</p>
<p>And now I have a basic environment in which I can start to install applications and configure my netbook. I will continue in another post to describe specific configurations to get the most out of Debian on  the Asus eee PC 1005HA.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/09/23/debian-lenny-on-an-asus-eee-pc-1005ha/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ScanDisk Sansa Fuze on Debian Lenny</title>
		<link>http://www.oojahtech.com/2009/08/31/scandisk-sansa-fuze-on-debian-lenny/</link>
		<comments>http://www.oojahtech.com/2009/08/31/scandisk-sansa-fuze-on-debian-lenny/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 01:31:42 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[Sans Fuze]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I wated some good hours trying to figure out how to get the Sansa Fuze tow work on my Debian Lenny Desktop. The first time I plugged it in it opened the device in Thunar and I dragged a folder of music into the MUSIC folder. I unplugged the Fuze and found the tags were [...]]]></description>
			<content:encoded><![CDATA[<p>I wated some good hours trying to figure out how to get the Sansa Fuze tow work on my Debian Lenny Desktop. The first time I plugged it in it opened the device in Thunar and I dragged a folder of music into the MUSIC folder. I unplugged the Fuze and found the tags were not preserved. So I booted into windows and the files where not there, So I dragged them in again. Checked my fuse and I had two entries of the same music, one with the tags and one without the tags. Went back to Linux, plugged it in and it slowed down my file-system. So I did some research and some testing and many hours later I think I have this figured out.
</p>
<p>The problem I was having is that the Fuze is set to autodetect the MTP and MSC/UMS practicals. I am 95% sure this is what screwed me up! So this is what I did. First I went into windows and updated my firmware via <a href="http://kb.sandisk.com/app/answers/detail/a_id/278/session/L2F2LzEvc2lkLzljaTZUeEdq/kw/firmware/r_id/101834">these instructions</a> (if you don&#8217;t have windows access try <a href="http://forums.sandisk.com/sansa/board/message?board.id=sansafuse&amp;thread.id=23276">these instructions</a>) Now, went into the Fuze settings and formatted the device (the music I had on there was already on my computer). Next I entered the Fuze settings and found the USB mode and changed it from auto detect to MSC. Plugged it into my Debian Lenny Desktop and dragged my music into the Music folder, and did the same in Windows and all seems to work now. </p>
<p>
Apparently using the device interchangeably between the two systems and using both practicals was a lethal combination, but everything seems to be working now and the salution is rather simple, but the cause of the problem was not as obvious. I had to spend a few hours bouncing from forum to forum hearing smiler problems, but non of the solutions worked for me. It should also be noted there are differences between the V01 and V02 firmware sets for the Fuze. </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/08/31/scandisk-sansa-fuze-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH on Debian Lenny</title>
		<link>http://www.oojahtech.com/2009/08/12/ssh-on-debian-lenny/</link>
		<comments>http://www.oojahtech.com/2009/08/12/ssh-on-debian-lenny/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 21:27:16 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[SSH allows you to remotely access your system through command line on Linux. When I was visiting family, one of the things I wanted to do with their home system was enable SSH access so that I could remotely login from my home computer 500 miles away to do any needed maintenance or troubleshooting. I [...]]]></description>
			<content:encoded><![CDATA[<p>SSH allows you to remotely access your system through command line on Linux. When I was visiting family, one of the things I wanted to do with their home system was enable SSH access so that I could remotely login from my home computer 500 miles away to do any needed maintenance or troubleshooting. I had become exhausted by trying to troubleshoot Ubuntu over the telephone when they where having simple problems. The issue is that I speak techno babble, particularly the Linuxese dialect, and the speak the Microsoftish dialect of the layman.  After I had them running with a basic desktop on Debian Lenny I did some research on SSH.  The first thing to understand is the computer you wish to access with SSH is the host/server. The computer in which you are accessing the host/server is the Client. You first need to configure your host computer. The host needs to be running the SSH daemon.</p>
<blockquote><p>sudo apt-get install openssh-server</p></blockquote>
<p>you can edit the /etc/ssh/sshd_config file to indicate changes such as the port number to be used. This includes denying and granting access to specific users and groups. It is highly recommended to deny access to the user and group root:</p>
<blockquote><p>DenyUsers root</p>
<p>DenyGroups root</p></blockquote>
<p>if you wish to allow a specific user or group:</p>
<blockquote><p>AllowUsers username</p>
<p>AllowGroups groupname</p></blockquote>
<p>The user names and group names can be strung together and seperated by a space. Once finished save the file and exit. Restart the daemon</p>
<blockquote><p>sudo /etc/init.d/ssh restart</p></blockquote>
<p>Now your host server is completed and ready to be accessed from a remote computer. Use ifconfig to find your local network IP address, or alternatively you can use your that computer&#8217;s host. Generally Debian comes with the SSH client out of the box. You can double check to see if openssh-client is installed. To login to the host computer you use the ssh command and identify the user name and host:</p>
<blockquote><p>ssh user@127.168.0.2</p></blockquote>
<p>You will be prompted if you wish to continue connection (type yes) and then it will ask for the password for your user. Once succsessfully logined in you will be given a command line indicating the user and host name such as:</p>
<blockquote><p>remote@fileserver:~$</p></blockquote>
<p>Even though SSH sounds complicated, it is reletively easy to implement. There are varius configuration for tightened security one can try with SSH. One of the simplest security precautions is to change your port number in the /etc/ssh/sshd_config file. The SSH client will default to port 22. To specify a different port type:</p>
<blockquote><p>ssh -p 188 remote@127.168.0.2</p></blockquote>
<p>You are now ready to remote access your computer with SSH.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/08/12/ssh-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4gigs of RAM in Debian Lenny 32bit</title>
		<link>http://www.oojahtech.com/2009/07/17/4gigs-of-ram-in-debian-lenny-32bit/</link>
		<comments>http://www.oojahtech.com/2009/07/17/4gigs-of-ram-in-debian-lenny-32bit/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 22:55:57 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[4gig]]></category>
		<category><![CDATA[bigmem]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Following a modified instruction from Softlayer I was able to get my full 4gigs of ram recognized by Debian Lenny 32bit with the help of bigmem. I also had to install the bigmem linux-headers and nvidia-kernel. sudo apt-get install linux-images-2.6-686 linux-headers-2.6.26-2-686-bigmem linux-image-2.6.26-2-686-bigmem nvidia-kernel-2.6.26-2-686-bigmem I also had to download the proprietary nVidia driver and repeated these [...]]]></description>
			<content:encoded><![CDATA[<p>Following a modified instruction from <a href="http://knowledgelayer.softlayer.com/questions/294/Debian+isn%27t+showing+all+my+ram!" target="_blank">Softlayer</a> I was able to get my full 4gigs of ram recognized by Debian Lenny 32bit with the help of bigmem. I also had to install the bigmem linux-headers and nvidia-kernel.</p>
<blockquote><p>sudo apt-get install linux-images-2.6-686 linux-headers-2.6.26-2-686-bigmem linux-image-2.6.26-2-686-bigmem nvidia-kernel-2.6.26-2-686-bigmem</p></blockquote>
<p>I also had to download the proprietary nVidia driver and <a href="http://fishbowl42.com/blog/2009/07/04/nvidia-and-debian-lenny-64bit/">repeated these instructions.</a> Reboot the system and check you memory ussage.</p>
<blockquote><p>free -m</p></blockquote>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/07/17/4gigs-of-ram-in-debian-lenny-32bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switching to 32bit from 64bit Debian</title>
		<link>http://www.oojahtech.com/2009/07/15/switching-to-32bit-from-64bit-debian/</link>
		<comments>http://www.oojahtech.com/2009/07/15/switching-to-32bit-from-64bit-debian/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 22:03:45 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[32 bit]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[The other day I switched back to a 32bit Debian Lenny install on my main computer. The advantages to a 64bit system on a desktop are debatable, but rather minimal. The only real advantage and motivation to using 64bit was I had a system with 4 gigs of memory. However, some programs acquired from third [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I switched back to a 32bit Debian Lenny install on my main computer. The advantages to a 64bit system on a desktop are debatable, but rather minimal. The only real advantage and motivation to using 64bit was I had a system with 4 gigs of memory. However, some programs acquired from third party sources are not compiled for 64bit kernels, such as Mozilla&#8217;s Binaries for Firefox. With that said, where a 64bit OS really excels is with business grade servers.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/07/15/switching-to-32bit-from-64bit-debian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Iceweasel 3.5 on Debian Lenny</title>
		<link>http://www.oojahtech.com/2009/07/13/iceweasel-3-5-on-debian-lenny/</link>
		<comments>http://www.oojahtech.com/2009/07/13/iceweasel-3-5-on-debian-lenny/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 23:29:56 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[iceweasel]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Since initially attempting to install Firefox 3.5 on Debian Lenny, I found the package I had made from compiled source was rather blouted, and the processes itself was rather tedious and harry and have been looking for other alternatives. First I tried Swiftfox, but was frustrated by trying to get flash to work. In the [...]]]></description>
			<content:encoded><![CDATA[<p>Since initially attempting to install Firefox 3.5 on Debian Lenny, I found the package I had made from compiled source was rather blouted, and the processes itself was rather tedious and harry and have been looking for other alternatives. First I tried <a href="http://www.getswiftfox.com/" target="_blank">Swiftfox</a>, but was frustrated by trying to get flash to work. In the past I have used <a href="http://swiftweasel.tuxfamily.org/" target="_blank">Swiftweasel</a>, but a 3.5 current has not been released yet.  Finaly I found <a href="http://glandium.org/blog/?p=406" target="_blank">glandium&#8217;s blog entry for installing Iceweasel 3.5 from experimental</a>. I found I had to midify his instruction just slightly.</p>
<p>First is I added the testing and experimental repositories to /etc/apt/sources.list</p>
<blockquote><p>#TESTING AND EXPERIMENTAL<br />
deb http://ftp.fr.debian.org/debian testing main<br />
deb http://ftp.fr.debian.org/debian experimental main</p></blockquote>
<p>then I preformed these commands in terminal:</p>
<blockquote><p>sudo apt-get update<br />
sudo apt-get install -t testing libstartup-notification0 libsqlite3-0 libnss3-1d libhunspell-1.2-0 libasound2 libxcb1<br />
apt-get install iceweasel/experimental</p></blockquote>
<p>Then I commented out the testing and experimental entries in /etc/apt/sources.list and performed an upgrade. To get java and flash to work I simply had to install them as usual.</p>
<blockquote><p>sudo apt-get install flashplugin-nonfree sun-java6-plugin</p></blockquote>
<p>Thus far I have found this the easiest way to get a Firefox 3.5 based build running on Debian Lenny. However, I am no longer running a strictly stable release of Debian, but with the other third party and backport repositories I use I don&#8217;t feel bad about this. For security issues Firefox/Iceweasel/Swiftfox is one of the few programs I actually desire to have the latest release and that it is the most used program on my desktop.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/07/13/iceweasel-3-5-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Compiz Fusion for Debian Lenny</title>
		<link>http://www.oojahtech.com/2009/07/06/compiz-fusion-for-debian-lenny/</link>
		<comments>http://www.oojahtech.com/2009/07/06/compiz-fusion-for-debian-lenny/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:10:49 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[If you fallow the instructions at Repository of Shame you can have Compiz-Fusion power your Gnome or XFCE desktop for Debian Lenny. Once the repository is added just: sudo apt-get install compiz compiz-fusion-extras compiz-fusion-gnome compiz-fusion-plugins-unstable compiz-fusion-unsuport fusion-icon You can activate the fusion-icon for compiz to take effect. To do this at system start up in [...]]]></description>
			<content:encoded><![CDATA[<p>If you fallow the instructions at <a href="http://shame.tuxfamily.org/repo/?cat=11" target="_blank">Repository of Shame</a> you can have Compiz-Fusion power your Gnome or XFCE desktop for Debian Lenny. Once the repository is added just:</p>
<blockquote><p>sudo apt-get install compiz compiz-fusion-extras compiz-fusion-gnome compiz-fusion-plugins-unstable compiz-fusion-unsuport fusion-icon</p></blockquote>
<p>You can activate the fusion-icon for compiz to take effect. To do this at system start up in XFCE use Session and Startup from Settings in the menu and fusion-icon to your start up programs.</p>
<p>In the Settings menu use the CompizConfig setting manager to tweak your desktop with special effects.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/07/06/compiz-fusion-for-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OpenOffice 3 on Debian Lenny</title>
		<link>http://www.oojahtech.com/2009/07/06/openoffice-3-on-debian-lenny/</link>
		<comments>http://www.oojahtech.com/2009/07/06/openoffice-3-on-debian-lenny/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 18:55:11 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[backports]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[OpenOffice is the premier open source office suite. However Lenny ships with the older 2.x version of OpenOffice. However, you can add the backports repositories and make sure it defaults to the backports repos in synaptic. Now you can install OpenOffice 3. sudo apt-get install openoffice.org openoffice.org-gtk You can substitute openoffice.org-kde if needed.]]></description>
			<content:encoded><![CDATA[<p>OpenOffice is the premier open source office suite. However Lenny ships with the older 2.x version of OpenOffice. However, you can add the <a href="http://backports.org/dokuwiki/doku.php?id=instructions" target="_blank">backports repositories</a> and make sure it defaults to the backports repos in synaptic. Now you can install OpenOffice 3.</p>
<blockquote><p>sudo apt-get install openoffice.org openoffice.org-gtk</p></blockquote>
<p>You can substitute openoffice.org-kde if needed.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/07/06/openoffice-3-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nVidia and Debian Lenny 64bit</title>
		<link>http://www.oojahtech.com/2009/07/04/nvidia-and-debian-lenny-64bit/</link>
		<comments>http://www.oojahtech.com/2009/07/04/nvidia-and-debian-lenny-64bit/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 18:55:45 +0000</pubDate>
		<dc:creator>fishbowl</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Tutorial & How-To's]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[stable]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Upon a fresh install of X, Debian defaults to the open source NV driver for nVidia graphics cards. Since I  used Kenshi Muto’s custom Lenny install iso I had the latest 2.6.30 kernel by default and had to do some tweaking to get the preparatory nVidia driver to work. First I had to download the [...]]]></description>
			<content:encoded><![CDATA[<p>Upon a fresh install of X, Debian defaults to the open source NV driver for nVidia graphics cards. Since I  used <a href="http://kmuto.jp/b.cgi/debian/d-i-2630-lenny.htm" target="_blank">Kenshi Muto’s custom Lenny install iso</a> I had the latest 2.6.30 kernel by default and had to do some tweaking to get the preparatory nVidia driver to work. First I had to download the following files from Sid:</p>
<blockquote><p><a href="http://packages.debian.org/sid/linux-headers-2.6.30-1-amd64" target="_blank">linux-headers-2.6.30-1-amd64</a><br />
<a href="http://packages.debian.org/sid/linux-headers-2.6.30-1-common" target="_blank">linux-headers-2.6.30-1-common</a><br />
<a href="http://packages.debian.org/sid/linux-kbuild-2.6.30" target="_blank">linux-kbuild-2.6.30</a></p></blockquote>
<p>If you are not using the 2.6.30 kernal simply type this:</p>
<blockquote><p>apt-get install build-essential linux-headers-$(uname -r)</p></blockquote>
<p>Exit Xorg. Now that you have the headers and kbuild we want to create a symlink so that your system has no problems finding them; Then install the nvidia-glx and fetch the preparatory drive with wget (remember to make it executable):</p>
<blockquote><p>cd /usr/src<br />
sudo ln -s linux-headers-$(uname -r) linux<br />
cd ~/<br />
sudo apt-get nvidi-glx<br />
wget http://us.download.nvidia.com/XFree86/Linux-x86_64/185.18.14/NVIDIA-Linux-x86_64-185.18.14-pkg2.run<br />
sudo chmod +x NVIDIA-Linux-x86_64-185.18.14-pkg2.run<br />
sudo ./NVIDIA-Linux-x86_64-185.18.14-pkg2.run</p></blockquote>
<p>Allow the install script to download the necessary files. Once that is finished reboot your system and when you next start X you should see the nVidia logo briefly, indicating it worked.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.oojahtech.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.oojahtech.com/2009/07/04/nvidia-and-debian-lenny-64bit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
