Liane M. Dubowy's Avatar

Liane M. Dubowy

@lianedubowy

nerdgrrrl * linux user * editor at @ct.de * she/her on Mastodon: @lianedubowy@social.tchncs.de Blog: https://www.rundumlinux.de

493
Followers
140
Following
54
Posts
12.10.2023
Joined
Posts Following

Latest posts by Liane M. Dubowy @lianedubowy

Preview
Kali & LLM: Completely local with Ollama & 5ire We are extending our LLM-driven Kali series, where natural language replaces manual command input. This time however, we are doing everything locally and offline. We are using our own hardware and not relying on any 3rd party services/SaaS. Note: Local LLMs are hardware-hungry. The cost factor here is buying hardware and the running costs. If you have anything that you can re-use, great! GPU (Nvidia) Let’s first find out what our hardware is: $ lspci | grep -i vga 07:00.0 VGA compatible controller: NVIDIA Corporation GP106 [GeForce GTX 1060 6GB] (rev a1) $ NVIDIA GeForce GTX 1060 (6 GB). Drivers We will check that our hardware is ready by making sure “non-free” proprietary drivers are installed. The non-free option allows for CUDA support which the open-source, nouveau, drivers lack. At the same time, make sure our Kernel and headers are at the latest version too: $ sudo apt update [...] $ $ sudo apt install -y linux-image-$(dpkg --print-architecture) linux-headers-$(dpkg --print-architecture) nvidia-driver nvidia-smi [...] │ Conflicting nouveau kernel module loaded │ │ The free nouveau kernel module is currently loaded and conflicts with the non-free nvidia kernel module. │ │ The easiest way to fix this is to reboot the machine once the installation has finished. | [...] $ $ sudo reboot Using a different GPU manufacture, such as AMD or Intel etc, is out of scope for this guide. Testing Once the box is back up and we are logged in again, we can do a quick check with nvidia-smi: $ lspci -s 07:00.0 -v | grep Kernel Kernel driver in use: nvidia Kernel modules: nvidia $ $ lsmod | grep '^nouveau' $ $ lsmod | grep '^nvidia' nvidia_drm 126976 2 nvidia_modeset 1605632 3 nvidia_drm nvidia 60710912 29 nvidia_drm,nvidia_modeset $ $ nvidia-smi Tue Jan 27 14:33:31 2026 +-----------------------------------------------------------------------------------------+ | NVIDIA-SMI 550.163.01 Driver Version: 550.163.01 CUDA Version: 12.4 | |-----------------------------------------+------------------------+----------------------+ | GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC | | Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. | | | | MIG M. | |=========================================+========================+======================| | 0 NVIDIA GeForce GTX 1060 6GB Off | 00000000:07:00.0 On | N/A | | 0% 30C P8 6W / 120W | 25MiB / 6144MiB | 0% Default | | | | N/A | +-----------------------------------------+------------------------+----------------------+ +-----------------------------------------------------------------------------------------+ | Processes: | | GPU GI CI PID Type Process name GPU Memory | | ID ID Usage | |=========================================================================================| | 0 N/A N/A 969 G /usr/lib/xorg/Xorg 21MiB | +-----------------------------------------------------------------------------------------+ $ Everything looks to be in order. Ollama Next up, we need to install Ollama. Ollama will allow us to load our local LLM. Ollama is a wrapper for llama.cpp. 5ire supports Ollama, but not llama.cpp. If you do not want to-do curl|bash, see the manual method, or follow below for v0.15.2 (latest at the time of writing, 2026-01-27): $ sudo apt install -y curl [...] $ $ curl --fail --location https://ollama.com/download/ollama-linux-amd64.tar.zst > /tmp/ollama-linux-amd64.tar.zst [...] $ $ file /tmp/ollama-linux-amd64.tar.zst /tmp/ollama-linux-amd64.tar.zst: Zstandard compressed data (v0.8+), Dictionary ID: None $ sha512sum /tmp/ollama-linux-amd64.tar.zst 1c16259de4898a694ac23e7d4a3038dc3aebbbb8247cf30a05f5c84f2bde573294e8e612f3a9d5042201ebfe148f5b7fe64acc50f5478d3453f62f85d44593a1 /tmp/ollama-linux-amd64.tar.zst $ $ sudo tar x -v --zstd -C /usr -f /tmp/ollama-linux-amd64.tar.zst [...] $ $ sudo useradd -r -s /bin/false -U -m -d /usr/share/ollama ollama $ $ sudo usermod -a -G ollama $(whoami) $ $ cat >> Hello world! Thinking... Okay, the user said "Hello world!" and wants me to respond. Let me think about how to approach this. First, I should acknowledge their greeting. Since they used the classic "Hello World!" which is often the first program in many programming languages, maybe I can relate that to my capabilities. I should make sure to keep the tone friendly and open for further conversation. Let me check if there's anything specific they might need help with. Maybe they're just testing me or want to start a discussion. I'll keep the response simple and welcoming, inviting them to ask questions or share what they need help with. Also, I should avoid any markdown and keep it natural. Alright, time to put that together. ...done thinking. Hello! 😊 How can I assist you today? Whether you have questions, need help with something, or just want to chat, I'm here for you! What's on your mind? >>> /exit $ We can check Ollama status by doing: $ ollama ps NAME ID SIZE PROCESSOR CONTEXT UNTIL qwen3:4b 359d7dd4bcda 3.5 GB 100% GPU 4096 4 minutes from now $ Great, it appears that everything is working well here. MCP Server (MCP Kali Server) We will now need to install and run a MCP server. For this guide, we did a fresh minimal installation of Kali, which means there isn’t any pre-installed tools. Sticking once again to mcp-kali-server: $ sudo apt install -y mcp-kali-server dirb gobuster nikto nmap enum4linux-ng hydra john metasploit-framework sqlmap wpscan wordlists [...] $ $ sudo gunzip -v /usr/share/wordlists/rockyou.txt.gz /usr/share/wordlists/rockyou.txt.gz: 61.9% -- replaced with /usr/share/wordlists/rockyou.txt $ $ kali-server-mcp 2026-01-27 15:54:01,339 [INFO] Starting Kali Linux Tools API Server on 127.0.0.1:5000 * Serving Flask app 'kali_server' * Debug mode: off 2026-01-27 15:54:01,352 [INFO] WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. * Running on http://127.0.0.1:5000 2026-01-27 15:54:01,352 [INFO] Press CTRL+C to quit Long term, there are various different ways to have kali-server-mcp running in the background, such as using a tmux/screen session, or creating a systemd.unit, but that’s out of scope for this. Testing Let’s manually run mcp-server now: $ mcp-server 2026-01-27 15:54:18,802 [INFO] Initialized Kali Tools Client connecting to http://localhost:5000 2026-01-27 15:54:18,811 [INFO] Successfully connected to Kali API server at http://localhost:5000 2026-01-27 15:54:18,811 [INFO] Server health status: healthy 2026-01-27 15:54:18,826 [INFO] Starting Kali MCP server 2026-01-27 15:54:18,804 [INFO] Executing command: which nmap 2026-01-27 15:54:18,806 [INFO] Executing command: which gobuster 2026-01-27 15:54:18,807 [INFO] Executing command: which dirb 2026-01-27 15:54:18,808 [INFO] Executing command: which nikto 2026-01-27 15:54:18,810 [INFO] 127.0.0.1 - - [27/Jan/2026 15:54:18] "GET /health HTTP/1.1" 200 - Everything is looking good! No errors or warnings. We can also see that kali-server-mcp has additional lines in its log. Good. 5ire So we have a local LLM working, and a MCP. Ollama doesn’t support MCP (yet?), so we need to use something that can take bridge the gap. Enter 5ire - “A Sleek AI Assistant & MCP Client”. Next, Download 5ire’s AppImage (5ire-0.15.3-x86_64.AppImage at the time of writing, 2026-01-27) and make a menu entry: $ curl --fail --location https://github.com/nanbingxyz/5ire/releases/download/v0.15.3/5ire-0.15.3-x86_64.AppImage > 5ire-x86_64.AppImage [...] $ $ file 5ire-x86_64.AppImage 5ire-x86_64.AppImage: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 2.6.18, stripped $ sha512sum 5ire-x86_64.AppImage bdf665fc6636da240153d44629723cb311bba4068db21c607f05cc6e1e58bb2e45aa72363a979a2aa165cb08a12db7babb715ac58da448fc9cf0258b22a56707 5ire-x86_64.AppImage $ $ sudo mkdir -pv /opt/5ire/ mkdir: created directory '/opt/5ire/' $ $ sudo mv -v 5ire-x86_64.AppImage /opt/5ire/5ire-x86_64.AppImage renamed '5ire-x86_64.AppImage' -> '/opt/5ire/5ire-x86_64.AppImage' $ $ chmod -v 0755 /opt/5ire/5ire-x86_64.AppImage mode of '/opt/5ire/5ire-x86_64.AppImage' changed from 0664 (rw-rw-r--) to 0755 (rwxr-xr-x) $ $ mkdir -pv ~/.local/share/applications/ mkdir: created directory '/home/kali/.local/share/applications/' $ $ cat '/opt/5ire/5ire-x86_64.AppImage' $ $ sudo apt install -y libfuse2t64 [...] $ We can now either use the menu, or call it from a terminal. --- Now we need to configure 5ire to use Ollama (for LLM) and mcp-kali-server (MCP server): Let’s now setup 5ire to use Ollama. Open 5ire, then: * 5ire -> Workspace -> Providers -> Ollama --- Let’s toggle Default to Enable it --- Select each of the Ollama models, and then make sure “Tools” and “Enabled” are both toggled to enable -> Save. Repeat for each of them. If you wish, select a model to be the default one. Testing Now let’s test 5ire out! * New Chat -> Ollama Hello world! --- Again, checking status: $ ollama ps NAME ID SIZE PROCESSOR CONTEXT UNTIL qwen3:4b 359d7dd4bcda 3.5 GB 100% GPU 4096 2 minutes from now $ --- Looks to be working well! Time to setup the MCP. MCP Client (5ire) We can use 5ire’s GUI : * 5ire -> Tools -> Local --- Now to fill in the boxes: * Name: mcp-kali-server * Description: MCP Kali Server * Approval Policy: …Up to you * Command: /usr/bin/mcp-server Save --- Do not forget to make sure to enable it! --- We can see what we now have on offer. ... -> Browse Testing * New Chat -> Ollama Can you please do a port scan on scanme.nmap.org, looking for TCP 80,443,21,22? Wonderful! Recap As a recap: * On our Kali local instance, we enabled our GPU for development. * We setup Ollama and grabbed a few LLMs, such as qwen3:4b. * Setup a MCP server, MCP-Kali-Server. * We installed a GUI interface, 5ire. * We setup 5ire to use Ollama’s LLMs as well as MCP client to use mcp-kali-server. * We then used it all to-do a nmap port scan of scanme.nmap.org …all processed locally! We may be talking about AI, but AI was not used to write this! --- Find out more about advanced red teaming for AI environments at OffSec.com.

Kali & LLM: Completely local with Ollama & 5ire: We are extending our LLM-driven Kali series, where natural language replaces manual command input. This time however, we are doing everything locally and offline. We are using our own hardware and not relying on any 3rd party services/SaaS.


Note:…

10.03.2026 09:28 👍 7 🔁 4 💬 1 📌 0

Joplin ist sicher ne gute Alternative, aber funktionsmäßig hat Obsidian die Nase vorn. Allein schon mit dem Plugin-System, mit dem sich fast alles nachrüsten lässt. Und an Bases reichen Joplins Möglichkeiten meines Wissens nicht heran. Aber natürlich hängt das davon ab, was man damit machen will.

10.03.2026 09:50 👍 1 🔁 0 💬 1 📌 0
Preview
Raus aus der Cloud: Datenbanken und Notizen von Notion zu Obsidian umziehen Wer seine Notizen lieber lokal speichern möchte statt nur in der Cloud, ist mit Obsidian besser dran als mit Notion. Wir haben den Umzug ausprobiert.

#Obsidian hat den Cloud-Dienst #Notion bei mir sowohl beim Schreiben als auch beim Artikel planen abgelöst. Jetzt müssen nur noch die Daten aus der #Notion Cloud auf die Festplatte wandern. In diesem heise+-Artikel zeige ich, wie (gut) der Umzug läuft. #DIDit
www.heise.de/ratgeber/Rau...

09.03.2026 15:20 👍 3 🔁 1 💬 1 📌 0
Preview
CachyOS 2026.01: Performantes Arch Linux für PCs und Gaming im Test CachyOS ist ein reaktionsfreudiges Linux-System mit aktueller Software. Die Distribution ist leicht zu installieren, aber trotzdem eher was für Erfahrene.

Seit Oktober läuft auf meinem Gaming-PC #CachyOS (@cachyos.org) und gefällt mir immer besser, je länger ich es habe. Für @ct.de hab ich mir das aktuelle ISO-Image heruntergeladen. Spoiler: wird immer besser.

www.heise.de/tests/CachyO...

#ArchLinux #Linux #LinuxDistribution #LinuxGaming

25.02.2026 13:22 👍 0 🔁 1 💬 0 📌 0
Preview
Wissen schnell wiederfinden: Mächtige Suche und smarte Lesezeichen in Obsidian Die Notizverwaltung Obsidian macht das Sammeln von Wissen einfach. Dank mächtiger Suchfunktion und smarten Lesezeichen finden Sie schnell das Gesuchte wieder.

Was hilft eine #Knowledgbase, wenn man dann nix findet? Meine Wissensdatenbank liegt in #Obsidian, denn das Tool hat eine ausgefeilte Suche und smarte Lesezeichen. Das Wissen liegt schön verschlüsselt synchronisiert lokal auf meinen Geräten. #rausausdercloud

www.heise.de/ratgeber/Wis...

12.02.2026 12:43 👍 2 🔁 1 💬 0 📌 0
Preview
heise+ | Spiele, die mehr Aufmerksamkeit verdienen: Geheimtipps abseits des Mainstreams Immer wieder bleiben Indie-Games unbeachtet, die mit ungewöhnlichen Ideen aufwarten und Experimente wagen. Wir stellen die Geheimtipps des Jahres 2025 vor.

Immer wieder bleiben Indie-Games unbeachtet, die mit ungewöhnlichen Ideen aufwarten und Experimente wagen. Wir stellen die Geheimtipps des Jahres 2025 vor. #Spiele

21.01.2026 09:34 👍 5 🔁 2 💬 0 📌 0
Preview
Knallharte Gemütlichkeit: c’t zockt spielt das Cozy-Survival-Game Winter Burrow Winter im verschneiten Wald: Das Indie-Game Winter Burrow kombiniert liebevolle Geschichten und gemütliches Bauen mit forderndem Überleben in eisiger Kälte.

Draußen Schnee, drinnen ist es gemütlich: Das #CozySurvivalGame #WinterBurrow von @pinecreekgames.com bietet genau das. Dazu liebevolle Geschichten und herausfordernde Kälte. Mir gefallen die kleinen Details wie die Schuhe, die im Schnee knirschen.

www.heise.de/tests/Knallh...

18.12.2025 12:55 👍 9 🔁 1 💬 0 📌 0
Preview
Cosmic Epoch 1: Flexibler Linux-Desktop mit einfachem Tiling-Modus im Test Rust, Tiling-Modus & neue Apps: Mit Cosmic weht ein frischer Wind auf den Linux-Desktop. Die erste stabile Version lässt sich blitzschnell bedienen.

Der neue #CosmicDesktop von @system76.bsky.social kann sich sehen lassen. Ich hab ihn bei mir installiert und genauer draufgeschaut. Ob Tiling-Modus oder nicht: Die Oberfläche lässt sich super mit der Tastatur bedienen. Gefällt! #Linux

www.heise.de/tests/Cosmic...

18.12.2025 12:31 👍 3 🔁 0 💬 0 📌 0
Winter Burrow: Knallhart gemütliches Survival-Game | Linux/Proton
Winter Burrow: Knallhart gemütliches Survival-Game | Linux/Proton YouTube video by c't zockt

#CozySurvival bringt zwei Gegensätze zusammen: Knallharte Survival-Mechaniken mit Gemütlichkeit. #WinterBurrow von @pinecreekgames.com schafft diesen Spagat und ist mit seinem winterlichen Flair das ideale Spiel für die Feiertage.

youtu.be/-Keu4nCaltU

#linuxgaming #spiele

15.12.2025 15:36 👍 2 🔁 0 💬 0 📌 0
Preview
Webcams unter Linux optimal einstellen ohne Hersteller-Software Bildausschnitt, Helligkeit, Kontraste, Farben & mehr: Mit diesen Tools holen Sie unter Linux das beste Bild aus Ihrer Webcam.

Ich hatte zwar schon ein paar Webcam-Tools in den Fingern, richtig systematisch habe ich aber erst jetzt für @ct.de auf die #Webcam-Konfiguration unter #Linux geschaut. Und war positiv überrascht! Wer braucht schon Herstellersoftware mit überflüssigen Spielereien..

www.heise.de/ratgeber/Web...

11.12.2025 10:39 👍 4 🔁 0 💬 0 📌 0

Das gilt es zu verhindern!

10.12.2025 18:04 👍 0 🔁 0 💬 0 📌 0
Preview
Kollektiv statt Hierarchie: Ein deutsches Indie-Studio bricht mit Konventionen Das bayerische Indie-Game-Studio Active Fungus setzt auf Kooperation und Mitbestimmung. Wer hier arbeitet, hat mehr Mitsprache bei Entscheidungen und Finanzen.

Gute Arbeitsbedingungen, mehr Mitsprache bei Entscheidungen und Finanzen und das in der Spieleentwicklung: Das bayerische Indie-Game-Studio Active Fungus zeigt, wie es auch anders geht.

www.heise.de/hintergrund/...

#spiele #games #spieleentwicklung #InspectorSchmidt #TheEbbing

13.11.2025 10:55 👍 2 🔁 0 💬 0 📌 0
Preview
Outbound: Indie-Game bricht Wunschlisten-Rekorde und veröffentlicht neue Beta Ein gemütlicher Roadtrip mit dem Camper: Das Indie-Game Outbound bricht schon jetzt Rekorde und steht bei einer Million Menschen auf der Steam-Wunschliste.

Das Indie-Game #Outbound bricht schon jetzt Rekorde und steht bei einer Million Menschen auf der Steam-Wunschliste. Ich hab es unter #Linux und auf dem #SteamDeck ausprobiert. Bin gespannt auf die 1.0.

www.heise.de/news/Outboun...

#CozyGames #Spiele #SquareGladeGames #ctzockt

04.11.2025 12:36 👍 3 🔁 0 💬 0 📌 0
Post image

I have a very bad feeling about this...

27.10.2025 16:51 👍 54390 🔁 10208 💬 1854 📌 644
Preview
8 Dinge, die wirklich im deutschen Stadtbild stören "Aber wir haben natürlich immer im Stadtbild noch dieses Problem, und deswegen ist der Bundesinnenminister ja auch dabei, jetzt in sehr großem Umfang

8 Dinge, die wirklich im deutschen Stadtbild stören www.der-postillon.com/2025/10/ding...

16.10.2025 14:09 👍 364 🔁 82 💬 7 📌 1

Nach etlichen Jahren #Notion heute meine Artikelplanung endgültig auf #Obsidian umgestellt und sehr happy damit. Dank #Bases jetzt auch mit schöner Übersicht als Tabelle. Die Texte sind da ja sowieso schon drin, jetzt ist alles beisammen.

13.10.2025 16:00 👍 1 🔁 0 💬 0 📌 0
Preview
Raspberry Pi OS wechselt auf Debian-Trixie-Basis Das Betriebssystem Raspberry Pi OS basiert auf Debian. Jetzt wechselt auch das Einplatinen-Computer-Betriebssystem auf den Trixie-Stand.

Das Betriebssystem Raspberry Pi OS basiert auf Debian. Jetzt wechselt auch das Einplatinen-Computer-Betriebssystem auf den Trixie-Stand. #Raspberry Pi

06.10.2025 13:05 👍 12 🔁 4 💬 0 📌 0
Einstieg in CachyOS – Schnelles, einfach zu installierendes Arch-Linux-Derivat
Einstieg in CachyOS – Schnelles, einfach zu installierendes Arch-Linux-Derivat YouTube video by Rund um Linux

Hat eine Weile gedauert, bis das Video fertig war, aber so ein Umstieg auf eine neue #Linux-Distribution dauert ja auch ein bißchen. Statt Nobara läuft auf meinem Gaming-PC seit kurzem #CachyOS. Endlich wieder #ArchLinux basiert. Meinen Einstieg könnt Ihr hier nachverfolgen:

youtu.be/pZHVPADLpfg

28.09.2025 18:39 👍 11 🔁 4 💬 0 📌 0
Screenshot der LinkedIn-Einstellung zum Widerspruch gegen KI-Training mit den eigenen Daten und Inhalten.

Screenshot der LinkedIn-Einstellung zum Widerspruch gegen KI-Training mit den eigenen Daten und Inhalten.

Und weil es mir gerade auffiel: Auch auf #LinkedIn kann man der Verwendung seiner persönlichen Daten und Inhalte für KI-Training widersprechen. Und zwar hier:

www.linkedin.com/mypreference...

#ki #datenschutz #privacy

23.09.2025 08:07 👍 1 🔁 1 💬 0 📌 0
Preview
Spielen mit Linux: SteamOS für den Desktop-Gaming-PC ausprobiert Seit SteamOS mehr Hardware unterstützt, lässt sich Valves Linux-Distribution prinzipiell auf normalen PCs und Notebooks nutzen. Aber ist das sinnvoll?

Als Valve ein ISO-Image von #SteamOS veröffentlicht hat, haben mich einige gefragt, ob das denn auch für ihren Gaming-PC taugt. Deshalb hab ich es jetzt auf einem Bauvorschlag von @ct.de ausprobiert:

www.heise.de/ratgeber/Spi...

#Linux #LinuxGaming #Spiele #SteamOS

23.09.2025 08:04 👍 5 🔁 2 💬 0 📌 0
Outbound: Mit dem Camper durch die Natur | Linux/Proton
Outbound: Mit dem Camper durch die Natur | Linux/Proton YouTube video by c't zockt

Ein schönes, gemütliches #Spiel, das ich mir direkt auf die Wishlist gesetzt habe: #Outbound. Kommt im ersten Halbjahr 2026 und die Vorabversion von der Gamescom läuft auch schon unter Linux. Hier ein kurzes #ctzockt Video zum Überblick:
youtu.be/PGWmssBfEoE

#indiegames

07.09.2025 12:18 👍 8 🔁 5 💬 0 📌 0
Weg von Steam: Spielen ohne DRM, Tracking, Client- & Online-Zwang
Weg von Steam: Spielen ohne DRM, Tracking, Client- & Online-Zwang YouTube video by heise & c't

Spiele wirklich besitzen: #Steam ist schön und gut, aber wer seine Spiele ohne Tracking, Client- und Online-Zwang spielen will, ist mit diesen Alternativen besser bedient. #spiele #games #gaming

youtu.be/LLn0fEyTVw4

24.06.2025 16:03 👍 4 🔁 1 💬 0 📌 0
Preview
Tested: Nvidia’s GeForce Now just breathed new life into my Steam Deck There’s a native app for SteamOS now, and it’s pretty great.

Nvidia has released a GeForce Now app for the Steam Deck. It has breathed new life into the Steam Deck, says @seanhollister.bsky.social www.theverge.com/pc-gaming/67...

29.05.2025 13:35 👍 123 🔁 10 💬 6 📌 2
Preview
Neuere Software für Manjaro Linux < Rund um Linux Mit dem Wechsel zum Testing-Branch erhält Manjaro Linux deutlich schneller aktuelle Software-Versionen. Das ist in wenigen Schritten erledigt.

Jetzt hab ich es nochmal aufgeschrieben. Dabei ist mir auch wieder eingefallen, von wem ich die Idee, zu #Manjaro Testing zu wechseln eigentlich hatte. Danke nochmal an @romangg.bsky.social !

rundumlinux.de/neuere-softw...

#linux

29.05.2025 14:24 👍 3 🔁 0 💬 0 📌 0
Manjaro Linux noch aktueller: Zum Testing-Branch wechseln
Manjaro Linux noch aktueller: Zum Testing-Branch wechseln YouTube video by Rund um Linux

Manjaro ist ja recht aktuell, aber bei Software wie #OBS Studio und #Kdenlive kommen mir Updates trotzdem manchmal zu spät. Mit dem Wechsel auf #Testing hat das ein Ende. Jetzt hab ich auch das #Manjaro auf dem Gaming-PC auf den Testing-Branch umgestellt.

youtu.be/bqsFUYdediA

#linux #manjarolinux

28.05.2025 10:19 👍 3 🔁 0 💬 0 📌 0
Preview
Weg von Steam: Spiele wirklich besitzen, offline spielen und installieren Wer gekaufte Spiele wirklich besitzen will, ist bei Steam & Co. falsch. Doch es gibt Alternativen ganz ohne Kopierschutz, Client- und Onlinezwang.

Spielen mit #Steam ist bequem, auch unter #Linux. Aber ich muss sagen: GOG.com ist viel sympathischer. Was ich da kaufe, gehört einfach mir. Kein DRM, kein Online- und Client-Zwang, keine Datenerhebungen, wenn ich das nicht will.

www.heise.de/ratgeber/Weg...

#Gog #Itch.io #Spiele

14.05.2025 13:56 👍 3 🔁 0 💬 0 📌 1
Preview
Kdenlive kann mit lokaler KI Objekte in Videos freistellen Der Videoeditor Kdenlive kann in seiner neuen Version 25.04 erstmals Objekte in Videos freistellen. Weitere Neuerungen verbessern unter anderem den Workflow.

Ich schneide ja inzwischen meine Videos meist mit Davinci Resolve, doch die neue #Kdenlive-Version macht Laune. Objekte freistellen mit lokaler KI, das ist doch mal was.
#Videoschnitt #videoediting #linux #OpenTimelineIO

www.heise.de/news/Kdenliv...

07.05.2025 16:40 👍 2 🔁 0 💬 1 📌 0
Preview
Festplattenplatz anzeigen mit duf < Rund um Linux Wenn ich unter Linux wissen will, wieviel Platz auf einer Partition, Festplatte oder SSD noch übrig ist, frage ich oft grafische Tools wie Baobab oder

Einfach mal schnell den verbleibenden Platz auf Festplatte oder SSD anzeigen: geht super mit duf von @fribbledom@mastodon.social

rundumlinux.de/festplattenp...

#linux #commandline #software #duf

22.04.2025 09:26 👍 7 🔁 1 💬 0 📌 0
Mehr rausholen aus Notion mit Diagrammen, Automatisierung & Co.
Mehr rausholen aus Notion mit Diagrammen, Automatisierung & Co. YouTube video by heise & c't

Notion kann ja sehr viel mehr als nur Notizen: Hier stelle ich fünf fortgeschrittene Funktionen im Video vor. Mit Diagrammen, Formeln, Automatisierungen, Buttons und KI kann #Notion Arbeit abnehmen und auf Dashboards Fortschrittsbalken zeigen.

youtu.be/c48tKuB7CwI?...

#produktivität #productivity

16.04.2025 13:58 👍 5 🔁 0 💬 0 📌 0
Preview
Forderndes Puzzle-Roguelike: c’t zockt spielt Uncle Chop's Rocket Shop Kleine Reparaturen und komplette Schrotthaufen: In diesem Raumschiff-Werkstatt-Simulator drängt die Zeit. c't zockt hat das humorvolle Indie-Game angespielt.

Raumschiffe reparieren ist doch lustiger als gedacht, vor allem wegen der schrägen Figuren. Leider hab ich von der Story noch nicht viel gesehen, weil ich immer wieder platt gemacht werde. Aber meine restlichen Eindrücke zu #UncleChopsRocketShop lest ihr hier:

www.heise.de/tests/Forder...

14.04.2025 08:25 👍 4 🔁 0 💬 0 📌 0