<?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>Windows &#8211; Scott Mcintyre</title>
	<atom:link href="https://scott.cm/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>https://scott.cm</link>
	<description>Web Operations Engineer,  Linux Systems Administrator,  mySQL DBA,  MongoDB DBA,  Python+PHP Developer,  Performance Engineer</description>
	<lastBuildDate>Fri, 11 Jan 2013 03:56:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.2.2</generator>
	<item>
		<title>Dell Studio 15555 Windows Key</title>
		<link>https://scott.cm/dell-studio-15555-windows-key/</link>
				<comments>https://scott.cm/dell-studio-15555-windows-key/#comments</comments>
				<pubDate>Fri, 11 Jan 2013 03:56:30 +0000</pubDate>
		<dc:creator><![CDATA[Scott Mcintyre]]></dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[dell laptop activation key]]></category>
		<category><![CDATA[dell laptop product key]]></category>
		<category><![CDATA[dell laptop windows license]]></category>
		<category><![CDATA[dell product key]]></category>
		<category><![CDATA[dell studio 1555 activation key]]></category>
		<category><![CDATA[dell studio 1555 windows key]]></category>
		<category><![CDATA[dell studio 1555 windows license]]></category>
		<category><![CDATA[dell studio activation key]]></category>
		<category><![CDATA[dell studio windows key]]></category>
		<category><![CDATA[dell studio windows product key]]></category>
		<category><![CDATA[dell windows 7 activation key]]></category>
		<category><![CDATA[dell windows 7 product key]]></category>
		<category><![CDATA[dell windows activation key]]></category>
		<category><![CDATA[under battery]]></category>
		<category><![CDATA[windows 7 key]]></category>

		<guid isPermaLink="false">https://scott.cm/?p=192</guid>
				<description><![CDATA[While trying to reinstall one of my windows laptops (A Dell 1555 Studio) to Windows 7 I had alittle trouble locating the windows activation/product key. After alittle fiddling I managed to locate this well hidden under the battery. So if you are looking for this on your dell laptop try]]></description>
								<content:encoded><![CDATA[<p>While trying to reinstall one of my windows laptops (A Dell 1555 Studio) to Windows 7 I had alittle trouble locating the windows activation/product key.  After alittle fiddling I managed to locate this well hidden under the battery.</p>
<p>So if you are looking for this on your dell laptop try taking the battery out and see if the sticker is under there.</p>
]]></content:encoded>
							<wfw:commentRss>https://scott.cm/dell-studio-15555-windows-key/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
							</item>
		<item>
		<title>Mounting ext2/ext3 partitions on windows</title>
		<link>https://scott.cm/mounting-ext2ext3-partitions-on-windows/</link>
				<comments>https://scott.cm/mounting-ext2ext3-partitions-on-windows/#respond</comments>
				<pubDate>Mon, 28 Nov 2011 15:57:05 +0000</pubDate>
		<dc:creator><![CDATA[Scott Mcintyre]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[ext2 windows]]></category>
		<category><![CDATA[ext2/3 partiton windows]]></category>
		<category><![CDATA[ext2/ext3 partition windows]]></category>
		<category><![CDATA[ext3 windows]]></category>
		<category><![CDATA[ext3 windows 7]]></category>
		<category><![CDATA[mount ext2 partition on windows]]></category>
		<category><![CDATA[mount ext2/3 partition on windows]]></category>
		<category><![CDATA[mount ext2/3 windows]]></category>
		<category><![CDATA[mount ext2/ext3 windows]]></category>
		<category><![CDATA[mount ext3 in windows]]></category>
		<category><![CDATA[mount ext3 on windows]]></category>
		<category><![CDATA[mount ext3 partition on windows]]></category>

		<guid isPermaLink="false">https://scott.cm/?p=84</guid>
				<description><![CDATA[Today I needed to mount one of my USB sticks on windows to copy some files over. To get windows to recognise it I altered/etc/mke2fs.conf and done the following. Removed ext_addr from &#8220;base_features&#8221; and commented out the inode_size line. Here is a diff from the default ubuntu e2fsprogs /etc/mke2fs.conf with]]></description>
								<content:encoded><![CDATA[<p>Today I needed to mount one of my USB sticks on windows to copy some files over. To get windows to recognise it I altered/etc/mke2fs.conf and done the following.</p>
<p>Removed <em>ext_addr</em> from &#8220;base_features&#8221; and commented out the <em>inode_size</em> line. Here is a diff from the default ubuntu e2fsprogs /etc/mke2fs.conf with the necessary changes,</p>
<p>&nbsp;</p>
<p>&#8212; /etc/mke2fs.orig.conf 2011-11-28 15:20:07.365231775 +0000<br />
+++ /etc/mke2fs.conf 2011-11-28 15:20:48.165231803 +0000<br />
@@ -1,7 +1,7 @@<br />
[defaults]<br />
&#8211; base_features = sparse_super,filetype,resize_inode,dir_index,ext_attr<br />
+ base_features = sparse_super,filetype,resize_inode,dir_index<br />
blocksize = 4096<br />
&#8211; inode_size = 256<br />
+ #inode_size = 256<br />
inode_ratio = 16384</p>
<p>[fs_types]</p>
<p>Then format the partition and this will allow it to be mounted on windows.</p>
<p>I used DiskInternals Linux Reader on windows to mount the drive and copy the files which can be downloaded for free at</p>
]]></content:encoded>
							<wfw:commentRss>https://scott.cm/mounting-ext2ext3-partitions-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
