<?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>Autarchy of the Private Cave &#187; OS</title> <atom:link href="https://bogdan.org.ua/categories/programming/os/feed" rel="self" type="application/rss+xml" /><link>https://bogdan.org.ua</link> <description>Tiny bits of bioinformatics, [web-]programming etc</description> <lastBuildDate>Wed, 28 Dec 2022 16:09:04 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>https://wordpress.org/?v=3.8.27</generator> <item><title>Check rw-mounted linux filesystem without reboot</title><link>https://bogdan.org.ua/2007/06/25/check-rw-mounted-linux-filesystem-without-reboot.html</link> <comments>https://bogdan.org.ua/2007/06/25/check-rw-mounted-linux-filesystem-without-reboot.html#comments</comments> <pubDate>Mon, 25 Jun 2007 13:21:40 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[*nix]]></category> <category><![CDATA[Notepad]]></category> <category><![CDATA[OS]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/2007/06/25/check-rw-mounted-linux-filesystem-without-reboot.html</guid> <description><![CDATA[If you happen to need to check your linux filesystem, which is mounted read-write, and for some reason you do not want to reboot, then the simple sequence of commands listed below should help you. Note, that the commands provided put you into single-user mode, which kills web-server and mysql daemon. So, running e2fsck on [&#8230;]]]></description> <content:encoded><![CDATA[<p>If you happen to need to check your linux filesystem, which is mounted read-write, and for some reason you do not want to reboot, then the simple sequence of commands listed below should help you. Note, that the commands provided put you into single-user mode, which kills web-server and mysql daemon.</p><p>So, running e2fsck on a live (mounted) filesystem isn&#8217;t recommended &#8211; and f2sck asks if you really want to check the rw-mounted FS (be sure to answer &#8216;n&#8217;o). If the FS you want to check is root (/), you cannot also re-mount it read-only &#8211; unless first you go to single-user mode:</p><p><code>init 1</code></p><p>Now you can re-mount your FS read-only:</p><p><code>mount -o ro,remount /dev/cobd0</code></p><p>(/dev/cobd0 is my device, replace it for your device when repeating step-by-step).<br
/> Filesystem is now read-only, and it&#8217;s safe to run e2fsck:</p><p><code>e2fsck -D -C 0 -f -t -v /dev/cobd0</code></p><p>e2fsck options are optional:<br
/> -D: optimize directory structure<br
/> -C 0: show progress<br
/> -f: force check (use if you get &#8220;volume is clean&#8221; with no check)<br
/> -t: e2fsck timing statistics<br
/> -v: verbose mode</p><p>Finally, return to your previous user mode:</p><p><code>init 3</code></p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F06%2F25%2Fcheck-rw-mounted-linux-filesystem-without-reboot.html&amp;linkname=Check%20rw-mounted%20linux%20filesystem%20without%20reboot" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F06%2F25%2Fcheck-rw-mounted-linux-filesystem-without-reboot.html&amp;linkname=Check%20rw-mounted%20linux%20filesystem%20without%20reboot" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F06%2F25%2Fcheck-rw-mounted-linux-filesystem-without-reboot.html&amp;linkname=Check%20rw-mounted%20linux%20filesystem%20without%20reboot" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F06%2F25%2Fcheck-rw-mounted-linux-filesystem-without-reboot.html&amp;linkname=Check%20rw-mounted%20linux%20filesystem%20without%20reboot" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F06%2F25%2Fcheck-rw-mounted-linux-filesystem-without-reboot.html&amp;linkname=Check%20rw-mounted%20linux%20filesystem%20without%20reboot" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2007%2F06%2F25%2Fcheck-rw-mounted-linux-filesystem-without-reboot.html&#038;title=Check%20rw-mounted%20linux%20filesystem%20without%20reboot" data-a2a-url="https://bogdan.org.ua/2007/06/25/check-rw-mounted-linux-filesystem-without-reboot.html" data-a2a-title="Check rw-mounted linux filesystem without reboot"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2007/06/25/check-rw-mounted-linux-filesystem-without-reboot.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Windows memory management unveiled</title><link>https://bogdan.org.ua/2007/05/28/windows-memory-management-unveiled.html</link> <comments>https://bogdan.org.ua/2007/05/28/windows-memory-management-unveiled.html#comments</comments> <pubDate>Mon, 28 May 2007 08:57:00 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[Links]]></category> <category><![CDATA[OS]]></category> <category><![CDATA[Programming]]></category> <guid
isPermaLink="false">http://bogdan.org.ua/2007/05/28/windows-memory-management-unveiled.html</guid> <description><![CDATA[I enjoyed this article, while trying to make the R environment on Windows process some 16 microarrays, using some memory-intensive algorithm&#8230; Well, after several hours of processing and gradually increasing the memory use, R script failed with memory-allocation error. It&#8217;s interesting, but running the same script in Topologilinux, launched from within Windows, did the trick. [&#8230;]]]></description> <content:encoded><![CDATA[<p>I enjoyed <a
target="_blank" href="http://www.ittvis.com/services/techtip.asp?ttid=3346" title="overcoming windows memory allocation limitations" class="broken_link" rel="nofollow">this article</a>, while trying to make the R environment on Windows process some 16 microarrays, using some memory-intensive algorithm&#8230; Well, after several hours of processing and gradually increasing the memory use, R script failed with memory-allocation error.</p><p>It&#8217;s interesting, but running the same script in <a
href="http://bogdan.org.ua/2006/09/01/topologilinux-bsod-blue-screen-of-death-fix.html">Topologilinux</a>, launched from within Windows, did the trick. Though being a simulated environment, it was slower, and page-swapping was really heavy with only 0.5GB memory.</p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F05%2F28%2Fwindows-memory-management-unveiled.html&amp;linkname=Windows%20memory%20management%20unveiled" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F05%2F28%2Fwindows-memory-management-unveiled.html&amp;linkname=Windows%20memory%20management%20unveiled" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F05%2F28%2Fwindows-memory-management-unveiled.html&amp;linkname=Windows%20memory%20management%20unveiled" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F05%2F28%2Fwindows-memory-management-unveiled.html&amp;linkname=Windows%20memory%20management%20unveiled" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2007%2F05%2F28%2Fwindows-memory-management-unveiled.html&amp;linkname=Windows%20memory%20management%20unveiled" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2007%2F05%2F28%2Fwindows-memory-management-unveiled.html&#038;title=Windows%20memory%20management%20unveiled" data-a2a-url="https://bogdan.org.ua/2007/05/28/windows-memory-management-unveiled.html" data-a2a-title="Windows memory management unveiled"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2007/05/28/windows-memory-management-unveiled.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Topologilinux 6.0.0 BSOD (Blue Screen Of Death) fix</title><link>https://bogdan.org.ua/2006/09/01/topologilinux-bsod-blue-screen-of-death-fix.html</link> <comments>https://bogdan.org.ua/2006/09/01/topologilinux-bsod-blue-screen-of-death-fix.html#comments</comments> <pubDate>Fri, 01 Sep 2006 14:54:03 +0000</pubDate> <dc:creator><![CDATA[Bogdan]]></dc:creator> <category><![CDATA[*nix]]></category> <category><![CDATA[OS]]></category> <category><![CDATA[Debian]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[topologilinux]]></category> <category><![CDATA[windows]]></category> <guid
isPermaLink="false">http://www.bogdan.org.ua/2006/09/01/topologillinux-600-bsod-blue-screen-of-death-fix.html</guid> <description><![CDATA[Topologilinux &#8216;BSOD at launch&#8217; problem solution is at the end of this post. Topologilinux is a special linux flavour, which is especially fit for the newcomers to the *nix world. The motto of Topologilunux is &#8216;Running Linux inside Windows&#8217; &#8211; and that is what it does. Even more &#8211; you can run it inside windows, [&#8230;]]]></description> <content:encoded><![CDATA[<p>Topologilinux &#8216;BSOD at launch&#8217; problem solution is at the end of this post.</p><p>Topologilinux is a special linux flavour, which is especially fit for the newcomers to the *nix world. The motto of Topologilunux is &#8216;Running Linux inside Windows&#8217; &#8211; and that is what it does. Even more &#8211; you can run it inside windows, or you can boot into it and work Linux-only &#8211; in both cases the system is the same.<br
/> Personally, I consider this kind of setup extremely useful for users who are strongly used to working in Windows (or just stuck with windows for too long), but at the same time are inclined to script a bit (be it bash, Perl, PHP or Python), to run server applications, write cross-platform programs, to test something or just play with software. With Topologilunux, it&#8217;s perfectly fine to work in DreamWeaver on your windows machine, and launch Topologilinux with apache+php+mysql to serve as a testing server &#8211; on that same machine. You can easily replicate the needed server config, and play with it the way you wouldn&#8217;t if that was the production server.<br
/> <span
id="more-17"></span><br
/> Or, in another scenario, you may launch Topologilinux to write the script you need for your data (for example, Bioconductor package for R statistics environment has many packages available only for *nix systems) without leaving your nearly perfectly set up windows environment; then, when you need to run that CPU-intensive you wrote, you can boot into real-mode Topologilunux, run your analysis, and get back to Windows <img
src="https://bogdan.org.ua/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p><p>All of this is available without the need to re-partition your hard drive &#8211; Topologilinux fits into a single image file on your FAT32/NTFS drive of choice. Both installation and removal are very simple (common click-through), with a bit more effort in the networking part (sufficient documentation is available, if not with Topologilinux, then with coLinux).</p><p>The only problem I had with Topologilinux was BSOD (Blue Screen Of Death) every time I tried to launch Topologilinux from within Windows. The error was DRIVER_IRQL_NOT_LESS_OR_EQUAL. Searching for troubleshooting required some time and was not evident, so here is what fixed my problem.</p><p>The conflict seems to arise from the <a
href="http://support.microsoft.com/kb/875352" title="more details" target="_blank" class="broken_link" rel="nofollow">Data Execution Prevention</a> (DEP) feature of the modern computers, which is intended to protect from the various &#8216;buffer overrun&#8217;-based exploits and hacks. By default, it is enabled for system files and services (equal to /noexecute=optin option in boot.ini). I tried setting it to &#8216;All files, except chosen below&#8217;, then adding colinux-daemon to exceptions, but that didn&#8217;t help either. The only option which helped was disabling DEP from boot.ini by adding &#8216;/noexecute=alwaysoff&#8217; after the line identifying your Windows installation.</p><p>Here is a sample line from my boot.ini before modification:</p><blockquote><p>multi(0)disk(0)rdisk(0)partition(1)\WINDOWS=&#8221;WinXP Pro&#8221; /fastdetect</p></blockquote><p>and after modification:</p><blockquote><p>multi(0)disk(0)rdisk(0)partition(1)\WINDOWS=&#8221;WinXP Pro (DEP off)&#8221; /noexecute=alwaysoff /fastdetect</p></blockquote><p>Hope this helps you.</p><p><ins
datetime="2009-01-03T01:36:00+00:00">Update:</ins> since I&#8217;ve moved to <a
href="http://bogdan.org.ua/2007/10/24/fresh-install-of-debian-etch-40r1-hangsfreezes-dead-after-boot-solution.html">Debian</a>, I&#8217;m no longer using Topologilinux.</p><p><a
class="a2a_button_citeulike" href="https://www.addtoany.com/add_to/citeulike?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2006%2F09%2F01%2Ftopologilinux-bsod-blue-screen-of-death-fix.html&amp;linkname=Topologilinux%206.0.0%20BSOD%20%28Blue%20Screen%20Of%20Death%29%20fix" title="CiteULike" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pocket" href="https://www.addtoany.com/add_to/pocket?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2006%2F09%2F01%2Ftopologilinux-bsod-blue-screen-of-death-fix.html&amp;linkname=Topologilinux%206.0.0%20BSOD%20%28Blue%20Screen%20Of%20Death%29%20fix" title="Pocket" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_kindle_it" href="https://www.addtoany.com/add_to/kindle_it?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2006%2F09%2F01%2Ftopologilinux-bsod-blue-screen-of-death-fix.html&amp;linkname=Topologilinux%206.0.0%20BSOD%20%28Blue%20Screen%20Of%20Death%29%20fix" title="Kindle It" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_evernote" href="https://www.addtoany.com/add_to/evernote?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2006%2F09%2F01%2Ftopologilinux-bsod-blue-screen-of-death-fix.html&amp;linkname=Topologilinux%206.0.0%20BSOD%20%28Blue%20Screen%20Of%20Death%29%20fix" title="Evernote" rel="nofollow noopener" target="_blank"></a><a
class="a2a_button_pinterest" href="https://www.addtoany.com/add_to/pinterest?linkurl=https%3A%2F%2Fbogdan.org.ua%2F2006%2F09%2F01%2Ftopologilinux-bsod-blue-screen-of-death-fix.html&amp;linkname=Topologilinux%206.0.0%20BSOD%20%28Blue%20Screen%20Of%20Death%29%20fix" title="Pinterest" rel="nofollow noopener" target="_blank"></a><a
class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fbogdan.org.ua%2F2006%2F09%2F01%2Ftopologilinux-bsod-blue-screen-of-death-fix.html&#038;title=Topologilinux%206.0.0%20BSOD%20%28Blue%20Screen%20Of%20Death%29%20fix" data-a2a-url="https://bogdan.org.ua/2006/09/01/topologilinux-bsod-blue-screen-of-death-fix.html" data-a2a-title="Topologilinux 6.0.0 BSOD (Blue Screen Of Death) fix"><img
src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded> <wfw:commentRss>https://bogdan.org.ua/2006/09/01/topologilinux-bsod-blue-screen-of-death-fix.html/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>