901 private links
1. IP command
2. traceroute
3. tracepath
4. ping
5. ss
6. dig
7. host
8. hostname
9. curl
10. mtr
11. whois
12. ifplugstatus
13. iftop
14. tcpdump
15. ethtool
16. nmcli
17. nmap
18. bmon
19. firewalld
20. iperf
21. speedtest-cli
22. vnstat
#!/bin/bash
#print the list of all text files
ls *.txt
#Iterate the loop to read all text files
for value in `ls *.txt`;
do
#Read the basename of the file
filename=`basename $value .txt`
#Rename all files to doc files
mv $value $filename.doc;
done
#Print all doc files
ls *.doc
Let me share the best resource to learn Linux for free. This is a collection of Linux PDFs that you can download for free to learn Linux.
BorgBackup (Borg) est un programme de sauvegarde par déduplication. Il supporte la compression et le chiffrement.
Borg permet de fournir un moyen efficace et sûr de sauvegarder des données. La technique de déduplication des données rend Borg approprié pour les sauvegardes quotidiennes puisque seules les modifications sont stockées. La technique de chiffrement est adaptée aux sauvegardes vers des destinations qui ne sont pas totalement fiables.
The .bashrc is a standard file located in your Linux home directory.
In this article I will show you useful .bashrc options, aliases, functions, and more.
In this cheat sheet tutorial I have consolidated a list of Linux commands with examples and man page link to give you an overview on Linux day to day usage. We know Linux is one of the preferred choice for most of the IT domains so having basic knowledge of Linux is mandatory for everyone. I have divided the Linux commands into different section so you can choose to only concentrate on the commands which suits your domain.
The
rel
attribute defines a relationship between the linked resources (one being the document it appears on). And it provides that relationship with meaning, creating a semantic network where the different pieces have a role and a purpose. This detail may go unnoticed by most browser users, but not for the browser itself, assistive technologies, and web crawlers, which can take advantage of this attribute to provide a better experience. Also, savvy web developers can use it to make friendlier sites–we’ll see some examples in the following sections.
You probably use prefers-color-scheme a lot within your CSS media queries, to make a dark or light theme for your sites and apps based on user preference. Maybe you also add a toggle so people can choose their color scheme, irrespective of their OS settings. Beautiful. But now there's more to play with!
Adding an image with HTML is pretty easy, it’s just a simple tag, after all, right?
<img src="path/to/image.jpg" />
But when you start taking into consideration topics such as performance, screen sizes, accessibility, pixel density, or user preferences, you might ask yourself at some point if plain HTML is enough for the task… And the answer is yes! HTML has many options and is powerful enough to handle this task. This article will cover what you should consider at the moment of adding an image to a site with HTML.
240 règles pour améliorer vos sites et mieux prendre en compte vos utilisateurs
#qualitéweb #accessibilité #sécurité #performance #privacy #écoconception
:set paste
nmcli dev status
nmcli radio wifi
nmcli radio wifi on
nmcli dev wifi list
sudo nmcli dev wifi connect network-ssid password "network-password"
sudo nmcli --ask dev wifi connect network-ssid
nmcli con show
nmcli con down ssid/uuid
nmcli con up ssid/uuid
PHP 8 Enable
sudo a2dismod php7.4
sudo a2enmod php8.0
sudo service apache2 restart
launchctl load -w /System/Library/LaunchDaemons/com.apple.atrun.plist
Exemple avec la commande at
 :
at -f test.sh 22:15
From this article you’ll learn how to measure an input/output performance of a file system on such devices as HDD, SSD, USB Flash Drive etc.
TL;DR:
grub-install --efi-directory=/boot/efi --target=x86_64-efi --uefi-secure-boot
update-grub
Vous trouverez sur cette page une série de petites BDs à usage pédagogique ayant pour but d'expliquer l'univers du numérique Libre aux (grands) enfants.
- Dis ... c'est quoi un Ordinateur ?
- Dis ... c'est quoi un Disque Dur ?
- Dis ... c'est quoi un Périphérique ?
- Dis ... c'est quoi les Logiciels Libres ?
- Dis ... c'est quoi GNU/Linux ?
- Dis ... c'est quoi une Distribution ?
- Dis ... c'est quoi Debian ?
- Dis ... c'est quoi le Web ?
- Dis ... c'est quoi un Forum d'entraide ?
- Dis ... c'est quoi un Moteur de Recherche ?
- Dis ... c'est quoi un RĂ©seau Social ?
- Dis ... c'est quoi les GAFAM ?
- Dis ... c'est quoi le HTML ?
- Dis ... c'est quoi un Script ?
- Dis ... c'est quoi un IDE ?
- Dis ... c'est quoi un Mail ?
- Dis ... c'est quoi le Cloud ?
- Dis ... c'est quoi un Fork ?
- Dis ... c'est quoi un Raccourci Clavier ?
- Dis ... c'est quoi un Traitement de Texte ?
- Dis ... c'est quoi un Virus Informatique ?
Cet article décrit la mise en place d’une connexion SSH sans mot de passe, à l’aide d’une paire de clés. Si l’on se connecte quotidiennement à une machine distante, la connexion SSH sans mot de passe évite d’avoir à saisir le mot de passe à chaque fois.
Qu’est ce qu’on m’interdit?
Pour connaître exactement les restrictions qui sont appliquées à mon document pdf :
qpdf --show-encryption in.pdf
Comment je fais sauter ces restrictions?
Pour supprimer les restrictions du pdf :
qpdf --decrypt in.pdf out.pdf
C’est pas plus compliqué que ça ! 🙂
In this guide, we'll go through the hot topics of FFmpeg. But before that, we'll cover some base ground to help you understand basic media concepts and FFmpeg. Feel free to skip the parts that are already trivial for you!