sudo command
Hi
I ahve an script in the root dir and i have it to run some things i need it to run i have an line like sudo /usr/sbin/sample and this one line works fine i have another like this to run another but it seems it doesnt run right seems it is getting caught at the password i do not understand why one works and the other doesnt any info and help to get this right would be of great help Thanks in advance Bob -- ubuntu-users mailing list ubuntu-users@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users |
sudo command
N1UAN Bob wrote:
> I ahve an script in the root dir and i have it to run some things i > need it to run i have an line like > sudo /usr/sbin/sample and this one line works fine i have another like > this to run another but it seems it doesnt run right seems it is > getting caught at the password i do not understand why one works and > the other doesnt any info and help to get this right would be of great > help Thanks in advance If you don't post the command with the problem we can't help you. I don't think that looks like a general sudo problem but a problem related to your specific command. Nils -- ubuntu-users mailing list ubuntu-users@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users |
sudo command
ok here are the cmds one works and the other doesnt
sudo /usr/sbin/net2kiss -i ax0 /dev/ptys3 & this one works sudo /usr/sbin/flexd this one doesnt work the second line that doesnt work is suppose to connect to another program and send data to it but has an connect error if i do this cmd from the cmd prompt it ask for an password and then it send the data but in the script it wont thanks again Bob On Sat, 5 Apr 2008, Nils Kassube wrote: > N1UAN Bob wrote: > > I ahve an script in the root dir and i have it to run some things i > > need it to run i have an line like > > sudo /usr/sbin/sample and this one line works fine i have another like > > this to run another but it seems it doesnt run right seems it is > > getting caught at the password i do not understand why one works and > > the other doesnt any info and help to get this right would be of great > > help Thanks in advance > > If you don't post the command with the problem we can't help you. I don't > think that looks like a general sudo problem but a problem related to > your specific command. > > > Nils > > -- > ubuntu-users mailing list > ubuntu-users@lists.ubuntu.com > Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users > -- ubuntu-users mailing list ubuntu-users@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users |
sudo command
On Sun, 2008-04-06 at 21:52 +0000, N1UAN Bob wrote:
> ok here are the cmds one works and the other doesnt > > sudo /usr/sbin/net2kiss -i ax0 /dev/ptys3 & this one works > sudo /usr/sbin/flexd this one doesnt work > the second line that doesnt work is suppose to connect to another program > and send data to it but has an connect error if i do this cmd from the cmd > prompt it ask for an password and then it send the data but in the script > it wont Sorry, I missed the start of this thread. Please post the exact and complete command line you are using to execute the script. My guess is that you are redirecting standard output and/or standard input, and that this is swallowing your password prompt and/or your password (probably along with your redirected input). Regards, K. -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ Karl Auer (kauer@biplane.com.au) +61-2-64957160 (h) http://www.biplane.com.au/~kauer/ +61-428-957160 (mob) GPG fingerprint: DD23 0DF3 2260 3060 7FEC 5CA8 1AF6 D9E3 CFEE 6B28 Public key at : random.sks.keyserver.penguin.de -- ubuntu-users mailing list ubuntu-users@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users |
sudo command
Ok the script name is ham.sh and in the root dir
in the /etc/rc.local file i have cd /root ./ham.sh and everything in that script run but that one line i posted Thanks Bob On Mon, 7 Apr 2008, Karl Auer wrote: > On Sun, 2008-04-06 at 21:52 +0000, N1UAN Bob wrote: > > ok here are the cmds one works and the other doesnt > > > > sudo /usr/sbin/net2kiss -i ax0 /dev/ptys3 & this one works > > sudo /usr/sbin/flexd this one doesnt work > > the second line that doesnt work is suppose to connect to another program > > and send data to it but has an connect error if i do this cmd from the cmd > > prompt it ask for an password and then it send the data but in the script > > it wont > > Sorry, I missed the start of this thread. Please post the exact and > complete command line you are using to execute the script. My guess is > that you are redirecting standard output and/or standard input, and that > this is swallowing your password prompt and/or your password (probably > along with your redirected input). > > Regards, K. > > -- > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ > Karl Auer (kauer@biplane.com.au) +61-2-64957160 (h) > http://www.biplane.com.au/~kauer/ +61-428-957160 (mob) > > GPG fingerprint: DD23 0DF3 2260 3060 7FEC 5CA8 1AF6 D9E3 CFEE 6B28 > Public key at : random.sks.keyserver.penguin.de > > -- ubuntu-users mailing list ubuntu-users@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users |
sudo command
N1UAN Bob wrote:
> Ok the script name is ham.sh and in the root dir > in the /etc/rc.local file i have > cd /root > ./ham.sh > and everything in that script run but that one line i posted > Thanks > Bob > In rc.local put a new line in that is: /root/./ham.sh and try it. Also please send the actual whole rc.local file to us. Karl > On Mon, 7 Apr 2008, Karl Auer wrote: > > >> On Sun, 2008-04-06 at 21:52 +0000, N1UAN Bob wrote: >> >>> ok here are the cmds one works and the other doesnt >>> >>> sudo /usr/sbin/net2kiss -i ax0 /dev/ptys3 & this one works >>> sudo /usr/sbin/flexd this one doesnt work >>> the second line that doesnt work is suppose to connect to another program >>> and send data to it but has an connect error if i do this cmd from the cmd >>> prompt it ask for an password and then it send the data but in the script >>> it wont >>> >> Sorry, I missed the start of this thread. Please post the exact and >> complete command line you are using to execute the script. My guess is >> that you are redirecting standard output and/or standard input, and that >> this is swallowing your password prompt and/or your password (probably >> along with your redirected input). >> >> Regards, K. >> >> -- >> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ >> Karl Auer (kauer@biplane.com.au) +61-2-64957160 (h) >> http://www.biplane.com.au/~kauer/ +61-428-957160 (mob) >> >> GPG fingerprint: DD23 0DF3 2260 3060 7FEC 5CA8 1AF6 D9E3 CFEE 6B28 >> Public key at : random.sks.keyserver.penguin.de >> >> >> > > > -- Karl F. Larsen, AKA K5DI Linux User #450462 http://counter.li.org. PGP 4208 4D6E 595F 22B9 FF1C ECB6 4A3C 2C54 FE23 53A7 -- ubuntu-users mailing list ubuntu-users@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users |
sudo command
Bob,
Just a thought. You might want to have a look at your sudoers file and see if either program is specifically mentioned. Then check to see what your sudo permissions are (user and group). Sudo can grant a variety of permissions based on who's calling it and what program they're trying to run. Also there's a "time out" where if a user successfully calls sudo then he won't be asked for his password again for any sudo session for the next 15 minutes (default config). Finally I'd look at the permissions of those programs to see what the effective user and group IDs are when they actually run. Mostly just from permissions paranoia. John Purser On Sun, 2008-04-06 at 22:35 +0000, N1UAN Bob wrote: > Ok the script name is ham.sh and in the root dir > in the /etc/rc.local file i have > cd /root > ./ham.sh > and everything in that script run but that one line i posted > Thanks > Bob > > On Mon, 7 Apr 2008, Karl Auer wrote: > > > On Sun, 2008-04-06 at 21:52 +0000, N1UAN Bob wrote: > > > ok here are the cmds one works and the other doesnt > > > > > > sudo /usr/sbin/net2kiss -i ax0 /dev/ptys3 & this one works > > > sudo /usr/sbin/flexd this one doesnt work > > > the second line that doesnt work is suppose to connect to another program > > > and send data to it but has an connect error if i do this cmd from the cmd > > > prompt it ask for an password and then it send the data but in the script > > > it wont > > > > Sorry, I missed the start of this thread. Please post the exact and > > complete command line you are using to execute the script. My guess is > > that you are redirecting standard output and/or standard input, and that > > this is swallowing your password prompt and/or your password (probably > > along with your redirected input). > > > > Regards, K. > > > > -- > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ > > Karl Auer (kauer@biplane.com.au) +61-2-64957160 (h) > > http://www.biplane.com.au/~kauer/ +61-428-957160 (mob) > > > > GPG fingerprint: DD23 0DF3 2260 3060 7FEC 5CA8 1AF6 D9E3 CFEE 6B28 > > Public key at : random.sks.keyserver.penguin.de > > > > > > -- ubuntu-users mailing list ubuntu-users@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users |
sudo command
Hi Karl
That didnt even make the script run was i suppose to leave the other lines On Sun, 6 Apr 2008, Karl Larsen wrote: > N1UAN Bob wrote: > > Ok the script name is ham.sh and in the root dir > > in the /etc/rc.local file i have > > cd /root > > ./ham.sh > > and everything in that script run but that one line i posted > > Thanks > > Bob > > > In rc.local put a new line in that is: > > /root/./ham.sh > > and try it. Also please send the actual whole rc.local file to us. > > Karl > > > On Mon, 7 Apr 2008, Karl Auer wrote: > > > > > >> On Sun, 2008-04-06 at 21:52 +0000, N1UAN Bob wrote: > >> > >>> ok here are the cmds one works and the other doesnt > >>> > >>> sudo /usr/sbin/net2kiss -i ax0 /dev/ptys3 & this one works > >>> sudo /usr/sbin/flexd this one doesnt work > >>> the second line that doesnt work is suppose to connect to another program > >>> and send data to it but has an connect error if i do this cmd from the cmd > >>> prompt it ask for an password and then it send the data but in the script > >>> it wont > >>> > >> Sorry, I missed the start of this thread. Please post the exact and > >> complete command line you are using to execute the script. My guess is > >> that you are redirecting standard output and/or standard input, and that > >> this is swallowing your password prompt and/or your password (probably > >> along with your redirected input). > >> > >> Regards, K. > >> > >> -- > >> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~ > >> Karl Auer (kauer@biplane.com.au) +61-2-64957160 (h) > >> http://www.biplane.com.au/~kauer/ +61-428-957160 (mob) > >> > >> GPG fingerprint: DD23 0DF3 2260 3060 7FEC 5CA8 1AF6 D9E3 CFEE 6B28 > >> Public key at : random.sks.keyserver.penguin.de > >> > >> > >> > > > > > > > > > -- > > Karl F. Larsen, AKA K5DI > Linux User > #450462 http://counter.li.org. > PGP 4208 4D6E 595F 22B9 FF1C ECB6 4A3C 2C54 FE23 53A7 > > > -- > ubuntu-users mailing list > ubuntu-users@lists.ubuntu.com > Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users > -- ubuntu-users mailing list ubuntu-users@lists.ubuntu.com Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users |
| All times are GMT. The time now is 06:50 AM. |
VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.