Announcement

Collapse
No announcement yet.

Ubuntu - Permission not granted - PerformanceTest

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Ubuntu - Permission not granted - PerformanceTest

    Hi,
    I'm trying to use PerformanceTest on Ubuntu.
    But when I follow the process " ./pt_linux_x64", Ubuntu replies "bash: Permission not granted".*
    Whether I'm root or not with sudo​.
    How to do ?
    Thanks
    Alexis

  • #2
    You need to enable execution permission for the file. This is a standard Linux / Unix requirement for executables.

    Depending on what version you have, run,

    For the 64bit x86 version of PerformanceTest.
    sudo chmod +x ./pt_linux_x64

    If using the 32bit version
    sudo chmod +x ./pt_linux_arm32

    If using the ARM CPU version
    sudo chmod +x ./pt_linux_arm64

    Note: sudo is not required if you are already the owner of the file in the file system.

    This is also covered on the FAQ page.

    Comment

    Working...
    X