Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Fat32 support
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
Retes
n00b
n00b


Joined: 16 Mar 2004
Posts: 5

PostPosted: Tue Mar 16, 2004 5:30 pm    Post subject: Fat32 support Reply with quote

Hi,
I'm new to linux, and having some trouble on mounting vfat partition...
I compiled the 2.6 kernel with vfat and ntfs support, but still cant mount those partitions...
It says kernel does not support vfat part type.
How can I verify if vfat is compiled? I'm sure i've selected it not as a module on kernel config...
One more question:
after kernel config (make manuconfig) i did (make install)
after, updated the grub conf file, is there any more updates should i do?

thanks...
Pedro Retes
Back to top
View user's profile Send private message
jbNet
n00b
n00b


Joined: 07 Oct 2003
Posts: 39
Location: Oregon, USA

PostPosted: Tue Mar 16, 2004 6:33 pm    Post subject: Reply with quote

are you sure you're booting your new kernel? I personally don't trust make install... I just copy the bzImage over to /boot manually, and edit my grub conf...
_________________
~Jake B
Back to top
View user's profile Send private message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20588

PostPosted: Tue Mar 16, 2004 7:41 pm    Post subject: Reply with quote

Have you gone through the FAQ on mounting FAT/NTFS partitions?


Moved from Installing Gentoo.
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
Retes
n00b
n00b


Joined: 16 Mar 2004
Posts: 5

PostPosted: Tue Mar 16, 2004 8:22 pm    Post subject: Reply with quote

the problem is in modules load up.... i'm in trouble installing module-init-tools...
i tried emerge module-init-tools, but it crashes... error

checking for C compiler default output... configure: error: C compiler cannot create executables
Back to top
View user's profile Send private message
Jefklak
l33t
l33t


Joined: 26 Oct 2003
Posts: 818
Location: Belgium

PostPosted: Tue Mar 16, 2004 8:55 pm    Post subject: Re: Fat32 support Reply with quote

Retes wrote:
How can I verify if vfat is compiled?


You could do something like

Code:
$  cd /usr/src/linux
$  cat .config | grep fat


and check if it's set or not. (Y = built-in, M = module)
locate vfat.o in /usr/lib/2.6.x/drivers/ (or was it something with modules and fs, I don't know the exact path anymore) to manually locate the .o/.ko (module) file.
If you compiled them as a module you could manually load them:

Code:
modprobe vfat


But that normally isn't neccessary.
Also, double check your /etc/fstab file.

Retes wrote:
s there any more updates should i do?


Generally, ony 4 steps are needed:
> Configuring
> Compiling (make all)
> Installing (modules & kernel)
> Configuring grub

Code:
$  su
#  cd /usr/src/linux
#  cp .config ~ && make mrproper && mv ~/.config ./
#  make menuconfig
#  make all && make modules_install
#  mount /dev/hdc2 (your boot)
#  cp arch/i386/boot/bzImage /boot
#  gvim /boot/grub/grub.conf


If you're having troubles building modules, make mrproper sometimes helps.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum