0

I first mounted the iso file, and then after changing the directory to the virtual drive, and running the command sudo ./install, nothing happens. I don't get what I might be missing.

Raphael
  • 7,985
  • 5
  • 34
  • 51

1 Answers1

0

As you mentioned in the comments, the file is owned by root user and root group. So you need to login as root by doing su root and then run the file using ./install. If you face issues in logging as root, you can refer this. Let me know if it solves the problem for you. :)

Shagun Sodhani
  • 832
  • 1
  • 12
  • 36
  • it still has not worked. I should mention that I extracted .iso file and tried to run the install file from the extracted folder. I did `ls -l install` in the new folder and the content is _-rwxrwxrwx 1 essi essi 10483 Jan 3 2015 install_. I tried everything by login as a root since the beginning of the command line is `root@essi`. – Essi A. Feb 04 '16 at 13:56
  • @EssiA. Its getting confusing. What happens when you do `su root` and `./install` in the original setting that you described in your question? – Shagun Sodhani Feb 06 '16 at 03:28
  • After doing `./install` (as a `root` user), it does not give me any message and nothing happens (the pointer goes to the next line in the terminal as usual). – Essi A. Feb 06 '16 at 16:28
  • What is the output of `ls -l` after doing `chmod +x file_name` in the original setting? – Shagun Sodhani Feb 07 '16 at 04:07
  • _-rwxrwxrwx 1 essi essi 10483 Jan 3 2015 install_ – Essi A. Feb 08 '16 at 03:36
  • And doing a `sudo ./install` does not give any output? – Shagun Sodhani Feb 08 '16 at 04:38
  • no. It does not give me anything. – Essi A. Feb 09 '16 at 01:35