#LTMLinuxTips

Need a quick history recall? Use: history | tail

Start typing—press it again to cycle!

#LinuxTricks #CLI #Linux #OpenSource

🐧 #LTMLinuxTips

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

🐧 #LTMLinuxTips

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

With LD_PRELOAD, you can override functions in shared libraries before any program even starts. Want to intercept malloc, block file access, or spoof system calls without touching source code? This is how you do it. It’s an advanced but incredibly powerful debugging and hacking tool. One that developers and exploit authors alike keep close. You can use it to mock dependencies during testing, inject logging for hard-to-trace bugs, or even subvert DRM and monitoring software. It’s not just a trick, it’s a backdoor into the behavior of nearly any dynamic binary.

#LinuxTricks #LD_PRELOAD #SharedLibraryHacks #DebuggingTools

Péripéties Youtube, Financement Linuxtricks, le point

Bonjour à tous, J'ai le plaisir de vous annoncer que nous sommes de retour sur Youtube... 13 jours après la publication de la dernière vidéo (14 mai). Relativisons un peu... Alors avant toute chose, nous sommes...

Linuxtricks.fr
Quand je vois ce qui est arrivé à Adrien #Linuxtricks, je repense à la description de ma chaîne #PeerTube : https://peertube-blablalinux.be/
PeerTube Blabla Linux 🇧🇪♻️💻🐧🇫🇷

Service de vidéos PeerTube de Blabla Linux.

LETTRE OUVERTE A YOUTUBE FRANCE

Bonjour à tous, cet article de blogue est en fait une LETTRE OUVERTE à YOUTUBE FRANCE ! Je souhaite ici m'exprimer à propos d'une vidéo publiée le vendredi 17 mai 2024, intitulée VMware Workstation Pro maintenant gratuit pour...

Linuxtricks.fr
How to Shrink Long or Multiple Commands into a Single Short Command

In Linux, multiple long commands can be easily replaced with a single short command using the alias command.

Linux TLDR

Adrien #Linuxtricks - #Ubuntu 23.10 : Réactiver la possiblité d'installer des #DEB manuellement !

https://youtu.be/W-eT5AwZTww

#Gdebi

Ubuntu 23.10 : Réactiver la possiblité d'installer des DEB manuellement !

YouTube

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