View Single Post

  #5 (permalink)  
Old 04-22-2006, 01:04 AM
tom tom is offline
Contributors
User
 
Join Date: Jun 2005
Location: London, UK
Posts: 213
Rep Power: 4
tom is on a distinguished road
Default

Use mount command as follows:

Create mount dir:
Code:
mkdir -p /mnt/c
Mount partition:
Code:
mount -t vfat /dev/hdX /mnt/c
Now goto directory /mnt/c
Code:
cd /mnt/c
Replace /dev/hdX with actual your partition, to find out partition list type command:
Code:
fdisk -l
Reply With Quote