Skip to Main Content
IBM Power Ideas Portal


This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Functionality already exists
Workspace IBM i
Created by Guest
Created on Jan 12, 2026

Path case sensitive inside iASP

To the best of my knowledge, the only case-sensitive paths in the IBM i Integrated File System are /QOPT and /QOpenSys.

In a configuration where an independent ASP (iASP) named IASP01 is present, once the iASP is mounted it is exposed in the IFS under the path /IASP01.

I would like to inquire whether it is technically possible, or if there are any plans to support, the creation of a case-sensitive directory within an iASP. For example, having a path such as /IASP01/QOpenSys, or any other case-sensitive directory structure under /IASP01.

This capability would be beneficial for workloads and applications that require POSIX-compliant, case-sensitive file systems to be hosted within an iASP.

 

Idea priority Medium
  • Guest
    Jan 20, 2026
    The IBM i file systems team believes that the requested function can already be achieved with the current system support. It is not the default, but a customer system can be configured with the requested behavior.

    As described in the section "User-defined file system and independent auxiliary storage pools" (https://www.ibm.com/docs/en/i/7.6.0?topic=udfsu-user-defined-file-system-independent-auxiliary-storage-pools), the '/dev/asp_name/QDEFAULT.UDFS' user-defined file system (UDFS) is automatically mounted over '/asp_name' when the IASP is varied on. After that, the default UDFS can be manually unmounted and another UDFS created with CASE(*MIXED) can then be mounted over the '/asp_name' directory. The sequence of steps for IASP01 would be:

    1) Vary-on IASP01
    2) Save all objects from '/IASP01'.
    3) CRTUDFS UDFS('/dev/IASP01/Mixed.UDFS') CASE(*MIXED)
    4) UNMOUNT TYPE(*UDFS) MNTOVRDIR('/IASP01')
    5) MOUNT TYPE(*UDFS) MFS('/dev/IASP01/Mixed.UDFS') MNTOVRDIR('/IASP01')
    6) Restore all objects saved in step 2 to '/IASP01'.

    You would have to repeat steps 4 and 5 every time you varied on IASP01, prior to any activity occurring in the IASP.

    Another option is a little more complicated up front, but then simpler going forward. The sequence of steps for this option:
    1) Vary-on IASP01
    2) Save all objects from '/IASP01'.
    3) Use DSPAUT '/dev/IASP01/QDEFAULT.UDFS' to note ownership and other authority information for the existing UDFS.
    4) UNMOUNT TYPE(*UDFS) MNTOVRDIR('/IASP01')
    5) RNM OBJ('/dev/IASP01/QDEFAULT.UDFS') NEWOBJ('OldQdefault.UDFS')
    6) CRTUDFS UDFS('/dev/IASP01/QDEFAULT.UDFS') CASE(*MIXED)
    7) Use WRKAUT or CHGAUT to set all authority values for the new UDFS to be the same as recorded in step 3.
    8) MOUNT TYPE(*UDFS) MFS('/dev/IASP01/QDEFAULT.UDFS') MNTOVRDIR('/IASP01')
    9) Restore all objects saved in step 2 to '/IASP01'.

    After this, your mixed-case UDFS will automatically be mounted over '/IASP01' every time the IASP is varied on. If everything looks good at this point, you could then DLTUDFS UDFS('/dev/IASP01/OldQdefault.UDFS').


    -- IBM i file systems team