mount filetype error


 
Thread Tools Search this Thread
Operating Systems Linux mount filetype error
# 1  
Old 08-18-2008
mount filetype error

Hello,

I am trying to mount an external USB drive connected to a SnapServer 410 ( a network file server running a linux OS called Guardian OS).

THanks to some articles on the the web, I found that I needed to use the following command:

> mount -t vfat /dev/sde /mnt/usbext

unfortunately i get the following error message when the command executes:

> mount: fs type vfat not supported by kernel

The drive is a FAT32 drive so I am guessing I may be out of luck until I can reformat the drive but before I do, I wanted to make sure what filetypes are supported.

How do I find out what filetypes are supproted by my kernel?

When I use the uname -r command, the result is 2.4.19-gos-up

Thank you for your assistance.
# 2  
Old 08-18-2008
you will probably have to add msdosfs support into your kernel. i use freebsd and not linux, so im not sure how the whole kernel compiling thing and all that works with linux so i wont be of any help to u there.
# 3  
Old 08-18-2008
Thanks for the tip. Adding support to my kernel may not be possible and is certainly beyond my level of unix knowledge.

So other suggestions are still welcome.
# 4  
Old 09-16-2008
Maybe you can try this command

modprobe vfat

and then you can mount you FAT system again
# 5  
Old 09-16-2008
Thanks for the suggestion starlimac.

When I issue the modprobe command as you suggested, I get the response:
"modprobe: can't locate module vfat"
# 6  
Old 09-16-2008
Hi
Can you give exactly your operating system or name of your distribution Linux.
# 7  
Old 09-17-2008
Hi I gave what I could in my original post. The OS is called Guardian OS. The OS Version is 4.4.049 SP3.

a uname command results in: 2.4.19-gos-up
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Mount error

hi , i need help in mounting NFS share on solaris 10, can i get some hehlp as i received this error " mount: mount point cannot be determined" i have done following 1. i am root user 2. Directory name as mount point already created 3. chmod 777 is applied on mount point 4. read write... (6 Replies)
Discussion started by: janakors
6 Replies

2. Shell Programming and Scripting

Add unique identifier from file to filetype in directory

I am trying to add a unique identifier to two file extensions .bam and .vcf in a directory located at /home/cmccabe/Desktop/index/R_2016_09_21_14_01_15_user_S5-00580-9-Medexome. The identifier is in $2 of the input file. What the code below is attempting to do is strip off the last portion... (21 Replies)
Discussion started by: cmccabe
21 Replies

3. Shell Programming and Scripting

Change everything in a file that maps to {module::name.filetype} to _modules/name/applicat

path = content.txt filename = application directory = _modules define create $(eval from := $(shell echo $$1)) \ $(eval to := $(shell echo $$2)) \ sed -i '' 's/$(from)/$(to)/g' content.txt endef all: clear $(eval modules := $(shell egrep -o "{module+\}" $(path))) ... (1 Reply)
Discussion started by: bmson
1 Replies

4. Shell Programming and Scripting

Moving multiple filetype in a single loop

Hi, I am using the below code to move *.sh files to another directory. use File::Copy qw(move); while(<C:/Users/pandeesh/Desktop/*.sh>) { move $_,"C:/Users/pandeesh/Desktop/Projects"; } My requirement is i want to move *.sh,*.txt,*.xlsx,*.doc,*.pdf and *.epub files to the specified... (2 Replies)
Discussion started by: pandeesh
2 Replies

5. Shell Programming and Scripting

Converting DOS filetype to UNIX

Hello folks I am working on a project that requires me to write a script that operates on a bunch of text files. When I try less file.txt I see a bunch of ^M's everywhere. Some Googling tells me that this is because the files have a DOS fileformat and found the following fixes: sed 's/^M$//'... (5 Replies)
Discussion started by: ksk
5 Replies

6. UNIX for Dummies Questions & Answers

Filetype conversion error (showing ascii instead of data)

Hi I have spool file data UTF file containing Header data footer when there is data my file type is UTF FORMAT. that is typing file file1.utf output is data but when there is no records of data if only shows Header and footer then the flletype is ASCII... why this happen? Pls... (2 Replies)
Discussion started by: shenthil76
2 Replies

7. UNIX for Dummies Questions & Answers

How to move files based on filetype and time created?

Hi, I'm trying to improve my Unix skills and I'm wondering what is the best way to move some files based on filetype and attributes like time created? For instance, lets suppose I have a directory with many different files in it and I'd like to move all the jpgs that were created between May... (6 Replies)
Discussion started by: LuckyTommy
6 Replies

8. Homework & Coursework Questions

Grep for filetype starting with letter p

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Which files in /usr/bin whose names begin with “p” are python scripts? Store the numbered results in... (3 Replies)
Discussion started by: alindner
3 Replies

9. Shell Programming and Scripting

Create Repositories with the *.dump filetype

I've a bunch of repository dumps that I need to include in my shell script to restore from the dump, but first I need to create the repositories first. How do I extract the names of the repository and removing the *.dump for use of the following line? bash-3.00$ ls andromeda.dump alias.dump... (4 Replies)
Discussion started by: lynxlee
4 Replies

10. AIX

mount error

hi when i am trying to mount this newly created LV i get following error /#mount /bancs_cards Replaying log for /dev/lvbancscards. mount: 0506-324 Cannot mount /dev/lvbancscards on /bancs_cards: The media is not formatted or the format is not correct. /#lslv lvbancscards LOGICAL VOLUME: ... (3 Replies)
Discussion started by: zedex
3 Replies
Login or Register to Ask a Question