I am trying to install .run files which I downloaded from https://bitnami.com/redirect/to/39461/bitnami-wordpress-3.9.2-0-linux-installer.run
But when I try to run it nothing happens (I have used text mode too)
How to install .run files in Linux by using SSH?
Check you are using the correct binary (32bit or 64bit). You can use "uname -a" to see your current Linux architecture.
Change the file permissions:
chmod 755 bitnami-*.run
Run the file:
./bitnami*.run --mode text
I hope it helps