I'm just starting to learn Ruby on Rails and I'm developing on a Mac. I'm new to both Mac and Linux and I find myself already struggling to use the commands I need to get things done. For example, I started the rails sever using the :> rails server -d command and I couldn't figure out how to stop it. Ctrl-c, as mentioned in the tutorials, didn't work since it was a detached process using the -d switch. After searching google, I found the lsof|grep ruby helped me locate the running process and kill -9 pid stopped it. I've spent the last twelve years developing on Windows and I've never used or seen any of these linux commands before. It makes me nervous attempting to develop is such an unfamiliar environment. A bigger concern is not knowing my way around the server once the app is deployed and running and I have to start troubleshooting and fixing issues that arise.
I'm going to attempt to read up on linux and learn the OS better, but I wanted to ask up front which Linux commands should I become familiar with as I begin to learn Ruby on Rails?
Thanks so much in advance for your help!
kill -9. Any guide that suggests usingkill -9as a first resort (or anything other than a last resort) should be shot on the spot (an eye for an eye, much? ;-))---the author of such a post is demonstrably clueless and not worth your attention. </rant> – Chris Jester-Young Oct 13 '10 at 17:22lsofis more verbose than you need, andkill -9terminates processes without giving them a chance to clean up. A better solution would beps -ef | grep rubyorps ax | grep ruby(I think OS X prefers the latter), thenkill pid. – Josh Kelley Oct 13 '10 at 17:25kill(synonymous withkill -TERM) is very different fromkill -9/kill -KILL, in that the former gives the program a chance to shut down normally, whereas the latter is an abrupt program termination.) – Chris Jester-Young Oct 13 '10 at 17:25kill(without the-9) will do well enough. – Chris Jester-Young Oct 13 '10 at 17:27