Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MobaXterm - reset terminal screen

I need to Reset my MobaXterm screen after some time working, however 'clear' and 'reset' commands wont work as if I was on a linux server.

Anyone have some tip?

like image 616
Tiago Duarte Avatar asked Jun 16 '17 16:06

Tiago Duarte


People also ask

How do I clear my MobaXterm screen?

Use a small amount of spray with 70 percent ethanol or isopropyl alcohol or use warm, soapy water to wipe down the phone from top to bottom while holding it on its sides. Then wipe down the sides and back, too, while being careful not to get any fluid into ports such as the charging port or headphone jack.

How do I restart MobaXterm?

MobaXterm allows you to launch remote sessions. You just have to click on the "Sessions" button to start a new session.

How do I open the terminal in MobaXterm?

Click the "Start local terminal" button to open a terminal window where you can type Linux-like commands. You can have multiple tabs with a different terminal session in each tab.


5 Answers

Right click MobaXterm screen > Click Clear Scrollback

Note: Your MobaXterm may be set to paste on Right-Click; in this case use Ctrl+Right-Click.

like image 106
Carlos Marques Avatar answered Oct 18 '22 21:10

Carlos Marques


  1. Right click on the terminal window in MobaXterm.
  2. In the popup menu, click Change terminal settings...
  3. In the tree, click Terminal > Features
  4. Uncheck Disable remote-controlled clearing of scrollback
  5. In the tree, click Window
  6. Uncheck Reset scrollback on display activity
  7. Click the Apply button

You can now type clear and have the window clear and remove the scrollback.

like image 24
Nathan Avatar answered Oct 18 '22 21:10

Nathan


When 'Paste using right-click' is checked, you still can use Ctrl/Shift + Right Click to pop up the contextual menu.

like image 23
Aric Deng Avatar answered Oct 18 '22 23:10

Aric Deng


To reset your MobaXterm screen, use:

  1. Right click on selected MobaXterm screen > Clear Scrollback (as describe above)
  2. Or, if the prompt is available, launch the command 'cls'

  3. Or, in all cases (prompt available or not), press CTRL+L keyboard keys

like image 35
g910 Avatar answered Oct 18 '22 23:10

g910


Mobaterm seems to like playing around with the putty configuration - so I found that right clicking on the window -> change terminal settings

-> features -> enable everything.

-> window -> disable push erased text into scrollback

the usual clear control commands

function clear() { printf '\033[2J' # clear printf '\033[H' # home }

will now clear the screen and clear the scrollback

like image 42
UKMonkey Avatar answered Oct 18 '22 21:10

UKMonkey