New pages
From hugovil.com
Jump to navigationJump to search
2 April 2026
- 19:5419:54, 2 April 2026 Serveur Linux (hist | edit) [227 bytes] Hugo (talk | contribs) (Created page with "Wordpress MySQL")
- 19:5119:51, 2 April 2026 Configuration Linux (hist | edit) [2,903 bytes] Hugo (talk | contribs) (Created page with "=Syntax highlighting MediaWiki= Ajouter à la fin de /etc/mediawiki/LocalSettings.php: <source lang=ini> wfLoadExtension('SyntaxHighlight_GeSHi'); </source> =RTC= Pour que Linux ajuste automatiquement son horloge selon le RTC au démarrage, il faut: Ne pas sélectionner "Enhanced Real-time clock Support" dans "Device Drivers ---> Character devices --->" Sélectionner (built-in ,pas modulaire) "Device Drivers ---> Real Time Clock ---> Set system time from RTC...")
- 19:4419:44, 2 April 2026 Vidéos / images (hist | edit) [1,740 bytes] Hugo (talk | contribs) (Created page with "= Backup sur DVD - UNIX = Le DVD ainsi créé aura les extensions Rock Ridge, et pourra aussi être lu par un lecteur DVD. 1. Créer l'image ISO: mkisofs -R -o image.iso <directory> 2. Pour tester l'image: mkdir tmp mount -o loop image.iso tmp 3. Graver l'image: growisofs -dvd-compat -Z /dev/dvd=image.iso = Backup sur DVD - Windows = Le DVD ainsi créé aura les extensions Joliet et Rock Ridge, et pourra aussi être lu facilement sur Windows. 1. growisof...")
- 19:3819:38, 2 April 2026 Développement logiciel (hist | edit) [185 bytes] Hugo (talk | contribs) (Created page with "Création paquet PPA Ubuntu")
- 19:3419:34, 2 April 2026 Imprimantes / Scanners (hist | edit) [3,035 bytes] Hugo (talk | contribs) (Created page with "= Instructions pour CUPS 1.4 = == Installer CUPS-1.4 == Tout d'abord, appliquer cette patch: http://www.hugovil.com/repository/hvlinux/patches/cups-1.4.8-php54.patch Ensuite, configurer CUPS avec: --libdir=/usr/lib --enable-pdftops == Installer foomatic-filters == $> wget http://www.openprinting.org/download/foomatic/foomatic-filters-4.0.17.tar.gz $> tar -xf foomatic-filters-4.0.17.tar.gz $> cd foomatic-filters-4.0.17 $> ./configure --prefix=/usr $>...")
- 19:2819:28, 2 April 2026 Disques (hist | edit) [1,105 bytes] Hugo (talk | contribs) (Created page with "=SMART Disk Monitoring Daemon= $> apt-get install smartmontools $> smartctl -t long /dev/sda [wait until test completes, then] $> smartctl -l selftest /dev/sda =Changement du mot de passe usager= Si vous avez ce message d'erreur: password for ' null ' gnome keyring Il faut éxécuter: $> rm ~/.gnome2/keyrings/login.keyring =Monter une partition VFAT avec caractères accentués dans les noms de fichiers= $> mount -o codepage=850,iocharset=iso8859-1,ut...")
- 19:2719:27, 2 April 2026 Email (hist | edit) [389 bytes] Hugo (talk | contribs) (Created page with "=Email= ==Sylpheed== ===Configuration du serveur LDAP=== LDAP search string: (&(mail=*)(cn=*%s*)) ===Effacer le compte local MH=== Sélectionner le compte local MH, et faire 'File - Mailbox - Remove mailbox'")
- 19:2419:24, 2 April 2026 PDF (hist | edit) [950 bytes] Hugo (talk | contribs) (Created page with "=Installation de style file latex= Éxécuter la commande: mktexlsr après avoir installé le fichier .sty =Installation CUPS-PDF= Sur le serveur (web admin interface, port 631, http://localhost:631/), cliquer sur "Find New Printer" Sélectionner "Generic Make" Model: Sélectionner "Generic CUPS-PDF Printer (en)" =Combiner plusieurs documents PDF en un seul= $> gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=output.pdf file1.pdf file2.pdf Si le...")
- 19:1719:17, 2 April 2026 Commandes diverses (hist | edit) [2,497 bytes] Hugo (talk | contribs) (Created page with "=Affichage des fichiers avec majuscule en premier= set LC_COLLATE=C =How to do a search and replace over multiple files?= You could use find and sed, but I find that this little line of perl works nicely: <nowiki>perl -pi -w -e 's/search/replace/g;' *.php</nowiki> -e means execute the following line of code. -i means edit in-place -w write warnings -p loop Example I had the following style sheet in a section: <nowiki><link rel="stylesheet" type="tex...")