LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Gentoo
User Name
Password
Gentoo This forum is for the discussion of Gentoo Linux.

Notices


Reply
  Search this Thread
Old 04-21-2010, 07:39 PM   #1
the_rastaman
Member
 
Registered: Mar 2010
Posts: 39

Rep: Reputation: 15
Exclamation problem mounting ntfs volumen


ok i already select the option form the kernel FUSE (Filesystem in USErspace)( i not loading the FUSE as a module) and already emerge sys-fs/fuse-2.8.1 and sys-fs/ntfs3g-2010.1.16 . i still cant use mi ntfs partition, please can anyone tell me what i doing wrong?

i fallow the instruction given here http://www.linuxquestions.org/questi...volume-658388/

Last edited by the_rastaman; 04-21-2010 at 07:42 PM.
 
Old 04-22-2010, 01:41 AM   #2
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
In what sense you can't use your ntfs volume? Have you tried manual mount? If so, knowing the command you used and the output you got as result would be useful. If you are trying to mount the drive via using an vfs from one of the main desktops it would be useful to know which one. To sum up: info about what exactly you are doing and what do you get as result.
 
Old 04-23-2010, 12:24 AM   #3
the_rastaman
Member
 
Registered: Mar 2010
Posts: 39

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by i92guboj View Post
In what sense you can't use your ntfs volume? Have you tried manual mount? If so, knowing the command you used and the output you got as result would be useful.
of course i have tried manual mount, i am a simple person, i dont mind to mounted manually every time i have to used, but the problem is this one:

Andres / # mount /dev/sda4 /mnt/usb1
Andres / # cd mnt
Andres mnt # ls
cdrom floppy proc usb1 usb2
Andres mnt # cd usb1
Andres usb1 # ls
AUTOEXEC.BAT IO.SYS System Volume Information pagefile.sys
Archivos de programa Intel WINDOWS temp
Bootfont.bin MSDOS.SYS autorun.inf vista.ico
CONFIG.SYS NTDETECT.COM boot.ini
Documents and Settings RECYCLER ntldr
Andres usb1 # cd RECYCLER/
Andres RECYCLER # ls
S-1-5-21-842925246-1202660629-725345543-1003
Andres RECYCLER # cd S-1-5-21-842925246-1202660629-725345543-1003/
Andres S-1-5-21-842925246-1202660629-725345543-1003 # ls
INFO2 desktop.ini
Andres S-1-5-21-842925246-1202660629-725345543-1003 # rm desktop.ini
rm: cannot remove `desktop.ini': Read-only file system

or this one:

mount -t ntfs-3g /dev/sda4 /media/windows
FATAL: Module fuse not found.
fuse: device not found, try 'modprobe fuse' first
(and of course i have already tried modprobe fuse)

modprobe fuse
FATAL: Module fuse not found.

this is an example of what i get. i have already select the FUSE option in kernel configuration, already emerge this sys-fs/ntfs3g and this one sys-fs/fuse.

but when i turn on the computer, when the option are loading in one part says "FUSE not found" (or something like that) tried modprobe fuse. so i already get out of ideas, and thanks for any help...

p.s
what i want to do with mi ntfs partion is read/write

Last edited by the_rastaman; 04-23-2010 at 12:26 AM.
 
Old 04-23-2010, 01:50 AM   #4
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
Are you sure you are using the same kernel you are compiling? If you enabled /proc/config.gz when configuring your kernel you can see if FUSE is compiled into the current kernel using this:

Code:
$ zcat /proc/config.gz | grep -i fuse
This command will tell you the compilation date for your kernel:

Code:
uname -v
Double check the hour and date and see if you are truly using the kernel you think you are using. If not, double check the /usr/src/linux symlink, make sure it points to the kernel version you are wanting to use, check its menuconfig, recompile and reinstall that kernel using "make && make install modules_install" and make sure you have a valid entry in your grub.conf file for it.

That modprobe refuses to load it is not necesarily a bad thing, FUSE can be embedded in the kernel rather than being built as a module. Other than that, the only thing I can suggest is to use ntfs-3g -orw instead of mount to mount the drives.
 
Old 04-28-2010, 01:51 PM   #5
the_rastaman
Member
 
Registered: Mar 2010
Posts: 39

Original Poster
Rep: Reputation: 15
when configuring your kernel you can see if FUSE is compiled into the current kernel using this:
Code:
$ zcat /proc/config.gz | grep -i fuse
when i put the code above ,i get this:
gzip: /proc/config.gz: No such file or directory


This command will tell you the compilation date for your kernel:

Code:
uname -v
this is disturbing using the code above, i get this:
#2 SMP Thu Jan 28 17:48:43 UTC 2010

what i have done is this:

Code:
# cd usr/src/linux
# make menuconfig 

File systems  --->  
<*> FUSE (Filesystem in Userspace) support

# make && make modules_install

# cp arch/x86_64/boot/bzImage /boot/kernel-2.6.31-gentoo-r6
so far i think i have done it ok.

but i read the Gentoo manual, an it's said, when a kernel is reinstalled, its not necessary to overwrite the files, just run make install after compile the kernel and automatically copy the necessary files and adjust the LILO configuration.

Code:
# make install
sh /usr/src/linux-2.6.31-gentoo-r6/arch/x86/boot/install.sh 2.6.31-gentoo-r6 arch/x86/boot/bzImage \System.map "/boot"
but i dont have nothing in /arch/x86 because i using a dual core system, so i change it to /arch/x86_64 and looks like this:

Code:
# sh /usr/src/linux-2.6.31-gentoo-r6/arch/x86/boot/install.sh 2.6.31-gentoo-r6 arch/x86_64/boot/bzImage \System.map "/boot"
for finish ,reboot the system, an acording to every thing i read its done but, nothig its done so please can tell me what i doing wrong???
 
Old 05-30-2010, 01:12 AM   #6
the_rastaman
Member
 
Registered: Mar 2010
Posts: 39

Original Poster
Rep: Reputation: 15
i already solve my problem!!!!!!!!!! i just have to use the live cd a mount the units just like the gentoo manual said compile the kernel a everything work just fine
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
NTFS mounting problem matrix13 Linux - Software 3 06-27-2007 12:18 AM
Mounting NTFS problem twinkers Debian 13 05-09-2007 07:37 PM
Yet another NTFS mounting problem david_annable Linux - Newbie 4 05-22-2004 03:16 PM
Mounting NTFS problem HiOctane21 Linux - Newbie 7 02-18-2004 02:22 PM
problem with mounting ntfs narendra_i Linux - Hardware 2 01-26-2004 08:06 PM

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

All times are GMT -5. The time now is 12:44 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