News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Debug program that needs root privileges

Started by Tomás Ó hÉilidhe, December 18, 2008, 03:22:58 PM

Previous topic - Next topic

Tomás Ó hÉilidhe


I'm currently writing a program that opens a raw Ethernet socket. I use "sudo" to run it at the commandline.

How can I use the Code::Blocks IDE to debug it? I've tried replacing "gdb" with a script that runs gdb as root, but it didn't work out.

Is there anything I can do to my Linux machine to make it so that anybody can open a raw socket without the need for "sudo"?

dje

Hi !

Not at all a Linux expert, but did you try to execute C::B with sudo so that launched gdb inherit rights ?

Dje

Jenna

#2
Did you try to run gdb and/or your program with suid bit set ?
chmod u+s /usr/bin/gdb or chmod u+s <your_program>.

If you have to set it for your program the owner has to be root of course.