Questions tagged [mobaxterm]

MobaXterm is windows desktop application which includes:

  • remote network tools (SSH, X11, RDP, VNC, FTP, MOSH, ...)
  • Unix commands (bash, ls, cat, sed, grep, awk, rsync, ...)
  • embedded servers (TFTP, FTP, HTTP, SSH/SFTP, telnet, ...)
  • MobApt package manager
  • support for SSH tunneling
183 questions
1
vote
1 answer

MobaXtern not asking for input when running wsl bash commands

MobaXterm not displaying all the information for a WSL command and not even asking for users input. Following is the command I tried in powershell to open MobaXterm to run a WSL command. .\MobaXterm.exe -newtab "wsl bash -c 'command here which asks…
1
vote
1 answer

Pycharm stops working on mobaxterm and wsl2

I am using WSL2 and MobaXterm to run Pycharm Community with graphics. It works great when I open MobaXterm the first time and start Pycharm. If I leave the computer for a while and come back, Pycharm has disappeared. If I restart Pycharm it is…
El_Loco
  • 1,716
  • 4
  • 20
  • 35
1
vote
1 answer

Mobaxterm: Ctrl key seems locked

I use mobaxterm to connect from windows to a vncserver session on linux. I works fine for some time, but then Ctrl key seems to be locked. Thus normal typing become impossible, e.g. typing q sends instead Ctrl-q. (After reconnecting to the same…
1
vote
0 answers

How can i fix if pip3 is not working after instalation?

I was trying to install matplotlib but first I had to install pip in MobaXterm and I think something failed. I did: python -m ensurepip apt-get install python3-pip Here I didn't want to, but I closed MobaXterm. Then I tried starting again and I…
annol
  • 11
  • 1
1
vote
3 answers

mobaxterm view in "4 terminals mode"

On viewing mobaxterm in "4 terminals mode", I get 3 terminal but the fourth is "home" with setting button. I tried to make this 4th window a terminal too, but nothing helped. How can this window be a terminal like the other 3 ?
ransh
  • 1,589
  • 4
  • 30
  • 56
1
vote
1 answer

SSH Selenium Session Crashes on Logout (even with "screen", "nohup" etc)

I'm running a Selenium webscraper in Java on a Linux server through SSH, but the browser crashes upon termination of the session despite various attempts to instruct the program to run in the background. Specifically, I've used screen, tmux, nohup,…
1
vote
1 answer

Remove the content of multiple folders with a bash script in Moba

I'm trying to delete all the files contained in multiple folders. I'm trying to have a code working like this: #!/bin/sh cd path1 rm -R * cd path2 rm -R * .... cd pathN …
1
vote
1 answer

Using MobaXterm as Linux shell on Windows

I have a Python script which leverages subprocess to call MobaXterm and use it to run a command to my server through SSH. The script works fine when using the Windows Subsystem for Linux (WSL), but fails when using Moba. This is the code: import…
itscarlayall
  • 128
  • 1
  • 14
1
vote
0 answers

Got Software causes connection abort while using mobaxterm to connect to EC2 instances

I have 4 EC2 instances and 1 AliYun instance, they all work well if I connect to them using ssh from the command line. However, when connecting to EC2 instances using mobaxterm, they get stuck and throw Software cause connection abort within 0-5…
ygen
  • 41
  • 5
1
vote
1 answer

sh file to compile cpp functions on Mobaxterm with windows machine

YOUR HELP PLEASE! I need to run an sh file that calls cpp functions on Mobaxterm with windows machine, I am a newbie in shell scripting, and I cant understand the following error messages : Creating rtlib.a... ar: unknown option -- u BusyBox v1.22.1…
Marven
  • 11
  • 1
1
vote
2 answers

Bash Shell Script is not finding files using CMDER on Windows 10 but works on Linux

The problem is that when I use this part of a script, it works fine on a linux environment and in the rest of the code it returns the list of files. However, when using CMDER (Full version) on Windows 10, it simply returns "no .txt files found". So…
user13843898
1
vote
1 answer

xterm display with mininet

I am running Mininet as VM and my host machine is Windows 10. I have been successfully able to setup X1 forwarding. The ssh client i am using to login into Mininet VM from host is Mobaxterm. When i start the mininet topology using sudo mn, then…
Abhishek Sagar
  • 1,189
  • 4
  • 20
  • 44
1
vote
1 answer

How to use MobaXterm as default telnet handler in EVE-NG?

I was trying to find a way to open the EVE-NG's telnet://A.B.C.D:xxx links directly via MobaXterm (Actually, Putty and SecureCRT work fine on my machine). But when I installed the software, I even cannot see that option in the Default Apps window…
Wayne
  • 33
  • 1
  • 2
  • 9
1
vote
0 answers

MobaXterm x server forwarding with sudo

I need to execute ikeyman on an IBM HTTP Server. Since I don't want to install a full blown UI on the server, I used MobaXterm with x forwarding for the Windows workstations. When executed as regular user (e.g. /opt/IBM/HTTPServer/bin/ikeyman) it…
Lion
  • 16,606
  • 23
  • 86
  • 148
1
vote
1 answer

Call a MobaXterm command from a bash script

From my /home/mobaxterm command prompt, I can use the newtab "command" to launch a new tab and execute a command just fine. When I use it inside a bash script, I get "newtab: command not found". Is there special coding required to use the MobaXterm…