<?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>KYRIAKOS ANASTASAKIS - ΚΥΡΙΑΚΟΣ ΑΝΑΣΤΑΣΑΚΗΣ &#187; linux</title>
	<atom:link href="http://kyriakos.anastasakis.net/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://kyriakos.anastasakis.net</link>
	<description></description>
	<lastBuildDate>Wed, 28 Dec 2011 08:42:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>A small adventure comes to a happy end..</title>
		<link>http://kyriakos.anastasakis.net/2011/07/26/a-small-adventure-comes-to-a-happy-end/</link>
		<comments>http://kyriakos.anastasakis.net/2011/07/26/a-small-adventure-comes-to-a-happy-end/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 22:27:38 +0000</pubDate>
		<dc:creator>Kyriakos Anastasakis</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[import_linkedin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://kyriakos.anastasakis.net/?p=293</guid>
		<description><![CDATA[I have a Windows XP installation on a VMWare hard disk. Today I tried to boot it, but&#8230; OOPS (no.. I don&#8217;t mean Object Oriented Programming and Systems&#8230; I mean..crap!). It seems I forgot the password of the installation. So a little adventure started&#8230; 1. After a bit of research I found out that there [...]]]></description>
			<content:encoded><![CDATA[<p>I have a Windows XP installation on a VMWare hard disk. Today I tried to boot it, but&#8230; OOPS (no.. I don&#8217;t mean Object Oriented Programming and Systems&#8230; I mean..crap!). It seems I forgot the password of the installation. So a little adventure started&#8230;</p>
<p>1. After a bit of research I found out that there is <a href="http://ophcrack.sourceforge.net/">ophcrack</a>. I downloaded the live CD as an ISO image and set VMWare to load that CD.</p>
<p>2. When VMWare starts and before windows starts booting I clicked on the VMWare screen and pressed ESC. This gives me the menu to select the device I want to use to boot.</p>
<p>3. I chose to boot from the CD.</p>
<p>4. The ophcrack live CD starts loading, but when it finishes I get a:  &#8220;No partition containing hashes found&#8221; error.</p>
<p>5. The problem seems to be that the Windows installation is on a SCSI virtual disk that is not recognised by this distribution of linux. Tried &#8220;fdisk -l&#8221; on a terminal from within the ophcrack live CD and it didn&#8217;t return any results.  To be able to crack the password I need to have access to the &#8220;WIndows/System32/config/ folder of my virtual hard disk. So&#8230;</p>
<p>6.  I created a second virtual hard disk in the same VMWare virtual machine. I downloaded an ISO image of Ubuntu</p>
<p>7. Installed Ubuntu on the newly created hard disk.</p>
<p>8. Boot using Ubuntu. Ubuntu was able to access the virtual hard disk of the windows installation. I copied the folder &#8220;WIndows/System32/config/&#8221; on my local Windows 7 installation.</p>
<p>9. Downloaded ophcrack for Windows and installed it on my Windows 7. Also downloaded the XP Free Small Table.</p>
<p>10. Launched ophcrack and clicked on &#8220;Tables&#8221;-&gt;Install and selected the folder where I had downloaded the XP Free Small Table file (if it is a zip file you need to unzip it).</p>
<p>11. Select Load-&gt;Encypted SAM and select the &#8220;config&#8221; folder I had copied from the VMWare installation (through Ubuntu).</p>
<p>12. Got my password in 45 seconds!!</p>
]]></content:encoded>
			<wfw:commentRss>http://kyriakos.anastasakis.net/2011/07/26/a-small-adventure-comes-to-a-happy-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ipconfig equivalent in Ubuntu</title>
		<link>http://kyriakos.anastasakis.net/2011/06/13/ipconfig-equivalent-in-ubuntu/</link>
		<comments>http://kyriakos.anastasakis.net/2011/06/13/ipconfig-equivalent-in-ubuntu/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 12:38:28 +0000</pubDate>
		<dc:creator>Kyriakos Anastasakis</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://kyriakos.anastasakis.net/?p=277</guid>
		<description><![CDATA[I use a virtualbox virtual machine to run Ubuntu from within Windows (yes, I know I am a masochist). Anyway, every time I resume the virtual machine Ubuntu loses connection with the internet and I have to reset the interface. In windows from the command prompt you have to do an ipconfig /release and an [...]]]></description>
			<content:encoded><![CDATA[<p>I use a virtualbox virtual machine to run Ubuntu from within Windows (yes, I know I am a masochist). Anyway, every time I resume the virtual machine Ubuntu loses connection with the internet and I have to reset the interface. In windows from the command prompt you have to do an <code>ipconfig /release</code> and an <code>ipconfig /renew</code>. Similarly in Ubuntu all I had to do was the following:</p>
<p><strong>1. <code>sudo ifconfig</code> to get a list of all the network interfaces.</strong> There you can see the name of the networking interface that you need to reset. In my case I wanted to reset interface &#8220;eth3&#8243;. So I did:<br />
<strong>2.<code>sudo dhclient -r eth3</code></strong> to <code>ipconfig /release</code><br />
<strong>3.<code>sudo dhclient eht3</code></strong> to <code>ipconfig /renew</code></p>
<p>That&#8217;s it! Got a new IP and I can access the internet!</p>
]]></content:encoded>
			<wfw:commentRss>http://kyriakos.anastasakis.net/2011/06/13/ipconfig-equivalent-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu, Kubuntu, Mepis: Personal Experiences</title>
		<link>http://kyriakos.anastasakis.net/2007/12/23/ubuntu-kubuntu-mepis-personal-experiences/</link>
		<comments>http://kyriakos.anastasakis.net/2007/12/23/ubuntu-kubuntu-mepis-personal-experiences/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 15:42:51 +0000</pubDate>
		<dc:creator>Kyriakos Anastasakis</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://kyriakos.anastasakis.net/blog/2007/12/23/ubuntu-kubuntu-mepis-personal-experiences/</guid>
		<description><![CDATA[Kaspersky antivirus and comondo firewall have rendered my windows 2000 laptop to be very slow. So I decided to give it a try with linux. My set-up: A Toshiba 2450-S203 laptop (P4@2.8), an nvidia video card (don&#8217;t remember the details of the chip) and a wireless pcmcia linksys WPC11 version 4. My experiences: Mepis 6.5 [...]]]></description>
			<content:encoded><![CDATA[<p>Kaspersky antivirus and comondo firewall have rendered my windows 2000 laptop to be very slow. So I decided to give it a try with linux.</p>
<p>My set-up: A Toshiba 2450-S203 laptop (P4@2.8), an nvidia video card (don&#8217;t remember the details of the chip) and a wireless pcmcia linksys WPC11 version 4.</p>
<p>My experiences:</p>
<h4>Mepis 6.5</h4>
<p>First I tried Mepis 6.5. It worked very well out of the box and the wireless card connected to our router without a problem. However since Mepis 6.5 is based on an older version of ubuntu its repository has reaaaaly old versions of software. This was a problem and since Mepis 7.0 is coming out, I decided to try version 7.0 RC2.</p>
<h4>Mepis 7.0RC2</h4>
<p>Installed well, but I couldn&#8217;t make the wireless card work. I sent a post to the mepislovers forum and received a number of useful answers. It could be the version ndiswrapper that comes with Mepis 7, or the driver. So I had to either download the latest source code of ndiswrapper and compile it, or try different version&#8230; Too much work for a RC version.</p>
<h4>Kubuntu 7.1</h4>
<p>As I have been a windows user, I decide to go for another kde distribution, kubuntu. The installation went smoothly. However I couldn&#8217;t connect the wireless card to our router. Kubuntu would recognise it, but as soon as I tried to connect to the router&#8230; kernel panic! The caps lock light flashed and the system was unresponsive. I tried to blacklist the native drivers and use ndiswrapper with my windows drivers&#8230; but to install ndiswrapper it asked for the installation cd! (Even though I was already connected to the internet with my ethernet cable).</p>
<p>I managed to make it word with ndiswrapper and the system was quite stable. So, now let&#8217;s try ubuntu for a change&#8230;</p>
<h4>Ubuntu 7.1</h4>
<p>As expected I had the same problem with the wireless card and  resolved it using ndiswrapper again. I have to confess that I liked the interface better than KDE. It was quite fast and stable. The problem is that I need windows anyway (some .NET development, software which don&#8217;t have a linux version) . I can use virtualization (vmware) to run windows from within linux, but to do that I need more hard disk space and probably I will need again the firewall and antivirus installed.</p>
<p>The verdict?? I might try to switch to linux after I finish writing up, but right now I don&#8217;t have the time, resources (i.e. hard disk space) to do it properly. However there are some things I didn&#8217;t like. First of all in (k)ubuntu, when the native wireless card drivers crashed, NOTHING was logged in the log files, no warning, no nothing (at least a windows blue screen gives you a message with the address/module that caused the crash.).  The other annoying thing&#8230; why do you need the installation cd if you are already on the internet and the package manager can find the binaries on the internet?</p>
<p>I mean ok&#8230; you blaim windows for the blue screens of death, you blaim them for asking the installation cd all the time&#8230; so people say switch to linux (or get a mac).. you switch to linux and see things are not much better there.</p>
<p>Having said that I hope that some day I will have the time to be actively involved in a linux distro.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyriakos.anastasakis.net/2007/12/23/ubuntu-kubuntu-mepis-personal-experiences/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

