<?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>MEDOIX</title>
	<atom:link href="http://www.medoix.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.medoix.com</link>
	<description>technology, life &#38; solutions</description>
	<lastBuildDate>Thu, 23 Feb 2012 21:57:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Stop OS X Terminal SSH Timeout</title>
		<link>http://www.medoix.com/2012/02/24/stop-os-x-terminal-ssh-timeout/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=stop-os-x-terminal-ssh-timeout</link>
		<comments>http://www.medoix.com/2012/02/24/stop-os-x-terminal-ssh-timeout/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 21:57:54 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Apple OSX]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.medoix.com/?p=1446</guid>
		<description><![CDATA[There are three ways to do this using the ServerAliveInterval to send data along every few seconds. Replace the &#8220;10&#8243; with the number of seconds between pings. From least to most global: 1. Add the option on the command line: ssh -o ServerAliveInterval=10 keepsdroppingme.com 2. Add the option to your personal ssh config by creating/editing [...]]]></description>
			<content:encoded><![CDATA[<p>There are three ways to do this using the ServerAliveInterval to send data along every few seconds. Replace the &#8220;10&#8243; with the number of seconds between pings.</p>
<p>From least to most global:</p>
<p>1. Add the option on the command line:</p>
<pre class="crayon-plain-tag"><code>ssh -o ServerAliveInterval=10 keepsdroppingme.com</code></pre>
<p>2. Add the option to your personal ssh config by creating/editing ~/.ssh/config:</p>
<pre class="crayon-plain-tag"><code># This is ~/.ssh/config
# For all hosts
ServerAliveInterval 10
# For a selection of hosts
Host keepsdroppingme.com alsokeepsdroppingme.com
  ServerAliveInterval 10</code></pre>
<p>3. Add the option to the system-wide ssh config by editing /etc/ssh_config. (Syntax the same as above.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2012/02/24/stop-os-x-terminal-ssh-timeout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change MySQL Database Location</title>
		<link>http://www.medoix.com/2012/02/19/change-mysql-database-location/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=change-mysql-database-location</link>
		<comments>http://www.medoix.com/2012/02/19/change-mysql-database-location/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 20:49:32 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[AppArmor]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[HDD]]></category>

		<guid isPermaLink="false">http://www.medoix.com/?p=1443</guid>
		<description><![CDATA[So considering that i am using a 8GB USB Stick as my OS HDD it tends to get full easily and i need to clean stuff up or move things around. This happened recently with my fairly large databases. Also because of read/write cycles are high i couldn&#8217;t imagine this would be good for my [...]]]></description>
			<content:encoded><![CDATA[<p>So considering that i am using a 8GB USB Stick as my OS HDD it tends to get full easily and i need to clean stuff up or move things around. This happened recently with my fairly large databases.</p>
<p>Also because of read/write cycles are high i couldn&#8217;t imagine this would be good for my flash drive HDD and therefore decided to move it!</p>
<p>&nbsp;</p>
<p>Stop MySQL</p>
<pre class="crayon-plain-tag"><code>/etc/init.d/mysql stop</code></pre>
<p>Move existing data directory (which is located in <em>/var/lib/mysql</em>) to new dir <em>/usr/new_datadir</em></p>
<pre class="crayon-plain-tag"><code>mv /var/lib/mysql /usr/new_datadir</code></pre>
<p>Create symlink from new dir to old one</p>
<pre class="crayon-plain-tag"><code>ln -s /usr/new_datadir /var/lib/mysql</code></pre>
<p>Don&#8217;t change <em>/etc/mysql/my.cnf</em></p>
<p>Ubuntu uses some security software called <strong>AppArmor </strong>that specifies the areas of your filesystem applications are allowed to access. Unless you modify the AppArmor profile for MySQL, you&#8217;ll never be able to restart MySQL with the new datadir location.</p>
<p>In the terminal, enter the command</p>
<pre class="crayon-plain-tag"><code>vim /etc/apparmor.d/usr.sbin.mysqld</code></pre>
<p>Duplicate the lines beginning with <em>/var/lib/mysql</em> and replace duplicated strings with <em>/usr/new_datadir</em></p>
<p>In my case it was:</p>
<pre class="crayon-plain-tag"><code>.........

/var/lib/mysql/ r,

/var/lib/mysql/** rwk,

#

/usr/new_datadir r,

/usr/new_datadir** rwk,

........</code></pre><p><p><p><p>
<p>Restart the AppArmor profiles</p>
<pre class="crayon-plain-tag"><code>/etc/init.d/apparmor restart</code></pre>
<p>Restart MySQL</p>
<pre class="crayon-plain-tag"><code>/etc/init.d/mysql restart</code></pre>
<p>MySQL should now start without any errors, have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2012/02/19/change-mysql-database-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get external (WAN) IP address from command line in Linux</title>
		<link>http://www.medoix.com/2012/02/03/get-external-wan-ip-address-from-command-line-in-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=get-external-wan-ip-address-from-command-line-in-linux</link>
		<comments>http://www.medoix.com/2012/02/03/get-external-wan-ip-address-from-command-line-in-linux/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 08:14:56 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Dynamic DNS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.medoix.com/?p=1438</guid>
		<description><![CDATA[Many services and applications require you to know your external (WAN) IP address. There are plenty of web sites that allow you to do this, but here are a couple of simple ways to do this from the command line in Linux. The first method uses the cURL utility, which is basically a command-line utility [...]]]></description>
			<content:encoded><![CDATA[<p>Many services and applications require you to know your external (WAN) IP address. There are plenty of web sites that allow you to do this, but here are a couple of simple ways to do this from the command line in Linux.</p>
<p>The first method uses the <a title="cURL" href="http://curl.haxx.se/" target="_blank">cURL</a> utility, which is basically a command-line utility for retrieving data using URL syntax. In Ubuntu or Debian, you can install cURL from the repositories using the command:</p>
<pre class="crayon-plain-tag"><code>sudo apt-get install curl</code></pre>
<p>After installing cURL, just run this command to get your external IP address:</p>
<pre class="crayon-plain-tag"><code>curl ifconfig.me/ip</code></pre>
<p>You can replace ifconfig.me with other service hostnames/URLs, such as:<br />
whatismyip.org<br />
icanhazip.com<br />
tnx.nl/ip<br />
myip.dnsomatic.com<br />
ip.appspot.com<br />
checkip.dyndns.org:8245<br />
whatismyip.com<br />
jsonip.com</p>
<p>The second method is really a variation on the one above and uses the wget command. You can use the same hostnames/URLs as above with this command:</p>
<pre class="crayon-plain-tag"><code>wget -qO- ifconfig.me/ip</code></pre>
<p>Have fun! And let me know your tips for this in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2012/02/03/get-external-wan-ip-address-from-command-line-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tor Hidden Service on Ubuntu</title>
		<link>http://www.medoix.com/2012/01/28/tor-hidden-service-on-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tor-hidden-service-on-ubuntu</link>
		<comments>http://www.medoix.com/2012/01/28/tor-hidden-service-on-ubuntu/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 10:45:23 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tor Network]]></category>
		<category><![CDATA[SMTP]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.medoix.com/?p=1435</guid>
		<description><![CDATA[NOTE: This article does not explain how to setup apache or any other services apart from the tor application for hidden_service. I have recently been migrating all of my browsing, email and communications etc through the Tor Network. One of the cool features of the onion router is the ability to setup what is referred [...]]]></description>
			<content:encoded><![CDATA[<p>NOTE: This article does not explain how to setup apache or any other services apart from the tor application for hidden_service.</p>
<p>I have recently been migrating all of my browsing, email and communications etc through the <a href="http://torproject.org" title="Tor Project" target="_blank">Tor Network</a>.</p>
<p>One of the cool features of the onion router is the ability to setup what is referred to as a hidden service. This is just what it sounds like, a domain (16characters.onion) randomly generated and completely anonymous through the Tor network can be configured to point to a local service port. (Apache, SSH, SMTP etc)</p>
<p>To do this on my Ubuntu server all i had to do was the following&#8230;</p>
<pre class="crayon-plain-tag"><code>sudo apt-get update
sudo apt-get install tor</code></pre>
<p>Now that tor is installed we can create the hidden_service folder.</p>
<pre class="crayon-plain-tag"><code>sudo mkdir /var/lib/tor/hidden_service
sudo chown debian-tor:debian-tor /var/lib/tor/hidden_service</code></pre>
<p>This folder is where the private_key and hostname files will be created and stored.</p>
<p>We now want to add our hidden_service to our torrc file (tor config file).</p>
<pre class="crayon-plain-tag"><code>sudo nano /etc/tor/torrc</code></pre>
<p>And un-comment the following lines (remove the # from the start of each line)</p>
<pre class="crayon-plain-tag"><code>HiddenServiceDir /var/lib/tor/hidden_service/
HiddenServicePort 80 127.0.0.1:80</code></pre>
<p>The above two lines tell tor where to store the files as mentioned above and also what service you want to map to. In my case port 80 (Apache Web Server) and it is running on the local server (127.0.0.1)</p>
<p>CTRL+X to quit nano and hit Y to save the file.</p>
<p>Now we want to reboot the tor service so it can pick up the new settings and generate our hostname.</p>
<pre class="crayon-plain-tag"><code>sudo /etc/init.d/tor restart</code></pre>
<p>Tor will restart and the private_key and hostname files will be generated in the folder as above. You can now open your hostname folder to retrieve your 16character.onion domain name and put it to good use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2012/01/28/tor-hidden-service-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup Bitcoin Wallet to Dropbox OSX</title>
		<link>http://www.medoix.com/2012/01/28/backup-bitcoin-wallet-to-dropbox-osx/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=backup-bitcoin-wallet-to-dropbox-osx</link>
		<comments>http://www.medoix.com/2012/01/28/backup-bitcoin-wallet-to-dropbox-osx/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 21:20:54 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Apple OSX]]></category>
		<category><![CDATA[Bitcoin]]></category>
		<category><![CDATA[Dropbox Bitcoin]]></category>

		<guid isPermaLink="false">http://www.medoix.com/?p=1419</guid>
		<description><![CDATA[So i have my Bitcoin application running and as the latest version now supports wallet encryption i have this turned on with a long password. I was looking for a way to backup my wallet in case i need to format my machine or things go south. First quit the Bitcoin application and then move [...]]]></description>
			<content:encoded><![CDATA[<p>So i have my Bitcoin application running and as the latest version now supports wallet encryption i have this turned on with a long password.</p>
<p>I was looking for a way to backup my wallet in case i need to format my machine or things go south.</p>
<p>First quit the Bitcoin application and then move the wallet.dat file from the Bitcoin folder located at &#8220;~/Library/Application Support/Bitcoin&#8221; and put it in your Dropbox folder as below.</p>
<pre class="crayon-plain-tag"><code>mkdir -p ~/Dropbox/Bitcoin
mv ~/Library/Application Support/Bitcoin/wallet.dat ~/Dropbox/Bitcoin</code></pre>
<p>Secondly i now needed to create a link from the location that the Bitcoin application looks at to where the wallet file now resides.</p>
<pre class="crayon-plain-tag"><code>ln -s ~/Dropbox/Bitcoin/wallet.dat ~/Library/Application Support/Bitcoin/wallet.dat</code></pre>
<p>Now start the Bitcoin application and your address&#8217;s should all be there and correct.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2012/01/28/backup-bitcoin-wallet-to-dropbox-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Translation Packages in Ubuntu</title>
		<link>http://www.medoix.com/2012/01/22/disable-translation-packages-in-ubuntu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=disable-translation-packages-in-ubuntu</link>
		<comments>http://www.medoix.com/2012/01/22/disable-translation-packages-in-ubuntu/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 21:40:59 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Acquire Languages]]></category>

		<guid isPermaLink="false">http://www.medoix.com/?p=1375</guid>
		<description><![CDATA[To disable downloading translations, create a file named /etc/apt/apt.conf.d/99translations &#38; put the following in it:Acquire::Languages &#34;none&#34;; You may also need to remove existing translation files in /var/lib/apt/lists/ I personally just empty the lists folder and do an apt-get update]]></description>
			<content:encoded><![CDATA[<p>To disable downloading translations, create a file named /etc/apt/apt.conf.d/99translations &amp; put the following in it:</p><pre class="crayon-plain-tag"><code>Acquire::Languages &quot;none&quot;;</code></pre><p>
You may also need to remove existing translation files in /var/lib/apt/lists/<br />
I personally just empty the lists folder and do an apt-get update</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2012/01/22/disable-translation-packages-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Lion – Remove “All My Files” from Finder</title>
		<link>http://www.medoix.com/2012/01/18/mac-os-x-lion-remove-all-my-files-from-finder/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mac-os-x-lion-remove-all-my-files-from-finder</link>
		<comments>http://www.medoix.com/2012/01/18/mac-os-x-lion-remove-all-my-files-from-finder/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 01:01:23 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Apple OSX]]></category>
		<category><![CDATA[Finder Preferences General]]></category>
		<category><![CDATA[New Finder]]></category>
		<category><![CDATA[Preferences Sidebar]]></category>

		<guid isPermaLink="false">http://www.medoix.com/?p=1370</guid>
		<description><![CDATA[Finder on Mac OS X Lion by default is always showing “All My Files” on every new window. Well to be honest not even once I found it useful, never used it since the first install. Even if you are a geeky Terminal fan, there are always times that you start up Finder, and you [...]]]></description>
			<content:encoded><![CDATA[<p>Finder on Mac OS X Lion by default is always showing “All My Files” on every new window. Well to be honest not even once I found it useful, never used it since the first install.</p>
<p>Even if you are a geeky Terminal fan, there are always times that you start up Finder, and you need to get faster to your important files. Most of the times I am looking for something in the Documents folder/subfolders, so here is how I have set it as the default Finder directory:</p>
<p>Go to Finder, main menu -&gt; Finder -&gt; Preferences… -&gt; General -&gt; and select your favorite folder in “New Finder windows show” option as shown in the screenshot below.</p>
<p><img class="aligncenter" title="lion-finder" src="http://www.medoix.com/wp-content/uploads/2012/01/finder-lion.jpg" alt="Set Default Finder Open" width="350" height="421" /></p>
<p>You can also remove “All My Files” from the Finder’s sidebar as well, just right-click and remove it, or uncheck it from Preferences -&gt; Sidebar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2012/01/18/mac-os-x-lion-remove-all-my-files-from-finder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pop-Up Notifications To iTunes</title>
		<link>http://www.medoix.com/2011/11/24/pop-up-notifications-to-itunes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pop-up-notifications-to-itunes</link>
		<comments>http://www.medoix.com/2011/11/24/pop-up-notifications-to-itunes/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 23:59:56 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Apple OSX]]></category>
		<category><![CDATA[TRUE]]></category>

		<guid isPermaLink="false">http://www.nitcom.com.au/?p=1365</guid>
		<description><![CDATA[Mac: Usually, if you want to find out what’s playing in iTunes, you either need to right-click the icon or open it. Macworld found a method that only requires a little work in Terminal to enable a small pop-up on your dock showing the currently-playing track.The process is simple, but only works in OS X [...]]]></description>
			<content:encoded><![CDATA[<p>Mac: Usually, if you want to find out what’s playing in iTunes, you either need to right-click the icon or open it. Macworld found a method that only requires a little work in Terminal to enable a small pop-up on your dock showing the currently-playing track.The process is simple, but only works in OS X Lion. First, boot up Terminal in your Utilities folder on a Mac, then, type:</p><pre class="crayon-plain-tag"><code>defaults write com.apple.dock itunes-notifications -bool TRUE;killall Dock</code></pre><p>Now, when you’re playing a track a small pop-up will show in your dock for a few seconds with information on the currently-playing track. If you decide you don’t like it, disabling it is simple. Back in Terminal, type:</p><pre class="crayon-plain-tag"><code>defaults delete com.apple.dock itunes-notifications</code></pre><p>For ways to customise the pop-up, hit up the post linked below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2011/11/24/pop-up-notifications-to-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable VNC/Management on OSX by SSH</title>
		<link>http://www.medoix.com/2011/11/24/enable-vnc-management-on-osx-by-ssh/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=enable-vnc-management-on-osx-by-ssh</link>
		<comments>http://www.medoix.com/2011/11/24/enable-vnc-management-on-osx-by-ssh/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 23:56:32 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Apple OSX]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[System Preferences]]></category>
		<category><![CDATA[VNC]]></category>

		<guid isPermaLink="false">http://www.nitcom.com.au/?p=1360</guid>
		<description><![CDATA[I had the VNC based remote access feature of OS X enabled on 10.7 but somehow it got switched off.  I fiddled around a bit and figured out how to enable remote access from a remote SSH shell.  Note that these instructions will lead to manual configuration and you will not be able to enable/disabled [...]]]></description>
			<content:encoded><![CDATA[<div id="post-body-2704052426367221458">I had the VNC based remote access feature of OS X enabled on 10.7 but somehow it got switched off.  I fiddled around a bit and figured out how to enable remote access from a remote SSH shell.  Note that these instructions will lead to manual configuration and you will not be able to enable/disabled the services from the System Preferences anymore.  In my case I used this to get in when I needed to but latter switched it back off and used the System Preferences setting.To manual switch on remote access from the terminal:</div>
<div>
<pre class="crayon-plain-tag"><code>ssh username@mac_ip_address cd /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources sudo ./kickstart -activate -configure -access -on -privs -all -restart -agent</code></pre>
</div>
<div>To switch this override back off and thus allow the System Preferences to manage screen sharing again run the following. (This will disconnect any active sessions and require physical access to re-enable it.)</div>
<div>
<pre class="crayon-plain-tag"><code>sudo ./kickstart -activate -restart -agent</code></pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2011/11/24/enable-vnc-management-on-osx-by-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change DeployStudio Wallpaper</title>
		<link>http://www.medoix.com/2011/09/02/change-deploystudio-wallpaper/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=change-deploystudio-wallpaper</link>
		<comments>http://www.medoix.com/2011/09/02/change-deploystudio-wallpaper/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 23:40:53 +0000</pubDate>
		<dc:creator>medoix</dc:creator>
				<category><![CDATA[Apple OSX]]></category>
		<category><![CDATA[DeployStudio]]></category>
		<category><![CDATA[OS X Lion Server]]></category>
		<category><![CDATA[FREE]]></category>
		<category><![CDATA[Pre Environment]]></category>

		<guid isPermaLink="false">http://medoix.com/?p=48</guid>
		<description><![CDATA[I have been doing quite a bit of Mac OS X Image work lately and have found DeployStudio to be THE best FREE and easy to customise solution for doing this. One thing i wanted to do was change the default wallpaper for the DeployStudioRuntime.nbi that is created and used as a windows Pre Environment equivalent. I achieved [...]]]></description>
			<content:encoded><![CDATA[<p>I have been doing quite a bit of Mac OS X Image work lately and have found DeployStudio to be THE best FREE and easy to customise solution for doing this.</p>
<p>One thing i wanted to do was change the default wallpaper for the DeployStudioRuntime.nbi that is created and used as a windows Pre Environment equivalent.</p>
<p>I achieved this by going into the DeployStudioRuntime.nbi folder located on the server at:</p><pre class="crayon-plain-tag"><code>/Library/NetBoot/NetBootSP0</code></pre><p>I then mounted the &#8216;DeployStudioRuntime.sparseimage&#8217; file and then navigated to the bellow folder inside the image and replaced the file &#8216;DefaultDesktop.jpg&#8217; with my custom wallapper.</p><pre class="crayon-plain-tag"><code>/System/Library/CoreServices</code></pre><p>I made sure the image i created was a high res image to make it look nicer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.medoix.com/2011/09/02/change-deploystudio-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

