LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Trouble with install permissions!! HELP plz!! (https://www.linuxquestions.org/questions/linux-newbie-8/trouble-with-install-permissions-help-plz-433183/)

nectron101 04-08-2006 07:38 PM

Trouble with install permissions!! HELP plz!!
 
Hello,

I was trying to install RealPlayer 10 which comes in a .bin file..

Here's what happens, how can I fix this?

Nectron@linux:~/Documents/Programs> chmod -x RealPlayer10GOLD.bin
Nectron@linux:~/Documents/Programs> ./RealPlayer10GOLD.bin
bash: ./RealPlayer10GOLD.bin: Permission denied

Permission Denied is what I get whenever I use commands like:
./<filename>
./configure

etc..

Thanks in advance.

Brian1 04-08-2006 08:36 PM

Not sure what distro you are using but for me as long as I download the file as myself and extract it as myself in a place that is owned by me like my home directory I have no problem using ./configure make and so on. Just need to use ' make install ' and ' rpm -ivh *.rpm ' as root. Check to see who owns the files you are trying to build.

Brian1

JMJ_coder 04-08-2006 08:49 PM

Quote:

Originally Posted by nectron101
Nectron@linux:~/Documents/Programs> chmod -x RealPlayer10GOLD.bin

This is the wrong command.

Try this:

Code:

chmod a+x RealPlayer10GOLD.bin
./RealPlayer10GOLD.bin

I hope this helps.


All times are GMT -5. The time now is 08:29 PM.