View Single Post
  #2 (permalink)  
Old 04-27-2006, 01:47 PM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
Posts: 1,527
Thanks: 2
Thanked 18 Times in 15 Posts
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
+ ADD [SOLVED] thread prefix to your thread when your problem is sorted out by editing your thread.
+ Always use CODE tags for posting system output and commands!
Reply With Quote