Sunday, March 25, 2012

How to mount NTFS media on oracle Linux 5.5:
========================================================
> If you already have the needed packages installed:

[root@ebsdb01 /]# mount -t ntfs-3g /dev/sde1 /u01 -o force
$LogFile indicates unclean shutdown (0, 0)
WARNING: Forced mount, reset $LogFile.
[root@ebsdb01 /]#

 
> If this is your first time to use NTFS on this OS:

Needed tar files have been uploaded to 4shared:
As the "root" user do:

mkdir /mnt/ntfs; cd /mnt/ntfs

tar xzf fuse-2.7.1.tar.gz

cd fuse-2.7.1;./configure --exec-prefix=/; make; make install

cd ..;tar xzf ntfs-3g-1.1120.tgz

cd ntfs-3g-1.1120;./configure; make; make install

Then:

fdisk -l  => check for your media

Mount your NTFS media:

mount -t ntfs-3g /dev/sde1 /mnt/ntfs/

No comments:

Post a Comment