16633 shaares
930 results
tagged
linux
Rappel.
Pour la migration. Avec aussi : https://discourse.mailinabox.email/t/migrating-from-one-ip-and-server-to-a-new-one/280/8
Afficher les jeux Steam d'un compte qui sont compatibles Linux.
Avec aussi : https://lgc.lysioneer.nl/steamuser/liandriz/played
Via https://www.gameskinny.com/0w6sq/moving-to-linux-two-tools-to-test-your-steam-library-for-linux-compatibility
Alpine, c'est juste trop bon.
#!/bin/bash
##déclaration des variables
source=/home/fred/Documents/
dest=/run/media/fred/500GO/sauvegarde/
##création du répertoire de destination
mkdir -p "$dest"
##recherche des fichiers de type fichiers dans le répertoire source et j'écris ces infos dans un fichiers texte
find "$source" -type f > "$source"fichier.txt
##boucle qui va lire ligne par ligne mon fichier texte tout en créant les répertoires de destinations par extensions et les déplacent automatiquement
while read -r ligne
do
mkdir -p "$dest""${ligne##*.}"
mv "$ligne" "$dest""${ligne##*.}"/
done < "$source"fichier.txt
##une fois tous les fichiers déplacés, suppression des répertoires source
rm -rf "$source"/recup_dir.*
Tout plein de docs & tutos pour OMV.
The command line tool for quick, simple deployment and management of Linux dedicated game servers.
This handcrafted guide exists to provide both novice and expert Windows and Linux developers a best practice handbook to the installation, configuration, and usage of WSL (Bash on Ubuntu on Windows) on a daily basis.