Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Become the superuser with sudo, su, etc.
  2. Pick a suitable directory
    root's home directory is likely ok. Running mount should confirm - look for noexec. We recommend that you use an empty new temporary directory for the installer as that simplifies cleanup.

    Code Block
    cd; # you're in root's homedir now. or pick some other writable and executable place
    mkdir installertemp
    
  3. Tell the installer to use this local temporary directory and start the installation

    Code Block
    export TMPDIR=/installertemp
    # this assumes that opProduct was downloaded/transferred into root's homedirectory; adjust the path accordingly if not. 
    sh ./opProduct-version.run 
  4. Clean up the temporary directory

    Code Block
    rm -rf /installertemp
    unset TMPDIR

...