Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux HostsFree MagazinesJobs
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > GNU Linux Zone > Linux Newbie
Reload this Page NTFS not supported
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

Linux Newbie If you're new to the wonderful world of Linux, start here!

Reply
 
Thread Tools Display Modes
Old 05-10-2003   #1 (permalink)
Linux User
 
Join Date: Apr 2003
Location: TEXAS
Posts: 314
Send a message via AIM to bignester Send a message via MSN to bignester
NTFS not supported

ive been mounting my ntfs filesystem without any trouble for a couple of days until i compiled automounting into the kernal now it says that my kernal doesnt support the ntfs file system and also i couldnt get my automounting to work.


can anyone help me please
bignester is offline   Reply With Quote
Old 05-10-2003   #2 (permalink)
Linux Guru
 
Join Date: Oct 2001
Location: Täby, Sweden
Posts: 7,575
Didn't you just forget to compile NTFS support?
Dolda2000 is offline   Reply With Quote
Old 05-10-2003   #3 (permalink)
Just Joined!
 
Join Date: May 2003
Location: UK-Heart of Cheshire
Posts: 31
sounds like your ntfs support is build as a module(if poss), or the mounting is occuring before the ntfs support is loaded. This would be ok when manually mountuing, but not if you are mounting before the module loads. have a look at the boot squence. You may be able to play around with that.

Build ntfs into the kernel. I have done that in Red hat and automount and it works fine.
turls is offline   Reply With Quote
Old 05-10-2003   #4 (permalink)
Linux Guru
 
Join Date: Oct 2001
Location: Täby, Sweden
Posts: 7,575
Even if it's a module, the kernel should try to auto-load it when a mount is attempted.
Dolda2000 is offline   Reply With Quote
Old 05-10-2003   #5 (permalink)
Just Joined!
 
Join Date: May 2003
Location: UK-Heart of Cheshire
Posts: 31
probably a squence issue where the mounting is being attempted before the module is recognised
turls is offline   Reply With Quote
Old 05-10-2003   #6 (permalink)
Just Joined!
 
Join Date: Apr 2003
Posts: 20
Send a message via MSN to l_Smokie
check /proc/filesystems

check the /proc/filesystem file , the word ntfs has to be written there to let linux support ntfs file system .
l_Smokie is offline   Reply With Quote
Old 05-11-2003   #7 (permalink)
Linux Guru
 
Join Date: Oct 2001
Location: Täby, Sweden
Posts: 7,575
From fs/super.c in the kernel source tree:
Code:
struct file_system_type *get_fs_type(const char *name)
{
	struct file_system_type *fs;
	
	read_lock(&file_systems_lock);
	fs = *(find_filesystem(name));
	if (fs && !try_inc_mod_count(fs->owner))
		fs = NULL;
	read_unlock(&file_systems_lock);
	if (!fs && (request_module(name) == 0)) {
		read_lock(&file_systems_lock);
		fs = *(find_filesystem(name));
		if (fs && !try_inc_mod_count(fs->owner))
			fs = NULL;
		read_unlock(&file_systems_lock);
	}
	return fs;
}
get_fs_type is called on the filesystem name to use every time you try to mount something.
Notice the "if (!fs && (request_module(name) == 0)) {" line? See? It's not a sequence problem, since the kernel requests the filesystem module if it isn't already present. No offense, I just really wanted to prove my point. Btw., that functionality has been there since at least the 2.2 kernel series, so it's not a version problem.
Smokie: No offense, but isn't it quite obvious that ntfs won't show up in /proc/filesystems when mount explicitly states that the kernel didn't recognize the filesystem type?

bignester: Probably, you just forgot to compile NTFS support. If you are completely certain that you did, double-check to see that the module is installed. Also, check your syslog after the mount attempt to see if it says something useful.
Dolda2000 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off
 

Free Magazines
Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe
Systems Management News, the newspaper for IT systems administration and data center managers!
Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe
The Enterprise Newsweekly
eWeek is the essential technology information source for builders of e-business.
subscribe
Oracle Magazine
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe
Total Telecom
Total Telecom is "The Economist of the communications industry".
subscribe
More free magazines »



All times are GMT. The time now is 10:27 PM.




© 2000 - 2008 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.2.0