home.social

Search

15 results for “linuxtechnik”

  1. Update ist raus! ^^

    Linuxtechnik in neu! Ich habe die Seite komplett neu überarbeitet und Features hinzugefügt. Die Suche ist nun clean, das Seitendesign frisch und ansprechend und das Layout sinnvoll. Zudem sind oben rechts Weblinks.

    🔥NEUE FEATURES:
    - Darkmode
    - "Über mich"-Seite entfernt und gegen persönliche Seite getauscht
    - Cleane Suche
    - Schöne Aufmachung für Beiträge

    Jetzt besuchen!

  2. Guten Morgen! ☕

    Kleines Reminder für alle, die noch proprietäre Software nutzen: Irgendwo da draußen schreibt gerade jemand die Open-Source-Alternative dazu – vermutlich in einem Café, mit zu wenig Schlaf und zu viel Koffein.

    Und in 3 Jahren werdet ihr nicht mehr ohne sie leben wollen. 🛠️

    #OpenSource #FOSS #Linux #Technik #GoodMorning

  3. Guten Morgen! ☕

    Wusstet ihr, dass `curl` dieses Jahr 26 wird? Das Tool läuft auf Kühlschränken, Raumsonden und vermutlich auch auf dem Server, den ihr gerade vergesst zu patchen. 🛸

    Daniel Stenberg pflegt es quasi im Alleingang – und beantwortet noch dazu jeden Bug-Report persönlich. Wahre Helden tragen keine Umhänge, sondern tippen Changelogs. 🦸

    #OpenSource #curl #Linux #Technik

  4. "What happens when a tech youtuber [] builds his own centre with a 14 court hall?" 🏸
    Video from the UK's (sadly newly retired) top mixed doubles pair.
    youtube.com/watch?v=CiopS9IQOJ0

  5. Wow! I’ve been following @emilyyoung for years, and I’ve learned more about her in 20 minutes than the many hours I’ve spent watching her on #LinuxTechTips.

    Perception is a wild thing: both of yourself and others.

    RE: https://tech.lgbt/users/emilyyoung/statuses/113908238292705769

  6. E Ink monitors present an interesting value proposition for folks looking for a paper-like reading environment... as long as you don't are about super-slow screen refresh rates, ghosting, and limited colors. Here's a Dasung Paperlike 253 U first look video. buff.ly/3ZCrUpm

  7. Ok I have to admit there are probably tons of tech "shows" or video magazines on the internet and one might argue about the good, the bad and the ugly. Not sure why but I sometimes watch "Linus Tech Tips".

    I stumbled across a "behind the scene" video with iJustine which absolutely blew my mind to see what he has at his disposal. Absolutely sick and I am nerding out right now with split feelings about this.

    In case you're interested, watch.

    invidio.us/watch?v=pIs77g86WhA

    #Tech #LinuxTechTips

  8. 💡 Calculate the number of days since a given date (e.g. 30 June 2025) on a Linux system:

    echo $(( ( $(date +%s) - $(date -d "2025-06-30" +%s) ) / 86400 ))

    @opensuse @fedora @debian #ZikTIPs #Linuxtips #LinuxTechTips #Linux #FOSS #Opensource

  9. The solution that worked:
    "security.pam.services.doas = {
    u2fAuth = true;
    }"
    Adding this into your configuration file will ensure that doas uses u2f authentication... I'm dumb :neocat_cry_loud:

    #NixOS #linux #LinuxTechTips #U2F #security #yubikey

  10. The solution that worked:
    "security.pam.services.doas = {
    u2fAuth = true;
    }"
    Adding this into your configuration file will ensure that doas uses u2f authentication... I'm dumb :neocat_cry_loud:

    #NixOS #linux #LinuxTechTips #U2F #security #yubikey

  11. 💡Use iperf3 to measure the network throughput between two Linux nodes effortlessly as follows: @fedora @opensuse

    On server: iperf3 -s

    On client: iperf3 -c <SERVER_IP>

    #ZikTIPS #Linuxtips $Networking #LinuxTechTips #Linux #Opensource

  12. 💡 Use the following Linux command to create a file with a specific access and modification timestamp @fedora @opensuse @archlinux

    touch -t [FILE]

    e.g. For a file named mytalk.txt March 10, 2025 at 9AM:

    touch -t 202503100900 mytalk.txt

    To verify:
    stat -c "%x%y" mytalk.txt.

    #ZikTIPs #Linuxtips #LinuxTechTips #Linux #Opensource

  13. Nothing humbles you quite like installing an Arctic Liquid Freezer III on an MSI MEG Godlike. The clearance between that massive pump and the VRM heatsinks is measured in micrometers.
    Also, friendly reminder to anyone using contact frames: ditch the microfiber cloths under the motherboard. Static discharge near the socket SMD capacitors is a silent killer. Use the factory anti-static foam pad.

    What’s the most stressful cooler installation you’ve ever survived?

    #Hardware #PCBuild #SysAdmin #RationalTech #Intel #LinuxTechTips

  14. The solution that worked:
    "security.pam.services.doas = {
    u2fAuth = true;
    }"
    Adding this into your configuration file will ensure that doas uses u2f authentication... I'm dumb :neocat_cry_loud:

    #NixOS #linux #LinuxTechTips #U2F #security #yubikey

  15. 💡 Record audio from a microphone on a Linux system using gstreamer @gstreamer @fedora @opensuse @archlinux

    gst-launch-1.0 alsasrc ! audioconvert ! lamemp3enc ! filesink location=recorded.mp3

    #ZikTIPs #pipewire #pulseaudio #techtips #Linuxtips #LinuxTechTips #Linux #Opensource