I'm looking for options where I can request a .deb package for software that currently doesn't have one. I really prefer using .deb packages, but I've found that some software just isn't available in that format.
4 Answers
I get that .deb packages are your thing! Compiling from source is a solid option. You can use commands like 'make' and 'checkinstall' to create your own .deb package. That way, you can ensure it's safe and meets your needs.
I thought you were asking about adding a .deb to the Debian repos! Each company's software might be different, so reaching out to customer service could be a start. Open-source projects might not have .deb packages built either, but you can file a feature request for that. If you're looking for something to be included in Debian, there's a process for that—check out the Debian packaging wiki for guidance!
If you can't find a .deb package in the main repository or on the official site, you could consider using Flatpak for desktop applications instead. Just be careful with .deb files from unknown sources—they can lead to 'dependency hell' if they're not intended for your distro version. Flatpak is generally safer since it's sandboxed.
Interesting point! With so many different distros out there, it's almost impossible to create a one-size-fits-all virus. But jokes aside, using Flatpaks, Snap packages, or AppImages can work just fine. Personally, I prefer compiling from source.

Yeah, I found out about that too! Compiling from source and using those commands seems like a great way to go.