LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   file system (https://www.linuxquestions.org/questions/linux-newbie-8/file-system-297122/)

bruse 03-03-2005 07:37 AM

file system
 
sir i am using mandrake 10.0
i have the following file system.....

student@Simlab-node3 student]$ cat /proc/filesystems
nodev sysfs
nodev rootfs
nodev bdev
nodev proc
nodev sockfs
nodev futexfs
nodev tmpfs
nodev pipefs
nodev eventpollfs
nodev devpts
ext2
nodev ramfs
nodev devfs
nodev nfs
nodev nfs4
nodev rpc_pipefs
ext3
nodev usbfs
nodev usbdevfs
nodev nfsd
[student@Simlab-node3 student]$

with this can i mount fat32 or ntfs filesystem ...
because this file not having that file system.

Bruce Hill 03-03-2005 07:43 AM

You also need ntfs and vfat (FAT32)

bruse 03-03-2005 07:47 AM

sir but i can able to mount ntfs and FAT32 partition...

Bruce Hill 03-03-2005 08:04 AM

Quote:

Originally posted by bruse
sir but i can able to mount ntfs and FAT32 partition...
I understand English is probably not your first language.
But I don't understand your question.
To mount NTFS filesystem you need the ntfs module,
and to mount FAT32 filesystem you need the vfat module.

You should have these modules when you issue:
Code:

mingdao@james:~$ lsmod
Module                  Size  Used by
snd_pcm_oss            49064  0
snd_mixer_oss          17344  1 snd_pcm_oss
usbhid                23296  0
usblp                  10880  0
snd_emu10k1            91784  0
snd_rawmidi            20324  1 snd_emu10k1
snd_pcm                84744  2 snd_pcm_oss,snd_emu10k1
snd_timer              21060  1 snd_pcm
snd_seq_device          6536  2 snd_emu10k1,snd_rawmidi
snd_ac97_codec        66372  1 snd_emu10k1
snd_page_alloc          8968  2 snd_emu10k1,snd_pcm
snd_util_mem            3264  1 snd_emu10k1
snd_hwdep              7172  1 snd_emu10k1
snd                    45988  10 snd_pcm_oss,snd_mixer_oss,snd_emu10k1,snd_rawmi
di,snd_pcm,snd_timer,snd_seq_device,snd_ac97_codec,snd_util_mem,snd_hwdep
soundcore              7392  1 snd
uhci_hcd              29264  0
ehci_hcd              25988  0
usbcore                99424  6 usbhid,usblp,uhci_hcd,ehci_hcd
nvidia              4819796  12
nls_cp437              5376  1
vfat                  11840  1  <- module for FAT filesystem
fat                    39744  1 vfat <- FAT filesystem is use
nls_iso8859_1          3776  3
ntfs                  87564  2  <- module for NTFS filesystem
apm                    15660  2

mingdao@james:~$ cat /proc/filesystems
nodev  sysfs
nodev  rootfs
nodev  bdev
nodev  proc
nodev  sockfs
nodev  binfmt_misc
nodev  futexfs
nodev  tmpfs
nodev  pipefs
nodev  eventpollfs
nodev  devpts
        reiserfs
nodev  ramfs
        romfs
nodev  autofs
        ntfs <- NTFS filesystem
        vfat <- FAT filesystem
nodev  usbfs
nodev  usbdevfs
mingdao@james:~$

Can you please state your problem. Are you able to
mount NTFS and FAT32 filesystems?

bruse 03-03-2005 08:11 AM

okay sir fine this is myoutput


student@Simlab-node3 student]$ su
Password:
[root@Simlab-node3 student]# lsmod
Module Size Used by
nls_iso8859-1 3904 1
ntfs 85932 1
sg 38044 0
st 38616 0
sr_mod 17028 0
sd_mod 16832 0
scsi_mod 114648 4 sg,st,sr_mod,sd_mod
nfsd 173152 8
exportfs 5920 1 nfsd
parport_pc 32832 1
lp 12200 0
parport 38952 2 parport_pc,lp
i830 76768 38
md5 3872 1
ipv6 232352 12
snd-seq-oss 31232 0
snd-seq-midi-event 7552 1 snd-seq-oss
snd-seq 51024 4 snd-seq-oss,snd-seq-midi-event
snd-pcm-oss 51812 0
snd-mixer-oss 17952 1 snd-pcm-oss
snd-intel8x0 32776 1
snd-ac97-codec 58148 1 snd-intel8x0
snd-pcm 93156 2 snd-pcm-oss,snd-intel8x0
snd-timer 24484 2 snd-seq,snd-pcm
gameport 4480 1 snd-intel8x0
snd-page-alloc 11972 2 snd-intel8x0,snd-pcm
snd-mpu401-uart 7072 1 snd-intel8x0
snd-rawmidi 23616 1 snd-mpu401-uart
snd-seq-device 8008 3 snd-seq-oss,snd-seq,snd-rawmidi
snd 52484 14 snd-seq-oss,snd-seq-midi-event,snd-seq,snd-pcm-oss,snd-mixer-oss,snd-intel8x0,snd-ac97-codec,snd-pcm,snd-timer,snd-mpu401-uart,snd-rawmidi,snd-seq-device
soundcore 9248 1 snd
af_packet 20520 0
hid 53312 0
ide-floppy 18752 0
ide-tape 34864 0
ide-cd 40548 1
cdrom 37184 2 sr_mod,ide-cd
8139too 23712 0
mii 4992 1 8139too
ohci1394 33956 0
ieee1394 287856 1 ohci1394
floppy 59444 0
intel-agp 17372 1
agpgart 31016 3 intel-agp
ehci-hcd 24196 0
uhci-hcd 29104 0
usbcore 99132 5 hid,ehci-hcd,uhci-hcd
rtc 11576 0
ext3 110408 2
jbd 54328 1 ext3
[root@Simlab-node3 student]#


it seems i have the module....

Bruce Hill 03-03-2005 08:23 AM

Quote:

Originally posted by bruse
it seems i have the module....
You have the module for NTFS but not for FAT.

What is your problem here?

bruse 03-03-2005 08:31 AM

fine
my question is..suppose i download one vfat module RPM packages..

just installation of the packages is enough or should i do anything extra with module directory...

Bruce Hill 03-03-2005 08:50 AM

Sorry, sir, but I don't know how Mandrake works -- and it's not
the same as Slackware Linux. You would do well to search our
Mandrake forum.

I am sorry I can't help you with this module. Slackware always
installs it by default.


All times are GMT -5. The time now is 04:50 AM.