My apologies for posting an already solved problem, but dont know if its my ignorance that is not getting me to my desired results.....trying to mount an external usb hard drive(ntfs) in my system.
In my CentOS box, I tried to install dkms, dkms-fuse, fuse and fuse-ntfs-3g as follows(including what happened)
[root@Production mnt]# yum install dkms dkms-fuse fuse fuse-ntfs-3g Setting up Install Process Setting up repositories Reading repository metadata in from local files Parsing package install arguments Resolving Dependencies --> Populating transaction set with selected packages. Please wait. ---> Package dkms.noarch 0:2.0.20.4-1.el4.rf set to be updated ---> Package fuse-ntfs-3g.x86_64 0:2009.4.4-2.el4.rf set to be updated ---> Package fuse.x86_64 0:2.7.4-1.el4.rf set to be updated ---> Package dkms-fuse.noarch 0:2.7.4-1.nodist.rf set to be updated --> Running transaction check
Dependencies Resolved
============================================================================= Package Arch Version Repository Size ============================================================================= Installing: dkms noarch 2.0.20.4-1.el4.rf rpmforge 60 k dkms-fuse noarch 2.7.4-1.nodist.rf rpmforge 70 k fuse x86_64 2.7.4-1.el4.rf rpmforge 254 k fuse-ntfs-3g x86_64 2009.4.4-2.el4.rf rpmforge 368 k
Transaction Summary ============================================================================= Install 4 Package(s) Update 0 Package(s) Remove 0 Package(s) Total download size: 752 k Is this ok [y/N]: y Downloading Packages: Running Transaction Test Finished Transaction Test Transaction Test Succeeded Running Transaction Installing: fuse ######################### [1/4] Installing: dkms ######################### [2/4] Installing: fuse-ntfs-3g ######################### [3/4] Installing: dkms-fuse ######################### [4/4]
Installed: dkms.noarch 0:2.0.20.4-1.el4.rf dkms-fuse.noarch 0:2.7.4-1.nodist.rf fuse.x86_64 0:2.7.4-1.el4.rf fuse-ntfs-3g.x86_64 0:2009.4.4-2.el4.rf Complete! [root@Production mnt]#
The hard drive shows in GUI, but doesn't open or mount as I expected.
The output of uname -a and rpm -qa|grep kernel|sort kernel-2.6.9-34.0.1.EL are:
[root@Production mnt]# uname -a Linux Production 2.6.9-34.0.1.ELsmp #1 SMP Wed May 24 05:28:30 CDT 2006 x86_64 x86_64 x86_64 GNU/Linux
[root@Production mnt]# rpm -qa|grep kernel|sort kernel-2.6.9-34.0.1.EL kernel-2.6.9-34.EL kernel-devel-2.6.9-78.0.22.EL kernel-smp-2.6.9-34.0.1.EL kernel-smp-2.6.9-34.EL kernel-smp-devel-2.6.9-78.0.22.EL kernel-utils-2.4-13.1.80 [root@Production mnt]#
I am guessing that I am using mismatched versions of kernels but just not getting there... Tried looking all over the place for a solution, haven't had any luck yet!
Thanks.
On Mon, Jun 15, 2009 at 7:52 PM, Sagar Koiralasagar.koirala@gmail.com wrote:
My apologies for posting an already solved problem, but dont know if its my ignorance that is not getting me to my desired results.....trying to mount an external usb hard drive(ntfs) in my system.
As far as I know you just run the following command as root:
# mount -t ntfs-3g /dev/sda1 /mnt/windows
Where /dev/sda1 is the location of your USB media and /mnt/windows is where you want your mountpoint to be.
The hard drive shows in GUI, but doesn't open or mount as I expected.
I didn't see you run the above mount command, what did you do to mount the device?
Thank you for your reply. I tried to give the mount command but got back some errors, here is the detail
[root@Production mnt]# mount -t ntfs-3g /dev/sdb1 /mnt/usbdrive
FATAL: Module fuse not found. Error reading bootsector: Input/output error Failed to mount '/dev/sdb1': Input/output error NTFS is either inconsistent, or there is a hardware fault, or it's a SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows then reboot into Windows twice. The usage of the /f parameter is very important! If the device is a SoftRAID/FakeRAID then first activate it and mount a different device under the /dev/mapper/ directory, (e.g. /dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation for more details.
Thanks.
On Tue, Jun 16, 2009 at 1:01 PM, Justin Bull justin.bull@sohipitmhz.comwrote:
On Mon, Jun 15, 2009 at 7:52 PM, Sagar Koiralasagar.koirala@gmail.com wrote:
My apologies for posting an already solved problem, but dont know if its
my
ignorance that is not getting me to my desired results.....trying to
mount
an external usb hard drive(ntfs) in my system.
As far as I know you just run the following command as root:
# mount -t ntfs-3g /dev/sda1 /mnt/windows
Where /dev/sda1 is the location of your USB media and /mnt/windows is where you want your mountpoint to be.
The hard drive shows in GUI, but doesn't open or mount as I expected.
I didn't see you run the above mount command, what did you do to mount the device?
-- Best Regards,
Justin Bull http://www.sohipitmhz.com/pubkey.txt (Public Key) _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
And yes, this is the line from /etc/fstab file:
/dev/sdb1 /media/Expansion_Drive ntfs pamconsole,fscontext=system_u:object_r:removable_t,exec,noauto,managed 0 0
On Tue, Jun 16, 2009 at 1:06 PM, Sagar Koirala sagar.koirala@gmail.comwrote:
Thank you for your reply. I tried to give the mount command but got back some errors, here is the detail
[root@Production mnt]# mount -t ntfs-3g /dev/sdb1 /mnt/usbdrive
FATAL: Module fuse not found. Error reading bootsector: Input/output error Failed to mount '/dev/sdb1': Input/output error NTFS is either inconsistent, or there is a hardware fault, or it's a SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows then reboot into Windows twice. The usage of the /f parameter is very important! If the device is a SoftRAID/FakeRAID then first activate it and mount a different device under the /dev/mapper/ directory, (e.g. /dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation for more details.
Thanks.
On Tue, Jun 16, 2009 at 1:01 PM, Justin Bull justin.bull@sohipitmhz.comwrote:
On Mon, Jun 15, 2009 at 7:52 PM, Sagar Koiralasagar.koirala@gmail.com wrote:
My apologies for posting an already solved problem, but dont know if its
my
ignorance that is not getting me to my desired results.....trying to
mount
an external usb hard drive(ntfs) in my system.
As far as I know you just run the following command as root:
# mount -t ntfs-3g /dev/sda1 /mnt/windows
Where /dev/sda1 is the location of your USB media and /mnt/windows is where you want your mountpoint to be.
The hard drive shows in GUI, but doesn't open or mount as I expected.
I didn't see you run the above mount command, what did you do to mount the device?
-- Best Regards,
Justin Bull http://www.sohipitmhz.com/pubkey.txt (Public Key) _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Now, I am getting the error messages as follows:
FATAL: Module fuse not found. ntfs-3g-mount: fuse device is missing, try 'modprobe fuse' as root
Thanks for any help.
On Tue, Jun 16, 2009 at 1:09 PM, Sagar Koirala sagar.koirala@gmail.comwrote:
And yes, this is the line from /etc/fstab file:
/dev/sdb1 /media/Expansion_Drive ntfs pamconsole,fscontext=system_u:object_r:removable_t,exec,noauto,managed 0 0
On Tue, Jun 16, 2009 at 1:06 PM, Sagar Koirala sagar.koirala@gmail.comwrote:
Thank you for your reply. I tried to give the mount command but got back some errors, here is the detail
[root@Production mnt]# mount -t ntfs-3g /dev/sdb1 /mnt/usbdrive
FATAL: Module fuse not found. Error reading bootsector: Input/output error Failed to mount '/dev/sdb1': Input/output error NTFS is either inconsistent, or there is a hardware fault, or it's a SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows then reboot into Windows twice. The usage of the /f parameter is very important! If the device is a SoftRAID/FakeRAID then first activate it and mount a different device under the /dev/mapper/ directory, (e.g. /dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation for more details.
Thanks.
On Tue, Jun 16, 2009 at 1:01 PM, Justin Bull justin.bull@sohipitmhz.comwrote:
On Mon, Jun 15, 2009 at 7:52 PM, Sagar Koiralasagar.koirala@gmail.com wrote:
My apologies for posting an already solved problem, but dont know if
its my
ignorance that is not getting me to my desired results.....trying to
mount
an external usb hard drive(ntfs) in my system.
As far as I know you just run the following command as root:
# mount -t ntfs-3g /dev/sda1 /mnt/windows
Where /dev/sda1 is the location of your USB media and /mnt/windows is where you want your mountpoint to be.
The hard drive shows in GUI, but doesn't open or mount as I expected.
I didn't see you run the above mount command, what did you do to mount the device?
-- Best Regards,
Justin Bull http://www.sohipitmhz.com/pubkey.txt (Public Key) _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hi,
On Mon, Jun 15, 2009 at 23:20, Sagar Koiralasagar.koirala@gmail.com wrote:
ntfs-3g-mount: fuse device is missing, try 'modprobe fuse' as root
Well, did you try running that? What are the results?
Please do not top post, and trim your replies to the list. See "Guidelines for CentOS Mailing List posts" on this page: http://www.centos.org/modules/tinycontent/index.php?id=16
HTH, Filipe
Hi,
On Mon, Jun 15, 2009 at 22:52, Sagar Koiralasagar.koirala@gmail.com wrote:
[root@Production mnt]# rpm -qa|grep kernel|sort kernel-2.6.9-34.0.1.EL kernel-2.6.9-34.EL kernel-devel-2.6.9-78.0.22.EL kernel-smp-2.6.9-34.0.1.EL kernel-smp-2.6.9-34.EL kernel-smp-devel-2.6.9-78.0.22.EL kernel-utils-2.4-13.1.80 [root@Production mnt]#
I am guessing that I am using mismatched versions of kernels but just not getting there... Tried looking all over the place for a solution, haven't had any luck yet!
I guess you need a kernel-devel package that matches your running kernel. For instance, you need either a kernel-smp-devel-2.6.9-34.0.1.EL, or (better solution) install kernel-smp-2.6.9-78.0.22.EL and boot the machine with it. If you run an "yum update" or "yum update kernel-smp" it should do that, unless you messed yum.conf with excludes or changed /etc/sysconfig/kernel...
By the way, next time please use a subject that describes your issue and not just 'Welcome to the "CentOS" mailing list'.
HTH, Filipe
Sagar Koirala wrote on Tue, 16 Jun 2009 12:52:39 +1000:
My apologies for posting an already solved problem
Well, next time, pelase choose a better subject and make it a *new* mail ;-)
Kai