Simple helloworld c++ program to test noexec tmp partition
1 2 3 4 5 6 7 | #include <iostream> int main() { std::cout << "Hello world, compiled with g++ on linux" << std::endl; return 0; } |
compile this and move to your secured tmp partition and execute it. If you get a permission error, tmp partition is mounted correctly with noexec.






