drew578
drew578

Reputation: 131

Valgrind permission denied on file

I am running Ubuntu 12.04 and installed Valgrind configure and installed it. Everytime i run valgrind ./ file I always get permission denied even under root.

Upvotes: 6

Views: 24892

Answers (2)

tooy
tooy

Reputation: 383

You may use the /usr/bin/valgrind binary

Upvotes: -2

mariusm
mariusm

Reputation: 1678

turn on the executable bit and then retry:

chmod a+x ./file

it is a safety feature to disallow executing just about any file by default. and be very careful with unknown files in your root account.

Upvotes: 13

Related Questions