* Installing Emacs on MobaXterm
@ 2023-02-19 5:10 keegan afonso
2023-02-19 12:44 ` Jean Louis
2023-02-19 14:01 ` Thibaut Verron
0 siblings, 2 replies; 8+ messages in thread
From: keegan afonso @ 2023-02-19 5:10 UTC (permalink / raw)
To: help-gnu-emacs
Hi,
I am trying to install Emacs on MobaXterm using linux. After installing
it using the suggested command, I get an error when trying to run it.
When I type "emacs" to run it, I get the error: "emacs: command not
found"
The terminal suggests the command "apt install emacs" to install. When I
type this command, I get the error stating "Package emacs is already
installed". I am a beginner and will appreciate any advice.
Regards,
Keegan
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Installing Emacs on MobaXterm
2023-02-19 5:10 Installing Emacs on MobaXterm keegan afonso
@ 2023-02-19 12:44 ` Jean Louis
2023-02-19 13:01 ` Emanuel Berg
2023-02-19 14:04 ` Re[2]: " keegan afonso
2023-02-19 14:01 ` Thibaut Verron
1 sibling, 2 replies; 8+ messages in thread
From: Jean Louis @ 2023-02-19 12:44 UTC (permalink / raw)
To: keegan afonso; +Cc: help-gnu-emacs
* keegan afonso <keegan.9377@gmail.com> [2023-02-19 12:31]:
> Hi,
>
> I am trying to install Emacs on MobaXterm using linux. After installing it
> using the suggested command, I get an error when trying to run it. When I
> type "emacs" to run it, I get the error: "emacs: command not found"
> The terminal suggests the command "apt install emacs" to install. When I
> type this command, I get the error stating "Package emacs is already
> installed". I am a beginner and will appreciate any advice.
It may be that Emacs is installed but not in your PATH variable, which
determines where are those programs to be run.
If you have the command `dpkg' you could try to list the package files
with:
dpkg -L emacs
and then you can maybe see the full path to executable. It should be
something like:
/usr/bin/emacs
but it could be different like:
/anything-here/usr/bin/emacs
Once you see that full path to the file, try running it:
/anything-here/usr/bin/emacs
And if that works try:
echo $PATH
do you see the path to Emacs? Normally it should contain /usr/bin/ but
it can be different on your system.
Then if that is so tha $PATH is not set up properly, you would need to
set it up in .bashrc or other shell configuration file when you are
starting terminal.
--
Jean
Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns
In support of Richard M. Stallman
https://stallmansupport.org/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Installing Emacs on MobaXterm
2023-02-19 12:44 ` Jean Louis
@ 2023-02-19 13:01 ` Emanuel Berg
2023-02-19 14:04 ` Re[2]: " keegan afonso
1 sibling, 0 replies; 8+ messages in thread
From: Emanuel Berg @ 2023-02-19 13:01 UTC (permalink / raw)
To: help-gnu-emacs
Jean Louis wrote:
>> I am trying to install Emacs on MobaXterm using linux.
>> After installing it using the suggested command, I get an
>> error when trying to run it. When I type "emacs" to run it,
>> I get the error: "emacs: command not found" The terminal
>> suggests the command "apt install emacs" to install.
>> When I type this command, I get the error stating "Package
>> emacs is already installed". I am a beginner and will
>> appreciate any advice.
>
> It may be that Emacs is installed but not in your PATH
> variable, which determines where are those programs to
> be run.
>
> If you have the command `dpkg' you could try to list the
> package files with:
>
> dpkg -L emacs
Good idea, here are a bunch of other commands that are maybe
helpful, you can use them in bash as well, maybe.
https://dataswamp.org/~incal/conf/.zsh/apt
--
underground experts united
https://dataswamp.org/~incal
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re[2]: Installing Emacs on MobaXterm
2023-02-19 12:44 ` Jean Louis
2023-02-19 13:01 ` Emanuel Berg
@ 2023-02-19 14:04 ` keegan afonso
2023-02-19 15:03 ` Jean Louis
1 sibling, 1 reply; 8+ messages in thread
From: keegan afonso @ 2023-02-19 14:04 UTC (permalink / raw)
To: help-gnu-emacs@gnu.org
Hi Jean,
Thanks for the suggestion. I actually got it to install using another
method. I downloaded an .mxt3 file from the MobaXterm website for Emacs.
After this, I was able to run it from the terminal, although it is a
slightly older version (24.3) and I cannot uninstall this. I have
contacted MobaXterm to check whether it is possible to install the
latest version.
Regards,
Keegan Afonso
------ Original Message ------
From "Jean Louis" <bugs@gnu.support>
To "keegan afonso" <keegan.9377@gmail.com>
Cc help-gnu-emacs@gnu.org
Date 19-02-2023 18:14:18
Subject Re: Installing Emacs on MobaXterm
>* keegan afonso <keegan.9377@gmail.com> [2023-02-19 12:31]:
>>Hi,
>>
>>I am trying to install Emacs on MobaXterm using linux. After installing it
>>using the suggested command, I get an error when trying to run it. When I
>>type "emacs" to run it, I get the error: "emacs: command not found"
>>The terminal suggests the command "apt install emacs" to install. When I
>>type this command, I get the error stating "Package emacs is already
>>installed". I am a beginner and will appreciate any advice.
>
>It may be that Emacs is installed but not in your PATH variable, which
>determines where are those programs to be run.
>
>If you have the command `dpkg' you could try to list the package files
>with:
>
>dpkg -L emacs
>
>and then you can maybe see the full path to executable. It should be
>something like:
>
>/usr/bin/emacs
>
>but it could be different like:
>
>/anything-here/usr/bin/emacs
>
>Once you see that full path to the file, try running it:
>
>/anything-here/usr/bin/emacs
>
>And if that works try:
>
>echo $PATH
>
>do you see the path to Emacs? Normally it should contain /usr/bin/ but
>it can be different on your system.
>
>Then if that is so tha $PATH is not set up properly, you would need to
>set it up in .bashrc or other shell configuration file when you are
>starting terminal.
>
>-- Jean
>
>Take action in Free Software Foundation campaigns:
>https://www.fsf.org/campaigns
>
>In support of Richard M. Stallman
>https://stallmansupport.org/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Installing Emacs on MobaXterm
2023-02-19 14:04 ` Re[2]: " keegan afonso
@ 2023-02-19 15:03 ` Jean Louis
2023-02-19 16:08 ` cheyrn via Users list for the GNU Emacs text editor
0 siblings, 1 reply; 8+ messages in thread
From: Jean Louis @ 2023-02-19 15:03 UTC (permalink / raw)
To: keegan afonso; +Cc: help-gnu-emacs@gnu.org
* keegan afonso <keegan.9377@gmail.com> [2023-02-19 17:05]:
> Thanks for the suggestion. I actually got it to install using another
> method. I downloaded an .mxt3 file from the MobaXterm website for Emacs.
> After this, I was able to run it from the terminal, although it is a
> slightly older version (24.3) and I cannot uninstall this. I have contacted
> MobaXterm to check whether it is possible to install the latest
> version.
Good for you.
Anyway, we do not support proprietary software on this mailing list.
--
Jean
Take action in Free Software Foundation campaigns:
https://www.fsf.org/campaigns
In support of Richard M. Stallman
https://stallmansupport.org/
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Installing Emacs on MobaXterm
2023-02-19 15:03 ` Jean Louis
@ 2023-02-19 16:08 ` cheyrn via Users list for the GNU Emacs text editor
2023-02-19 20:12 ` Jean Louis
0 siblings, 1 reply; 8+ messages in thread
From: cheyrn via Users list for the GNU Emacs text editor @ 2023-02-19 16:08 UTC (permalink / raw)
To: help-gnu-emacs
On Sunday, February 19, 2023 7:03 AM, Jean Louis <bugs@gnu.support> wrote:
>
> * keegan afonso <keegan.9377@gmail.com> [2023-02-19 17:05]:
> > Thanks for the suggestion. I actually got it to install using another
> > method. I downloaded an .mxt3 file from the MobaXterm website for
> Emacs.
> > After this, I was able to run it from the terminal, although it is a
> > slightly older version (24.3) and I cannot uninstall this. I have
> contacted
> > MobaXterm to check whether it is possible to install the latest
> > version.
>
> Good for you.
>
> Anyway, we do not support proprietary software on this mailing list.
> >
I don't think emacs is proprietary software. Mobaxterm seems to be a packaging
of cygwin.
If the mxt3 file uses cygwin, emacs might be able to be uninstalled via cygwin
package manager.
Windows now supports Linux natively, however. So, one could for example,
install Ubuntu instead of cygwin and you would get a more recent version of
emacs available to you via apt package manager, under Ubuntu. The Ubuntu
community tends to be friendly and helpful.
Kendall
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Installing Emacs on MobaXterm
2023-02-19 5:10 Installing Emacs on MobaXterm keegan afonso
2023-02-19 12:44 ` Jean Louis
@ 2023-02-19 14:01 ` Thibaut Verron
1 sibling, 0 replies; 8+ messages in thread
From: Thibaut Verron @ 2023-02-19 14:01 UTC (permalink / raw)
To: keegan afonso; +Cc: help-gnu-emacs
Hi,
> I am trying to install Emacs on MobaXterm using linux.
What do you mean exactly? MobaXterm is a terminal emulator for Windows, it
doesn't provide any compatibility with Linux apps. As far as I can tell, if
used to connect to the local computer, it is just another front for a cmd
prompt.
You're probably doing something different than I am, because from there,
things like apt install would just answer "unrecognized program".
> After installing
> it using the suggested command
What command was that?
Best wishes,
Thibaut
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-02-19 20:12 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-19 5:10 Installing Emacs on MobaXterm keegan afonso
2023-02-19 12:44 ` Jean Louis
2023-02-19 13:01 ` Emanuel Berg
2023-02-19 14:04 ` Re[2]: " keegan afonso
2023-02-19 15:03 ` Jean Louis
2023-02-19 16:08 ` cheyrn via Users list for the GNU Emacs text editor
2023-02-19 20:12 ` Jean Louis
2023-02-19 14:01 ` Thibaut Verron
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.