<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to Delete in Linux Terminal rm Command</title>
	<atom:link href="http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/feed/" rel="self" type="application/rss+xml" />
	<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/</link>
	<description>Online Linux tutorial for beginners</description>
	<lastBuildDate>Sun, 15 Aug 2010 17:01:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Beginner Linux Tutorial</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/comment-page-1/#comment-71</link>
		<dc:creator>Beginner Linux Tutorial</dc:creator>
		<pubDate>Tue, 29 Sep 2009 18:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=116#comment-71</guid>
		<description>Most likely those files are owned by another user. You can run &lt;code&gt;ls -l&lt;/code&gt; in that directory and you will see who owns the files and what the permissions are. You will see something like this &lt;code&gt;-rw-r--r--  1 max  max      543504 Sep 19 15:40 test.avi&lt;/code&gt; the order is &lt;code&gt;drwxrwxrwx .... user group ....&lt;/code&gt; the d is if it is a directory, r is read, w is write, x is execute, first set of rwx is user permissions, second is group, third is all other users. If you do not have permissions then &lt;code&gt;su&lt;/code&gt; to root to delete them or &lt;code&gt;su&lt;/code&gt; to root and use &lt;code&gt;chown -R your-username your-group /path/to/files&lt;/code&gt; to change permissions to your user.</description>
		<content:encoded><![CDATA[<p>Most likely those files are owned by another user. You can run <code>ls -l</code> in that directory and you will see who owns the files and what the permissions are. You will see something like this <code>-rw-r--r--  1 max  max      543504 Sep 19 15:40 test.avi</code> the order is <code>drwxrwxrwx .... user group ....</code> the d is if it is a directory, r is read, w is write, x is execute, first set of rwx is user permissions, second is group, third is all other users. If you do not have permissions then <code>su</code> to root to delete them or <code>su</code> to root and use <code>chown -R your-username your-group /path/to/files</code> to change permissions to your user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moss</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/comment-page-1/#comment-70</link>
		<dc:creator>Moss</dc:creator>
		<pubDate>Wed, 23 Sep 2009 18:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=116#comment-70</guid>
		<description>What do I do if the rm -rf function doesn&#039;t work? I keep getting permission denied messages for several files linked to the RealPlayer I downloaded.</description>
		<content:encoded><![CDATA[<p>What do I do if the rm -rf function doesn&#8217;t work? I keep getting permission denied messages for several files linked to the RealPlayer I downloaded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beginner Linux Tutorial</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/comment-page-1/#comment-69</link>
		<dc:creator>Beginner Linux Tutorial</dc:creator>
		<pubDate>Tue, 22 Sep 2009 15:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=116#comment-69</guid>
		<description>You would first want to mount the ntfs partition using &lt;code&gt;ntfs-3g&lt;/code&gt; so you have read/write permissions to ntfs partitions. &lt;code&gt;ntfs-3g /dev/your-c-partition /media/ntfs&lt;/code&gt; Then you can &lt;a href=&quot;http://beginnerlinuxtutorial.com/scripts/delete-windows-temp-files.sh&quot; title=&quot;delete windows temp files script&quot; rel=&quot;nofollow&quot;&gt;download this script file&lt;/a&gt; I wrote for you. Edit the script, you will need to change &lt;code&gt;$MNTPNT=&quot;/media/ntfs&quot;&lt;/code&gt; to where ever your ntfs partition is mounted. Then make sure you &lt;code&gt;chmod ugo+x delete-windows-temp-files.sh&lt;/code&gt; and then run &lt;code&gt;./delete-windows-temp-files.sh&lt;/code&gt;

Hope this helps, if you need more help please let me know. Have a great day!</description>
		<content:encoded><![CDATA[<p>You would first want to mount the ntfs partition using <code>ntfs-3g</code> so you have read/write permissions to ntfs partitions. <code>ntfs-3g /dev/your-c-partition /media/ntfs</code> Then you can <a href="http://beginnerlinuxtutorial.com/scripts/delete-windows-temp-files.sh" title="delete windows temp files script" rel="nofollow">download this script file</a> I wrote for you. Edit the script, you will need to change <code>$MNTPNT="/media/ntfs"</code> to where ever your ntfs partition is mounted. Then make sure you <code>chmod ugo+x delete-windows-temp-files.sh</code> and then run <code>./delete-windows-temp-files.sh</code></p>
<p>Hope this helps, if you need more help please let me know. Have a great day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rampspost</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/comment-page-1/#comment-66</link>
		<dc:creator>Rampspost</dc:creator>
		<pubDate>Wed, 16 Sep 2009 11:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=116#comment-66</guid>
		<description>Can you give a command, wich is useful for deleting temporary files in ALL user profiles in windows (with livecd).

I mean paths like:
C:\Documents and Settings\user1\Local Settings\Application Data\Mozilla\Firefox\Profiles\sf1u1syx.default\Cache
C:\Documents and Settings\user2\Local Settings\Application Data\Mozilla\Firefox\Profiles\tyrwertr.default\Cache
C:\Documents and Settings\etc\Local Settings\Application Data\Mozilla\Firefox\Profiles\wetytyuy.default\Cache

and

C:\Documents and Settings\user1\Local Settings\Temp
C:\Documents and Settings\user2\Local Settings\Temp
C:\Documents and Settings\etc\Local Settings\Temp

and so on...</description>
		<content:encoded><![CDATA[<p>Can you give a command, wich is useful for deleting temporary files in ALL user profiles in windows (with livecd).</p>
<p>I mean paths like:<br />
C:\Documents and Settings\user1\Local Settings\Application Data\Mozilla\Firefox\Profiles\sf1u1syx.default\Cache<br />
C:\Documents and Settings\user2\Local Settings\Application Data\Mozilla\Firefox\Profiles\tyrwertr.default\Cache<br />
C:\Documents and Settings\etc\Local Settings\Application Data\Mozilla\Firefox\Profiles\wetytyuy.default\Cache</p>
<p>and</p>
<p>C:\Documents and Settings\user1\Local Settings\Temp<br />
C:\Documents and Settings\user2\Local Settings\Temp<br />
C:\Documents and Settings\etc\Local Settings\Temp</p>
<p>and so on&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beginner Linux Tutorial</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/comment-page-1/#comment-57</link>
		<dc:creator>Beginner Linux Tutorial</dc:creator>
		<pubDate>Fri, 21 Aug 2009 14:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=116#comment-57</guid>
		<description>What are you wanting to delete? As the tutorial says you can delete anything on the filesystem with rm -rf filename</description>
		<content:encoded><![CDATA[<p>What are you wanting to delete? As the tutorial says you can delete anything on the filesystem with rm -rf filename</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slender</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/comment-page-1/#comment-56</link>
		<dc:creator>slender</dc:creator>
		<pubDate>Fri, 14 Aug 2009 10:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=116#comment-56</guid>
		<description>pliz provide a command to delete a record in linux.</description>
		<content:encoded><![CDATA[<p>pliz provide a command to delete a record in linux.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linux Basic Commands Tutorial &#124; Beginner Linux Tutorial</title>
		<link>http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/how-to-delete-in-linux-terminal-rm-command/comment-page-1/#comment-33</link>
		<dc:creator>Linux Basic Commands Tutorial &#124; Beginner Linux Tutorial</dc:creator>
		<pubDate>Tue, 25 Nov 2008 05:41:51 +0000</pubDate>
		<guid isPermaLink="false">http://beginnerlinuxtutorial.com/?p=116#comment-33</guid>
		<description>[...] rm - shell command in Linux to remove files&#124;directories. [...]</description>
		<content:encoded><![CDATA[<p>[...] rm &#8211; shell command in Linux to remove files|directories. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
