Valgrind permission denied in file

I start Ubuntu 12.04 and install Valgrind configure and install it. Every time I run the valgrind./ file, I always get permission, even as root.

+4
source share
1 answer

enable the executable bit and try again:

chmod a+x ./file

This is a security feature that prohibits the execution of almost any file by default. and be very careful with unknown files in your root account.

+5
source

All Articles