terminal – TecAdmin https://tecadmin.net How to guide for System Administrator's and Developers Sat, 17 Sep 2022 03:02:31 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 How to Change Terminal Font Size in macOS https://tecadmin.net/how-to-change-terminal-font-size-in-macos/ https://tecadmin.net/how-to-change-terminal-font-size-in-macos/#respond Sat, 17 Sep 2022 03:02:31 +0000 https://tecadmin.net/?p=31855 A terminal is the command line interface (CLI) for the macOS. That takes only commands as input and is sent to the operating system. The default font size is good enough, but some people require to increase in font size for better visibility. You can increase or decrease the terminal font size via terminal preferences. [...]

The post How to Change Terminal Font Size in macOS appeared first on TecAdmin.

]]>
A terminal is the command line interface (CLI) for the macOS. That takes only commands as input and is sent to the operating system. The default font size is good enough, but some people require to increase in font size for better visibility. You can increase or decrease the terminal font size via terminal preferences.

  1. Launch a terminal on your system. Then open in the menubar: Terminal >> Preferences

    How to Change Font Size in MacOS
    Open terminal preferences
  2. A new dialog box will open with the terminal profile editor. Here you can change the terminal theme, background color or image, cursor, font, and font size. Click change button as shown in below image:

    Increase Font Size in macOS Terminal
    Click change button
  3. You will get a list of the sizes. Select a font size of your choice, if the required size is not showing in the dropdown, just type it.
    Changing Font Size of macOS Terminal
    Select font size to set
  4. All done. Close all dialog boxes including the terminal. Then launch a new terminal and you will get the new font size.

This quick tutorial shows you – how to increase or decrease the font size for the macOS terminal.

The post How to Change Terminal Font Size in macOS appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-change-terminal-font-size-in-macos/feed/ 0
How to close terminal without killing running processes on Linux https://tecadmin.net/close-terminal-without-killing-running-processes-on-linux/ https://tecadmin.net/close-terminal-without-killing-running-processes-on-linux/#comments Sat, 10 Nov 2018 16:58:51 +0000 https://tecadmin.net/?p=10853 For example, you are running time-consuming processes and you don’t want that job killed due to terminal closed. To handle this situation, you can simply remove a job from an active job table. So that the job will not be killed when the terminal is closed. Instructions Follow the below instruction to detach running jobs [...]

The post How to close terminal without killing running processes on Linux appeared first on TecAdmin.

]]>
For example, you are running time-consuming processes and you don’t want that job killed due to terminal closed. To handle this situation, you can simply remove a job from an active job table. So that the job will not be killed when the terminal is closed.

Instructions

Follow the below instruction to detach running jobs from the terminal.

  • 1. Press CTRL + Z to suspend current running process.
    zip -q -r home.zip *
    
    ^Z
    [1]+  Stopped                 zip -q -r home.zip *
    
  • 2. Then run the stopped process in the background by running bg command. It will put the last stopped process to background.
    bg
    
    [1]+ zip -q -r home.zip * &
    
  • 3. Finally, remove the above job from the table of active job. Use [disown -h jobspec] where [jobspec] is the job number of background running job. Like %1 for the first running job.
    disown -h %1
    

    Note: Here 1 is the job ID of background running job. You can also use the “jobs -l” command to find job id.

disown command example

The post How to close terminal without killing running processes on Linux appeared first on TecAdmin.

]]>
https://tecadmin.net/close-terminal-without-killing-running-processes-on-linux/feed/ 2
How to Enable Telnet on Windows 7/8 https://tecadmin.net/enable-telnet-on-windows/ https://tecadmin.net/enable-telnet-on-windows/#comments Sat, 16 May 2015 01:34:47 +0000 https://tecadmin.net/?p=7812 Telnet is an application protocol used for two-way communication using terminal connection. This article will help you to enable telnet client and server on Windows 7 & 8 operating system. 1. Firstly open command prompt and type telnet command to make sure that it’s already installed or not on your system. 2. Open control panel [...]

The post How to Enable Telnet on Windows 7/8 appeared first on TecAdmin.

]]>
Telnet is an application protocol used for two-way communication using terminal connection. This article will help you to enable telnet client and server on Windows 7 & 8 operating system.

  • 1. Firstly open command prompt and type telnet command to make sure that it’s already installed or not on your system.
    enable telnet on windows 1
  • 2. Open control panel on your system by type “control” on run window. You can also open control panel using windows navigation.
    enable telnet on windows 2
  • 3. Now click on programs link in control panel as per below screen shot.
    enable telnet on windows 3
  • 4. Now click on “Turn Windows feature on or off” under Programs and Features options.
    enable telnet on windows 4
  • 5. Now you will get Windows Features dialog box. Select Telnet Client check box as showing in below image. You can also select Telnet Server to enable telnet server on your Windows system.
    enable telnet on windows 5

    Now click OK. Installation processes will take few time and you will get result like below on successful installation.
    enable telnet on windows 6

  • 6. As the telnet client has been installed on Windows system. Lets again type “telnet” in command prompt and hit enter, You will get result like following.
    enable telnet on windows 7

The post How to Enable Telnet on Windows 7/8 appeared first on TecAdmin.

]]>
https://tecadmin.net/enable-telnet-on-windows/feed/ 2