Posts

Showing posts from November, 2012

Oracle Database Error Solutions & DBA Knowledge Base

Welcome to Oracle Database Error Solutions, a professional technical knowledge base dedicated to helping Oracle Database Administrators, Oracle E-Business Suite administrators, developers, and IT professionals troubleshoot Oracle Database and Oracle Linux issues with confidence.

This website provides practical, real-world troubleshooting guides based on hands-on Oracle administration experience. You'll find detailed solutions for Oracle Database errors, RMAN backup and recovery, Data Guard, ASM, RAC, Oracle Linux administration, Oracle E-Business Suite (EBS), cloning, performance tuning, patching, installation, and day-to-day DBA tasks.

Whether you're resolving ORA-27101, ORA-28040, ORA-01555, ORA-12154, ORA-01017, or other Oracle errors, our step-by-step articles are designed to save you time and help you solve problems efficiently.

Unable to mount NTFS file system in oracle enterprise linux 5

Unable to mount NTFS file system in oracle enterprise linux 5 Applies to: Oracle Enterprise Linux 5.5 Database 11gR2 Description: I am using Oracle Enterprise Linux 5.5, I am trying to mount a NTFS file system USB drive on linux but unable to succeed and got the following error:   mount -t ntfs /dev/sdb1 /media/usbdrive/  mount: unknown filesystem type 'ntfs' Solution: After some research work I found that install the  FUSE and NTFS-3G packages  to resolve the issue. You can download the packages from: http://dag.wieers.com/rpm/packages/fuse-ntfs-3g/ http://packages.sw.be/fuse-ntfs-3g/ To check the package installed or not: rpm -qa |grep fuse To install the packages execute the folloiwng: rpm -ivh fuse-2.6.3-1.el4.rf.x86_64.rpm rpm -ivh fuse-ntfs-3g-2010.5.22-1.el5.rf.x86_64.rpm After successfull installation of packages I can mount the NTFS USB drive successfully: mount -t ntfs-3g /dev/sdb1  /media/u...