this post was submitted on 23 Jun 2025
43 points (95.7% liked)

Linux

55918 readers
415 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

This app just starts some productivity session while forbidding some programs from starting. Is there a Linux and most importantly FOSS version of it?

you are viewing a single comment's thread
view the rest of the comments
[–] dabu@lemmy.world 14 points 1 week ago (3 children)

I do not know any program like that but what worked for me was creating another user account that had no access to lots of stuff.

[–] Psyhackological@lemmy.ml 2 points 1 week ago (2 children)

Yeah that's idea but it will also lose some of the setup that I have right now. I wonder how hard it would he to tell the kernel not to spawn anything during session time.

[–] jbloggs777@discuss.tchncs.de 10 points 1 week ago (1 children)

With apparmor, you could enable and disable profiles that could restrict access to files and paths by name.

For network traffic, it's possible to use dnsmasq to blacklist or whitelist some domains.

[–] Psyhackological@lemmy.ml 1 points 1 week ago

Good idea, thanks.