Find the answer to your Linux question:
Results 1 to 3 of 3
i had installed debian dvd and problem occured during mounting windows partions from terminal i gave root as mount -t vfat /device/dev/hda1/home/username/folder name can u please suggest me how to ...
  1. #1
    Just Joined!
    Join Date
    Jan 2007
    Posts
    7

    hello here

    i had installed debian dvd and problem occured during mounting windows partions
    from terminal i gave root as
    mount -t vfat /device/dev/hda1/home/username/folder name
    can u please suggest me how to do

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    hi Sandeep5b5,

    Welcome to the LinuxForums.

    you are executing wrong command.
    execute 'fdisk -l' and note down WIndows Partition number. e.g. /dev/hda1, hda2 etc. create mount point (folder) and mount partition in it.
    Code:
    mkdir /media/win_c
    mount -t vfat  /dev/hda1  /media/win_c
    ls /media/win_c
    i assumed that Windows partition number is hda1.





    Casper
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Quote Originally Posted by sandeep5b5
    mount -t vfat /device/dev/hda1/home/username/folder name
    That's not quite the command.

    More like :
    Code:
    mount -t vfat -o umask=0000,user /dev/hda1 /mnt/windows
    Given /dev/hda1 is effectively your windows partition, which you can verify with the output of :
    Code:
    fdisk -l
    and that /mnt/windows is where you want to mount the partition. You can mount the partition is any empty directory of your choice.

    For more details, you can search the forums, as this is perhaps one of the most frequently asked questions.

    EDIT : casper was faster
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

Posting Permissions

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