.TIMER

Arquivo TIMER

Systemd Timer Unit File
Fazer uma pergunta
RESPOSTA RÁPIDA

Um arquivo .timer é uma unidade do systemd que agenda quando outra unidade (geralmente um arquivo .service correspondente) deve ser executada no Linux, funcionando como um substituto moderno para o cron. É um pequeno arquivo de texto simples no estilo INI, portanto, você pode abri-lo e editá-lo com qualquer editor de texto, como nano, vim ou VS Code. Para ativar um, coloque-o em /etc/systemd/system/ e execute systemctl enable --now name.timer; use systemctl list-timers para ver os temporizadores agendados.

Desenvolvedor: systemd project (originally Lennart Poettering and Kay Sievers) Categoria: Arquivos de Configuração Padrão aberto MIME: text/plain
ABRE EM Windows macOS Linux
Relacionado: .ICA · .DS_STORE · .WMZ · .CFG

Nesta página

19k+ extensões indexadas
Última revisão em Aug 25, 2026

Não tem certeza do que é seu arquivo?

Arraste qualquer arquivo para o nosso identificador - lemos apenas os primeiros bytes para nomear o formato.

Identificar um arquivo

O que é o formato de ficheiro TIMER?

Um arquivo .timer é uma unidade de temporizador usada pelo systemd, o sistema de inicialização e gerenciador de serviços por trás da maioria das distribuições Linux. Ele agenda quando outra unidade deve ser executada, geralmente um arquivo .service correspondente, e atua como um substituto moderno para o cron. O arquivo é um texto simples em UTF-8 no estilo INI, portanto, contém um agendamento em vez de código de programa.

Cada temporizador normalmente faz par com um serviço de mesmo nome base. Um arquivo chamado backup.timer aciona o backup.service, a menos que sua diretiva Unit= nomeie um alvo diferente. A unidade é organizada em três seções: [Unit] para a descrição e dependências, [Timer] para o agendamento e [Install] para ativação através de WantedBy=timers.target.

Os agendamentos vêm em duas formas. Temporizadores de tempo real usam OnCalendar= para disparar em eventos de calendário, da mesma forma que uma tarefa cron faz. Temporizadores monotônicos, como OnBootSec= ou OnUnitActiveSec=, disparam após um intervalo definido após um evento de referência, como a inicialização ou a última execução. Opções como Persistent=true recuperam uma execução perdida após a máquina ter sido desligada, e RandomizedDelaySec= distribui a carga entre muitos hosts.

Segurança e proteção

RISCO: 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.

Detalhes do formato

em resumo
NOME COMPLETOSystemd Timer Unit Filetambém conhecido como Systemd Timer Unit, Timer Unit Configuration File
DESENVOLVEDORsystemd project (originally Lennart Poettering and Kay Sievers)desde 2012 (systemd timer units)
TIPO MIMEtext/plain
TIPOPlain-text INI-style unit configuration file
PADRÃOAberto · livre de royalties
Esta extensão também é usada 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 abrem arquivos TIMER

Windows2 apps
Notepad Código aberto 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 aberto Edit the timer unit with vim /etc/systemd/system/name.timer; syntax highlighting for systemd units ships with Vim.
GNU Nano Código aberto 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 aberto 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 aberto 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.

Detalhes técnicos

especificação 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
Lançado2012 (systemd timer units)
Padrão abertoSim · livre de royalties
Especificaçãoman7.org

Conversões de TIMER

Perguntas e Respostas da Comunidade

perguntado por usuários
Faça uma pergunta rápida
Obtenha ajuda de pessoas que trabalham com arquivos TIMER. Seja específico - inclua seu sistema e a versão do software.
Não é necessário criar conta · respostas geralmente em um dia

Ainda não há perguntas - seja o primeiro a perguntar sobre arquivos TIMER.

Perguntas frequentes

Como faço para abrir um arquivo .timer?
Abra-o em qualquer editor de texto, como nano, vim, VS Code ou Notepad++. É um pequeno arquivo de texto simples, portanto, nenhum software especial é necessário para lê-lo.
Qual é a diferença entre um arquivo .timer e um arquivo .service?
Um arquivo .service define o que executar; um arquivo .timer define quando executá-lo. Um temporizador chamado backup.timer ativa o backup.service, a menos que sua diretiva Unit= diga o contrário.
Como habilito e inicio um temporizador?
Coloque o arquivo em /etc/systemd/system/, execute systemctl daemon-reload e, em seguida, systemctl enable --now name.timer. Verifique-o com systemctl list-timers.
Os temporizadores do systemd são melhores que o cron?
Os temporizadores se integram ao journal do systemd para registro de logs, suportam dependências e podem recuperar execuções perdidas com Persistent=true. O cron é mais simples e mais portátil entre sistemas Unix. Ambos são válidos; os temporizadores são comuns no Linux moderno.
Por que meu temporizador não está disparando?
Confirme se o temporizador está habilitado e ativo com systemctl status name.timer, se existe um serviço correspondente e se a expressão OnCalendar= é válida. Teste a expressão com systemd-analyze calendar "sua-string".
Posso abrir um arquivo .timer no Windows ou macOS?
Sim, como texto para visualização ou edição, mas os temporizadores só funcionam sob o systemd no Linux. Crie o arquivo em qualquer SO e implante-o em um host Linux.

Referências

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

Continue explorando

em todo o banco de dados

Principais extensões desta 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

Extensões relacionadas

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

Ferramentas de arquivo gratuitas

Um identificador de arquivos e conversor de imagens no navegador - tudo funciona no seu dispositivo.

Abrir a caixa de ferramentas

Navegar por extensões de arquivo A-Z