<?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: Secure /tmp</title>
	<atom:link href="http://www.securecentos.com/basic-security/secure-tmp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.securecentos.com</link>
	<description>Howto secure your centos</description>
	<lastBuildDate>Tue, 31 Jan 2012 18:52:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Elijah</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-1093</link>
		<dc:creator>Elijah</dc:creator>
		<pubDate>Thu, 04 Aug 2011 10:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-1093</guid>
		<description> mount -o loop,noexec,nosuid,rw /var/tempFS /tmp
mount: you must specify the filesystem type
  How can I solve this</description>
		<content:encoded><![CDATA[<p> mount -o loop,noexec,nosuid,rw /var/tempFS /tmp<br />
mount: you must specify the filesystem type<br />
  How can I solve this</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-1062</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 03 May 2011 10:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-1062</guid>
		<description>duplicate!
please remove this for me!</description>
		<content:encoded><![CDATA[<p>duplicate!<br />
please remove this for me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-1061</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 03 May 2011 10:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-1061</guid>
		<description>Step 4: I type &#039;mount -o loop,noexec,nosuid,rw /var/tempFS /tmp&#039; and get the message:
&quot;mount: no permission to look at /dev/loop#&quot;
how to solve this. thanks
-saosangmo
 
</description>
		<content:encoded><![CDATA[<p>Step 4: I type &#8216;mount -o loop,noexec,nosuid,rw /var/tempFS /tmp&#8217; and get the message:<br />
&#8220;mount: no permission to look at /dev/loop#&#8221;<br />
how to solve this. thanks<br />
-saosangmo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: guest</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-1060</link>
		<dc:creator>guest</dc:creator>
		<pubDate>Sun, 03 Apr 2011 19:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-1060</guid>
		<description>it does not, but mounting with noexec does.</description>
		<content:encoded><![CDATA[<p>it does not, but mounting with noexec does.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: مؤسسة البلسم</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-1057</link>
		<dc:creator>مؤسسة البلسم</dc:creator>
		<pubDate>Thu, 17 Mar 2011 17:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-1057</guid>
		<description>thanks for this tutorial :) </description>
		<content:encoded><![CDATA[<p>thanks for this tutorial <img src='http://www.securecentos.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mzopg</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-1051</link>
		<dc:creator>Mzopg</dc:creator>
		<pubDate>Sun, 13 Feb 2011 14:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-1051</guid>
		<description>I did &quot;secure /tmp&quot; part, and now I have two /tmp:
/dev/md2              3.9G   75M  3.6G   3% /tmp
/var/tempFS           3.9G   75M  3.6G   3% /tmp

Is this ok?</description>
		<content:encoded><![CDATA[<p>I did &#8220;secure /tmp&#8221; part, and now I have two /tmp:<br />
/dev/md2              3.9G   75M  3.6G   3% /tmp<br />
/var/tempFS           3.9G   75M  3.6G   3% /tmp</p>
<p>Is this ok?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim J Birkett</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-1038</link>
		<dc:creator>Tim J Birkett</dc:creator>
		<pubDate>Fri, 12 Nov 2010 01:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-1038</guid>
		<description>If you were mounting tmp.img as your /tmp file and wanted to add 9 GB to it:

umount /tmp
dd if=/dev/zero bs=1024 count=9G &gt;&gt; tmp.img
resize2fs -f tmp.img
mount -a

you now have a 10GB /tmp file (may require service restarts / reboot)


</description>
		<content:encoded><![CDATA[<p>If you were mounting tmp.img as your /tmp file and wanted to add 9 GB to it:</p>
<p>umount /tmp<br />
dd if=/dev/zero bs=1024 count=9G &gt;&gt; tmp.img<br />
resize2fs -f tmp.img<br />
mount -a</p>
<p>you now have a 10GB /tmp file (may require service restarts / reboot)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-809</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 15 Aug 2010 15:54:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-809</guid>
		<description>Following the steps to secure shm, I don&#039;t see the following line in /etc/fstab:

none /dev/shm tmpfs defaults,rw 0 0

Instead, the most similar I see is:

tmpfs /dev/shm tmpfs defaults 0 0

Thanks!</description>
		<content:encoded><![CDATA[<p>Following the steps to secure shm, I don&#8217;t see the following line in /etc/fstab:</p>
<p>none /dev/shm tmpfs defaults,rw 0 0</p>
<p>Instead, the most similar I see is:</p>
<p>tmpfs /dev/shm tmpfs defaults 0 0</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RLS Hosting</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-758</link>
		<dc:creator>RLS Hosting</dc:creator>
		<pubDate>Fri, 06 Aug 2010 02:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-758</guid>
		<description>Does this work on VPS or just Dedicated Servers? Thanks.</description>
		<content:encoded><![CDATA[<p>Does this work on VPS or just Dedicated Servers? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali</title>
		<link>http://www.securecentos.com/basic-security/secure-tmp/comment-page-1/#comment-726</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Fri, 30 Jul 2010 13:17:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.securecentos.com/?page_id=279#comment-726</guid>
		<description>i cant found 
&quot;none /dev/shm tmpfs defaults,rw 0 0&quot;

my /etc/fstab :
/dev/VolGroup00/LogVol00                        /                       ext3    defaults,usrquota,grpquota      1 1
LABEL=/boot             /boot                   ext3    defaults        1 2
tmpfs                   /dev/shm                tmpfs   defaults,nosuid,noexec        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
/dev/VolGroup00/LogVol01 swap                    swap    defaults        0 0
tmpfs /tmp tmpfs defaults,nosuid,noexec 0 0
/var/tempFS /tmp ext3 loop,nosuid,noexec,rw 0 0

thanks</description>
		<content:encoded><![CDATA[<p>i cant found<br />
&#8220;none /dev/shm tmpfs defaults,rw 0 0&#8243;</p>
<p>my /etc/fstab :<br />
/dev/VolGroup00/LogVol00                        /                       ext3    defaults,usrquota,grpquota      1 1<br />
LABEL=/boot             /boot                   ext3    defaults        1 2<br />
tmpfs                   /dev/shm                tmpfs   defaults,nosuid,noexec        0 0<br />
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0<br />
sysfs                   /sys                    sysfs   defaults        0 0<br />
proc                    /proc                   proc    defaults        0 0<br />
/dev/VolGroup00/LogVol01 swap                    swap    defaults        0 0<br />
tmpfs /tmp tmpfs defaults,nosuid,noexec 0 0<br />
/var/tempFS /tmp ext3 loop,nosuid,noexec,rw 0 0</p>
<p>thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

