Find the answer to your Linux question:
Results 1 to 3 of 3
hey i have openSUSE 10.2 and i mount my vfat drive using the command mount -t vfat /dev/hdc* /usr/local but i am only geettin read permissions and not write permission... ...
  1. #1
    Just Joined!
    Join Date
    Jul 2007
    Posts
    1

    how to mount partitions?

    hey i have openSUSE 10.2 and i mount my vfat drive using the command mount -t vfat /dev/hdc* /usr/local
    but i am only geettin read permissions and not write permission...
    can nebody tell me the command or way to have write permission too ???

  2. #2
    Linux Guru gogalthorp's Avatar
    Join Date
    Oct 2006
    Location
    West (by God) Virginia
    Posts
    3,105
    You should install ntfs-3g and fuse to support ntfs file system.

  3. #3
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    In which filesystem partitions are formatted? vfat is for FAT32 filesystem and all Linux Distros support FAT32 read/write access out of box.

    for NTFS, you should install ntfs-3g as suggested by gogalthorp.
    mount -t vfat /dev/hdc* /usr/local
    are you literally typing * instead of partition number in mount command?
    Correct command is
    Code:
    mount -t  /dev/<partition>  <mount_point> <filesystem> defaults,umask=0 0 0
    umask=0 enables default access to all users.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...