.TIMER

Archivo TIMER

Systemd Timer Unit File
Hacer una pregunta
RESPUESTA RÁPIDA

Un archivo .timer es una unidad de systemd que programa cuándo se ejecuta otra unidad (generalmente un archivo .service coincidente) en Linux, funcionando como un reemplazo moderno para cron. Es un pequeño archivo de texto plano en estilo INI, por lo que se abre y edita con cualquier editor de texto como nano, vim o VS Code. Para activar uno, colóquelo en /etc/systemd/system/ y ejecute systemctl enable --now name.timer; use systemctl list-timers para ver los temporizadores programados.

Desarrollador: systemd project (originally Lennart Poettering and Kay Sievers) Categoría: Archivos de configuración Estándar abierto MIME: text/plain
SE ABRE EN Windows macOS Linux
Relacionado: .ICA · .DS_STORE · .WMZ · .CFG

En esta página

19k+ extensiones indexadas
Última revisión Aug 25, 2026

¿No está seguro de qué es su archivo?

Suelte cualquier archivo en nuestro identificador - leemos solo los primeros bytes para nombrar el formato.

Identificar un archivo

¿Qué es el formato de archivo TIMER?

Un archivo .timer es una unidad de temporizador utilizada por systemd, el sistema de inicio y administrador de servicios detrás de la mayoría de las distribuciones de Linux. Programa cuándo se ejecuta otra unidad, generalmente un archivo .service coincidente, y actúa como un reemplazo moderno para cron. El archivo es texto plano UTF-8 pequeño en estilo INI, por lo que contiene una programación en lugar de código de programa.

Cada temporizador normalmente se empareja con un servicio del mismo nombre base. Un archivo llamado backup.timer activa backup.service a menos que su directiva Unit= nombre un objetivo diferente. La unidad se organiza en tres secciones: [Unit] para la descripción y dependencias, [Timer] para la programación, y [Install] para la habilitación a través de WantedBy=timers.target.

Las programaciones vienen en dos formas. Los temporizadores en tiempo real usan OnCalendar= para activarse en eventos del calendario, de la misma manera que lo hace una tarea de cron. Los temporizadores monotónicos como OnBootSec= o OnUnitActiveSec= se activan tras un lapso establecido después de un evento de referencia como el arranque o la última ejecución. Opciones como Persistent=true recuperan una ejecución perdida después de que la máquina estuvo apagada, y RandomizedDelaySec= distribuye la carga entre muchos hosts.

Seguridad y protección

RIESGO: LOW

A .timer file is plain text with no executable code, so opening it in an editor is safe. The real consideration is trust: a timer can schedule any system command through its paired service, so only install units from sources you trust and review them before enabling with systemctl.

Detalles del formato

en pocas palabras
NOMBRE COMPLETOSystemd Timer Unit Filetambién conocido como Systemd Timer Unit, Timer Unit Configuration File
DESARROLLADORsystemd project (originally Lennart Poettering and Kay Sievers)desde 2012 (systemd timer units)
TIPO MIMEtext/plain
TIPOPlain-text INI-style unit configuration file
ESTÁNDARAbierto · libre de regalías
Esta extensión también es utilizada por…
  • Construct 2/3 timer behavior data - Some game and animation tools store timer state, but this is not the dominant meaning of the extension.
  • Generic application timer/config data - A few niche programs write settings files named with a .timer suffix; these are unrelated to systemd.

Programas que abren archivos TIMER

Windows2 apps
Notepad Código abierto Open the file as UTF-8 text to read or edit sections and directives.
Visual Studio Code Freemium View or author a .timer file on a workstation before copying it to a Linux host; opens as plain text with optional systemd/INI highlighting.
macOS2 apps
BBEdit Freemium View or edit the unit file as plain text.
Visual Studio Code Freemium Open and edit the .timer unit as text before deploying it to a Linux server.
Linux5 apps
Vim Código abierto Edit the timer unit with vim /etc/systemd/system/name.timer; syntax highlighting for systemd units ships with Vim.
GNU Nano Código abierto Open the file for quick edits with nano /etc/systemd/system/name.timer; run systemctl daemon-reload afterward to apply changes.
systemd / systemctl Código abierto Manage the timer with systemctl: enable and start it via systemctl enable --now name.timer, inspect the schedule with systemctl list-timers, and check status with systemctl status name.timer.
systemctl edit / systemd-analyze Código abierto Create or override a timer safely with systemctl edit name.timer and validate its calendar expression using systemd-analyze calendar "OnCalendar-string".
Visual Studio Code Freemium Open the .timer file as a plain-text unit; the systemd/INI extensions add highlighting and directive hints.

Detalles técnicos

especificación profunda
EncodingUTF-8 plain text
Byte orderNot applicable (text)
ContainerNone; INI-style key=value sections
Typical sizeUnder 1 KB
StructureThree sections: [Unit] for description and dependencies, [Timer] for the schedule (OnCalendar, OnBootSec, OnActiveSec, OnUnitActiveSec, OnStartupSec, OnUnitInactiveSec, AccuracySec, RandomizedDelaySec, Persistent, Unit), and [Install] for enablement via WantedBy=timers.target.
IntegrityNone built in
PlatformsLinux
NotesEach .timer file normally pairs with a same-named .service file (foo.timer triggers foo.service unless Unit= overrides). Timers come in realtime (calendar) and monotonic (relative to boot, activation, or last run) forms and serve as a cron alternative managed through systemctl and logged to the systemd journal.
File LocationsSystem units in /usr/lib/systemd/system/ (packaged) and /etc/systemd/system/ (admin overrides); user units in ~/.config/systemd/user/ and /etc/systemd/user/.
Line EndingsUnix LF
Lanzado2012 (systemd timer units)
Estándar abierto · libre de regalías
Especificaciónman7.org

Conversiones de TIMER

Preguntas y respuestas de la comunidad

preguntado por usuarios
Hacer una pregunta rápida
Obtenga ayuda de personas que trabajan con archivos TIMER. Sea específico: incluya su sistema y la versión del software.
No se necesita cuenta · respuestas generalmente en un día

Aún no hay preguntas; sea el primero en preguntar sobre los archivos TIMER.

Preguntas frecuentes

¿Cómo abro un archivo .timer?
Ábralo en cualquier editor de texto como nano, vim, VS Code o Notepad++. Es un archivo de texto plano pequeño, por lo que no se requiere software especial para leerlo.
¿Cuál es la diferencia entre un archivo .timer y un archivo .service?
Un archivo .service define qué ejecutar; un archivo .timer define cuándo ejecutarlo. Un temporizador llamado backup.timer activa backup.service a menos que su directiva Unit= indique lo contrario.
¿Cómo habilito e inicio un temporizador?
Coloque el archivo en /etc/systemd/system/, ejecute systemctl daemon-reload, luego systemctl enable --now name.timer. Verifíquelo con systemctl list-timers.
¿Son los temporizadores de systemd mejores que cron?
Los temporizadores se integran con el diario de systemd para el registro, admiten dependencias y pueden recuperar ejecuciones perdidas con Persistent=true. Cron es más simple y más portátil entre sistemas Unix. Ambos son válidos; los temporizadores son comunes en el Linux moderno.
¿Por qué no se activa mi temporizador?
Confirme que el temporizador esté habilitado y activo con systemctl status name.timer, que exista un servicio coincidente y que la expresión OnCalendar= sea válida. Pruebe la expresión con systemd-analyze calendar "su-cadena".
¿Puedo abrir un archivo .timer en Windows o macOS?
Sí, como texto para visualización o edición, pero los temporizadores solo se ejecutan bajo systemd en Linux. Cree el archivo en cualquier sistema operativo y despliéguelo en un host Linux.

Referencias

1systemd.timer(5) - Linux manual page (man7.org)man7.org
2systemd/Timers - ArchWikiwiki.archlinux.org

Siga explorando

en toda la base de datos

Extensiones principales esta semana

1.AQQAQQ Instant Messenger File
2.CRDOWNLOADChrome Partial Download File
3.MDMarkdown Document
4.BINCD/DVD Disc Image (BIN/CUE)
5.PARTPartial Download File
6.RPMSGRestricted Permission Message
7.NOMEDIAAndroid No-Media Marker File
8.EXEWindows Executable (Portable Executable)
9.AVIFAV1 Image File Format (AVIF)
10.DBSQLite Database File

Extensiones relacionadas

.ICACitrix Independent Computing Architecture file
.DS_STOREmacOS Finder Desktop Services Store (.DS_Store)
.WMZWindows Media Player Skin
.CFGConfiguration File
.LICLicense File
.CONFConfiguration File

Herramientas de archivo gratuitas

Un identificador de archivos y convertidor de imágenes en el navegador - todo se ejecuta en su dispositivo.

Abrir la caja de herramientas

Explorar extensiones de archivo A-Z