Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to run a bash script in Cygwin.

I get Must run as root, i.e. sudo ./scriptname errors.

chmod 777 scriptname does nothing to help.

I've looked for ways to imitate sudo on Cygwin, to add a root user, since calling "su" renders the error su: user root does not exist, anything useful, and have found nothing.

Anyone have any suggestions?

Edit: I thought I should close this off, since it's still getting so many views. Basically, as far as I have found through quite a bit of searching, there is no effective way at this point to run a script as a sudo user in Cygwin. I'm hoping it's added in a later version of Cygwin, but for now there's nothing out there.

Much Later Edit: AdamTheWebMan recently posted an answer that looks quite promising involving sudo-for-cygwin. I haven't accepted because I haven't had a chance to really check it out yet. But I might. I might actually accept an answer after all this time.

share|improve this question
hello KenB, could you give us more detail on what script you are trying to run? There is no equivalent to 'sudo' inside a cygwin shell - the rights are the ones from the win user that launched the cygwin shell, so KyleWpppd link is good to avoid errors such as "sudo unknown command". In your case sounds like it's a specific issue with the script you want to execute. – Stefano Feb 4 '11 at 13:02
Honestly, this is an issue long past, and I don't actually remember what the script was. Thanks for the interest, though. – KenB Feb 15 '11 at 2:14

7 Answers

You probably need to run the cygwin shell as Administrator. You can right click the shortcut and click run as administrator or go into the properties of the shortcut and check it in the compatability section. Just beware.... root permissions can be dangerous.

share|improve this answer
I tried that, too. No dice. – KenB Nov 3 '10 at 18:29
worked for me on Win 7 with NTFS file system – JeffG Nov 13 '12 at 12:59

http://superuser.com/questions/122418/theres-no-sudo-command-in-cygwin

share|improve this answer
I looked at this one. The solution here won't help me. His problem is that he needs to trick his script into thinking that there is a sudo command without actually raising permissions. I need to raise permissions, as far as I know. I mean, correct me if i'm wrong. – KenB Nov 3 '10 at 18:32
Would it be possible to actually put run a Unix/Linux VM with write permissions to the file system to do what is needed by the script? . I have done this on occasion to make changes, but It depends on what your exact needs are. – KyleWpppd Nov 3 '10 at 19:40
1  
I'm configuring my mysql databse with this script. I could probably just do it by hand without that much trouble, I just want to figure this stupid thing out. – KenB Nov 3 '10 at 23:22
Well, I'm out of ideas. Sorry I couldn't help you out. Good luck. – KyleWpppd Nov 4 '10 at 3:38

I found sudo-for-cygwin, maybe this would work, it is a client/server application that uses a python script to spawn a child process in windows (pty) and bridges user's tty and the process I/O.

It requires python in windows and Python modules greenlet, and eventlet in Cygwin.

share|improve this answer
This actually looks rather promising. – KenB Sep 12 '12 at 11:37

Does runas /noprofile /user:Administrator cmd work? (http://superuser.com/questions/42537/is-there-any-sudo-command-for-windows)

or maybe sudo for windows: http://sourceforge.net/projects/sudowin/

share|improve this answer
That attempts to run the script as a Win32 application, for some strange reason. It spits out: RUNAS ERROR: Unable to run - ./scriptname 193: ./scriptname is not a valid Win32 application. – KenB Nov 3 '10 at 18:41
1  
Also, sudo for Windows is meant for the regular Windows command line. It doesn't effect Cygwin at all. – KenB Nov 3 '10 at 19:40

I landed here through google, and I actually believe I've found a way to gain a fully functioning root promt in cygwin.

Here are my steps.

First you need to rename the Windows Administrator account to "root" Do this by opening start manu and typing "gpedit.msc"

Edit the entry under Local Computer Policy > Computer Configuration > Windows Settings > Security Settings > Local Policies > Security Options > Accounts: Rename administrator account

Then you'll have to enable the account if it isn't yet enabled. Local Computer Policy > Computer Configuration > Windows Settings > Security Settings > Local Policies > Security Options > Accounts: Administrator account status

Now log out and log into the root account.

Now set an environment variable for cygwin. To do that the easy way: Right Click My Computer > Properties

Click (on the left sidebar) "Advanced system settings"

Near the bottom click the "Enviroment Variables" button

Under "System Variables" click the "New..." button

For the name put "cygwin" without the quotes. For the value, enter in your cygwin root directory. ( Mine was C:\cygwin )

Press OK and close all of that to get back to the desktop.

Open a Cygwin terminal (cygwin.bat)

Edit the file /etc/passwd and change the line

Administrator:unused:500:503:U-MACHINE\Administrator,S-1-5-21-12345678-1234567890-1234567890-500:/home/Administrator:/bin/bash

To this (your numbers, and machine name will be different, just make sure you change the highlighted numbers to 0!)

root:unused:0:0:U-MACHINE\root,S-1-5-21-12345678-1234567890-1234567890-0:/root:/bin/bash

Now that all that is finished, this next bit will make the "su" command work. (Not perfectly, but it will function enough to use. I don't think scripts will function correctly, but hey, you got this far, maybe you can find the way. And please share)

Run this command in cygwin to finalize the deal.

mv /bin/su.exe /bin/_su.exe_backup
cat > /bin/su.bat << "EOF"
@ECHO OFF
RUNAS /savecred /user:root %cygwin%\cygwin.bat
EOF
ln -s /bin/su.bat /bin/su
echo ''
echo 'All finished'

Log out of the root account and back into your normal windows user account.

After all of that, run the new "su.bat" manually by double clicking it in explorer. Enter in your password and go ahead and close the window.

Now try running the su command from cygwin and see if everything worked out alright.

share|improve this answer

Can't fully test this myself, I don't have a suitable script to try it out on, and I'm no Linux expert, but you might be able to hack something close enough.

I've tried these steps out, and they 'seem' to work, but don't know if it will suffice for your needs.

To get round the lack of a 'root' user:

  • Create a user on the LOCAL windows machine called 'root', make it a member of the 'Administrators' group
  • Mark the bin/bash.exe as 'Run as administrator' for all users (obviously you will have to turn this on/off as and when you need it)
  • Hold down the left shift button in windows explorer while right clicking on the Cygwin.bat file
  • Select 'Run as a different user'
  • Enter .\root as the username and then your password.

This then runs you as a user called 'root' in cygwin, which coupled with the 'Run as administrator' on the bash.exe file might be enough.

However you still need a sudo.

I faked this (and someone else with more linux knowledge can probably fake it better) by creating a file called 'sudo' in /bin and using this command line to send the command to su instead:

su -c "$*"

The command line 'sudo vim' and others seem to work ok for me, so you might want to try it out.

Be interested to know if this works for your needs or not.

share|improve this answer

Try:

chmod -R ug+rwx <dir>

where <dir> is the directory on which you want to change permissions.

share|improve this answer
1  
How will that make him root, as he asks ? – Nikana Reklawyks Oct 19 '12 at 23:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.