936 private links
Lynis is a battle-tested security tool for systems running Linux, macOS, or Unix-based operating system. It performs an extensive health scan of your systems to support system hardening and compliance testing. The project is open source software with the GPL license and available since 2007.
In this blog we are going to learn the format of systemd timers and their onCalendar field. You can find what systemd timers are and why they are a better alternative to cron over here
System maintainance (and software maintainance in general) is an ongoing process that requires attention and responsibility.
So in this blog post I will summarize the key actions we can take in order to keep our arch linux installation healthy, optmized and fully working.
BTW, If you are NOT using Arch yet, I have a guide explaining how to install it from scracth and also a tiny wiki with information about daily tasks, process and guides.
Scrape at scale
Handle resource-intensive web scraping Minimal CPU and memory footprint
Build AI agents
Empower AI agents with web capabilities Instant startup and fully embeddable
Automate any website
Transform any website into a programmatic interface JavaScript execution and web APIs
Les gens supposent souvent que tout développeur doit savoir comment déployer une application sur un serveur distant. En réalité, beaucoup ne sont pas à l’aise avec la mise en production d’un site web.
Dans cet article, nous allons déployer une application AdonisJS sur un serveur de type VPS tournant sur Ubuntu 24.04. Il faut savoir que la démarche sera identique, peu importe le framework que vous utilisez.
sudo (abréviation de substitute user do) est une commande permettant à l'administrateur système d'accorder à certains utilisateurs (ou groupes d'utilisateurs) la possibilité de lancer une commande en tant qu'administrateur.
Check what a command does, share a command with an automatic detailed explanation.
The process is pretty much the same as regular Arch install. You just choose a few additional settings. Let me show the steps in details.
- Introduction to SSH
- How SSH Works: A Behind-the-Scenes Look
- Setting Up SSH on a Server
- Establishing Your First SSH Connection
- Securing Your SSH Connection
- Advanced SSH Configuration Options
- SSH Tunneling and Port Forwarding
- Automating SSH Connections and Tasks
- Using SSH with Other Protocols
- Troubleshooting SSH Issues
- Performance Optimization for SSH
- Best Practices for SSH Key Management
- SSH for Remote System Administration
- SSH Alternatives and Comparisons
- Conclusion
Dans la mesure où tu as installé les pilotes génériques lors du déploiement de ta distro, Linux se contrefout du matériel sur lequel il tourne et c’est probablement pour ça qu’il existe depuis plus longtemps des LiveCD pour utiliser les distros Linux que des WinPe.
Test your shell knowledge by taking the CMD Challenge https://cmdchallenge.com
Linux Survival is a free tutorial designed to make it as easy as possible to learn Linux. Even though Linux has hundreds of commands, there are only about a dozen you need to know to perform most basic tasks.
An SSL certificate (Secure Sockets Layer certificate) is a digital certificate used to establish a secure, encrypted connection between a web server and a web browser. It ensures that data transferred between the two parties is secure and can't be intercepted by attackers.
Imagine this situation. You have attached an external USB or SSD to your system and using it as an additional storage media. This is a common use case specially if you have set up a media server on Raspberry Pi or any Linux system.
On Linux, you normally have to click on the mount option in the file explorer or use the mount command to start using the external drive.
This is an inconvenience and it could also be problematic in situations where you require the disk to be mounted like internal disks when the system starts. Imagine the media server not showing any media because the media was stored on an external disk and it was not mounted.
As Windows users migrate over to a Linux system, one of the first questions that arises is “what is the ipconfig Linux equivalent command?” Much like Microsoft Windows, any Linux system can output all manner of information regarding the IP address and interface configuration via the command line. In this tutorial, you will learn how to use the
ip
command, which is like the Linux version of the Windows ipconfig command.From time to time, you may also see references to the
ifconfig
Linux command. Keep in mind that this command has been deprecated and replaced by theip
Linux command, which you will learn all about below. Let’s get started!
I love shortcuts, keybindings, and everything making me faster on a computer.
Even on my phone, gestures are helping me to get some apps.
That addiction I have to make small scripts, aliases, & co, made me think it would be nice to share some of them, get inspiration from others, and, eventually, improve them.
Les outils de réseau contenant notamment la commande ifconfig, netstat, route et arp sont dépréciés.
Il est conseillé d'utiliser maintenant la commande ip qui fait tout et qui est universelle sur toutes les distributions Linux.Cet article va présenter les options possibles de la commande ip.
J'utiliserai le nom d'interface enp24s0 pour illustrer les commandes qui auront besoin d'une interface spécifique.
Dans cet article, nous allons découvrir le site GTFOBins, une base de connaissance qui référence de nombreux binaires légitimes pouvant être associés à des erreurs de configuration qui permettent de contourner les stratégies locales de sécurité sur un système Linux.
SUID, configuration sudo ou encore capabilities, la configuration d’un système Linux regorge de fonctionnalités à double tranchant. Celles-ci peuvent être des mesures de sécurité permettant d’accorder des droits privilégiés de manière limitée à un utilisateur, mais aussi des portes d’entrée ou vecteur de compromission lorsqu’elles sont mal configurées.
Dans ce tutoriel, nous allons apprendre à créer et à manipuler un tableau dans un script Bash. Nous verrons les bases des tableaux en Bash : comment initialiser un tableau, comment ajouter des éléments à ce tableau, mais aussi comment parcourir un tableau avec une boucle For.
Dans les différents langages, les tableaux sont très pratiques pour stocker plusieurs valeurs sous un même nom. Donc, nous pouvons en quelque sorte créer des listes de valeurs. Il y a différents types de tableaux en Bash, notamment des tableaux simples où chaque valeur est associée à un numéro d'index, et des tableaux associatifs où il y a des paires de données (association clé / valeur, où la clé est le texte de votre choix).