• 0 Posts
  • 5 Comments
Joined 2 years ago
cake
Cake day: October 16th, 2023

help-circle
  • CocaineShrimp@lemm.eetoLinux@lemmy.mlSSH managers on Linux?
    link
    fedilink
    English
    arrow-up
    9
    ·
    2 hours ago

    Not a GUI, but I keep my ~/.ssh/config clean by splitting my configs into folders, and including them in the main ~/.ssh/config.

    I have the folder, ~/.ssh/config.d/, and here’s what it looks like:

    ~/.ssh/config.d
    .
    ├── work
    │   ├── dev.config
    │   ├── staging.config
    │   └── prod.config
    └── server
        ├── development.config
        ├── containers.config
        ├── home.config
        ├── pis.config
        └── server.config
    

    Then my ~/.ssh/config looks like this:

    Include config.d/work/*
    Include config.d/server/*
    Include config.d/other/*
    


  • I’ve actually been curious about something similar, and unfortunately I don’t have an exact answer.

    I’m currently self hosting ArchiveBox which saves a copy of the web page, but I find the UI to be pretty bloated. As an alternative, I’ve been curious about LinkWarden, but I have yet to set it up.

    I know those two options aren’t ideal as they don’t directly integrate with NextCloud AFAIK, but they might support your other use cases?