View Single Post

  #2 (permalink)  
Old 04-27-2006, 02:47 PM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,035
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

In order to access NTFS file system you need install special module i.e. driver. It can be downloaded from following url
http://www.linux-ntfs.org/content/view/128/64/

Select your Fedora Core Linux version and then download appropriate driver according to your kernel version.

To find out your kernel version use following command:
Code:
uname -r
Once downloaded driver use rpm command to install it:
Code:
 rpm -ihv kernel-ntfs*
Now to mount NTFS windows XP system partition use mount command:
Code:
mkdir -p /mnt/c
mount -t ntfs /dev/hdXY /mnt/c
OR
Code:
mount -t ntfs -o nls=utf8 /dev/hdXY /mnt
Use fdisk -l command to find out name of NTFS partion:
Code:
fdisk -l
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote