deleted by creator
deleted by creator
Bonus when you disable software flow control: In addition to Ctrl+r to reverse search through commands, you can search forward via Ctrl+s
deleted by creator
Yes, OEM unlocking is an option that you can toggle in the developer settings in the 11. I haven’t done it personally, but it looks like it’s the standard process via fastboot.
IMO it’s not even about something making sense, we’re just very accustomed to fahrenheit, so it feels more natural to us.
I’ll be the first to admit that I have no idea about what’s warm and cold in Celsius. I know 0 is quite cold, 20 is room temperature, and 100 is near instant death.
Holy based. I always thought it’d be funny to get into a little cyber war with someone, so thanks for the laugh.
Using podman-compose, I usually have a section like:
volumes:
- ./local_folder:/container/folder
Specifically, I have to use either an absolute path or a relative path with “./” to prevent it from treating a directory as a volume name.
Yeah, I’m confused by this video (which is from nearly a year ago, btw). It looks like a gnome shell overview more than anything.
My practical answer: Nah, it’s probably not going to nuke your files.
My software engineer answer: Never trust us to not make a mistake. It doesn’t take much to accidentally nuke a directory.
Seems like a fine feature to me?
Except you have to pay for rewinds. They probably give you one or two freebies, but then you’re screwed if you legitimately made a mistake swiping in the wrong direction.
Agreed, for me containers are really nice for playing with new software without dirtying my host install.
I think it’s cool in concept, but it’s more of an activism tool than a convenience tool. I’m my experience at least, it didn’t block as much as I’d like.
Well good thing I finally realized it wasn’t enabled and set my environment variables to enable it.
Lol, I’ve already got a fedora server and desktop, a debian home theater PC, and some sort of Linux running on an old laptop (I think it’s Ubuntu right now - I use whatever the current project needs). No windows in my household!
https://github.com/n1snt/Windows-Debloater
This should do what you’re wanting.
I’ve run plain ol’ openbox without a desktop environment on top of it, and it’s quite nice. IIRC I also had a standalone status bar application, but I can’t remember which one I used.
There are a couple utility programs (obconf and obkey?) that help to configure everything comfortably.
Based, mostly
And even then, a properly configured SSHD instance wouldn’t really benefit from a firewall, unless you wanted to block all countries besides your own or something.
Every computer has a bunch of ports (1-65535 if I recall correctly), each of which is a unique entity to which a single service can bind. In layman’s terms, a port is a door that one service is able to answer when someone knocks. By convention, some ports have a specific associated service (80 = HTTP, 443 = HTTPS, 22 = SSH), but there are a lot that you can just use as you deem appropriate.
If you want a service (e.g. a web server) to be accessible, you have to run a service that binds to a known port (e.g. 80), and a client has to reach out to your server on that same port. A firewall sits between your service(s) and any potential clients, much like those steel security screen doors. If that’s closed, nobody gets through on that port, even if a service is bound to that port and is listening for a connection.
As a general rule of thumb, you want your firewall to block as much traffic as possible without breaking something (I.e. blocking one of your public-facing services). If you don’t run any services on your computer (web services, media servers, etc.), you can probably get away with blocking all inbound traffic. without any discernable impact.
deleted by creator