RSS Subscription
Linux Howtos & Tutorials

Enter your email:

Delivered by


NOTE:New tutorials are from LinuxCareer.com

Poll

Do you own or wish to have iPhone?
 


Linux eBooks FREE Download
A guide to programming Linux kernel modules
Introduction to Linux - A Hands on Guide
A Newbie's Getting Started Guide to Linux

Linux from Scratch - Create Your Own Linux System - Free eBook

Linux: The Hacking Solution (v.3.0)

SQLite 3 with PHP Essential Training – Free Video Training Tutorials

This guide will introduce you to the world of GNU/Linux

The GNU/Linux Advanced Administration

A Complete Beginner's Manual for Ubuntu 10.04 (Lucid Lynx)

Advanced Bash-Scripting Guide

Set up, maintain, and secure a small office email server

Partner Linux Sites:
How-To.LinuxCareer.com
Jobs.LinuxCareer.com
TuxMachines
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
All For Linux

vfat file system - unable to create uppercase directory name

Are you unable to create uppercase directory name on your storage device mounted as vfat file system. The reason for this behavior is that vfat filesystem is by default mounted by mount command with shortname option set to lower. Therefore, you nay force your system to mount your disk to show directory names as they are with winnt:

mount -o shortname=winnt /dev/sdb1 /media/temp

Here are couple more options to be complete:

lower  Force  the  short  name to lower case upon display; store a long
                     name when the short name is not all upper case.

              win95  Force the short name to upper case upon display;  store  a  long
                     name when the short name is not all upper case.

              winnt  Display  the  shortname  as is; store a long name when the short
                     name is not all lower case or all upper case.

              mixed  Display the short name as is; store a long name when  the  short
                     name is not all upper case.

Another solution to this problem is to use pmount. pmount command syntax is little different from the ordinary mount command. Instead of specifying a mount directory as an argument a user needs to specify lable. The lable will be eventually a name of the directory under /media:

# pmount /dev/sdb1 MY_DISK
# cd /media/MY_DISK/
/media/MY_DISK# ls
MEMSTICK.IND  MP_ROOT  MSTK_PRO.IND  MUSIC  PICTURE  PSP  TEST  VIDEO

Share this linux post:

Submit vfat file system - unable to create uppercase directory name in Delicious Submit vfat file system - unable to create uppercase directory name in Digg Submit vfat file system - unable to create uppercase directory name in FaceBook Submit vfat file system - unable to create uppercase directory name in Google Bookmarks Submit vfat file system - unable to create uppercase directory name in Stumbleupon Submit vfat file system - unable to create uppercase directory name in Technorati Submit vfat file system - unable to create uppercase directory name in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.


Linux eBooks FREE Download