<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
	<channel>
		<title>LinuxQuestions.org</title>
		<link>http://www.linuxquestions.org/questions</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 23:15:47 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</title>
			<link>http://www.linuxquestions.org/questions</link>
		</image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://www.linuxquestions.org/syndicate/lqnoreplies.xml" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
			<title>drbd heartbeat and raid0</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770514&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 23:06:05 GMT</pubDate>
			<description><![CDATA[Hi Guys, 
 
The current setup exists of 4 dell r200 servers. the servers are all the same, running esxi and have 1 disk with 250gb of local storage. 
 
we're running 11 vm's which arent generating a...]]></description>
			<content:encoded><![CDATA[<div>Hi Guys,<br />
<br />
The current setup exists of 4 dell r200 servers. the servers are all the same, running esxi and have 1 disk with 250gb of local storage.<br />
<br />
we're running 11 vm's which arent generating a lot of traffic.<br />
<br />
We're looking at building 2 extra servers, running debian server as a iscsi target, the disks in both servers are mirrored with drbd, and heartbeat will provide the iscsi target.<br />
<br />
For performance, we're looking at running a raid0 setup with 2x 1tb disks (2tb of iscsi storage) on both systems.<br />
<br />
i know about the disadvantages of raid0 (if 1 disk is lost, the data is not recoverable), but would the use of heartbeat resolve it, and can i safely use raid0 on both servers? or wouldn't that be safe in case of a disk failure?<br />
<br />
it's a hobby project, but we are using the servers to provide some clients services like lowbudget-webhosting... so it needs to be relay-able, but cant cost to much :)</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=73">Linux - Server</category>
			<dc:creator>Draal</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770514</guid>
		</item>
		<item>
			<title>OpenGL: glScale(1,1,1) + lighting screws up quad rendering!?</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770513&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:54:35 GMT</pubDate>
			<description><![CDATA[I'm getting a very strange bug in my OpenGL program: 
 
Code: 
--------- 
#include <GL/gl.h> 
#include <GL/glu.h> 
#include <GL/glut.h> 
#include <stdio.h> 
#include <stdlib.h>]]></description>
			<content:encoded><![CDATA[<div>I'm getting a very strange bug in my OpenGL program:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#include &lt;GL/gl.h&gt;<br />
#include &lt;GL/glu.h&gt;<br />
#include &lt;GL/glut.h&gt;<br />
#include &lt;stdio.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
<br />
void draw(void)<br />
{<br />
&nbsp; &nbsp; GLenum e;<br />
<br />
&nbsp; &nbsp; glClear(GL_COLOR_BUFFER_BIT);<br />
&nbsp; &nbsp; glMatrixMode(GL_MODELVIEW);<br />
&nbsp; &nbsp; glLoadIdentity();<br />
&nbsp; &nbsp; glTranslatef(0, 0, -5);<br />
<br />
&nbsp; &nbsp; <span class="highlight">/* no problem without call to scale */</span><br />
&nbsp; &nbsp; if (1) glScalef(1, 1, 1);<br />
&nbsp; &nbsp; glColor3f(1, 1, 1);<br />
&nbsp; &nbsp; glBegin(GL_QUADS);<br />
&nbsp; &nbsp; glNormal3f(0, 0, 1);<br />
&nbsp; &nbsp; glVertex2f(-.5, .5);<br />
&nbsp; &nbsp; glVertex2f(-.5, -.5);<br />
&nbsp; &nbsp; glVertex2f(.5, -.5);<br />
&nbsp; &nbsp; glVertex2f(.5, .5);<br />
&nbsp; &nbsp; glEnd();<br />
<br />
&nbsp; &nbsp; glFinish();<br />
&nbsp; &nbsp; e = glGetError();<br />
&nbsp; &nbsp; if (e != GL_NO_ERROR) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; fprintf(stderr, &quot;OpenGL: %s\n&quot;, gluErrorString(e));<br />
&nbsp; &nbsp; &nbsp; &nbsp; exit(1);<br />
&nbsp; &nbsp; }<br />
}<br />
<br />
#define W 400<br />
#define H 400<br />
void setup_gl(void)<br />
{<br />
&nbsp; &nbsp; glMatrixMode(GL_PROJECTION);<br />
&nbsp; &nbsp; glLoadIdentity();<br />
&nbsp; &nbsp; glViewport(0, 0, W, H);<br />
&nbsp; &nbsp; gluPerspective(40.0, (GLfloat)W/(GLfloat)H, 0.1, 1000.0);<br />
<br />
&nbsp; &nbsp; glEnable(GL_LIGHTING);<br />
&nbsp; &nbsp; glEnable(GL_LIGHT0);<br />
<br />
&nbsp; &nbsp; glShadeModel(GL_FLAT);<br />
}<br />
<br />
<br />
/* toolkit specific */<br />
<br />
static void display(void)<br />
{<br />
&nbsp; &nbsp; draw();<br />
&nbsp; &nbsp; glutSwapBuffers();<br />
}<br />
<br />
int main(int argc, char **argv)<br />
{<br />
&nbsp; &nbsp; glutInit(&amp;argc, argv);<br />
&nbsp; &nbsp; glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH);<br />
&nbsp; &nbsp; glutInitWindowSize(W, H);<br />
&nbsp; &nbsp; glutCreateWindow (&quot;gl window&quot;);<br />
<br />
<br />
&nbsp; &nbsp; glutDisplayFunc(&amp;display);<br />
&nbsp; &nbsp; setup_gl();<br />
<br />
&nbsp; &nbsp; glutMainLoop();<br />
&nbsp; &nbsp; return 0;<br />
}</code><hr />
</div>It should draw a square in the middle of the screen (expected-quad.png), and it does when glScalef(1,1,1) (values other than 1 also cause this, with 1 it's obviously a noop) isn't called, or when lighting is not enabled, but with both of those the square looks rotated and stretched (broken-quad.png).<br />
<br />
I don't know where the problem is: my program, opengl implementation, graphics card (lspci gives: Intel Corporation 82815 Chipset Graphics Controller)? I've found the same problem using glx and sdl, so I know it's not the toolkit. Any insights are appreciated.</div>


	<br />
	<div style="padding:3px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<table cellpadding="0" cellspacing="3" border="0">
			<tr>
	<td><img class="inlineimg" src="http://e1h13.simplecdn.net/lqcdn/images/questions/images/attach/png.gif" alt="File Type: png" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
	<td><a href="http://www.linuxquestions.org/questions/attachment.php?attachmentid=2033&amp;d=1258756941" target="_blank">broken-quad.png</a> (837 Bytes)</td>
</tr><tr>
	<td><img class="inlineimg" src="http://e1h13.simplecdn.net/lqcdn/images/questions/images/attach/png.gif" alt="File Type: png" width="16" height="16" border="0" style="vertical-align:baseline" /></td>
	<td><a href="http://www.linuxquestions.org/questions/attachment.php?attachmentid=2034&amp;d=1258756953" target="_blank">expected-quad.png</a> (153 Bytes)</td>
</tr>
			</table>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=9">Programming</category>
			<dc:creator>ntubski</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770513</guid>
		</item>
		<item>
			<title>Linux wireless</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770512&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:48:50 GMT</pubDate>
			<description><![CDATA[Hi everyone - complete newbie here.  I'm trying to learn about Linux and have installed Linux Mint and Open Suse on my old PC.  I need to connect to the web via wireless and have tried a Netgear MA111...]]></description>
			<content:encoded><![CDATA[<div>Hi everyone - complete newbie here.  I'm trying to learn about Linux and have installed Linux Mint and Open Suse on my old PC.  I need to connect to the web via wireless and have tried a Netgear MA111 USB network gadget adapter which doesn't seem to be recognised by either distro.  Anyone got any suggestions on a distro that will work with the MA111.  Thanks in advance for any advice :)</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=8">Linux - Newbie</category>
			<dc:creator>bugster</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770512</guid>
		</item>
		<item>
			<title><![CDATA[Computers Won't Connect]]></title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770511&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:47:39 GMT</pubDate>
			<description><![CDATA[How do I get my tower system to see my netbook using Mandriva 2010 & Gnome on both machines. When I click the Network in Nautilas, and choose the netbook, I get "server refuse to connect message".  
...]]></description>
			<content:encoded><![CDATA[<div>How do I get my tower system to see my netbook using Mandriva 2010 &amp; Gnome on both machines. When I click the Network in Nautilas, and choose the netbook, I get &quot;server refuse to connect message&quot;. <br />
<br />
I also have an imac with osx and the tower connects to the imac without problems. Am I missing some software for this?<br />
<br />
When I tried ssh into the netbook I get &quot;refuse to connect&quot;. Both PC machines have the ssh-server &amp; client installed. Pinging both machines work.<br />
<br />
Any ideas/suggestions?</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=3">Linux - Networking</category>
			<dc:creator>FredGSanford</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770511</guid>
		</item>
		<item>
			<title>LXer:  Samsung Sponsors Enlightenment Development: New Light for E17</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770510&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:41:55 GMT</pubDate>
			<description><![CDATA[Published at LXer: 
 
Korean electronics giant Samsung is helping the Linux-David Enlightenment with development ressources. It's possible that the lightweight and robust window manager might be the...]]></description>
			<content:encoded><![CDATA[<div>Published at LXer:<br />
<br />
Korean electronics giant Samsung is helping the Linux-David Enlightenment with development ressources. It's possible that the lightweight and robust window manager might be the basis for Samsung's upcoming Bada mobile phone platform.<br />
<br />
<a href="http://www.linux-magazine.com/Online/News/Samsung-Sponsors-Enlightenment-Development-New-Light-for-E17" target="_blank">Read More...</a></div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=67">Syndicated Linux News</category>
			<dc:creator>LXer</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770510</guid>
		</item>
		<item>
			<title>Error parsing proxy URL http://localhost:4001 : Bad port number?</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770509&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:39:09 GMT</pubDate>
			<description><![CDATA[The BBC's 'iplayer' suddenly stopped working.  So tried to reinstall the adobe flash player 10.  This involved the command: 
Code: 
--------- 
fido:/home/lugo# wget -O -...]]></description>
			<content:encoded><![CDATA[<div>The BBC's 'iplayer' suddenly stopped working.  So tried to reinstall the adobe flash player 10.  This involved the command:<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">fido:/home/lugo# wget -O - http://backports.org/debian/archive.key | apt-key add -<br />
Error parsing proxy URL http://localhost:4001 : Bad port number.<br />
gpg: no valid OpenPGP data found.</code><hr />
</div>I am not using a proxy.  *If* that's the problem, how tell wget?  The object is to install flashplayer on Debian Lenny 5.0. Great thanks.</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=3">Linux - Networking</category>
			<dc:creator>lugoteehalt</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770509</guid>
		</item>
		<item>
			<title>KDE and BlackBerry as user</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770508&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:30:52 GMT</pubDate>
			<description><![CDATA[I recently joined the BlackBerry world and would like to somehow "connect" my the address book on my computer with the contacts on my BlackBerry now. I'm using Slackware 13.0 with KDE and have all my...]]></description>
			<content:encoded><![CDATA[<div>I recently joined the BlackBerry world and would like to somehow &quot;connect&quot; my the address book on my computer with the contacts on my BlackBerry now. I'm using Slackware 13.0 with KDE and have all my contacts in KDE's KAddressbook. Anyone out there who managed to get these two to work together?</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=74">Linux - Desktop</category>
			<dc:creator>dimm0k</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770508</guid>
		</item>
		<item>
			<title>want to copy all user desktop settings and applications</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770507&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:11:31 GMT</pubDate>
			<description><![CDATA[I have an Ubuntu 8.04 desktop at work that I've been using with VirtualBox to run Windows XP in.  
Today I found out how to configure my Ubuntu desktop to login directly to the MS Domain,using...]]></description>
			<content:encoded><![CDATA[<div>I have an Ubuntu 8.04 desktop at work that I've been using with VirtualBox to run Windows XP in. <br />
Today I found out how to configure my Ubuntu desktop to login directly to the MS Domain,using likewise, so that now I have two home directories:<br />
/home/user and<br />
/home/DOMAIN/user<br />
<br />
So now I want to solely login to Ubuntu as <a href="mailto:user@DOMAIN.com">user@DOMAIN.com</a>. But whenever I do this, I lose all of my settings, applications, and configuration that I had as /home/user.<br />
<br />
How do I easily copy all settings and applications from /home/user to /home/DOMAIN/user?<br />
<br />
Many thanks in advance.</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=74">Linux - Desktop</category>
			<dc:creator>dogwind</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770507</guid>
		</item>
		<item>
			<title>noob ask about windows games</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770506&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:09:20 GMT</pubDate>
			<description>Hi! 
I`m Michael i`ve just bought my new hp notebook with linux. i had some experience with fedora, red hat, but not really much. I`m trying to install and obviously play the Life For Speed S2 game on...</description>
			<content:encoded><![CDATA[<div>Hi!<br />
I`m Michael i`ve just bought my new hp notebook with linux. i had some experience with fedora, red hat, but not really much. I`m trying to install and obviously play the Life For Speed S2 game on my SuSe Novell linux and i can`t get it. What do i have to install/write a command (BTW how to get back from the linux text command [ctrl+alt+f1...f12] to GNU desktop?) to play for this game?<br />
i`ve found sth like &quot;wine&quot; but i requires ??flex??, than i`ve found flexbuilder_linux_install_a4_081408, but it needs to be runned on root so that i tried to run it on root and it doesn`t work may i`ve written an wrong command...<br />
Is there a somebody who can help me? I would be really pleased (sorry for my english - i`m not native)</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=8">Linux - Newbie</category>
			<dc:creator>b11l</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770506</guid>
		</item>
		<item>
			<title>LXer: The Problem With The Linux Community</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770504&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 22:00:30 GMT</pubDate>
			<description><![CDATA[Published at LXer: 
 
...First, I must compliment the openSUSE developers. I've had great correspondence from Joe "Zonker" Brockmeier and Will Thompson, a developer in the KDE team in Nuremberg, which...]]></description>
			<content:encoded><![CDATA[<div>Published at LXer:<br />
<br />
...First, I must compliment the openSUSE developers. I've had great correspondence from Joe &quot;Zonker&quot; Brockmeier and Will Thompson, a developer in the KDE team in Nuremberg, which were truly first rate. These are Linux professionals who clearly are much more interested in solving problems and putting out a quality product than anything else. I'll be filing bug reports by tomorrow to try and help them resolve the issues that I found. While I'm very positive about the openSUSE team I must say that I am a lot less sanguine about some in their community. Some fans (or really fanatics) came out in force ready to attack the reviewer...<br />
<br />
<a href="http://broadcast.oreilly.com/2009/11/the-problem-with-the-linux-com.html" target="_blank">Read More...</a></div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=67">Syndicated Linux News</category>
			<dc:creator>LXer</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770504</guid>
		</item>
		<item>
			<title>How To create a new Partition</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770503&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 21:31:20 GMT</pubDate>
			<description>HI 
please help me how to create a new partition from the existing system 
I am using ubuntu 9.04 as Host system and work on LFS. 
 
The command given in LFS book throws i.e 
 
 
khirod@khirod:/dev$...</description>
			<content:encoded><![CDATA[<div>HI<br />
please help me how to create a new partition from the existing system<br />
I am using ubuntu 9.04 as Host system and work on LFS.<br />
<br />
The command given in LFS book throws i.e<br />
<br />
<br />
khirod@khirod:/dev$ mke2fs -jv /dev/sda5<br />
mke2fs 1.41.4 (27-Jan-2009)<br />
/dev/sda5 is mounted; will not make a filesystem here!<br />
<br />
Please help me out<br />
<br />
Regards<br />
Khirod Patra.</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=8">Linux - Newbie</category>
			<dc:creator>khirodpatra</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770503</guid>
		</item>
		<item>
			<title>Acer aspire one, internet (wired and wireless) isnt working. Help!</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770502&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 21:27:34 GMT</pubDate>
			<description>Hi, i have had this acer aspire one for about a year now. I was running ubuntu, then updated to ubuntu 9.10. It was working fine, then all of a sudden the internet stopped working. Both wired and...</description>
			<content:encoded><![CDATA[<div>Hi, i have had this acer aspire one for about a year now. I was running ubuntu, then updated to ubuntu 9.10. It was working fine, then all of a sudden the internet stopped working. Both wired and wireless. When i plug in an ethernet cable it loads for a while then says cannot connect. So i figured that there ws something messed up with my software, as i have had to play with this piece of garbage laptop many times. So i got a new iso for ubuntu and installed it. Still no success. I then tried Mint, no success. Now im running eeebuntu off a usb and no internet still. Ubuntu 9.10 is still installed, but eeebuntu is just running of a usb. I looked it up in google, but it seems all they seem to ask is if it can &quot;ping&quot;. I tried this and it wouldnt ping. So i need some help, if anyone can. Btw, im not very good at computer stuff and new to linux. But i do know some things. I appreciate any help.</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=8">Linux - Newbie</category>
			<dc:creator>HeyzuesCristos</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770502</guid>
		</item>
		<item>
			<title>Hello from Elliot Lake, Ontario</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770501&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 21:24:45 GMT</pubDate>
			<description>Hello, I am new to Linux but have about 48 years experience with computers starting with a vacuum tube system. 
In PC systems I have worked with DOS, OS/2, Windows 3.1 through Windows XP. In my...</description>
			<content:encoded><![CDATA[<div>Hello, I am new to Linux but have about 48 years experience with computers starting with a vacuum tube system.<br />
In PC systems I have worked with DOS, OS/2, Windows 3.1 through Windows XP. In my computer room, I have PC's from a Pentium I-166MMX to an Athlon 750 MHz, also three Macintoshes from about 1990 to year 2000. <br />
Over the last few years I have picked up seven Linux distributions starting with RedHat 5.2 and am trying them out in chronological order.</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=24">LinuxQuestions.org Member Intro</category>
			<dc:creator>BobLandsbor</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770501</guid>
		</item>
		<item>
			<title>Shrink of a NTFS partition is not available even if the space is there</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770500&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 21:23:55 GMT</pubDate>
			<description>i am using a dual boot with windows vista and debian, i want to shrink the ntfs partion of my laptop. the partition has 115GB of space free but when i try to shrink in windows it shows me that only...</description>
			<content:encoded><![CDATA[<div>i am using a dual boot with windows vista and debian, i want to shrink the ntfs partion of my laptop. the partition has 115GB of space free but when i try to shrink in windows it shows me that only 15MB is shrinkable!! i want to shrink atleast 10GB... what should i do??<br />
<br />
-size of that partition: 240GB<br />
-free space in that partition: 115GB<br />
-windows storage manager shows that i can shrink upto 15MB...<br />
<br />
help me :(</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=18">Linux - Hardware</category>
			<dc:creator>sd||</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770500</guid>
		</item>
		<item>
			<title>Now using Ubuntu 9.04 - adding dual boot w/XP what is the best way to do it?</title>
			<link>http://www.linuxquestions.org/questions/showthread.php?t=770499&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 21:08:08 GMT</pubDate>
			<description>I need to use Windows XP programs. I have XP already as a Virtual machine in Ubuntu 9.04.  I tried this first, instead of doing a dual boot, but I need to use more features of XP, and some things just...</description>
			<content:encoded><![CDATA[<div>I need to use Windows XP programs. I have XP already as a Virtual machine in Ubuntu 9.04.  I tried this first, instead of doing a dual boot, but I need to use more features of XP, and some things just don't work completely as it is.<br />
<br />
Since Ubuntu is the OS that is running now.  <font color="Red"><u>What is the best way to set up a dual boot?</u></font>  I'm not opposed to wiping everything clean and starting from there. I just want it to be done right.<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.linuxquestions.org/questions/forumdisplay.php?f=2">Linux - Software</category>
			<dc:creator>Race577</dc:creator>
			<guid isPermaLink="true">http://www.linuxquestions.org/questions/showthread.php?t=770499</guid>
		</item>
	</channel>
</rss>
