DISCOVER
X

Categories for

Remember to Install Custom Node in Windows Subsystem for Linux

September 3, 2018 11:02 pm Leave your thoughts

I started playing around with running reactJS app under the Windows Subsystem for Linux. In my case I opted to install the Ubuntu operating system. The installation of the Ubuntu subsystem itself went pretty smooth through this instructions (https://docs.microsoft.com/en-us/windows/wsl/install-win10) . Then I used my favorite terminal tool ConEmu to access... View Article


Running UNIX/Linux command as anyone

February 7, 2013 11:18 pm Leave your thoughts

Sometimes you need to run a command in the terminal as another user in the system. I forgot the way to do this all the time, so here’s a little code snippets on how to do so. sudo su -s /bin/sh <insert user here> -c "CMD HERE"