• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

emacs for windows installation problems

Descend492

Senior member
OK, I would like to install emacs for windows, so I dl'ed the newest version. it was a *.tar.gz.
So I read that you have to gunzip and untar it. So I got these utilities and placed the *.exes in the folder with the emacs. When I typed the following line:

gzip -c -d emacstar.gz | untar xvf -

I kept getting a file not found error. That is the name of the file (I renamed it...which is what it said to do in the tutorial). What's wrong here? Is there something I need to do differently? Thanks.
 
Is "untar" an application? - never seen it before... usually untarring is done with "tar".

Try doing it without the pipe:
tar xvzf emacstar.gz

If that doesn't work, try doing it in 2 steps:
gzip -d emacstar.gz
=>This should give you a file called "emacstar" - rename it to emacs.tar, then do a:
tar xvf emacs.tar

Also, winzip should handle tar & gzip file formats.

Good luck 🙂
 
Back
Top