DL : https://cresstone.com/apps/linkMaker/#appInfo
INFO:
Linkmaker is a free program for Microsoft's Windows operating system to create shortcut, symbolic links and NTFS hard links / junction points.
While most Windows users know what shortcuts are, as they are exposed to shortcuts regularly on the desktop, on the taskbar or the Start Menu, symbolic links, hardlinks and junctions are not as commonly known.
Symbolic links link to another path on the device that the operating system or applications that run on it follow. Hard links on the other hand can best be described as referencing a file using different names under different paths. Junctions finally (called soft links sometimes) works in the same way, but for directories.
Check out Jack's take on getting to know links on Linux if you run a Linux distribution.
download windows ISO
Boua... j'aime internet. Des fois on découvre des trucs tout simples qui font gagner du temps:
sudo apt install pigz pbzip2
pigz est la version multi-coeurs de gzip.
pbzip2 est la version multi-coeurs de bzip2.
Autrement dit:
Enfin votre CPU exploité à sa pleine puissance.
Vous pouvez tranquillement ajouter à votre .bashrc:
alias gzip="pigz"
alias bzip2="pbzip2"
<3
Et sinon si vous voulez de meilleurs taux de compression, prenez lzip, ou plutôt sa version parallélisée: plzip (lzip/plzip utilisent l'algo de compression LZMA, le même que 7zip.)
Et vous pouvez aussi remplacer xz par pxz :-)
Testez les vitesses de compression:
time tar -c directory/ | gzip -c > test-gzip.tar.gz
time tar -c directory/ | pigz -c > test-pigz.tar.gz
time tar -c directory/ | bzip2 -c > test-bzip2.tar.bz2
time tar -c directory/ | pbzip2 -c > test-pbzip2.tar.bz2
time tar -c directory/ | lzip -c > test-lzip.tar.lzip
time tar -c directory/ | plzip -c > test-plzip.tar.lzip