this post was submitted on 10 Oct 2023
53 points (96.5% liked)

Linux

47237 readers
3343 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

How do you guys quickly sync your settings (especially bash aliases and ssh keys) across your machines?

Ideally i want a simple script to run on every new server I work with. Any suggestions?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 43 points 11 months ago (3 children)

I suggest you don't sync SSH keys. That's just increasing the blast radius of any one of those machines being compromised.

[–] [email protected] 10 points 11 months ago

Exactly this. Don't move private keys between machines. Generate them where you need them, it's not like they cost anything

[–] [email protected] 3 points 11 months ago (1 children)

I mean, you want to copy the public keys that represents your machines, right?

[–] [email protected] 4 points 11 months ago

Fair point, but I would equate that with syncing the authorized_keys file rather than thinking about how to sync the keys.

[–] [email protected] 1 points 11 months ago (2 children)

Right. Use some kind of centralized authentication like freeipa.

For bash aliases, I just pull down a .bashrc from github gists.

[–] [email protected] 10 points 11 months ago (2 children)

OP should just generate a unique SSH key per device (+ user).

[–] [email protected] 4 points 11 months ago (1 children)

Agreed. I’ve probably got 100 keys registered with GitHub and 98 of them the private key is long destroyed due to OS reinstalls or whatnot. Format machine, new key. New machine, new key.

[–] [email protected] 1 points 11 months ago (1 children)

FYI: You can remove the old keys from GitHub.

[–] [email protected] 1 points 11 months ago

I like to save them for a rainy day when I need an OCD fix.

[–] [email protected] 2 points 11 months ago

I d rather have 2 to 3 (for critical, mid, and test systems) ssh keys that are regularly rotated than 1 key per machine. I m not gonna balance 50 ssh keys; neither enter my password every time i jump hosts.

[–] [email protected] 1 points 11 months ago

Is the url is easy to rember?