Have you set up a Unix Box?
What does ls do on your machine
What System have you running? Debian, some BSD or whatever?
Regards
Friedrich
Main Topics
Browse All TopicsDoes anyone know how to set up Emacs so I can use Unix commands in the shell? I have never used Emacs before so I am quite confused.
My instructor uses commands like "tar" and "make" in the shell and they actually do things. However when I use those same commands it says:
" 'make' is not recognized as an internal or external command,
operable program or batch file. "
Any help would be appreciated.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I am just learning about Unix and Programming so I haven't done much. In an emacs shell (M+x shell), when I type ls it does nothing. What I gathered from ifeatu's post, Emacs is just a text editor when you download it and set it up.
What I am trying to do is set up Emacs so I can use commands like ls, make, tar, ect. in the shell just like you would be able to in cygwin.
Also, my computer is running on MS Windows XP.
So that exacly is your problem. Emacs is an edit which can call out to the shell. But ls, make, tar are not installed on Windows in standard installation. So what you need is some unix tools for Windows. The most used for that kind of things is probably cygwin. So you need to install cygwin and then you have to add the cygwin/bin directory to your path. Such that you can open a cmd prompt and then run ls in the cmd shell. Howerver cygwin does also come with a bash shell . So you can do the following also. Open the cygwin shell (which is a bash shell) and within it start emacs. Then see what'll happen.
The other alternative is having some Linux run in a virtual machine. Vmware e.g offers a virtual machine solution for Windows. This might be the easier way. And/or you can ask your tutor what he/she actually like to achieve. If it's for programming you probably just need some compiler and the make utility. But we can't know
Regards
Friedrich
Business Accounts
Answer for Membership
by: ifeatuPosted on 2009-10-11 at 20:07:29ID: 25548434
emacs is a text editor that you can use in Linux. Most distributions of linux already come with Emacs installed. Simply type "emacs NameofDocument.doc", if you dont have it you may want to compile it from source which really means download it from the internet...untar it (using tar -xvf emacs.tar ) once you've untared it, it's going to extract a bunch of essential documents into a directory...before you can use commands like "make" and "make install" you need to be in the directory with the "Make" file in it. Contained with in the directory will also be a README file type " cat README " from within the directory to view the document and procure further instructions.