Informatic articles

397 bookmarks
Newest
Generating a new SSH key and adding it to the ssh-agent - GitHub Docs
Generating a new SSH key and adding it to the ssh-agent - GitHub Docs
After you've checked for existing SSH keys, you can generate a new SSH key to use for authentication, then add it to the ssh-agent.
ssh-keygen -t ed25519 -C "your_email@example.com"
eval "$(ssh-agent -s)"
Start the ssh-agent in the background.
Generating a new SSH key
ssh-keygen -t ed25519 -C "your_email@example.com" && eval "$(ssh-agent -s)" && ssh-add ~/.ssh/id_ed25519
$ ssh-add ~/.ssh/id_ed25519
ssh-add ~/.ssh/id_ed25519
·docs.github.com·
Generating a new SSH key and adding it to the ssh-agent - GitHub Docs
pacman/Tips and tricks - ArchWiki
pacman/Tips and tricks - ArchWiki
repo-add /path/to/repo.db.tar.gz /path/to/package-1.0-1-x86_64.pkg.tar.zst
A package database is a tar file, optionally compressed. Valid extensions are .db or .files followed by an archive extension of .tar, .tar.gz, .tar.bz2, .tar.xz, .tar.zst, or .tar.Z.
repo-add /path/to/repo.db.tar.gz /path/to/*.pkg.tar.zst
/etc/pacman.conf [custom] SigLevel = PackageRequired Server = file:///mnt/repo/Packages
repo-add ./custom.db.tar.gz ./*
·wiki.archlinux.org·
pacman/Tips and tricks - ArchWiki
UEFI dbx update on Arch - Endeavouros forum
UEFI dbx update on Arch - Endeavouros forum
Messing around with Arch Kde Plasma and Wayland. I notice this update that is UEFI dbx from Microsoft? The package is not in the repo and I’m not sure where it’s coming from. Not sure exactly what it is but it looks like some kind of database file? I’m hesitant to install it. Wondering if anyone has seen this on EndeavourOS? Arch has Discover included in the install and that is where i am seeing the update. If i run an update in the terminal there is nothing. Hmm? Strange? 🤔 Any though...
·forum.endeavouros.com·
UEFI dbx update on Arch - Endeavouros forum
How I Built My Own Linux Distribution - Idalko
How I Built My Own Linux Distribution - Idalko
There’s a lot you can do when it comes to open-source software thanks to its in-built flexibility, scalability, and adaptability. You can even decide to make a new product based on your specific requirements. In this blog post, you'll be walked through the journey of building a Linux distribution called TOS.
·idalko.com·
How I Built My Own Linux Distribution - Idalko
5 Best Modern Linux 'init' Systems (1992-2015)
5 Best Modern Linux 'init' Systems (1992-2015)
Over the years, many init systems have emerged into many Linux distributions and in this guide, we shall take a look at some of the best init systems you can work with on Linux.
·tecmint.com·
5 Best Modern Linux 'init' Systems (1992-2015)
Create swapfile on btrfs
Create swapfile on btrfs
if you try to create a swapfile on btrfs, the `swapon` always fails with a cryptic error “invalid argument”. reason for this is that…
·mikelitoris.medium.com·
Create swapfile on btrfs