Text

Text

3352 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
Xerox Star - Wikipedia
Xerox Star - Wikipedia
The Xerox Star workstation, officially named Xerox 8010 Information System, is the first commercial personal computer to incorporate technologies that have since become standard in personal computers, including a bitmapped display, a window-based graphical user interface, icons, folders, mouse (two-button), Ethernet networking, file servers, print servers, and e-mail.
·en.wikipedia.org·
Xerox Star - Wikipedia
Personal knowledge management - Wikipedia
Personal knowledge management - Wikipedia
Personal knowledge management (PKM) is a process of collecting information that a person uses to gather, classify, store, search, retrieve and share knowledge in their daily activities (Grundspenkis 2007) and the way in which these processes support work activities (Wright 2005). It is a response to the idea that knowledge workers need to be responsible for their own growth and learning (Smedley 2009). It is a bottom-up approach to knowledge management (KM) (Pollard 2008).
·en.wikipedia.org·
Personal knowledge management - Wikipedia
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