Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. How to fix this error - missing or insufficient permissions ?
Forum Updated to NodeBB v4.3 + New Features

How to fix this error - missing or insufficient permissions ?

Scheduled Pinned Locked Moved Unsolved Qt Creator and other tools
3 Posts 2 Posters 2.2k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Anonymous_Banned275
    wrote on last edited by
    #1

    If the program complies - how can it be missing ??

    Where does QT keeps "invoke permissions " ?

    How to fix this error ?

    20:00:14: Starting /mnt/da659056-4bac-42bc-a335-54f4a3167ed0/MDI_WORK_COPY_FOLDER/MDI_BT_Oct24_CHILD_STATUS/SOURCE/mdi/mdi...
    20:00:14: The process failed to start. Either the invoked program "/mnt/da659056-4bac-42bc-a335-54f4a3167ed0/MDI_WORK_COPY_FOLDER/MDI_BT_Oct24_CHILD_STATUS/SOURCE/mdi/mdi" is missing, or you may have insufficient permissions to invoke the program.

    1 Reply Last reply
    0
    • C Offline
      C Offline
      ChrisW67
      wrote on last edited by
      #2

      Where you are looking and where the compiled program went are not necessarily the same place. A typical project created by Qt Creator will not do an in-place compile but you appear to be trying to execute something in the source tree.

      Secondly, "missing" is only one option. The file may be there but not marked executable: this is a Linux file permission and nothing to do with "QT keeping invoke permissions".

      • Look at your project build settings to see where the compiled artifacts went.
        af65d03c-85f5-42ff-9744-a0ed9917bf72-image.png

      • Look for the resulting executable under there. Is that the file you are trying to execute?

      • Look at the file. Does it have the execute permission for user or other? That is the first/last x in the -rwxrwxr-x below.

      $ ls -l /tmp/build-untitled-Desktop_Qt_6_4_0_GCC_64bit-Debug/untitled
      -rwxrwxr-x 1 chrisw chrisw 1078816 Nov 29 16:37 /tmp/build-untitled-Desktop_Qt_6_4_0_GCC_64bit-Debug/untitled
      
      A 1 Reply Last reply
      2
      • C ChrisW67

        Where you are looking and where the compiled program went are not necessarily the same place. A typical project created by Qt Creator will not do an in-place compile but you appear to be trying to execute something in the source tree.

        Secondly, "missing" is only one option. The file may be there but not marked executable: this is a Linux file permission and nothing to do with "QT keeping invoke permissions".

        • Look at your project build settings to see where the compiled artifacts went.
          af65d03c-85f5-42ff-9744-a0ed9917bf72-image.png

        • Look for the resulting executable under there. Is that the file you are trying to execute?

        • Look at the file. Does it have the execute permission for user or other? That is the first/last x in the -rwxrwxr-x below.

        $ ls -l /tmp/build-untitled-Desktop_Qt_6_4_0_GCC_64bit-Debug/untitled
        -rwxrwxr-x 1 chrisw chrisw 1078816 Nov 29 16:37 /tmp/build-untitled-Desktop_Qt_6_4_0_GCC_64bit-Debug/untitled
        
        A Offline
        A Offline
        Anonymous_Banned275
        wrote on last edited by
        #3

        @ChrisW67 My mistake - I forgot top disable "shadow build " . I usually get this error when I am not an owner of the RAID.

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved