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 ...
- 02-12-2007 #1Just 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
- 02-12-2007 #2
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.
i assumed that Windows partition number is hda1.Code:mkdir /media/win_c mount -t vfat /dev/hda1 /media/win_c ls /media/win_c
CasperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 02-12-2007 #3That's not quite the command.
Originally Posted by sandeep5b5
More like :
Given /dev/hda1 is effectively your windows partition, which you can verify with the output of :Code:mount -t vfat -o umask=0000,user /dev/hda1 /mnt/windows
and that /mnt/windows is where you want to mount the partition. You can mount the partition is any empty directory of your choice.Code:fdisk -l
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


Reply With Quote
