home.social

#linuxtricks — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #linuxtricks, aggregated by home.social.

  1. Want a harmless Linux trick? Here's how to enable the 'Activate Linux' watermark on your desktop.

    Read more details here: ostechnix.com/activate-linux/

    #ActivateLinux #Fun #Linux #Linuxtricks

  2. Want a harmless Linux trick? Here's how to enable the 'Activate Linux' watermark on your desktop.

    Read more details here: ostechnix.com/activate-linux/

    #ActivateLinux #Fun #Linux #Linuxtricks

  3. Want a harmless Linux trick? Here's how to enable the 'Activate Linux' watermark on your desktop.

    Read more details here: ostechnix.com/activate-linux/

    #ActivateLinux #Fun #Linux #Linuxtricks

  4. Want a harmless Linux trick? Here's how to enable the 'Activate Linux' watermark on your desktop.

    Read more details here: ostechnix.com/activate-linux/

    #ActivateLinux #Fun #Linux #Linuxtricks

  5. Want a harmless Linux trick? Here's how to enable the 'Activate Linux' watermark on your desktop.

    Read more details here: ostechnix.com/activate-linux/

    #ActivateLinux #Fun #Linux #Linuxtricks

  6. #LTMLinuxTips - Day 4

    Need a quick history recall? Use: history | tail

    Start typing—press it again to cycle!

    #LinuxTricks #CLI #Linux #OpenSource

  7. #LTMLinuxTips - Day 4

    Need a quick history recall? Use: history | tail

    Start typing—press it again to cycle!

    #LinuxTricks #CLI #Linux #OpenSource

  8. #LTMLinuxTips - Day 4

    Need a quick history recall? Use: history | tail

    Start typing—press it again to cycle!

    #LinuxTricks #CLI #Linux #OpenSource

  9. 🐧 #LTMLinuxTips - Day 3

    Forget to use sudo? Don't retype everything: sudo !!

    It reruns your last command as root. Saved me more times than I can count!

    #LinuxTips #LinuxTricks #CLI #OpenSource #Linux

  10. 🐧 #LTMLinuxTips - Day 2

    Want to quickly find out what distro you're using?

    Run: cat /etc/os-release

    This gives you detailed info like distro name, version, and more.

    #Linux #LinuxTips #OpenSource #CommandLine #LinuxTricks

  11. "Linux-Nerds aufgepasst! Heute zeige ich euch, wie ihr mithilfe von 'grep' und 'sed' effizient Textdateien analysieren und bearbeiten könnt. 🔍💻 Mit dem Befehl 'grep -r' könnt ihr bestimmte Muster in Dateien rekursiv suchen, während 'sed -i' euch ermöglicht, Textänderungen inline vorzunehmen. Das spart Zeit und Nerven! Probiert es aus und erlebt die Magie der Kommandozeile! ✨🐧 #LinuxTricks #OpenSourceLove"

  12. "Beim Verbinden mit einem entfernten Linux-Server über SSH könnt ihr die -X-Option verwenden, um eine grafische Benutzeroberfläche (GUI) von Anwendungen auf eurem lokalen Computer anzeigen zu lassen. Einfach 'ssh -X benutzername@server-ip' eingeben und die Freiheit einer GUI auf der Linux-Kommandozeile erleben! 🐧💻 #LinuxTricks"

  13. If you spend any amount of time on the command line and often need to read #Markdown .md files, for longer documents, wouldn't it be nice to see them formatted, and use the links?

    You absolutely can using two utilities you probably already have on your system: #pandoc and #lynx.

    I've added a function to my .bashrc to use it:

    md() { pandoc $1 | lynx --stdin }

    Usage:
    md README.md

    Of course, you can name the function anything you wish.

    #linux #linuxTricks #shell #markdown

  14. Bei der Verwendung von #Linux-Befehlen ist das Setzen von Aliasen äußerst nützlich. Mit 'alias' kannst du komplexe Befehle oder oft verwendete Befehlskombinationen als Abkürzung festlegen. Zum Beispiel 'alias ll='ls -lh', spart Zeit und vieles mehr! 💡✨#OpenSource #LinuxTricks

  15. Der Befehl 'find' ist ein vielseitiges Werkzeug in Linux, um Dateien anhand von Kriterien zu suchen. Zum Finden von Dateien, die größer als 100MB sind, verwende 'find /pfad -size +100M'. Mit 'find /pfad -name *.txt' kannst du alle .txt-Dateien finden. #LinuxTricks #Commandline

  16. Attempting to run Windows 10 software in Linux WINE on a machine originally only able to run Windows XP, LOL. #linuxtricks

  17. 🏵️ How much memory does my program use?

    ▶️ a frequent question on Stackoverflow

    ▶️ People usually try to use top, atop,ps. But sometimes it's a little bit confusing

    💎 Read this post by @brk0v - It shows modern Linux memory tools

    biriukov.dev/docs/page-cache/7

    #linux #linuxtips #linuxtricks #sysadmins. #sysadmin #networking #netadmin #devops #softwareengineering

  18. File permissions in Linux/Unix explained:

    ▶️ What is the meaning of the permission value how it is calculated

    ▶️ Octal representation of file permissions

    vk9-sec.com/file-permissions-i

    Image credit:@alexxubyte

    #linux #unix #linuxtips #linuxtricks

  19. 🐧 #LTMLinuxTips - Day 3

    Forget to use sudo? Don't retype everything: sudo !!

    It reruns your last command as root. Saved me more times than I can count!

    #LinuxTips #LinuxTricks #CLI #OpenSource #Linux

  20. 🐧 #LTMLinuxTips - Day 3

    Forget to use sudo? Don't retype everything: sudo !!

    It reruns your last command as root. Saved me more times than I can count!

    #LinuxTips #LinuxTricks #CLI #OpenSource #Linux

  21. 🐧 #LTMLinuxTips - Day 2

    Want to quickly find out what distro you're using?

    Run: cat /etc/os-release

    This gives you detailed info like distro name, version, and more.

    #Linux #LinuxTips #OpenSource #CommandLine #LinuxTricks

  22. 🐧 #LTMLinuxTips - Day 2

    Want to quickly find out what distro you're using?

    Run: cat /etc/os-release

    This gives you detailed info like distro name, version, and more.

    #Linux #LinuxTips #OpenSource #CommandLine #LinuxTricks

  23. "🐧💻 Linux-Tipp: Mit dem Befehl 'grep -r "Suchbegriff" Pfad/' kannst du einen bestimmten Suchbegriff rekursiv in Dateien im angegebenen Pfad suchen. So findest du mühelos relevante Informationen in deinem gesamten Dateisystem. 🧐 #LinuxTricks #OpenSource"