<?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>Craig Mayhew's Blog &#187; Linux Permissions</title>
	<atom:link href="http://www.craigmayhew.com/blog/tag/linux-permissions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.craigmayhew.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 29 Jan 2012 21:51:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Greasemonkey scripts won&#8217;t update on Ubuntu</title>
		<link>http://www.craigmayhew.com/blog/2010/02/greasemonkey-scripts-wont-update-on-ubuntu/</link>
		<comments>http://www.craigmayhew.com/blog/2010/02/greasemonkey-scripts-wont-update-on-ubuntu/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 20:11:00 +0000</pubDate>
		<dc:creator>Craig Mayhew</dc:creator>
				<category><![CDATA[Guides/Fixes]]></category>
		<category><![CDATA[Linux/Ubuntu]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.craigmayhew.com/blog/?p=920</guid>
		<description><![CDATA[The usual reason for not being able to update the scripts is that your permissions are wrong in your Firefox folder. Your Grease Monkey scripts will be in your firefox folder. The default place for this is (please substitute {username} for your actual Ubuntu user name):

cd /home/{username}/.mozilla/firefox/gm_scripts/

You need to make sure you are the owner [...]]]></description>
			<content:encoded><![CDATA[<p>The usual reason for not being able to update the scripts is that your permissions are wrong in your Firefox folder. Your Grease Monkey scripts will be in your firefox folder. The default place for this is (please substitute {username} for your actual Ubuntu user name):</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
cd /home/{username}/.mozilla/firefox/gm_scripts/
</pre>
<p>You need to make sure you are the owner of this folder. This command will make sure you are. Again please substitute whats inside the {} brackets.</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
chown -R {username}:{usergroup} /home/{username}/.mozilla/firefox/gm_scripts
</pre>
<p>If that still fails to fix the problem, then you also need to make sure you have write permissions on your firefox settings folder.</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
chmod -R 755 /home/{username}/.mozilla/firefox/gm_scripts
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.craigmayhew.com/blog/2010/02/greasemonkey-scripts-wont-update-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Error: The application &#8220;gnome-panel&#8221; attempted to change an aspect of your configuration that your system administrator or operating system vendor does not allow you to change</title>
		<link>http://www.craigmayhew.com/blog/2009/10/ubuntu-error-the-application-gnome-panel-attempted-to-change-an-aspect-of-your-configuration-that-your-system-administrator-or-operating-system-vendor-does-not-allow-you-to-change/</link>
		<comments>http://www.craigmayhew.com/blog/2009/10/ubuntu-error-the-application-gnome-panel-attempted-to-change-an-aspect-of-your-configuration-that-your-system-administrator-or-operating-system-vendor-does-not-allow-you-to-change/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 22:31:24 +0000</pubDate>
		<dc:creator>Craig Mayhew</dc:creator>
				<category><![CDATA[Linux/Ubuntu]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[Ubuntu 9.04]]></category>

		<guid isPermaLink="false">http://www.craigmayhew.com/blog/?p=418</guid>
		<description><![CDATA[Shortly after logging into Gnome I was getting the following error:
&#8220;The application &#8220;gnome-panel&#8221; attempted to change an aspect of your configuration that your system administrator or operating system vendor does not allow you to change. Some of the settings you have selected may not take effect, or may not be restored next time you use [...]]]></description>
			<content:encoded><![CDATA[<p>Shortly after logging into Gnome I was getting the following error:</p>
<p>&#8220;The application &#8220;gnome-panel&#8221; attempted to change an aspect of your configuration that your system administrator or operating system vendor does not allow you to change. Some of the settings you have selected may not take effect, or may not be restored next time you use the application.&#8221;</p>
<p>Clicking the &#8220;details&#8221; button brings up the following message: &#8220;No database available to save your configuration: unable to store a value at key &#8216;/apps/panel/toplevels/top_panel_screen0/expand&#8217;, as the configuration server has no writable databases.&#8221;</p>
<p>I had messed up my permissions in the .gconf directory that stores many of Gnome&#8217;s settings. In my case the execute permission was missing from the folder and all files within it so Gnome gave that error.</p>
<p>To fix this run the following commnd on your gconf directory. It will give your user read, write and execute permissions to the gconf folder and all files/folders within it which should solve the problem.</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
sudo chmod -R  u+rwx ~/.gconf
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.craigmayhew.com/blog/2009/10/ubuntu-error-the-application-gnome-panel-attempted-to-change-an-aspect-of-your-configuration-that-your-system-administrator-or-operating-system-vendor-does-not-allow-you-to-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Cannot find or run the base session script. Running Gnome in failsafe session instead.&#8221;</title>
		<link>http://www.craigmayhew.com/blog/2009/09/cannot-find-or-run-the-base-session-script-running-gnome-in-failsafe-session-instead/</link>
		<comments>http://www.craigmayhew.com/blog/2009/09/cannot-find-or-run-the-base-session-script-running-gnome-in-failsafe-session-instead/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 07:00:28 +0000</pubDate>
		<dc:creator>Craig Mayhew</dc:creator>
				<category><![CDATA[Guides/Fixes]]></category>
		<category><![CDATA[Linux/Ubuntu]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.craigmayhew.com/blog/?p=396</guid>
		<description><![CDATA[After logging into my Ubuntu 9.04 machine I&#8217;m greeted with the following message &#8220;Cannot find or run the base session script. Running Gnome in failsafe session instead&#8221;. The reason for this was I had messed up my permissions and the following fixed it:
After logging in and recieving the errors message press Ctrl-Alt-F1 to drop back [...]]]></description>
			<content:encoded><![CDATA[<p>After logging into my Ubuntu 9.04 machine I&#8217;m greeted with the following message &#8220;Cannot find or run the base session script. Running Gnome in failsafe session instead&#8221;. The reason for this was I had messed up my permissions and the following fixed it:</p>
<p>After logging in and recieving the errors message press Ctrl-Alt-F1 to drop back into command line. Then run the following:</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
Sudo chmod 755 /etc/gdm/Xsession
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.craigmayhew.com/blog/2009/09/cannot-find-or-run-the-base-session-script-running-gnome-in-failsafe-session-instead/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu Error &#8220;sudo: /etc/sudoers is mode 0640, should be 0440&#8243;</title>
		<link>http://www.craigmayhew.com/blog/2009/09/ubuntu-error-sudo-etcsudoers-is-mode-0640-should-be-0440/</link>
		<comments>http://www.craigmayhew.com/blog/2009/09/ubuntu-error-sudo-etcsudoers-is-mode-0640-should-be-0440/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 07:30:03 +0000</pubDate>
		<dc:creator>Craig Mayhew</dc:creator>
				<category><![CDATA[Guides/Fixes]]></category>
		<category><![CDATA[Linux/Ubuntu]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[Sudoers]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.craigmayhew.com/blog/?p=398</guid>
		<description><![CDATA[If for whatever reason you change the permissions on your sudoers file you will get a similar error to &#8220;sudo: /etc/sudoers is mode 0640, should be 0440&#8243; whenever you try to run the sudo command. The problem is that because the permissions are wrong on the sudoers file, linux won&#8217;t let you run the sudo [...]]]></description>
			<content:encoded><![CDATA[<p>If for whatever reason you change the permissions on your sudoers file you will get a similar error to &#8220;sudo: /etc/sudoers is mode 0640, should be 0440&#8243; whenever you try to run the sudo command. The problem is that because the permissions are wrong on the sudoers file, linux won&#8217;t let you run the sudo command!</p>
<p>To get around this press &#8220;Esc&#8221; at the grub loader screen when linux is booting and enter into the latest recovery mode. Then select the option that allows you to drop into a command line as root and type </p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
chmod 0440 /etc/sudoers
</pre>
<p>Then reboot and your troubles should be solved!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigmayhew.com/blog/2009/09/ubuntu-error-sudo-etcsudoers-is-mode-0640-should-be-0440/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

