LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 10-29-2004, 12:41 AM   #1
SG_1
LQ Newbie
 
Registered: Oct 2004
Distribution: Slackware 10.0
Posts: 16

Rep: Reputation: 0
Tried to listen to mp3 from ntfs drive


I just recently did a fresh install of slackware 10.0 and solved my sound issues. So i thought i would listen to some mp3's I have stored on one of my ntfs partitions. Doing so locked Slackware totally up.
I had to hit reset button on box.
When I tried to go back to Slackware i got an error message saying there were bad or duplicate blocks on the ext2 partition.
It mentioned something about doing fchk or something close manually, but i do not know how.
Any help?

Desperate and seriously considering Mandrake!

SG_1
 
Old 10-29-2004, 12:45 AM   #2
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
Well, first off, EXT2 was a bad choice. You should have chosen ReiserFS, you wouldn't have had this problem (the file system problem, anyway).

Anyway, after it gives you that error message, does it show you a password prompt so that you can login?
 
Old 10-29-2004, 12:49 AM   #3
SG_1
LQ Newbie
 
Registered: Oct 2004
Distribution: Slackware 10.0
Posts: 16

Original Poster
Rep: Reputation: 0
No it doesn't. Great so all the work i did today in getting Slackware re-installed and upgraded again is lost?!

Oi Vei!

And people say Windows is unstable, I tell ya I have never had the problems with windows that Linux/Slackware has thrown at me in the last 2 days!

I do not wish to start a war here, but seems that there isn't much use for Linux for someone who doesn't speak its language.

I will be redoing the install again i guess , but with that other file system instead of ext2.

SG_1
 
Old 10-29-2004, 01:00 AM   #4
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
No, you certainly don't have to reinstall.

There are a few options here.

Probably the easiest would be to simply boot to the Slackware installation disk, and then enter in the line it shows in the middle of the screen (where it says this disk could be used to boot a system in a pinch). Make sure that the last letters are "ro" I am pretty sure they are, but I am not 100% sure.

Then (after the machine starts up and you login), run fsck on the partition that it gave you the error on (or all of them , just to be safe). After that, reboot your machine normally, and you should be fine.

Now, you can't (as far as I know) directly convert EXT2 to ReiserFS, so you have a problem there.

However, you can convert EXT2 to EXT3, and that will give you most of the benefits that ReiserFS would.
 
Old 10-29-2004, 01:06 AM   #5
SG_1
LQ Newbie
 
Registered: Oct 2004
Distribution: Slackware 10.0
Posts: 16

Original Poster
Rep: Reputation: 0
Ok, I am a little calmer now after reading your last post and am asking myself and you just what the benefits are of one file system over the other?

Please keep in mind I am very new to Linux in general.

I have been a Windows / Dos user for the last 12+ years.

I am not used to these kinds of issues with a newly installed OS.

SG_1
 
Old 10-29-2004, 04:34 AM   #6
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
Well, the main benefit of EXT3 or Reiser is that they can recover gracefully from an abrupt shutdown like what happened when you had to restart your machine with the front button.

If you were using either of those file systems, you probably wouldn't have had any problem when you started back up.

The main difference between EXT3 and Reiser is that EXT3 is basically a modified version of EXT2, while Reiser was built from the ground up as it's own file system.

That is why I generally prefer Reiser. Plus it is also supposed to be a bit faster, but it is not much of a big deal with every-day usage.

But many people also prefer EXT3, so it is really a matter of opinion.
 
Old 10-29-2004, 04:58 AM   #7
xushi
Senior Member
 
Registered: Jun 2003
Location: UK
Distribution: Gentoo
Posts: 1,288

Rep: Reputation: 45
Just to point out something, Be it Windows or Linux, any operating system can be unstable if you dont know what you're doing...

It took me two months to get my box stable again coz of alot of problems here and there. And as for windows, XP is very stable nowadays (again, if you know what you're doing), although it tends to screw up when you get infested with spyware...

The difference between windows and linux is, you actually see the code in linux, the community actually and honestly tell you of all the bugs they find, and how they are correcting it, and you even have the ability to find a bug, inform (or fix if you know how), and see the development proccess.

Put that asside, linux is very configurable =)

As for file systems, just stick to EXT3. i've had endless crashes and computer hangs, and yet here i am without any data loss or corruption.
 
Old 10-29-2004, 04:31 PM   #8
SG_1
LQ Newbie
 
Registered: Oct 2004
Distribution: Slackware 10.0
Posts: 16

Original Poster
Rep: Reputation: 0
Hello folks.
I have learned how to recover from this issue while still using Ext2.

I have to use my Slackware CD to boot with, log in as root, and put in this line at the prompt :

e2fsck -v -y /dev/hda6

This seems to repair the file system and let me reboot and get into Linux.

I am liking what you folks are saying about how Ext3 is more stable.

How do i go about converting?

Thanks for the honest input peoples!

SG_1
 
Old 10-29-2004, 07:22 PM   #9
MS3FGX
LQ Guru
 
Registered: Jan 2004
Location: NJ, USA
Distribution: Slackware, Debian
Posts: 5,852

Rep: Reputation: 361Reputation: 361Reputation: 361Reputation: 361
To convert a partition from EXT2 to EXT3, you would do:

Code:
tune2fs -j /dev/hdaX
"X" would be the partition you wanted to convert.

You won't lose any data doing it that way, though you may need to edit the file system type in "/etc/fstab" but that is simple. You would simply change "ext2" to say "ext3".
 
Old 10-30-2004, 12:23 AM   #10
SG_1
LQ Newbie
 
Registered: Oct 2004
Distribution: Slackware 10.0
Posts: 16

Original Poster
Rep: Reputation: 0
Thanks for the info.
But due to wanting to try out Mandrake , doing so, not liking it, I have re-installed Slackware using the reiserfs file system.

SG_1
 
Old 10-30-2004, 04:42 AM   #11
bobbyseatbelt
LQ Newbie
 
Registered: Sep 2004
Location: hou
Distribution: slack
Posts: 14

Rep: Reputation: 0
;)

just remember, its always a learning process. don't be afraid to ask questions. man pages and the linux howto's were a big help for me when first starting. you can now goto www.tldp.org and view the howto's and guides online. ohh, you also need to remember to feed your kernel. it prefers beer. j/k
 
Old 10-30-2004, 04:54 AM   #12
SG_1
LQ Newbie
 
Registered: Oct 2004
Distribution: Slackware 10.0
Posts: 16

Original Poster
Rep: Reputation: 0
Hehe, I like that joke. I also appreciate the help i have found here in these forums, the advice has been invaluable and has kept me from just outright wiping Slackware and sticking with Windoze.

Take care.

SG_1
 
Old 10-30-2004, 06:28 AM   #13
MikeZila
Member
 
Registered: Jul 2004
Location: Parts Unknown
Distribution: Arch
Posts: 377

Rep: Reputation: 30
Quote:
Originally posted by MS3FGX
But many people also prefer EXT3, so it is really a matter of opinion.
Some people also like being able to mount their EXT3 as an EXT2 if they need to, it can come in handy when you fire up a boot-disk with a bare kernel and can't play ball with ReiserFS
 
Old 10-30-2004, 06:38 AM   #14
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
[edit]

I thought corruption was due to nfs (network file system). I just see that it was ntfs (a windows file system). Sorry

Last edited by Cedrik; 10-30-2004 at 06:40 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
cant listen to mp3 files supermaton Ubuntu 6 10-19-2005 03:00 PM
how to tell if mp3 came out alright without an listen through? dr_zayus69 Linux - Software 2 09-06-2005 03:08 PM
Problem with XMMS: can't listen mp3 Lead Expression Linux - Software 1 01-25-2005 04:49 AM
How to listen my mp3 and Video on Red hat 9.0 tonan Linux - General 4 09-21-2004 02:20 PM
I Still can't listen to MP3 bjjdude Fedora 5 04-27-2004 10:35 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:50 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration