<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: How to Use fsck to Check and Repair Linux Filesystem Errors	</title>
	<atom:link href="https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 30 Mar 2026 08:25:01 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: MisterX		</title>
		<link>https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/comment-page-1/#comment-2158098</link>

		<dc:creator><![CDATA[MisterX]]></dc:creator>
		<pubDate>Sat, 13 Apr 2024 20:41:30 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30683#comment-2158098</guid>

					<description><![CDATA[This is the wrong instruction, on a Debian system, the HDD will be broken.]]></description>
			<content:encoded><![CDATA[<p>This is the wrong instruction, on a Debian system, the HDD will be broken.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sam Kumar		</title>
		<link>https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/comment-page-1/#comment-2060169</link>

		<dc:creator><![CDATA[Sam Kumar]]></dc:creator>
		<pubDate>Fri, 15 Sep 2023 05:41:54 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30683#comment-2060169</guid>

					<description><![CDATA[Thank you for this. I used the first option of &lt;strong&gt;fsck&lt;/strong&gt; command and it seems to have worked like a charm. 

I appreciate your contributing to the community.]]></description>
			<content:encoded><![CDATA[<p>Thank you for this. I used the first option of <strong>fsck</strong> command and it seems to have worked like a charm. </p>
<p>I appreciate your contributing to the community.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: DaVince		</title>
		<link>https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/comment-page-1/#comment-1954412</link>

		<dc:creator><![CDATA[DaVince]]></dc:creator>
		<pubDate>Mon, 30 Jan 2023 22:27:41 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30683#comment-1954412</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/comment-page-1/#comment-1949166&quot;&gt;Potat&lt;/a&gt;.

Capitalization and spelling matter on the shell. Device names are never capitalized (so sda, not SDA). unmount should be &lt;strong&gt;umount&lt;/strong&gt;, too.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/comment-page-1/#comment-1949166">Potat</a>.</p>
<p>Capitalization and spelling matter on the shell. Device names are never capitalized (so sda, not SDA). unmount should be <strong>umount</strong>, too.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Potat		</title>
		<link>https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/comment-page-1/#comment-1949166</link>

		<dc:creator><![CDATA[Potat]]></dc:creator>
		<pubDate>Thu, 19 Jan 2023 23:12:34 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30683#comment-1949166</guid>

					<description><![CDATA[When I typed &lt;strong&gt;fsck /dev/SDA -a&lt;/strong&gt;, it showed me this,
&lt;pre&gt;
fsck from util-linux 2.38.1
fsck.ext2: Bad magic number in super-block while trying to open /dev/SDA
/dev/SDA :
the super-block could not be read or does not describe a valid ext2/ext3/ext4 filesystem.  
&lt;/pre&gt;
If the device is valid and it really contains an ext2/ext3/ext4 filesystem (and if not swap or ufs or something else), then the superblock is corrupt, and you might try running e2fsck with an alternate superblock:
&lt;pre&gt;
# e2fsck -b 8193 or e2fsck -b 32768  
&lt;/pre&gt;
Found a dos partition table in &lt;strong&gt;/dev/SDA&lt;/strong&gt;.

When I try to run the &lt;strong&gt;e2fsck&lt;/strong&gt; commands it gave, it shows &lt;strong&gt;sh: syntax error: unexpected newline&lt;/strong&gt;.

And then when I try to &lt;strong&gt;unmount /dev/SDA&lt;/strong&gt; it can&#039;t unmount because it&#039;s an invalid argument? 

I&#039;m a total beginner at Linux and I really don&#039;t know what to do now]]></description>
			<content:encoded><![CDATA[<p>When I typed <strong>fsck /dev/SDA -a</strong>, it showed me this,</p>
<pre>
fsck from util-linux 2.38.1
fsck.ext2: Bad magic number in super-block while trying to open /dev/SDA
/dev/SDA :
the super-block could not be read or does not describe a valid ext2/ext3/ext4 filesystem.  
</pre>
<p>If the device is valid and it really contains an ext2/ext3/ext4 filesystem (and if not swap or ufs or something else), then the superblock is corrupt, and you might try running e2fsck with an alternate superblock:</p>
<pre>
# e2fsck -b 8193 or e2fsck -b 32768  
</pre>
<p>Found a dos partition table in <strong>/dev/SDA</strong>.</p>
<p>When I try to run the <strong>e2fsck</strong> commands it gave, it shows <strong>sh: syntax error: unexpected newline</strong>.</p>
<p>And then when I try to <strong>unmount /dev/SDA</strong> it can&#8217;t unmount because it&#8217;s an invalid argument? </p>
<p>I&#8217;m a total beginner at Linux and I really don&#8217;t know what to do now</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sarah		</title>
		<link>https://www.tecmint.com/fsck-repair-file-system-errors-in-linux/comment-page-1/#comment-1852956</link>

		<dc:creator><![CDATA[Sarah]]></dc:creator>
		<pubDate>Fri, 29 Jul 2022 13:52:32 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=30683#comment-1852956</guid>

					<description><![CDATA[I updated to the newest version of Ubuntu, now it will not boot. I get the BusyBox black screen and when I used the exit command, here&#039;s the output:

/init: line 866: logsave: not found 
Failure: File system check of the root filesystem failed
The root filesystem in /dev/sda6 requires a manual fsck

But when I attempt to do so, I get a text file busy error. 

How can I fix this?]]></description>
			<content:encoded><![CDATA[<p>I updated to the newest version of Ubuntu, now it will not boot. I get the BusyBox black screen and when I used the exit command, here&#8217;s the output:</p>
<p>/init: line 866: logsave: not found<br />
Failure: File system check of the root filesystem failed<br />
The root filesystem in /dev/sda6 requires a manual fsck</p>
<p>But when I attempt to do so, I get a text file busy error. </p>
<p>How can I fix this?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
