When I was 18, I asked a group of maybe five people and they thought I was 27. That was many years ago.
N.E.P.T.R
I’m the Never Ending Pie Throwing Robot, aka NEPTR.
Linux enthusiast, programmer, and privacy advocate. I’m nearly done with an IT Security degree.
TL;DR I am a nerd.
- 6 Posts
- 292 Comments
Well, of course.
I just read the title and when I see the name Ada I think of this: https://en.wikipedia.org/wiki/Ada_(programming_language)
N.E.P.T.R@lemmy.blahaj.zoneto
linuxmemes@lemmy.world•Operating System Political Compass - Updated versionEnglish
2·16 days agoYes, just get the Nvidia version of Secureblue/Bazzite and you are good.
N.E.P.T.R@lemmy.blahaj.zoneto
linuxmemes@lemmy.world•Operating System Political Compass - Updated versionEnglish
2·16 days agoI personally adhere to the idea of avoiding installing too many overlayed packages. Most i have installed in like five (with dependencies) at once. If you are comfortable with still using mostly Flatpaks and (only) a few overlayed packages, then Atomic may still be for you.
I really do recommend Secureblue.
N.E.P.T.R@lemmy.blahaj.zoneto
linuxmemes@lemmy.world•Operating System Political Compass - Updated versionEnglish
2·16 days agoI see this misconception all the time about Fedora Atomic distros. You can actually install any normal package available through the included repos, or add your own repo (
rpm-ostree install $pkg). DNF can be used to add a repo from a URL and then you just userpm-ostree install $pkg. It is really that simple.The reason you aren’t supposed to is that it makes the system diverge from the default image by overlaying the package. Still though, Fedora Atomic is just Fedora but container images for updates.
N.E.P.T.R@lemmy.blahaj.zoneto
Linux@programming.dev•Wine 11 rewrites how Linux runs Windows games at the kernel level, and the speed gains are massiveEnglish
0·17 days agoPretty sure as others said in another thread that this is NTSYNC vs vanilla Wine. Wine with Fsync (used by Valve Proton) vs NTSYNC still sees an improvement, just not as major.
N.E.P.T.R@lemmy.blahaj.zoneto
Privacy@lemmy.ml•Mullvad Browser and Tor Browser have unique-per-computer persistent IDs on fingerprint.comEnglish
17·18 days agoVivaldi is also proprietary. Not a good privacy browser.
N.E.P.T.R@lemmy.blahaj.zoneto
Linux@lemmy.world•How to confine an existing distrobox container?English
0·19 days agoYes, I understand Flatpak does some seccomp syscall filtering. It still isn’t enough to consider a secure sandbox where the threat model is that the app is untrusted. Bubblewrap is generally considered a weak sandbox and isn’t “secure by default”, allowing for easy footguns.
LXC/Incus does support proper VMs but it isnt as common.
Neither are really designed to run untrusted apps.
N.E.P.T.R@lemmy.blahaj.zoneto
Linux@lemmy.world•How to confine an existing distrobox container?English
0·19 days agoI guess I just don’t understand your question. Explain in more detail.
- Who is the threat actor? (State, APT, Hackivist, etc)
- What is their goal (what do they want)? (Money, data, persistent access, blackmail)
- What tools do they have?
Really think about the Ws (who, what, where, when, how).
If you want to protect against an “advanced” threat actor, you can not do that without multiple layers of isolation, including but not limited to virtualization, MAC (SELinux), namespaces, seccomp.
All protections are meaningless without a clear understanding of what assets you are protecting, the threat you face, and they want from you.
N.E.P.T.R@lemmy.blahaj.zoneto
Linux@lemmy.world•How to confine an existing distrobox container?English
0·19 days agoDistrobox is design to be the opposite of confined. Its goal is integration. The container is stripped away as much as possible to allow for sharing host resources.
As it says on the Distrobox website:
Security implications
Isolation and sandboxing are not the main aims of the project, on the contrary it aims to tightly integrate the container with the host. The container will have complete access to your home, pen drive, and so on, so do not expect it to be highly sandboxed like a plain docker/podman container or a Flatpak.
I would also argue calling “plain docker/podman container or a Flatpak” being “highly sandboxed” is also quite wrong and a misuse of those technology.
It uses Docker/Podman which is not a security sandbox. The purpose is app containers, not a security boundary. It shares the sane kernel as the host, which makes kernel vulnerabilities a source of container escapes. Docker (the default) runs as root and could be a source of privilege escalation. Best case is use gVisor or SELinux. Still not a secure sandbox.
Similar problems with Flatpak. Not a secure sandbox. Doesn’t filter syscalls, barely reduces attack surface, granting frequently required permissions often significantly reduces the strength of the sandbox, shares a kernel with the host (and no application kernel like gVisor or sydbox), weak use MAC (like SELinux). Most of this can also be said of the previous 2 container software (and also LXC/LXD/Incus).
Also, don’t use browsers with Flatpak, they have a significantly weaker sandbox because it is missing a layer of sandboxing (namespaces). This makes attack exponential more likely by reducing the need chain another major vulnerability to execute a successful sandbox break.
What you want is a VM. It is designed to be a secure sandbox but needs some configuring.
I got my cylinder stuck inside :(
There is no rock bottom. It can always get worse. Even if the outside doesn’t get worse, your experience can. I have seen and experienced it.
N.E.P.T.R@lemmy.blahaj.zoneto
Linux@programming.dev•Best distros without systemd for gaming?English
0·23 days agoI would probably go with Artix because it is arch based and therefore you will get updated packages instead of perpetually outdated Debian packages. Then maybe switch out the kernel for the CachyOS kernel and you should be good.
Which is obvi why we need LLMs in charge /s
N.E.P.T.R@lemmy.blahaj.zoneto
linuxmemes@lemmy.world•When the Linux user hears an iOS user say they hate WindowsEnglish
3·24 days ago/e/OS doesn’t care take security seriously. They are usually 1-2 months behind on Android security patches, leaving users vulnerable to literally (literally) dozens of critical and many more high severity vulnerabilities. Every other Android ROM is better about this. LineageOS and GrapheneOS are the best about updating quickly.
Steins;Gate?
N.E.P.T.R@lemmy.blahaj.zoneto
Linux@lemmy.ml•do u think apple will kill somehow Asahi Linux in future?English
2·25 days agoHonestly, I saw it in a video recently that i cant remember. It showed some screenshots of the engineer’s Twitter taking about it.
N.E.P.T.R@lemmy.blahaj.zoneto
Linux@lemmy.ml•Systemd preparing to comply with age verification lawsEnglish
11·25 days agoArtix (Arch w/out systemd) supports many inits. I’d recommend dinit (which is very easy to use) or s6 (which seems more stable on Artix, but less user friendly helper tools). Both are very fast, faster than the other inits.
- There is also Chimera Linux which uses dinit and is very clean imho. A very modern take on making a traditional Linux distro which does things well and uses clean and simple OS software stack.
- Void Linux uses runit
- Devuan (Debian w/out systemd) you can use sysV, OpenRC, or runit
- And obviously there is Gentoo, which supports using OpenRC, with unofficial community guides for some other inits.




Supercritical CO2 turbine be like: whatup