How to change font size in putty
Last Updated :
25 Sep, 2023
PuTTY application is one one the most widely used terminal-based emulators that allow users to connect to remote servers through a wide range of protocols like Telnet, SSH, and other important protocols. As the PuTTY application has its GUI application, we can customize it by making it more reliable and comfortable. We can change the font size of the PuTTY application with the simple steps in the Ubuntu Operating System. After making the changes, when we try to connect to the remote server, the session font size is also increased as per the customisation that we have done in the PuTTY application. So follow the below steps to change the font size in the PuTTY application on Ubuntu OS.
Installation of PuTTY on Ubuntu
As PuTTY is not pre-installed on Ubuntu OS, to use it and customise its font, we need to install it through the below steps on Ubuntu. Follow the below steps and commands to install it on Ubuntu:
Step 1: In the first step, we need to make sure that our repositories are up to date. If not, we need to update the repositories using the apt manager. So execute the below command in the terminal to update the repositories.
sudo apt update
Updating the SystemStep 2: Once the repositories are updated, we need to install the PuTTY application using the apt manager. Run the below command in the terminal to install the application.
sudo apt install putty
Installing PuTTY using APT ManagerStep 3: Once the application gets installed on our system using apt manager, we need to open the PuTTY application for usage by using the below command or by opening through All Application in Ubuntu. So to open it through the terminal, execute the below command.
putty
Launching PuTTY applicationHow to Change Font Size in PuTTY?
We have installed the PuTTY application on our Ubuntu OS, so now it is easy to change the font size. Follow the below-specified steps in a sequence manner to change the Font Size in PuTTY:
Step 1: After opening the PuTTY application, on the left side of the application, there are different categories, so from these categories, we need to click on the Fonts category. You can refer to the below screenshot for navigation.
Navigating to the Fonts TabStep 2: Once we flick on the Fonts category, the sub-section of Fonts will open, and there will be various options, For these options we need to find the option of "Font used for ordinary Text". In this section, there will be a button named "Change", so click on that button.
Choosing the Option Change in (Font used for ordinary Text) sectionStep 3: After clicking on the "Change" button, a popup will open, In this popup we need to select the font type and font size as per our need or requirement. Once we have selected the size of the font, we need to click on the OK button which is at the bottom side.
Selecting Font SizeStep 4: The selected font and size will get reelected in the "Font used for ordinary Text" section as shown in the below screenshot.
Font Size applied SuccessfullyStep 5: Now, once you start the remote session, you can see that the font of characters in the session is been changed according to the selected Font in Step 3. So in this way, we can change the font size of PuTTY on Ubuntu.
Font Sized Changed and ReflectedConclusion
In conclusion, changing the font size in PuTTY is a simple process as it allows users to adapt their terminal interface more smoothly. Using this method, the font change can be customise as per the necessity of the user. As if the text is visible then the user can do the required ask on PuTTY easily. The ability to customize the font size also increases the usability and accessibility of PuTTY, by making it a more user-friendly and also efficient tool for removing login using terminal sessions.
Similar Reads
How to Change Font Size in HTML ?
To change the font size of any text we can use the CSS font-size Property, or some HTML keywords have some fixed font size but we change them by using this CSS property. We can use style attributes in the HTML. As we know, HTML has no <font> tag, so we are using CSS style to add font size. The
2 min read
How to Change Font Style in CSS?
Font style is an important element that enhances the readability of the text. CSS provides several properties to change the text appearance and font style. The font style property allows you to define how the text should appear normal, italic, or oblique.Table of ContentDifferent Methods to Change F
3 min read
How to Change the Font Size in HTML?
Change the font size means increase or descrease the font size using HTML. The <font> size attribute was used to change the font size in HTML. The <font> tag is depreciated in HTML5 an not in use. Now, CSS font-size property is used to change the fint size.Table of ContentUsing HTML<f
2 min read
How to Change the Font Size in Python Shell?
In this article, we will see how to Change the Font Size in Python Shell Follow these steps to change font size: Step 1: Open the Python shell Python Shell Step 2: Click on the Options and select Configure IDLE Step 3: In Fonts/Tabs tab set Size value Step 4: Let's select a size value is 16 and clic
1 min read
How To Change Font in HTML?
Changing fonts in HTML can significantly improve the readability and appearance of your website. There are several methods for adjusting the style, size, or type of font. Let's see each approach in detail.Table of ContentHow to Change Font Using CSSChanging Font Using Inline CSSChanging Font Using I
6 min read
How to Change Font Size on Windows 11?
Are you struggling to change the font size on Windows 11 system? Look no further! This guide is here to help you guide through the process with ease. Windows 11 offers a variety of options when it comes to customizing your display, including changing the size of text in windows 11 to better suit you
5 min read
How to change default font in Tkinter?
Prerequisites: Tkinter Tkinter provides a variety of fonts for different things i.e Heading, Caption, Text, Menu, etc. But the good thing is we can override these fonts using tkinter.font module. Some fonts provided by the Tkinter are: TkDefaultFontTkMenuFontTkFixedFontTkSmallCaptionFont and so on.
2 min read
How to Change Font Size using CSS?
The CSS font-size property is used to change the font size of text. CSS font-size PropertyThe font-size property in CSS sets the size of the text of HTML elements. Values can be in pixels, percentages, em, rem etc.Syntaxfont-size: value;Example: We can use various font-size units like - em, smaller,
2 min read
How to Change Font-size and Color in HTML?
To change the font-size and color in HTML, a style tag with color and font properties is used.1. Using Inline Style AttributeIn this approach, a style attribute is used in the tag for which we want to change the font size and color. Below are the properties that we will use inside the style attribut
2 min read
Change Font Size in Matplotlib
Matplotlib library is mainly used to create 2-dimensional graphs and plots. It has a module named Pyplot which makes things easy for plotting. To change the font size in Matplotlib, the two methods given below can be used with appropriate parameters:Â Change Font Size using fontsize You can set the
2 min read