965 private links
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).
Troubleshoot and Make Sad Servers Happy!
"Like LeetCode for Linux"
Capture The Flag challenges.
Practice for your next SRE/DevOps interview.
Train and prove your debugging skills.
Get a full remote Linux server with a problem and fix it!
In this blog post, we will show you 16 IP command Examples in Linux. IP command is used to configure networking and routing on linux.
L'usage des codes QR (traduction de QR Codes) s'étant démocratisé, j'ai eu besoin d'outils pour encoder et décoder des codes QR. Je vous présente les outils que j'utilise pour manipuler les code QR ainsi que les quelques cas d'utilisation courante de code QR.
If you want to run or update a task when certain files are updated, the
make
utility can come in handy. Themake
utility requires a file,Makefile
(ormakefile
), which defines set of tasks to be executed. You may have usedmake
to compile a program from source code. Most open source projects usemake
to compile a final executable binary, which can then be installed usingmake install
.In this article, we'll explore
make
andMakefile
using basic and advanced examples. Before you start, ensure thatmake
is installed in your system.