what’s a .run file

tags: learning linux

content

  • basically just a tar file

  • it’s called self-extracting, self-executing tar files

  • used for software installation on unix-like systems

  • not binary file, it’s a series of installation scripts packaged into a single executable file

  • .run files can be extracted to see its content inside, can even be less-de

    • less installer.run
    • and of course, you can vim it
  • options can be passed in, like ./installer.run --help

    • i mean, it’s just shell script

up

down

reference