Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: tmp Clear Filter

A deep dive into Debian 13 /tmp: What's new, and what to do if you don't like it

Debian 13 “Trixie” introduces an important change to /tmp. Traditionally, it’s been just another filesystem, albeit with some special permissions that allows everyone on the system to use it without being able to remove each other’s files. In Trixie, it’s been moved off the disk into memory – specifically a type of memory called tmpfs. To quote the tmpfs man page: The tmpfs facility allows the creation of filesystems whose contents reside in virtual memory. Since the files on such filesystems

A Deep Dive into Debian 13 /tmp: What's New, and What to Do If You Don't Like It

Debian 13 “Trixie” introduces an important change to /tmp. Traditionally, it’s been just another filesystem, albeit with some special permissions that allows everyone on the system to use it without being able to remove each other’s files. In Trixie, it’s been moved off the disk into memory – specifically a type of memory called tmpfs. To quote the tmpfs man page: The tmpfs facility allows the creation of filesystems whose contents reside in virtual memory. Since the files on such filesystems

Show HN: Intercepting proxy for semantic search over visited pages

A proxy that embeds every web page you visit and lets you run similarity searches. Each successful HTTP GET 200 response (except for localhost) is re-fetched from pure.md to obtain clean Markdown. The cleaned text is embedded through llm. A minimal Flask UI provides search and cached-page views. Installation This is not a stand-alone program. It is a plugin for llm. If you are not using llm yet, install it with pipx first. pipx install llm Now you can install this plugin: llm install git+h

A quick look at unprivileged sandboxing

blog - git - desktop - images - contact A quick look at unprivileged sandboxing Disclaimer: This is to the best of my knowledge. It's a complicated topic, there are tons of options, and this only covers a tiny fraction of this topic anyway. If you spot mistakes, please tell me. Suppose you have a server daemon that you want to confine to a single directory. During the startup phase of the program, it also needs to read some files outside of that directory -- you can apply the confinement only

Save your disk, write files directly into RAM with /dev/shm

There are garbage dumps everywhere for those with eyes to see Given my interest in extending the life of my SD cards and hard drives as much as possible, I’m surprised I haven’t come across /dev/shm before. In a word it’s a world-accessible RAM scratchpad, which seems baked right into POSIX, so that virtually every Unix system already has it mounted as a tmpfs by default: 1 2 ❯ mount | grep '/dev/shm' tmpfs on /dev/shm type tmpfs ( rw,nosuid,nodev,inode64 ) Today’s lucky 10,000, indeed. It ge

Topics: dev ram shm tmpfs word