<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>LinuxQuestions.org - Blogs</title>
		<link>http://www.linuxquestions.org/questions/blog.php</link>
		<description>LinuxQuestions.org offers a free Linux forum where Linux newbies can ask questions and Linux experts can offer advice. Topics include security, installation, networking and much more.</description>
		<language>en</language>
		<lastBuildDate>Fri, 20 Nov 2009 22:03:45 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://e1h7.simplecdn.net/lqcdn/images/questions/images/misc/rss.jpg</url>
			<title>LinuxQuestions.org - Blogs</title>
			<link>http://www.linuxquestions.org/questions/blog.php</link>
		</image>
		<item>
			<title>step by step configuration of vpn server</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2426</link>
			<pubDate>Fri, 20 Nov 2009 12:54:53 GMT</pubDate>
			<description>Dear all, 
 
please tell me the vpn server configuration and also tell me how to subscribe the threads easly. 
 
 
Thanks</description>
			<content:encoded><![CDATA[<div>Dear all,<br />
<br />
please tell me the vpn server configuration and also tell me how to subscribe the threads easly.<br />
<br />
<br />
Thanks</div>

]]></content:encoded>
			<dc:creator>narendra.server</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2426</guid>
		</item>
		<item>
			<title>Mr Bisquit gets bisquity</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2425</link>
			<pubDate>Fri, 20 Nov 2009 07:38:57 GMT</pubDate>
			<description><![CDATA[I'm taking my bisquity self on vacation.]]></description>
			<content:encoded><![CDATA[<div>I'm taking my bisquity self on vacation.</div>

]]></content:encoded>
			<dc:creator>Mr-Bisquit</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2425</guid>
		</item>
		<item>
			<title>launchd script for OS/X for bash daemon</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2424</link>
			<pubDate>Thu, 19 Nov 2009 22:29:58 GMT</pubDate>
			<description><![CDATA[Here's an example of a launchd script that will start the service (if you used the template from the previous example). 
 
 
launchd script...]]></description>
			<content:encoded><![CDATA[<div>Here's an example of a launchd script that will start the service (if you used the template from the previous example).<br />
<br />
<br />
<a href="http://kirk.webfinish.com/2009/11/launchd-script-for-osx-for-bash-daemon/" target="_blank">launchd script</a><br />
<br />
/bithead</div>

]]></content:encoded>
			<dc:creator>roybal</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2424</guid>
		</item>
		<item>
			<title>Ubuntu Package Pinning</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2423</link>
			<pubDate>Thu, 19 Nov 2009 19:08:20 GMT</pubDate>
			<description>A few weeks back I upgraded my Kubuntu installation to Karmic kaffeine version 1 came with it. Personally I would rather have kaffeine 0.8 so I...</description>
			<content:encoded><![CDATA[<div>A few weeks back I upgraded my Kubuntu installation to Karmic kaffeine version 1 came with it. Personally I would rather have kaffeine 0.8 so I decided to attempt to block updates to the package in order to use accomplish this.<br />
<br />
The first step was to check the current version on the machine. So I needed to know the exact name of the package. In order to locate the name of the package I used the search function in apt. This returns matching packages with exact name and a short description of them. To try this out, you can use the following command: apt-cache search {searchword}.<br />
<br />
In this case I searched for kaffeine and got the following result:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 98px;
		text-align: left;
		overflow: auto">temp@folder:~$ apt-cache search kaffeine
kaffeine - versatile media player for KDE
libxine1-x - X desktop video output plugins for libxine1
kaffeine-mozilla - mozilla plugin that launches kaffeine for supported media types
w-scan - Channel scanning tool for for DVB and ATSC channels</pre>
</div>Obviously the package I am looking for is named kaffeine. The next thing i needed to do is check which version is currently installed and which versions are available. This can be accomplished by using the command apt-cache policy packagename. So I used the command apt-cache policy kaffeine and got the following result:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 146px;
		text-align: left;
		overflow: auto">temp@folder:~$ apt-cache policy kaffeine
kaffeine:
  Installed: 1.0~pre2-0ubuntu1
  Candidate: 1.0~pre2-0ubuntu1
  Versions:
*** 1.0~pre2-0ubuntu1 0
        500 http://archive.ubuntu.com karmic/main Packages
        100 /var/lib/dpkg/status</pre>
</div>This lets me know that the installed version is 1.0 and that it is the latest available version. It also tells you that that version is available from <a href="http://archive.ubuntu.com" target="_blank">http://archive.ubuntu.com</a> karmic/main Packages.<br />
<br />
From there I uninstalled the currently installed version of kaffeine and downloaded the kaffeine version of my choice from packages.ubuntu.com. apt-cache policy now returns:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 130px;
		text-align: left;
		overflow: auto">  Installed: 0.8.7-1ubuntu5
  Candidate: 1.0~pre2-0ubuntu1
  Versions:
     1.0~pre2-0ubuntu1 0
        500 http://archive.ubuntu.com karmic/main Packages
*** 0.8.7-1ubuntu5 0
        100 /var/lib/dpkg/status</pre>
</div>This tells me that the installed version is 0.8.7 and that the main packages offer a newer version. You don't want to update now because kaffeine 1.0 will be reinstalled. In order to prevent this from happening it's necessary to pin or hold the package.<br />
<br />
This is pretty easy with aptitude: open a command line and type: sudo aptitude hold {packagename}. Aptitude will freeze the version to the currently installed one. This also freezes the version for all graphical interfaces, such as kpackagekit and synaptic.  Pretty nifty.<br />
<br />
Now If you are using apt-get things get a little more complicated, you'll have to pin the package. Pinning is pretty powerful, giving you much more options than simply to freezing, you can set up filters or rules about which version should be kept, when a package should be down- or upgraded and much more. A general introduction to the settings of apt and more precisely pinning can be found by entering man apt_preferences into command line.<br />
<br />
To block a package for apt-get you need to edit /etc/apt/preferences. There you can enter the following kind of config:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 66px;
		text-align: left;
		overflow: auto">Package: kaffeine
Pin: version 0.8.7*
Pin-Priority: 1000</pre>
</div>The first line gives the package which is configured.<br />
The second line lists what we want. The wanted package must not be defined by version, it can also be defined by release or origin or a combination of these keywords. More information can be found in your man-pages.<br />
The third line gives the priority. Citing from the man-page:<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="3" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="bbcodeblock" style="border:1px inset">
			
				Priorities (P) assigned in the APT preferences file must be positive<br />
or negative integers. They are interpreted as follows (roughly<br />
speaking):<br />
<br />
P &gt; 1000<br />
causes a version to be installed even if this constitutes a<br />
downgrade of the package<br />
<br />
990 &lt; P &lt;=1000<br />
causes a version to be installed even if it does not come from the<br />
target release, unless the installed version is more recent<br />
<br />
500 &lt; P &lt;=990<br />
causes a version to be installed unless there is a version<br />
available belonging to the target release or the installed version<br />
is more recent<br />
<br />
100 &lt; P &lt;=500<br />
causes a version to be installed unless there is a version<br />
available belonging to some other distribution or the installed<br />
version is more recent<br />
<br />
0 &lt; P &lt;=100<br />
causes a version to be installed only if there is no installed<br />
version of the package<br />
<br />
P &lt; 0<br />
prevents the version from being installed
			
		</td>
	</tr>
	</table>
</div>So the config I posted earlier says that the package kaffeine with version number 0.8.7* will be installed and preferred even if the install is a downgrade. Putting that config into place and saving it (you will need SUDO powers for saving) will hold that package in the current version, so that it won't be overwritten when updates are applied.<br />
<br />
<br />
Taking another look at the output of apt-cache policy, we can now also understand the numbers in front of the source: 100 means that this is the currently installed version, while 500, the pin-priority of the main server, means that those packages will only be installed when they are newer than the currently installed package.</div>

]]></content:encoded>
			<dc:creator>pereb</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2423</guid>
		</item>
		<item>
			<title>Adobe reader 7.0 Installation error</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2422</link>
			<pubDate>Thu, 19 Nov 2009 12:49:39 GMT</pubDate>
			<description><![CDATA[When Installing adobe reader 7.0 in Red Hat 9.0 ver 2.4.20-8 I am Getting Following error by RPM: 
 
error: Failed dependencies: 
        gtk2 >=...]]></description>
			<content:encoded><![CDATA[<div>When Installing adobe reader 7.0 in Red Hat 9.0 ver 2.4.20-8 I am Getting Following error by RPM:<br />
<br />
error: Failed dependencies:<br />
        gtk2 &gt;= 2.4.0 is needed by AdobeReader_enu-7.0.9-1<br />
<br />
When installed through Source code <br />
<br />
GTK + UI Toolkit libraries ver 2.4 or greater not found</div>

]]></content:encoded>
			<dc:creator>dhir_dhiru</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2422</guid>
		</item>
		<item>
			<title>Sudo Package</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2421</link>
			<pubDate>Wed, 18 Nov 2009 19:08:20 GMT</pubDate>
			<description>I need to install sudo package on SuSE 8.2(i586),Redhat 6.2,AIX 4.3 and HP-UX 11 servers. 
Please help me.</description>
			<content:encoded><![CDATA[<div>I need to install sudo package on SuSE 8.2(i586),Redhat 6.2,AIX 4.3 and HP-UX 11 servers.<br />
Please help me.</div>

]]></content:encoded>
			<dc:creator>suse484</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2421</guid>
		</item>
		<item>
			<title>A Day in the Life of Your Average Linux User: Rails on Ubuntu</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2420</link>
			<pubDate>Wed, 18 Nov 2009 13:02:31 GMT</pubDate>
			<description><![CDATA[*Disclaimer: the following narration is for entertainment purposes only and does not necessarily reflect any real scenarios...or does it? 
 
Let's...]]></description>
			<content:encoded><![CDATA[<div>*Disclaimer: the following narration is for entertainment purposes only and does not necessarily reflect any real scenarios...or does it?<br />
<br />
Let's follow a seemingly &quot;simple&quot; task for an average Linux user:<br />
<br />
Scenario: Install Ruby on Rails on Ubuntu System<br />
<br />
This sounds simple enough.  Anyone familiar with Rails, knows there are 4 easy steps to installing a Rails web model:<br />
1. Install Rubygems<br />
2. Update Ruby Gem system<br />
3. Install Rails<br />
4. Run Rails application on specific directory<br />
(we're going to leave Fastcgi/Apache stuff for another time)<br />
<br />
Let's begin:<br />
<br />
*Time: 12:00pm<br />
<br />
Step I. Install Rubygems:<br />
<br />
1. sudo su (makes the whole process easier)<br />
2. apt-get install rubygems1.8<br />
<br />
This installed without any hiccups.  We are happy.<br />
<br />
Step II. Update Gems<br />
<br />
*Time: 12:02pm<br />
<br />
2. sudo gem update --system<br />
<br />
Odd, bash gives the following error:<br />
ERROR:  While executing gem ... (RuntimeError)<br />
    gem update --system is disabled on Debian. RubyGems can be updated using the official Debian repositories by aptitude or apt-get.<br />
<br />
Ok, so Debian/Ubuntu will be nice enough to update gems for me.  So...<br />
<br />
3. Update Apt-get<br />
<br />
Done<br />
<br />
*Time: 12:05 pm<br />
<br />
4. Wait a minute...Gems is still version 1.3.1.  Ubuntu didn't update Rubygems? Ubuntu wouldn't be so dumb to make me upgrade my entire Operating System just to upgrade one little application, would it? It's obviously at its latest version.  Let's move on and install Rails.<br />
<br />
Step III. Install Rails<br />
<br />
1. Run &quot;gem install rails&quot;<br />
<br />
This takes a little time, do some df on another terminal to keep busy, but eventually everything goes well.  Bash tells:<br />
Successfully installed rails-2.3.4<br />
along with telling me it installed the other dependencies and docs as well.<br />
<br />
Step IV. Run Rails on Directory.<br />
<br />
1. Excited that the process is almost finished.  All we do now is run &quot;rails /home/john/firstrails&quot; and rails will magically install all those actionclasses files in the directory.  Or will it?<br />
<br />
Bash says it can't find the rails application.  What gives?<br />
<br />
*Time: 12:12pm<br />
<br />
2. Let's try to find if Ubuntu installed the gems correctly, so I cd to /var/lib/gems/1.8/gems and everything is there.  What could be wrong? Off to Google!<br />
<br />
3. Google search for Ubuntu Rails Install.  Aha...a page to install Rails on Ubuntu.  Fantastic - this should help.  It shows a how-to for ubuntu hardy, Janty-something, 8.04...oh, wait, it looks like I need to set my $PATH for Ubuntu to recognize the gem applications.  That's funny, in Slackware, that wasn't necessary.<br />
<br />
4. Here's goes: PATH=/var/lib/gems/1.8/bin:$PATH<br />
<br />
*Time: 12:25pm<br />
<br />
5. now we're ready to rumble.  Let's leave root...exit.<br />
<br />
6. Rails ~/firstrails<br />
<br />
Still can't find rails? Oh, forgot to set the PATH for the user...set it for root by mistake, woopsy me.<br />
<br />
7. PATH=/var/lib/gems/1.8/bin:$PATH<br />
<br />
8. Let's try again: Rails ~/firstrails<br />
<br />
Yay! Look at the standard output go!<br />
<br />
     exists  <br />
      create  app/controllers<br />
      create  app/helpers<br />
      create  app/models<br />
      create  app/views/layouts<br />
      create  config/environments<br />
      create  config/initializers<br />
      create  config/locales<br />
...<br />
...<br />
<br />
*Time: 12:33pm<br />
<br />
9. Looks like we're finished.  Let's run the Webrick server just to see everything is in order: script/server<br />
<br />
Not to worry, being around long enough gives someone the intuition that it won't work on the first go.  And, lo and behold, Bash proudly heralds:<br />
Rails requires RubyGems &gt;= 1.3.2 (you have 1.3.1). Please `gem update --system` and try again.<br />
<br />
Gee thank you Rubygems...if I need a higher version of Rubygems, why in the world would you, Rubygems yourself, install a version of Rails you can't even run!?<br />
<br />
Oh, but didn't I install the latest version of RubyGems from the Ubuntu respository?  Oh, silly me, I'm using an old, and I guess outdated, version of Ubuntu that came out barely a year ago.  I guess Ubuntu wants me to upgrade my entire system just to install a little Rubygem application.  Luckily, we're not dumb enough to listen.  There's an easier way.<br />
<br />
10. The solution: Install an earlier version of Rails that will run on Rubygems 1.3.1.  Abra Cadabra: gem install rails --version 1.2.6!<br />
<br />
Alright.  We're gaining momentum now.  Bash tells version 1.2.6 of Rails installed successfully.  Everything looks good to go!<br />
<br />
11. A rm -R on the ~/firstrails directory to start again clean.<br />
<br />
*12:45pm<br />
<br />
12. Of course, when we run rails ~/firstrails, I would need to specify which version of rails, since we have the newest version and 1.2.6 installed.  If Rubygems can install multiple versions, rails should have an option to determine which version to use.  Surely doing a rails --help would give me the right information.  Hmm, nope, the only option is --version, which shows the version, not sets it.<br />
<br />
13. No choice, but to gem uninstall rails --version 2.4.3.  <br />
<br />
Ok, good, it's gone.<br />
<br />
*Time 12:52pm<br />
<br />
14. Let's run it again: rails ~/firstrails.  <br />
<br />
And the standard output goes wild!<br />
  exists  <br />
      create  app/controllers<br />
      create  app/helpers<br />
      create  app/models<br />
      create  app/views/layouts<br />
      create  config/environments<br />
      create  config/initializers<br />
      create  config/locales<br />
...<br />
...<br />
<br />
15. Crack our knuckles, we're ready to lauch: script/server<br />
<br />
Yippy!<br />
<br />
=&gt; Booting WEBrick...<br />
=&gt; Rails application started on <a href="http://0.0.0.0:3000" target="_blank">http://0.0.0.0:3000</a><br />
=&gt; Ctrl-C to shutdown server; call with --help for options<br />
[2009-11-18 14:37:54] INFO  WEBrick 1.3.1<br />
[2009-11-18 14:37:54] INFO  ruby 1.8.7 (2008-08-11) [i486-linux]<br />
[2009-11-18 14:37:54] INFO  WEBrick::HTTPServer#start: pid=16555 port=3000<br />
<br />
*Time 1:00pm</div>

]]></content:encoded>
			<dc:creator>Murdock1979</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2420</guid>
		</item>
		<item>
			<title>openSUSE 11.2: Getting Started!</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2419</link>
			<pubDate>Wed, 18 Nov 2009 06:12:21 GMT</pubDate>
			<description>*Originally posted in my BLOG (http://pdg86.wordpress.com/2009/11/18/opensuse-11-2-get-started/).* 
 
First things first, let me once again tell you...</description>
			<content:encoded><![CDATA[<div><b><i>Originally posted in my <a href="http://pdg86.wordpress.com/2009/11/18/opensuse-11-2-get-started/" target="_blank">BLOG</a>.</i></b><br />
<br />
First things first, let me once again tell you I've become a huge fan of openSUSE. it's absolutely everything I look for in an OS Desktop OS.<br />
<div align="center"><img src="http://socializedsoftware.com/wp-content/uploads/tux-opensuse.png" border="0" alt="" /></div><br />
Now I'm gonna write my experience down. A few slight quirks, which was not SUSE's fault but since I'm new to it [ well I used it a year ago, but that was only for a month], it was mainly because I wasn't aware of SUSE's way of doing things.<br />
<br />
openSUSE is well known for it's user-friendliness. <a href="http://en.opensuse.org/Yast" target="_blank">YAST</a> has the ultimate tool which is everything that you need in order to control your system. From repositories to Kernel Modules, you can customize anything using it. It's an all in one super control center for your machine.<br />
<br />
I will only talk about KDE here, since I don't use Gnome.<br />
<br />
After the install was over, I was asked to update around 500megs of packages. I was shocked as this was a fresh install. So I went into YasT -&gt; Software Management-&gt;Installation Summary, and found out that the packages were mainly aspell and OpenOffice Language packs. So I taboofied them as I didn't want them installed ever. :D<br />
<br />
My update was then cut from 500 to 23Mb and I updated a few packages.<br />
<br />
Immediately I had to get the Nvidia driver to fix my display. So, I added the <a href="http://en.opensuse.org/Additional_Package_Repositories#NVIDIA_drivers" target="_blank">Nvidia repo</a> and installed the driver.<br />
<br />
Then I wanted to see how multimedia support was. As I had installed from the KDE Live CD and not the DVD [which I have downloaded later to keep incase of a re-install], I needed to download a lot of stuffs, mainly codecs and players,etc. I came accross this guide in the forum which helped me get started.<br />
<br />
Being an Arch user the best part I liked about openSUSE was their <a href="http://en.opensuse.org/Additional_Package_Repositories" target="_blank">Additional Package Repositories</a>. It is like <a href="http://aur.archlinux.org/" target="_blank">AUR</a> but segmented into various categories.<br />
<br />
So I added a few repos from there, like KDE community,backports, VLC, Education, Games,etc. Now that I learnt how to use YaST, I wanted to check out the CLI way in openSUSE. You have to use <a href="http://en.opensuse.org/Zypper" target="_blank">zypper</a>.<br />
<br />
So to refresh the package repos [as root]:<br />
<br />
    <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 34px;
		text-align: left;
		overflow: auto">zypper ref</pre>
</div>To list repos:<br />
<br />
    <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 34px;
		text-align: left;
		overflow: auto">zypper lr</pre>
</div>To check upates:<br />
<br />
    <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 34px;
		text-align: left;
		overflow: auto">zypper lu</pre>
</div>To update:<br />
<br />
    <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 34px;
		text-align: left;
		overflow: auto">zypper up</pre>
</div>To check patches:<br />
<br />
    <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<pre class="bbcodeblock" dir="ltr" style="
		margin: 0px;
		margin-right: -99999px;
		padding: 3px;
		border: 1px inset;
		width: 98%;
		height: 66px;
		text-align: left;
		overflow: auto">zypper pchk

zypper lp</pre>
</div>[I still don't know the difference between these two commands.]<br />
<br />
Anyway, so I was quite happy with my KDE 4.3.1 for a few days and then decided to see how I can manage to install KDE 4.3.3. I asked about it in the forum, and was pretty much satisfied with the quick reply.So, my KDE upgrade was successful.<br />
<br />
Overall my openSUSE 11.2 experience was quite good. It impressed me. Last year when I tried it, I had lotsa problems. YaST was slow. KDE4.1 was buggy, it would crash every few minutes. But this time around they really released a polished, stable, great looking desktop. YaST works fine and so far no crashes. For the first time, I can suspend to disk easily without any system instability. I am loving my SUSE. ;)</div>

]]></content:encoded>
			<dc:creator>~sHyLoCk~</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2419</guid>
		</item>
		<item>
			<title>Linux incompatible with HP Compaq dc7900?</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2418</link>
			<pubDate>Wed, 18 Nov 2009 02:06:14 GMT</pubDate>
			<description>---Quote (Originally by irishbitte)--- 
Have you thought about running linux as a Virtual Machine? It means you can mess up plenty and still start...</description>
			<content:encoded><![CDATA[<div><div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="3" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="bbcodeblock" style="border:1px inset">
			
				<div>
					Originally Posted by <strong>irishbitte</strong>
					<a href="showthread.php?p=3760676#post3760676" rel="nofollow"><img class="inlineimg" src="http://e1h7.simplecdn.net/lqcdn/images/questions/images/buttons/viewpost.gif" border="0" alt="View Post" /></a>
				</div>
				<div style="font-style:italic">Have you thought about running linux as a Virtual Machine? It means you can mess up plenty and still start from scratch, especially if you 'need' your current windows installation. I suggest running a linux in VirtualBox and seeing how you get on. Also means someone could help you through it using logmein.com or something similar.</div>
			
		</td>
	</tr>
	</table>
</div>Thank you, I'll give that a shot and report back :)</div>

]]></content:encoded>
			<dc:creator>Anemocracy</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2418</guid>
		</item>
		<item>
			<title>enable mp3 support in K3b - ubuntu 9.10</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2417</link>
			<pubDate>Wed, 18 Nov 2009 01:35:41 GMT</pubDate>
			<description>I recently took the plunge and upgraded my daily driver box to the latest greatest. There is nothing ground breaking about the install other than the...</description>
			<content:encoded><![CDATA[<div>I recently took the plunge and upgraded my daily driver box to the latest greatest. There is nothing ground breaking about the install other than the speed of ext 4 so I wont bother going into that aspect. However one thing that threw me was K3b. When burning a cd for my daughter it kept coming up with <div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="3" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="bbcodeblock" style="border:1px inset">
			
				Unable to handle the following files due to an unsupported format:
			
		</td>
	</tr>
	</table>
</div> It has been so long since I did a fresh install in a desktop environment as opposed to a server that I totally forgot about the legal implications of mp3 encoding / decoding. To get around this douchbagery it is simplicity in itself. Open up a command terminal and type this in ...<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="3" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="bbcodeblock" style="border:1px inset">
			
				sudo apt-get install libk3b6-extracodecs
			
		</td>
	</tr>
	</table>
</div>Voila it should be that easy, now my little girl is back to accosting my ears with whatever shenanigans it is that they listen to at 6.</div>

]]></content:encoded>
			<dc:creator>jkzfixme</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2417</guid>
		</item>
		<item>
			<title>bash diff2html compare differences in 2 files in html</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2416</link>
			<pubDate>Tue, 17 Nov 2009 20:43:38 GMT</pubDate>
			<description>diff2html is a free and open source utility that uses the output of diff(1) to graphically compare two files in html. 
 
diff2html...</description>
			<content:encoded><![CDATA[<div>diff2html is a free and open source utility that uses the output of diff(1) to graphically compare two files in html.<br />
<br />
<a href="http://kirk.webfinish.com/diff2html/" target="_blank">diff2html</a><br />
<br />
The whole thing is written in bash 3.2<br />
<br />
/bithead</div>

]]></content:encoded>
			<dc:creator>roybal</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2416</guid>
		</item>
		<item>
			<title>OS/X bash daemon script</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2415</link>
			<pubDate>Tue, 17 Nov 2009 18:41:36 GMT</pubDate>
			<description><![CDATA[Here's a template for how to create a daemon or launchd script in bash. 
 
Bash OS/X daemon template...]]></description>
			<content:encoded><![CDATA[<div>Here's a template for how to create a daemon or launchd script in bash.<br />
<br />
<a href="http://kirk.webfinish.com/2009/11/osx-daemon-script-template/" target="_blank">Bash OS/X daemon template</a><br />
<br />
/bithead</div>

]]></content:encoded>
			<dc:creator>roybal</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2415</guid>
		</item>
		<item>
			<title><![CDATA[It's that time of year again...]]></title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2414</link>
			<pubDate>Tue, 17 Nov 2009 18:30:21 GMT</pubDate>
			<description><![CDATA[So I just got my first "personalized letter from Santa" spam e-mail.  That's when I know it's the holiday season. 
 
I thought this might make a good...]]></description>
			<content:encoded><![CDATA[<div>So I just got my first &quot;personalized letter from Santa&quot; spam e-mail.  That's when I know it's the holiday season.<br />
<br />
I thought this might make a good discussion.  At what point do you say to yourself &quot;It's that time of year again.&quot; ?</div>

]]></content:encoded>
			<dc:creator>pereb</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2414</guid>
		</item>
		<item>
			<title>amazing.......</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2413</link>
			<pubDate>Tue, 17 Nov 2009 17:06:48 GMT</pubDate>
			<description><![CDATA[By way of a bit of an update...... 
 
So, I've been through various distro's, most successfully but some not so. 
 
I've currently settled on Ubuntu...]]></description>
			<content:encoded><![CDATA[<div>By way of a bit of an update......<br />
<br />
So, I've been through various distro's, most successfully but some not so.<br />
<br />
I've currently settled on Ubuntu and got the 9.10 version installed.<br />
<br />
I was using KDE for my desktop, but when &quot;they&quot; started using KDE4 by default, I got so frustrated trying to understand how to do stuff that came naturally with KDE3, I said &quot;bollocks&quot; to it and installed gnome.<br />
<br />
I don't quite understand why, because until then, whenever I tried gnome, I was getting myself so confused, that I'd have just gone back to KDE, but for some reason, on this occasion gnome &quot;just clicked&quot;. More stuff worked &quot;straight out of the box&quot; and it seemed more straight forward than it had previously done.<br />
<br />
I've got used to the default stuff, like having the taskbar at the top of the screen, and the open windows listing buttons on the bottom and all that kind of stuff, so I'm now happily plugging away with gnome and KDE is only installed for my partner as she is so stubborn that she won't try gnome.<br />
<br />
Hey ho!<br />
<br />
I still don't like having to use sudo, I much prefer the more traditional &quot;user and root&quot; arrangement of most other distro's (having an extra root password/account is more reassuring to me.....) but it's too much hassle to change it and try to uninstall/remove sudo so I'll just have to lump it won't I</div>

]]></content:encoded>
			<dc:creator>bigjohn</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2413</guid>
		</item>
		<item>
			<title>How to install Prolink H9601 ADSL usb modem in ubuntu</title>
			<link>http://www.linuxquestions.org/questions/blog.php?b=2412</link>
			<pubDate>Tue, 17 Nov 2009 03:51:55 GMT</pubDate>
			<description>This is Harindus Solution 
 
---Quote (Originally by harindu)--- 
The linux driver for prolink h9601 is eciadsl(google it) 
PM me if you have a...</description>
			<content:encoded><![CDATA[<div>This is Harindus Solution<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="3" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="bbcodeblock" style="border:1px inset">
			
				<div>
					Originally Posted by <strong>harindu</strong>
					<a href="showthread.php?p=3691373#post3691373" rel="nofollow"><img class="inlineimg" src="http://e1h7.simplecdn.net/lqcdn/images/questions/images/buttons/viewpost.gif" border="0" alt="View Post" /></a>
				</div>
				<div style="font-style:italic">The linux driver for prolink h9601 is eciadsl(google it)<br />
PM me if you have a problem!<br />
install it and the download the synch.bin achive which is also there and extract it to /etc/eciadsl/synch<br />
use the following parameters to configure<br />
using eciadsl-config-text command as root<br />
VID1=0915<br />
PID1=8102<br />
VID2=0915<br />
PID2=8102<br />
MODE=LLC_SNAP_RFC1483_BRIDGED_ETH_NO_FCS<br />
VCI=35<br />
VPI=8<br />
FIRMWARE=/etc/eciadsl/firmware00.bin<br />
SYNCH=gs7470_synch20.bin<br />
PPPD_USER=(username)<br />
PPPD_PASSWD=<br />
USE_DHCP=no<br />
USE_STATICIP=no<br />
STATICIP=<br />
GATEWAY=<br />
MODEM=Other<br />
MODEM_CHIPSET=GS7470<br />
SYNCH_ALTIFACE=0<br />
PPPOECI_ALTIFACE=0<br />
PROVIDER=Other<br />
DNS1=203.115.0.46<br />
DNS2=203.115.0.47<br />
then to connect enter these commands as root eciadsl-start.keep entering this command until an error comes telling that a process called eciadsl-pppoeci is already running.<br />
then type ifconfig and you must see something like this(without any rx packets):<br />
tap0<br />
Link encap:Ethernet HWaddr d6:ab:d9:99:f5:2e<br />
inet6 addr: fe80::d4ab:d9ff:fe99:f52e/64 Scope:Link<br />
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1<br />
RX packets:18395 errors:0 dropped:0 overruns:0 frame:0<br />
TX packets:19493 errors:0 dropped:0 overruns:0 carrier:0<br />
collisions:0 txqueuelen:500<br />
RX bytes:17577091 (17.5 MB) TX bytes:2835186 (2.8 MB)<br />
<br />
if you dont see something like this then try eciadsl-start again until you see it.<br />
<br />
then after tap0 appears<br />
enter the command pppoeconf tap0<br />
then it will scan some stuff and press enter for all those stuff enter you username and password when asked.after you are done ,<br />
connect by typing pppoe-start<br />
happy surfing<br />
PM me if you have a problem!<br />
-harindu perera</div>
			
		</td>
	</tr>
	</table>
</div></div>

]]></content:encoded>
			<dc:creator>umwai</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/blog.php?b=2412</guid>
		</item>
	</channel>
</rss>
