Oracle Linux NTFS how-to mount permanently?

The below article was very useful to me and did exactly as mentioned.
Oracle Linux NTFS how-to
Thanks a lot.
Please advise how the ntfs drive can be mounted permanently.
Thanks
Suresh Panchanathan

I'm afraid there is no general answer. It depends how your device is connected, i.e. internal, usb, etc.?

Similar Messages

  • Oracle Linux NTFS how-to

    h1. Oracle Linux NTFS how-to
    Author: Dude
    Version: B, 22-Jan-2012
    h2. Purpose
    This document contains instructions how to install NTFS support under Oracle Enterprise Linux version 4, 5 and Oracle Linux version 5 and 6.
    h2. Topics
    1) Determine Kernel Architecture and Distribution
    2) Setup Software Repositories
    3) Install the NTFS Kernel Driver and Software
    4) Find and Mount a NTFS Device
    5) Notes
    h3. 1) Determine Kernel Architecture and Distribution
    Open a Terminal command prompt and enter the following to check if your system is x86 or x86_64:
    # uname -m
    x86_64If you see "i686" or "i386" instead then your system is x86.
    # cat /etc/redhat-release
    Red Hat Enterprise Linux AS release 4 (Nahant Update 9)The above example shows you are running Enterprise Linux version 4.9
    h3. 2) Setup Software Repositories
    You will need to setup access to two software repositories.
    Oracle ULN or public yum:
    The installation of RPM software packages can be complex due to software conflicts or package dependencies. It is easier to use a software manager like "yum", which will automatically resolve package dependencies and prompt you to download required software if necessary.
    For those who do not have a support subscription and access to Oracle ULN, Oracle provides a public YUM software repository to give you free online access to the standard software distributions. Simply follow the instructions outlined at http://public-yum.oracle.com. You only need to enable the software repository that matches your version according to the previous step.
    Reproforge:
    The NTFS driver is provided by the Repoforge alias RPMforge software repository. For more information about Repoforge, please see http://repoforge.org/faq. NTFS-3G is a stable, full-featured, read-write NTFS driver for Linux and other operating systems. For more information check http://www.tuxera.com/community/ntfs-3g-download, where you can also download the source code should you prefer to compile your own NTFS driver.
    Depending on your current distribution and kernel architecture, you need to install the following:
    Oracle Enterprise Linux 4.x x86:
    # wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el4.rf.i386.rpm
    # rpm -Uvh rpmforge-release-0.5.2-2.el4.rf.i386.rpm
    Oracle Enterprise Linux 4.x x86_64:
    # wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el4.rf.x86_64.rpm
    # rpm -Uvh rpmforge-release-0.5.2-2.el4.rf.x86_64.rpm
    Oracle Enterprise Linux / Oracle Linux 5.x x86:
    # wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.i386.rpm
    # rpm -Uvh rpmforge-release-0.5.2-2.el5.rf.i386.rpm
    Oracle Enterprise Linux / Oracle Linux 5.x x86_64:
    # wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm
    # rpm -Uvh rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm
    Oracle Linux 6.x x86:
    # wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm
    # rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.i686.rpm
    Oracle Linux 6.x x86_64:
    # wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    # rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpmh3. 3) Install the NTFS Kernel Driver and Related Software
    The software packages required to support NTFS depends on your current Linux distribution:
    Oracle Enterprise Linux 4.x:
    # yum install dkms dkms-fuse fuse fuse-ntfs-3g
    Oracle Enterprise Linux / Oracle Linux 5.0 - 5.2:
    # yum install dkms dkms-fuse fuse fuse-ntfs-3g
    Oracle Enterprise Linux / Oracle Linux 5.3:
    NTFS support under Oracle Enterprise Linux 5.3 is broken and you should consider to upgrade to the 5.4 or later. (https://bugzilla.redhat.com/show_bug.cgi?id=481495)
    Oracle Enterprise Linux / Oracle Linux 5.4 - 5.x:
    As of Oracle Enterprise Linux 5.4 the the kernel fuse module (dkms, dkms-fuse) is included in the kernel and should not be installed.
    # yum install fuse fuse-ntfs-3g
    Oracle Enterprise Linux / Oracle Linux 6.x:
    # yum install fuse fuse-ntfs-3g h3. 4) Find and Mount a NTFS Device
    You can use the "blkid" command to identify attached devices. For instance:
    sudo blkid
    /dev/sda1: LABEL="/boot" UUID="73efxxxxxxxxxxxxx_TYPE="ext3" TYPE="ext2"
    /dev/dm-0: UUID="22a2d704-f75dxxxxxxx595df" SEC_TYPE="ext3" TYPE="ext2"
    /dev/dm-1: TYPE="swap" UUID="3b74fxxxxxx411c-8671-2244b8735866"
    /dev/sdb1: TYPE="ntfs"
    {code}
    In the above example, device "/dev/sdb1" contains a NTFS partition.
    To mount the NTFS volume according to above example under the /mnt directory:
    {code}
    sudo mount.ntfs /dev/sdb1 /mnt
    {code}
    h3. 6) References
    http://wiki.centos.org/TipsAndTricks/NTFS
    h3. 6) Notes
    <font color="blue">
    <font size="2">
    If you experience problems with these instructions, please add only a couple of lines with a link to your own thread explaining the details. I spent some time and effort to create this how-to in the hope that it will be useful. If you would like to use these instructions for your own blog or website, please include a link to this source.
    Thanks!
    </font>
    </font>
    Kind regards and best of luck!
    Dude.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I'm afraid there is no general answer. It depends how your device is connected, i.e. internal, usb, etc.?

  • Linux 6.4 fails to install "Oracle Linux NTFS how-to"

    HI
    a total linux newbie here.
    I am running the latest x86_64 oracle linux Red Hat Enterprise Linux Server release 6.4 (Santiago)
    I have followed the instructions at : Oracle Linux NTFS how-to
    I manage to do :
    wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    yum install fuse fuse-ntfs-3g
    however this gives me
    Loaded plugins: refresh-packagekit, security
    Setting up Install Process
    Package fuse-2.8.3-4.el6.x86_64 already installed and latest version
    Resolving Dependencies
    --> Running transaction check
    ---> Package fuse-ntfs-3g.x86_64 0:2013.1.13-2.el5.rf will be installed
    --> Finished Dependency Resolution
    Dependencies Resolved
    =========================================================================================================================================================================================
    Package Arch Version Repository Size
    =========================================================================================================================================================================================
    Installing:
    fuse-ntfs-3g x86_64 2013.1.13-2.el5.rf rpmforge 586 k
    Transaction Summary
    =========================================================================================================================================================================================
    Install 1 Package(s)
    Total download size: 586 k
    Installed size: 1.4 M
    Is this ok [y/N]:
    Downloading Packages:
    http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror1.hs-esslingen.de/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://be.mirror.eurid.eu/rpmforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.cpsc.ucalgary.ca/mirror/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://ftp.fi.muni.cz/pub/linux/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://repository.vsb.cz/mirrors/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://merlin.fit.vutbr.cz/mirrors/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://fr2.rpmfind.net/linux/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mir01.syntis.net/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.atrpms.net/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.de.leaseweb.net/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://ftp.heanet.ie/mirrors/ftp.freshrpms.net/pub/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://thammuz.tchpc.tcd.ie/mirrors/ftp.freshrpms.net/pub/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.fairway.ne.jp/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://ftp.riken.jp/pub/Linux/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.oscc.org.my/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.nl.leaseweb.net/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://archive.cs.uu.nl/mirror/dag.wieers/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://ftp.lug.ro/freshrpms/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.awanti.com/rpmforge/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://ftp.is.co.za/mirror/ftp.rpmforge.net/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://www.mirrorservice.org/sites/apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://repoforge.spinellicreations.com/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.teklinks.com/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.hmc.edu/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.rit.edu/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://repoforge.eecs.wsu.edu/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://nl.mirror.eurid.eu/rpmforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror.us.leaseweb.net/dag/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    http://mirror-fpt-telecom.fpt.net/repoforge/redhat/el6/en/x86_64/rpmforge/RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
    Trying other mirror.
    Error Downloading Packages:
    fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64: failure: RPMS/fuse-ntfs-3g-2013.1.13-2.el5.rf.x86_64.rpm from rpmforge: [Errno 256] No more mirrors to try.
    Any ideas?

    You should get the following output:
    [root@vm210 ~]# lsb_release -d
    Description:     Oracle Linux Server release 6.4
    [root@vm210 ~]#
    [root@vm210 ~]# rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    warning: rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 6b8d79e6: NOKEY
    Preparing...                ########################################### [100%]
       1:rpmforge-release       ########################################### [100%]
    [root@vm210 ~]# yum install fuse fuse-ntfs-3g
    Loaded plugins: security
    ol6_UEK_latest                                                                 | 1.2 kB     00:00    
    ol6_latest                                                                     | 1.4 kB     00:00    
    ol6_latest/primary                                                             |  26 MB     02:39    
    ol6_latest                                                                                21127/21127
    rpmforge                                                                       | 1.9 kB     00:00    
    rpmforge/primary_db                                                            | 2.6 MB     00:07    
    Setting up Install Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package fuse.x86_64 0:2.8.3-4.el6 will be installed
    ---> Package fuse-ntfs-3g.x86_64 0:2013.1.13-2.el6.rf will be installed
    --> Finished Dependency Resolution
    Dependencies Resolved
    ======================================================================================================
    Package                 Arch              Version                        Repository             Size
    ======================================================================================================
    Installing:
    fuse                    x86_64            2.8.3-4.el6                    ol6_latest             71 k
    fuse-ntfs-3g            x86_64            2013.1.13-2.el6.rf             rpmforge              483 k
    Transaction Summary
    ======================================================================================================
    Install       2 Package(s)
    Total download size: 554 k
    Installed size: 1.7 M
    Is this ok [y/N]: y
    Downloading Packages:
    (1/2): fuse-2.8.3-4.el6.x86_64.rpm                                             |  71 kB     00:00    
    (2/2): fuse-ntfs-3g-2013.1.13-2.el6.rf.x86_64.rpm                              | 483 kB     00:01    
    Total                                                                 160 kB/s | 554 kB     00:03    
    Running rpm_check_debug
    Running Transaction Test
    Transaction Test Succeeded
    Running Transaction
    Warning: RPMDB altered outside of yum.
      Installing : fuse-2.8.3-4.el6.x86_64                                                            1/2
      Installing : fuse-ntfs-3g-2013.1.13-2.el6.rf.x86_64                                             2/2
      Verifying  : fuse-ntfs-3g-2013.1.13-2.el6.rf.x86_64                                             1/2
      Verifying  : fuse-2.8.3-4.el6.x86_64                                                            2/2
    Installed:
      fuse.x86_64 0:2.8.3-4.el6                  fuse-ntfs-3g.x86_64 0:2013.1.13-2.el6.rf                
    Complete!Your output:
    <pre>
    Package fuse-2.8.3-4.el6.x86_64 already installed and latest version
    Resolving Dependencies
    --> Running transaction check
    ---> Package fuse-ntfs-3g.x86_64 0:2013.1.13-2. el5 .rf will be installed
    </pre>
    It tells me that you perhaps tried to install the software before finding or following the instructions. If you check the fuse-ntfs-3g package of your output, it belongs to el5, not el6.
    I suggest to check /etc/yum.repos.d directory. It seems you have enabled or installed the wrong yum software repository from the rpmforge source.
    To solve your problem, perhaps the following will work:
    su - root
    yum remove rpmforge-release
    cd /etc/yum.repos.d
    tar -cf backup.tar ./* --remove-files
    wget http://public-yum.oracle.com/public-yum-ol6.repo
    wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    yum install fuse fuse-ntfs-3gThe following does not seem absolutely necessary, but might be a good idea:
    Once you installed the rpmforge-release package you should be able to use:
    yum update rpmforge-release
    Loaded plugins: security
    Setting up Update Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package rpmforge-release.x86_64 0:0.5.2-2.el6.rf will be updated
    ---> Package rpmforge-release.x86_64 0:0.5.3-1.el6.rf will be an update

  • How to mount SATA Ntfs Partitions on Arch Linux

    Please help me mounting sata ntfs partitions.
    Here is my fdisk -l :
    [kaola@ArchHost ~]$ sudo fdisk -l
    Disk /dev/sda: 80.0 GB, 80026361856 bytes
    255 heads, 63 sectors/track, 9729 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x020e020e
    Device Boot Start End Blocks Id System
    /dev/sda1 1 371 2980026 82 Linux swap / Solaris
    /dev/sda2 * 372 2803 19535040 83 Linux
    /dev/sda3 2804 6450 29294527+ 83 Linux
    /dev/sda4 6451 6463 104422+ 83 Linux
    Disk /dev/sdb: 160.0 GB, 160041885696 bytes
    255 heads, 63 sectors/track, 19457 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0xd7a23d33
    Device Boot Start End Blocks Id System
    /dev/sdb1 2 5875 47182905 5 Extended
    /dev/sdb2 * 5876 9139 26218080 7 HPFS/NTFS
    /dev/sdb5 2 3918 31463271 7 HPFS/NTFS
    /dev/sdb6 3919 5875 15719571 7 HPFS/NTFS
    Disk /dev/sdc: 4043 MB, 4043308544 bytes
    255 heads, 63 sectors/track, 491 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x00050ebd
    Device Boot Start End Blocks Id System
    /dev/sdc1 1 491 3943926 b W95 FAT32
    As far as I know, the sata ntfs partitions are those with (sdb#).
    I tried mounting one of them but this is what it shows:
    [kaola@ArchHost ~]$ sudo mount /dev/sdb6
    mount: can't find /dev/sdb6 in /etc/fstab or /etc/mtab
    Please help me, this is very annoying compared to ubuntu which does do the job pretty well.  By the way, I'm using kde as my DE.  Dolphin sees the partitions but cant access.
    It says:
    An error occured while accessing 'Backup2 HD2', the system responded:
    org.freedesktop.Hal.Device.Volume.UnknownFailure: TODO:
    have to rethink extra options
    Reading some tutorials on ntfs-3g wiki, I've modified my fstab.  Still, I can't read the partitions...Please help me, this is my fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    none /dev/pts devpts defaults 0 0
    none /dev/shm tmpfs defaults 0 0
    UUID=2167baaa-d1e0-4719-920c-0bc09fa56caa / reiserfs defaults 0 1
    UUID=3e2250a0-ac45-458c-ba40-44ddbe8af54d /boot ext2 defaults 0 1
    UUID=cbf76343-12cf-4975-9284-3360735be927 /home reiserfs defaults 0 1
    UUID=f39da452-efe4-49d0-abd4-bb5246b83b33 swap swap defaults 0 0
    /dev/cdrom /media/cdrom auto ro,user,noauto,unhide 0 0
    /dev/dvd /media/dvd auto ro,user,noauto,unhide 0 0
    UUID=2167baaa-d1e0-4719-920c-0bc09fa56caa / reiserfs defaults 0 1
    UUID=3e2250a0-ac45-458c-ba40-44ddbe8af54d /boot ext2 defaults 0 1
    UUID=cbf76343-12cf-4975-9284-3360735be927 /home reiserfs defaults 0 1
    UUID=f39da452-efe4-49d0-abd4-bb5246b83b33 swap swap defaults 0 0
    /dev/sdb1 /mnt/ntfs1 ntfs-3g users,noauto,uid=1000,gid=100,fmask=0113,dmask=0002,locale=en_US.utf8 0 0
    /dev/sdb2 /mnt/ntfs2 ntfs-3g users,noauto,uid=1000,gid=100,fmask=0113,dmask=0002,locale=en_US.utf8 0 0
    /dev/sdb5 /mnt/ntfs3 ntfs-3g users,noauto,uid=1000,gid=100,fmask=0113,dmask=0002,locale=en_US.utf8 0 0
    /dev/sda6 /mnt/ntfs4 ntfs-3g users,noauto,uid=1000,gid=100,fmask=0113,dmask=0002,locale=en_US.utf8 0 0
    Last edited by kaola_linux (2008-10-04 14:51:24)

    AD28 wrote:
    For seamless integration similar to Ubuntu:
        Follow this wiki for ntfs-3g installation and fstab configuration.
    For basic on-demand support:
    # pacman -Sy ntfs-3g
    and mount with:
    # mount -t ntfs-3g /dev/sdbX /mnt
    Now that did the trick!!!!!
    A happy Arch Linux user here!!!!hehee
    Any idea how to automate this? I want it to be automatically mounted so that it would be easy to transfer files...Pleasssseeeeee.....Thanks

  • How to compile Oracle Linux source?

    I accidentally downloaded source DVD "Oracle Linux Release 5 Update 2 source - DVD" instead of installable ISO image. Is there anyway I can compile it to make bootable ISO image?
    I tried to search this forum as well as other places but couldn't find any information hence thought of opening a thread before I proceed to download correct file which will again take 10+ hrs with my Internet speed :(
    Any help is highly appreciated. Also I need to know which packages are required to be installed for compiling the source if at all that is possible. I am using Ubuntu 11.10 Desktop.
    Thanks in advance for any help and hope to get a reply soon :) I need to urgently install Oracle 11gR2 on it.
    Edited by: user6582219 on Apr 12, 2012 1:10 AM
    While browsing the forum for any possible solution I came to a thread that discuss installation of a package oracle-rdbms-server-11gR2-preinstall. When searched through search engine I came to know about recent certification Oracle 11gR2 on Oracle Linux 6, here is the link https://blogs.oracle.com/linux/entry/announcing_oracle_database_11g_r2
    https://blogs.oracle.com/linux/entry/announcing_oracle_database_11g_r2
    Thing is I already have Oracle Linux 6 Update 2 (the latest) installed on my machine in dual boot mode so I dropped the idea of installing version 5.2. As per the documentation 11gR2 was not certified earlier on Linux 6.2 so I thought of installing 5.2 but it is not necessary now.
    I would still appreciate if someone could answer my question just for knowing the procedure compiling source. May be it can help someone else trying to achieve this.
    I have another couple of important questions and need guidance from the experts over here. I am not sure if it is appropriate to open a new thread but for now I am posting them here.
    Before proceeding here are my environment details:
    Machine: x86 32 bit with 2 GB RAM/250 GB HD.
    OS: Kubuntu 11.10 Desktop and Oracle Linux 6 Update 2 in dual boot mode.
    Here are my partition details for your reference but as I am planning to do the installation from the scratch following new ideal scheme you can jump to last paragraph following the line "*********************************" for my questions.
    Unfortunately my partition plan went wrong and here is what I have now:
    Disk /dev/sda: 250.1 GB, 250059350016 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x3d5ba9e1
    Device Boot Start End Blocks Id System
    /dev/sda1 * 2048 1002047 500000 83 Linux
    /dev/sda2 151525080 361253654 104864287+ 7 HPFS/NTFS/exFAT
    /dev/sda4 1003518 151001087 74998785 5 Extended
    /dev/sda5 1003520 7002111 2999296 82 Linux swap / Solaris
    /dev/sda6 7004160 11001855 1998848 83 Linux
    /dev/sda7 11003904 51001343 19998720 83 Linux
    /dev/sda8 51003392 110041087 29518848 83 Linux
    Partition table entries are not in disk order
    /dev/sda1 here is /tmp, /dev/sda2 is my data partition, I have separate /home / (root) partition for Kubuntu and remianing around 20 GB in extended partition is used for Oracle Linux 6.2 with default Oracle suggested LVM partition. I also have separate /boot for Kubuntu and I chose not to install grub while installing Oracle Linux. I later modified grub.cfg to add entries for Oracle Linux and now I can boot both OSs successfully.
    My issue now is I cannot extend 20 GB space (in extended partition) that I have given to Oracle though I have around 40 GB space available. This is because I alreay have 4 primary partitions (one for /boot others for "data" and one extended partition). So I have to make primary partition out of free space and install Oracle in a single partition without following recommended partition layout scheme.
    Now I want to do the installation of both the OS from the scratch and really need an advice on partition layout scheme. Here is summary of what I wan to achieve:
    1. Keep the "data" partition (primary) intact and carve an ideal partition layout for both the OS with separate /boot, /tmp, /home, swap (and may be for /usr???). Also may be I can share swap?
    2. How do I go about using LVM and is it recommended for this case? What would be ideal locations for each partitions and sizes? I already used 100 GB for "data" so now I want to keep 60 GB for Oracle Linux (and Oracle DB for which I will again make few sub-partitions) and remaining will be for Kubuntu.
    Well, I am not sure if this is the right place to ask these questions but since I can see very knowlegeable top contributors here that are willing to help novice users I thought of posting these questions.
    I would really really appreciate if someone can provide me rough draft of partition scheme in my case considering the sub-partitions needed for Oracle DB. I went thorugh number of forums and documentations to come up with solutuion and finally thought of getting help after much confusion.
    I really need to carefully plan this time because it's third time I am doing reinstallation from the scratch because of poor plan I followed previously.
    Thank you very much in advance and please let me know in case more information is needed from my side.
    Regards,
    Ramesh

    I accidentally downloaded source DVD "Oracle Linux Release 5 Update 2 source - DVD" instead of installable ISO image. Is there anyway I can compile it to make bootable ISO image?Google will be your best friend for such a question, for instance, "Creating a Custom centos Linux bootable ISO Image". There is no need to duplicate the effort. I recommend you download the correct installation DVD, e.g. 5.8
    Thing is I already have Oracle Linux 6 Update 2 (the latest) installed on my machine in dual boot mode so I dropped the idea of installing version 5.2. As per the documentation 11gR2 was not certified earlier on Linux 6.2 so I thought of installing 5.2 but it is not necessary now.So you don't need to install 5.2 anymore, but you want the information how to compile a installation DVD from the 5.2 source anyway?!
    I have another couple of important questions and need guidance from the experts over here. I am not sure if it is appropriate to open a new thread but for now I am posting them here.Questions may be important for you, but not necessarily for others. No one will complain if you create a new thread for particular questions or subjects. It is better to separate your topics and questions rather than creating a multi-mega thread, which does little to help anyone else but you. It means more work on your end, but it will be easier for anyone to participate or answer your questions, and it will allow you to better award answers.
    Regarding your partitioning questions: It is generally difficult to address such topics in a forum. You are asking for a book of information. My advice is to drop the old fashioned concepts of dual or triple boot options and install Oracle VirtualBox instead. It will make all of these questions obsolete and you can use whatever defaults when installing your virtual machine guest OS. Its a far more superior way of dealing with multiple operating systems on one and the same computer.
    I am using Ubuntu 11.10 Desktop.
    I need to urgently install Oracle 11gR2 on it.For what it's worth, if you can combine the two source below you should be able to install and run 11gR2 on Ubuntu 11.10.
    Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto
    Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto
    Oracle 11gR2 Express Edition on Linux Ubuntu 11.10 howto
    Oracle 11gR2 Express Edition on Linux Ubuntu 11.10 howto
    However, check out VirtualBox.

  • How could I study Oracle linux cluster ?

    Hello buddy:
    I want to study Oracle linux cluster. so, where can I get started ? I read online documents, but they not tell you how to build a test enviroument using VMware.
    Could you give a hint ?

    user1934450 wrote:
    Purpose is studying.Studying what exactly? Clusters are more than just shared disks.
    I want to restablish a single instance and database using OS cluster. The shared disk just can be seen by on node server, then I can manually test this OS cluster and make switching between two nodes at least.This is not really a cluster. A cluster supports scalability - for example, if a process load is too large for a single node, some of it can spill over and be executed by another node or multiple other cluster nodes.
    If you talk about standard Linux clustering, that would be running some kind of number crunching s/w (weather modeling, crunching astronomy data, etc) and running this across multiple cluster nodes.
    A shared cluster storage system is one possible component of a cluster.
    Taking your example - a shared cluster file system is not needed. As the other nodes cannot use that file system (if it does, it can corrupt database files) - only a single non RAC database instance can use the database. Thus the file system can only be used by a single instance on a single server. No clustering needed.
    When that server fails, that file system (from the storage server) needs to be mounted on another server and the database instance started on that server.
    This is not really a true cluster - simply a high availability and redundant configuration using multiple servers.
    If you want to study actual real clustering - do some research using Google. Create a simple project like calculating pi for example and create a virtual 2 or 3 node cluster that run this processing in parallel - using a shared cluster file system for data storage.

  • How to configure Oracle Linux 6.5 to request ip address from dhcp server

    I have installed Oracle Linux 6.5 (minimal installation) on a virtual machine created on VMware vSphere 5.5.   I have tried to configure dhcp during the installation by editing IPv4 Settings of System eth0 to use Automatic (DHCP) but somehow it does not work.
    Then I changed the ifcfg-eth0 to use static ip address and that works.
    Here is the content of /etc/sysconfig/network:
    NETWORKING=yes
    HOSTNAME=TESTOL
    Here is the content of /etc/sysconfig/network-scripts/ifcfg-eth0 using static ip address:
    DEVICE=eth0
    TYPE=Ethernet
    UUID=xxxxxxxx.xxxx-xxxx-xxxxxxxxxxxx
    ONBOOT=yes
    NM_CONTROLLED=yes
    BOOTPROTO=none
    HWADDR=xx:xx:xx:xx:xx:xx
    IPADDR:##.##.###.###
    PREFIX=24
    GATEWAY=##.##.###.###
    DNS1=##.##.###.###
    DOMAIN:test.com
    DEFROUTE=yes
    PEERDNS=yes
    PEERROUTES=yes
    IPV4_FAILURE_FATAL=yes
    IPV6INIT=no
    NAME="System eth0"
    Based on my understanding, I should able to use dhcp by changing ifcfg-eth0 (I commented the parameters not needed for dhcp by adding #) but I have tried the following ifcfg-eth0 and it does not work:
    DEVICE=eth0
    TYPE=Ethernet
    UUID=xxxxxxxx.xxxx-xxxx-xxxxxxxxxxxx
    ONBOOT=yes
    NM_CONTROLLED=yes
    #BOOTPROTO=no
    BOOTPROTO=dhcp
    HWADDR=xx:xx:xx:xx:xx:xx
    #IPADDR:##.##.###.###
    #PREFIX=24
    #GATEWAY=##.##.###.###
    DNS1=##.##.###.###
    #DOMAIN:test.com
    DEFROUTE=yes
    PEERDNS=yes
    PEERROUTES=yes
    IPV4_FAILURE_FATAL=yes
    IPV6INIT=no
    NAME="System eth0"
    I have also tried to add GATEWAY=##.##.###.### to /etc/sysconfig/network but that does not help.
    I have checked that dhclient package is installed by using rpm -qa dhclient.
    I'm new to Linux.
    Thanks for any help

    If this is your first experience with Oracle Linux, I recommend you perform a default installation instead of going minimal, which is just going to make things more difficult for no good reason. Enterprise Linux is not MS Windows and the difference between default and minimal installations do not compare.
    You also do not want to use the rpm utility to install any software and use yum instead. The yum utility is standard. Rpm does not resolve software dependencies.
    Your ifcfg-eth0 script is missing the line that specifies to use DHCP:
    BOOTPROTO=dhcp
    You can also use the network configuration utility, even in text mode, by typing the following at the command prompt of root:
    system-config-network
    If the above utility is not installed:
    yum install system-config-network-tui
    You will have to configure an appropriate yum repository file. The process is explained in the Oracle Linux release notes:
    https://oss.oracle.com/el6/docs/RELEASE-NOTES-U5-en.html
    See 3.2.3. About Oracle Linux Installation Media
    Then insert the DVD or attach the DVD iso image to your virtual machine and mount it as following:
    mkdir -p /media/ISOimage
    mount /dev/cdrom /media/ISOimage
    The path "/media/ISOimage" should be the same as you specified in the yum repository file.
    After that you can use the yum utility to list or install software.

  • How to install oracle 11g on oracle linux 6.1.

    Hello everyone here at oracle forum.!
    I'm new on using the linux and i badly need to learn it including the Oracle Database for making PHP website.
    Because of this i downloaded all the packages of Oracle Linux Release 6 Update 1 Media Pack for x86 (32 bit) at E-Delivery.
    Now i was having a hard time figuring out how to install all the 4 ISO images. the only one that worked was was the boot.iso that installed the Oracle Linux 6 without the DB.
    So what would i do to use the 3 updates?
    I burnt them all one by one on different DVD but it wont look for the other packages.
    So please guys bare with me and help me figure out how to use the other 3 packages for i know it has the Oracle Database.
    Oracle Linux Release 6 Update 1 source DVD 1 V26570-01
    Oracle Linux Release 6 Update 1 source DVD 2 V26571-01
    Oracle Linux Release 6 Update 1 Boot iso image for x86 (32 bit) V26573-01

    Oracle Linux does not install any Oracle Database. You don't need the source and boot.iso DVD. You can boot and install the system from the Oracle Linux 6.1 installation DVD. The boot.iso is useful for a network install and the source DVD if you want to compile everything yourself.
    As far as I know, Oracle Database has not been certified for Oracle Linux 6 yet. That does not necessarily mean you cannot install Oracle Database on Oracle Linux 6 yet, but you will run into problems with software requirements, package dependencies and perhaps incompatibilities, i.e. ext4 file system.
    I think your best option is to install Oracle Linux 5 and certainly use Oracle VirtualBox. If you are new to Linux you probably cannot use Linux as your primary OS yet, and VirtualBox will allow you to install and re-install without jeopardizing your primary host OS. You can also download pre-build virtual machines for Virtualbox from http://www.oracle.com/technetwork/community/developer-vm/index.html which might have everything you need installed and ready to use.

  • How to use LDAP authentication in Oracle Linux

    Hi All,
    In Oracle Linux 2.6.18-194 el5, goes to system->Administration->Authentication, enabled LDAP in both User Information and Authentication, tried to use network user account information to log in the linux machine but it did not work.
    The login screen waits over 10 minutes after enter username and password each and then says usename and password is not corrent.
    LDAP Settings only asked two information LDAP Search Base on and LDAP Server. We have another application which uses same LDAP server works fine.
    How to make Oracle linux server as LDAP client for user longin?
    Tanks in advance for yur help.

    I have no idea, but you might find it helpful to read Redhat's documentation concerning this subject:
    http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html/Deployment_Guide/ch-ldap.html

  • Excel import on Oracle Linux - How to create an ODBC Connection

    Hi,
    We have Oracle BI EE on Oracle Linux. We need to create an ODBC DNS and import tables to Admin tool.
    How would you create a ODBC connection inside Linux to Microsoft excel file using unixodbc. What drivers we need.
    Please let us know.
    Thanks!
    Nilaksha.

    See this post here: Re: [NQODBC][SQL_STATE: HY000][nQSError: 100[nQSError: 43093][nQSError: 16023]
    You need to find an Excel ODBC driver for Linux. The ones that come with OBIEE won't read Excel as far as I know.
    For info on creating an ODBC connection for OBIEE on Linux check the manual or search this forum. You don't need unixodbc for it.

  • Where to download and how to install X Window System for Oracle Linux 5 ?

    Folks,
    Hello. I am using Oracle Linux 5 and Oracle Database 11g for PIA.
    Before install Oracle DB 11g into Oracle Linux 5, we need to install X Window System according to the document page 2 http://download.oracle.com/docs/cd/B28359_01/install.111/b32285.pdf
    But I don't know where to download and how to install X Window System for Oracle Linux 5.
    Can any folk provide a link to download X Window System and tutorial to install it for Oracle Linux 5 ?

    You can address the problem in a number of different ways.
    You can install X-windows from the installation DVD or setup access to the Oracle public software repository as described in http://public-yum.oracle.com. In which case, the command to install X-windows is: yum groupinstall "X Window System"
    Or, you login remotely and and use SSH with X-forwarding, in which case the software on the server will use the X-Windows server on your client system. This is probably the preferred way since you do not have X-windows installed on the server. For more details about SSH forwarding and howto, please see Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto part 2 Oracle Universal Installer.

  • How can I install kornshell in Oracle Linux no using yum?

    I have a VM with Oracle Linux. with no internet access and I need to install korn shell. How can I do it no using yum?

    I really would like to use YUM to install, but my VM is not accessing the internet. I browsed the repository (Index of /repo/OracleLinux/OL6/3/base/x86_64/) and found out the right file.
    Thanks for your help!

  • How to install ASM instance in oracle linux 6.1

    Hi,
    I have installed oracle linux 6 and upgraded to oracle linux 6.1 (32 bit) for testing purpose.
    here is details of some commands
    [root@rac2 ~]# uname -a
    Linux rac2.test 2.6.32-131.0.15.el6.i686 #1 SMP Fri May 20 15:00:01 EDT 2011 i68 6 i686 i386 GNU/Linux
    [root@rac2 ~]# modprobe -l | grep oracle ####No output####
    [root@rac2 ~]# rpm -qa| grep oracleasm ####No output####
    [root@rac2 ~]# modprobe /etc/oracleasm
    FATAL: Module /etc/oracleasm not found.
    Please suggest me, do i have to download any other package for enable oracle asm.

    Hi,
    I have done these setup and still i am not able to create disk in asm. i have created partition with fdisk with name sdd2,sde2,sdf2
    here is the output of few command--
    [root@rac2 ~]# uname -r
    2.6.32-100.34.1.el6uek.i686
    [root@rac2 ~]# rpm -qa | grep oracle*
    oracle-logos-60.0.11-9.el6.noarch
    oraclelinux-release-notes-6Server-5.i686
    oraclelinux-release-6Server-1.0.2.i686
    oracleasm-support-2.1.5-1.el6.i686
    [root@rac2 ~]# /etc/init.d/oracleasm configure
    Configuring the Oracle ASM library driver.
    This will configure the on-boot properties of the Oracle ASM library
    driver. The following questions will determine whether the driver is
    loaded on boot and what permissions it will have. The current values
    will be shown in brackets ('[]'). Hitting <ENTER> without typing an
    answer will keep that current value. Ctrl-C will abort.
    Default user to own the driver interface [oracle]:
    Default group to own the driver interface [oinstall]:
    Start Oracle ASM library driver on boot (y/n) [y]:
    Scan for Oracle ASM disks on boot (y/n) [y]:
    Writing Oracle ASM library driver configuration: done
    Initializing the Oracle ASMLib driver: [  OK  ]
    Scanning the system for Oracle ASMLib disks: [  OK  ]
    [root@rac2 ~]# /etc/init.d/oracleasm status
    Checking if ASM is loaded: yes
    Checking if /dev/oracleasm is mounted: yes
    [root@rac2 ~]# ls -la /dev/sd*
    brw-rw----. 1 root disk 8, 0 Sep 14 15:57 /dev/sda
    brw-rw----. 1 root disk 8, 1 Sep 14 15:58 /dev/sda1
    brw-rw----. 1 root disk 8, 2 Sep 14 15:57 /dev/sda2
    brw-rw----. 1 root disk 8, 16 Sep 14 15:57 /dev/sdb
    brw-rw----. 1 root disk 8, 17 Sep 14 15:58 /dev/sdb1
    brw-rw----. 1 root disk 8, 48 Sep 14 16:14 /dev/sdd
    brw-rw----. 1 root disk 8, 50 Sep 14 16:14 /dev/sdd2
    brw-rw----. 1 root disk 8, 64 Sep 14 16:14 /dev/sde
    brw-rw----. 1 root disk 8, 66 Sep 14 16:14 /dev/sde2
    brw-rw----. 1 root disk 8, 80 Sep 14 16:14 /dev/sdf
    brw-rw----. 1 root disk 8, 82 Sep 14 16:14 /dev/sdf2
    [root@rac2 ~]# /etc/init.d/oracleasm createdisk ASM01 /dev/sdd2
    Marking disk "ASM01" as an ASM disk: [FAILED]
    [root@rac2 ~]#
    [root@rac2 ~]# tail -20 /var/log/oracleasm
    Creating /dev/oracleasm mount point: /dev/oracleasm
    Loading module "oracleasm": oracleasm
    Mounting ASMlib driver filesystem: /dev/oracleasm
    Reloading disk partitions: done
    Cleaning any stale ASM disks...
    Scanning system for ASM disks...
    Reloading disk partitions: done
    Cleaning any stale ASM disks...
    Scanning system for ASM disks...
    Reloading disk partitions: done
    Cleaning any stale ASM disks...
    Scanning system for ASM disks...
    Disk "ASM01" does not exist or is not instantiated
    Writing disk header: done
    Instantiating disk: oracleasm-instantiate-disk: Unable to create ASM disk "ASM01": Permission denied
    failed
    Clearing disk header: done
    [root@rac2 ~]#
    I have tried to find out solution but did not get anything in google.
    Please suggest if any solution or may be i missed some setup.
    Ram

  • How to see new disk in oracle linux 5

    Dear,
    i am using oracle VM and created 2 guest OS (both Olx5) i also created a shared disk and assigned to both linux servers.
    question: how can i see the disk in each server. using fdisk -l it just shown the one there before.
    in HPUX we have ioscan to detect new devices. is there away to check for new disk in oracle linux.
    Thanks in advance.
    Tom

    fdisk -l shows only existing partitions. So if your new disk has not partition created it will be not shown in the output.
    AFAIK there is not such command which will list all devices but there are several ways how to find the devices. All informations you can find in /proc directory (fdisk -l reads /proc/partitions when device is not passed as argument).
    You can find devices (local disks) for example using following commands (hope it helps):
    cat /var/log/dmesg |egrep 'sd[a-z]: s|hd[a-z]: h'
    cat /proc/diskstats |egrep -v 'ram|fd'|awk {'print $3'}

  • How to install Oracle 9i on Oracle Linux?

    I'm an experienced professional on Microsoft Technologies.
    I need to learn Oracle 9i running on Linux in the next months.
    So, I installed Oracle Linux on a VMware Virtual Machine.
    When I tried to start the installation of Oracle 9i, I got the following error message:
    "../jre/bin/i386/native_threads/java: error while loading shared libraries: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory"
    How to fix this?
    Thanks!!!
    Felipe

    This is exactly the documentation I was following.
    The first problem is that I'm using Oracle Linux Enterprise Release 5 and I don't know what Red Hat version is similar. This link mentions only Red Hat distributions.
    When I faced the problem, I saw the explanation from that link, where I should install the compat-libstdc++ RPM. For Red Hat 9, I should run:
    rpm -ivh compat-libstdc++-7.3-2.96.118.i386.rpm
    What should I run on Oracle Linux Enterprise Release 5?

Maybe you are looking for

  • How to I put a Windows 8.1 ISO file into a disk if I want to run Windows through Bootcamp

    I have bought Windows 8.1 but I need to put the ISO onto a disk to install. How do I get the ISO and what should I do after that?

  • Raw Files in Lightroom...

    I just imported RAW files into Lightroom and want to use the Develop tool. However, when I change modules to "Develop" It does not allow me to see the changes as I work. Only when I go back to the Library module can I see them. I need to see real tim

  • Many files to one file Processing in XI without using BPM

    Hi XI Experts, Greetings!! I have one requirement in which I have to send three files from ERP system to some Third Party system via XI without using BPM. I seached many threads..but not got the solutions. Please help me. many thanks.

  • How to setup email widget for N97?

    Hi all, I have searched everywhere and know that there is a "Set up email" button to click but this will setup a mail box in my Messaging folder (together with SMS sutff), NOT the push email client widget that I used before when I was able to go to e

  • Bank details configuration

    Hi, Pls let me know the bank connection configuration. Thanks and Regards, Revathi.