Tera Term
Silent install package for Tera Term
5.5.1-1
System and network
System and network
- package: tis-teraterm
- name: Tera Term
- version: 5.5.1-1
- categories: System and network
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
- locale: all
- target_os: windows
- impacted_process: ttermpro
- architecture: x64
- signature_date:
- size: 10.80 Mo
- installed_size: 18.75 Mo
package : tis-teraterm
version : 5.5.1-1
architecture : x64
section : base
priority : optional
name : Tera Term
categories : System and network
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Tera Term is a terminal emulator program. It emulates different types of computer terminals, it supports Telnet, SSH 1 & 2 and serial port connections
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 18745845
impacted_process : ttermpro
description_fr : Tera Term est un programme d'émulation de terminal. Il émule différents types de terminaux d'ordinateur, supporte Telnet, SSH 1 & 2 et les connexions par port série
description_pl : Tera Term to emulator terminala. Emuluje różne typy terminali komputerowych, obsługuje połączenia Telnet, SSH 1 i 2 oraz port szeregowy
description_de : Tera Term ist ein Terminal-Emulator-Programm. Es emuliert verschiedene Arten von Computerterminals, es unterstützt Telnet, SSH 1 & 2 und serielle Schnittstellenverbindungen
description_es : Tera Term es un programa emulador de terminales. Emula diferentes tipos de terminales de ordenador, soporta Telnet, SSH 1 y 2 y conexiones de puerto serie
description_pt : O Tera Term é um programa emulador de terminal. Ele emula diferentes tipos de terminais de computador, suporta Telnet, SSH 1 & 2 e conexões de porta serial
description_it : Tera Term è un programma di emulazione di terminale. Emula diversi tipi di terminali di computer, supporta le connessioni Telnet, SSH 1 e 2 e la porta seriale
description_nl : Tera Term is een terminal emulator programma. Het emuleert verschillende soorten computerterminals en ondersteunt Telnet, SSH 1 & 2 en seriële poortverbindingen
description_ru : Tera Term - это программа-эмулятор терминала. Она эмулирует различные типы компьютерных терминалов, поддерживает Telnet, SSH 1 & 2 и соединения с последовательным портом
audit_schedule :
editor :
keywords :
licence : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage :
package_uuid : 21f44031-2af0-4c8e-82ea-7aac94da4e60
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : f1b604652fecc80b2300cf76edff81673e6bc1c23467e3b062f228c061bcf2ad
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-11-17T16:00:20.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : GYJQ1SH4yjAQFHMq44b3jSV1V4YpY6zSWufegkKt0knR1GAQReAomsgSqgRkvWsdCcl5LevkwPSBQOAjcFiFuZBtjaoY84FKxB6OS7vTGjtW5rwqBduL/5kGL5KVbZ/1I6Ny1wovqQLQaYmpimD+p4SproVKSggNF2GneGDJNGV1t2N1PEsK82sT2f+i1AQhuenyu7VoRBYRV05r9IDZXUw3qYG57bACGfWA3wTsY1E6Pac8gBhdqRrWWlhbae54Fhat/PnMUZID0Tj967NKuSf63wPaZHCCiGUiVXiwp58Em5E96RkBzVrJDcBFeGmab7idtPaT7cTGp6d4EqM2Zw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("teraterm-*.exe")[0]
# Uninstalling the software
for to_uninstall in installed_softwares("Tera Term"):
print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
install_exe_if_needed(
bin_name,
silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART",
name="Tera Term",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".exe"}
api_url = "https://api.github.com/repos/TeraTermProject/teraterm/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
exe_found = False # Flag pour indiquer la découverte d'un fichier .exe
for release in releases_dict:
if exe_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith("x64.exe") and update_dict[control.target_os] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["tag_name"].strip("v")
exe_found = True # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
break
# Deleting binaries
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8959e09a3405754100142795f3bc24b25dd3e0bb90027fac8ef891abd2f90652 : WAPT/control
f1b604652fecc80b2300cf76edff81673e6bc1c23467e3b062f228c061bcf2ad : WAPT/icon.png
fbd5ef4cca47330adb92fde328f5e22775583862f8754ce32e1a7e9a3f52b001 : luti.json
252a91c7a62beb40edc189db489b914660922b6e6e05aba040459fe112fb3450 : setup.py
fe1f8170e22f4bb76c1a13c04e8c394d64b9c633683df2d006ace39ca7f97f57 : teraterm-5.5.1-x64.exe
acbc38ba6bc62b1624e560631eb34ef3f6fa4b892cf5df9de2fd844f23b4986e : update_package.py