Canu explain why did u use that sh -c . Actually by gksu itself, we are running that command as user root ..So why am i getting permission denied ?
1. sh -c is used to Read commands from the command_string operand instead of from the standard input. for more just do man sh. 2. By gksu we are not using command as root user (su means switch user it can be any user) so we have to give -u root to tell that user is root !! To directly use as root user (or other sudoer) use *gksudo* in place of *gksu -u roo*t (rest of the part remains same) -- Parin Sharma http://twitter.com/FOSSmaniac -- l...@iitd - http://tinyurl.com/ycueutm Subscription settings: http://groups.google.com/group/iitdlug/subscribe?hl=en
