✏️
TIL
  • TIL
  • bash
    • Duplicate lines in a text file
    • bash keyboard shortcuts
  • git
    • Git is a good place to keep notes
  • ssh
    • SSH Agent via systemd
  • wireshark
    • Show any field in the packet list display
    • show ja3 hashes in wireshark
  • zip
    • Run a script from a zip file
Powered by GitBook
On this page

Was this helpful?

  1. ssh

SSH Agent via systemd

~/.config/systemd/user/ssh-agent.service

    [Unit]
    Description=SSH key agent

    [Service]
    Type=forking
    Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
    ExecStart=/usr/bin/ssh-agent -a $SSH_AUTH_SOCK

    [Install]
    WantedBy=default.target
PrevioussshNextwireshark

Last updated 5 years ago

Was this helpful?