4355 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 2 / 2
Newer►
178 results tagged linux x
  • Code 18: Renommer des fichiers en lot sous Linux

    Une fois les fichiers transférés sur mon laptop Linux, je n'ai eu qu'à utiliser la commande rename pour remplacer par des tirets tous les espaces contenus dans les fichiers. Mais avant de procéder à des remplacements en lot et risquer une gaffe, mieux vaut utiliser l'option -n pour avoir une prévisualisation des changements qui seront appliqués.

    rename -n 's/ /-/g' *.jpg

    image petit format.jpg renamed as image-petit-format.jpg

    Après le dernier /, le "g" signifie global, pour remplacer tous les espaces et pas seulement le premier trouvé.

    Une fois certain du remplacement dans la liste des fichiers, on peut appliquer le changement :

    rename 's/ /-/g' .jpg
    rename 's/ /-/g'
    .pdf

    Morale de l'histoire : c'est pratique avoir un ami qui travaille dans les Interwebs.

    September 22, 2012 at 2:55:40 PM GMT+2 - permalink - archive.org - http://code18.blogspot.fr/2011/03/renommer-des-fichiers-en-lot-sous-linux.html
    espace linux rename
  • iptables Howto — Fedora Unity Project
    August 6, 2012 at 11:18:39 PM GMT+2 - permalink - archive.org - http://fedorasolved.org/Members/kanarip/iptables-howto
    firewall iptables linux
  • Remmina - The GTK+ Remote Desktop Client
    July 26, 2012 at 2:13:49 PM GMT+2 - permalink - archive.org - http://remmina.sourceforge.net/
    linux ssh
  • PAC Manager | Free software downloads at SourceForge.net
    July 26, 2012 at 2:13:38 PM GMT+2 - permalink - archive.org - http://sourceforge.net/projects/pacmanager/
    linux ssh
  • thumbnail
    Rechercher et remplacer en ligne de commande bash shell en utilisant sed | Stratégies, solutions, design et développement Internet 2.0

    bash# sed -i ’s/[texte_recherché]/[texte_de_remplacement]/’ monfichier.txt

    Pour l’exercice nous allons dire que monfichier.txt comporte une liste d’anciennes adresses email @wanadoo.fr et que nous désirons les mettre à jour en @orange.fr .

    bash# cat monfichier.txt
    toto@wanadoo.fr
    toto@wanadoo.fr
    toto@wanadoo.fr
    etc.

    Donc dans ce cas, cela nous donnera :

    bash# sed -i ’s/wanadoo/orange/g’ monfichier.txt

    Voilà en détail l’explication :

    On passe à la commande sed le paramètre “-i” pour l’édition du fichier monfichier.txt
    Le paramètre “-s” (substituer) qui définit l’action de rechercher / remplacer,
    l’expression régulière (REGEX),
    puis le ‘g’ (action global) à la suite pour la modification de toutes les instances de la chaîne de caractères remplacer dans le fichier.
    Dans le cas où on voudrait ne remplacer que la première qui aurait été trouvée, il faudra modifier comme suit : ‘s/texte1/texte2/’

    Bon, cela fonctionne sur un fichier, maintenant dans le cas de plusieurs fichiers, voici la commande ‘find’ qui va compléter l’astuce.

    bash# find . -maxdepth 1 -name “*.txt” -type f -exec sed -i ’s/wanadoo/orange/g’ {} \

    En détail cela nous donne:

    Nous utilisons la commande ‘find’ pour récupérer la liste des fichiers ‘.txt’ à traiter,
    dans le dossier courant ‘.’ et de ne pas aller plus bas ‘-maxdepth 1′,
    puis donc de lister les fichiers dont le nom finit par “*.txt” :  ‘-name “*.txt” -type f’.
    on utilise alors l’option ‘-exec’ pour dire à ‘find’ d’utiliser la commande qui suit sur les fichiers trouvés.

    Et voilà, simple non ?

    July 23, 2012 at 3:24:06 PM GMT+2 - permalink - archive.org - http://supersonique.net/administration/rechercher-et-remplacer-en-ligne-de-commande-bash-shell-sed/
    bash linux rechercher remplacer sed
  • Linux in My Box: Logging Shell Commands in Linux

    Comment logger toutes les commandes tappées par tous les utilisateurs sur linux

    July 18, 2012 at 4:34:44 PM GMT+2 - permalink - archive.org - http://blog.kxr.me/2012/01/logging-shell-commands-in-linux.html
    linux log
  • Index of /UTBM_LO22/P08

    Site avec bon TD linux bash

    July 14, 2012 at 6:51:00 PM GMT+2 - permalink - archive.org - http://eric.bachard.free.fr/UTBM_LO22/P08/
    bash linux shell
  • .bashrc not being executed, why?

    Pourquoi le bashrc ne s'execute pas

    July 13, 2012 at 11:39:13 AM GMT+2 - permalink - archive.org - http://www.linuxquestions.org/questions/linux-newbie-8/bashrc-not-being-executed-why-127676/
    bashrc linux shell
  • [HOWTO] Optimize Minecraft for Linux - Minecraft Forum

    optimize minecraft on linux

    April 17, 2012 at 8:53:18 AM GMT+2 - permalink - archive.org - http://www.minecraftforum.net/topic/158692-howto-optimize-minecraft-for-linux/
    linux minecraft
  • Protéger son serveur en utilisant Fail2Ban
    February 24, 2012 at 6:57:23 PM GMT+1 - permalink - archive.org - http://blog.nicolargo.com/2012/02/proteger-son-serveur-en-utilisant-fail2ban.html
    fail2ban linux security ssh
  • Debian Tutorials | Debian Squeeze Tutorials | Unix Tutorials

    Des tutoriaux debian en anglais

    February 14, 2012 at 11:11:07 AM GMT+1 - permalink - archive.org - http://www.debian-tutorials.com/
    debian linux tutorials
  • Un "ls -rtl" récursif - LinuxFr.org
    February 9, 2012 at 8:33:33 PM GMT+1 - permalink - archive.org - http://linuxfr.org/forums/programmationperl/posts/un-ls-rtl-r%C3%A9cursif
    linux ls perl script
  • Welcome to The UNIX Grymoire!
    January 29, 2012 at 10:07:32 PM GMT+1 - permalink - archive.org - http://www.grymoire.com/Unix/
    find linux man reference sed unix
  • How to use the Linux RPM command | CentOS | Linux Tutorial
    January 26, 2012 at 10:38:00 AM GMT+1 - permalink - archive.org - http://www.kernelhardware.org/linux-rpm-command/
    centos linux rpm
  • man rpm - Gestionnaire de Paquetages Red Hat. / Administration système / linux
    January 26, 2012 at 10:28:52 AM GMT+1 - permalink - archive.org - http://pwet.fr/man/linux/administration_systeme/rpm
    centos linux rpm
  • Basculer un clavier en AZERTY ou en QWERTY sous Linux - Tux-planet
    January 23, 2012 at 1:56:57 PM GMT+1 - permalink - archive.org - http://www.tux-planet.fr/basculer-un-clavier-en-azerty-ou-en-qwerty-sous-linux/
    azerty linux qwerty
  • Partager un répertoire Windows avec VirtualBox | Naeh.net
    January 18, 2012 at 11:31:34 AM GMT+1 - permalink - archive.org - http://naeh.net/partager-un-repertoire-windows-avec-virtualbox/
    linux share virtualbox
  • La commande sed
    January 18, 2012 at 10:19:42 AM GMT+1 - permalink - archive.org - http://www.siteduzero.com/tutoriel-3-287602-la-commande-sed.html
    linux memo
  • Blog Stéphane Bortzmeyer: Administration de machines Unix dans plusieurs fuseaux horaires

    un article pour se décider dans quel timezone configurer ses serveurs linux et quelques astuces si on choisit le format UTC

    January 8, 2012 at 9:49:07 PM GMT+1 - permalink - archive.org - http://www.bortzmeyer.org/date-utc.html
    date linux timezone unix
  • New Release: 0 A.D. Alpha 8 Haxāmaniš :: 0 A.D. :: Wildfire Games
    December 28, 2011 at 7:29:07 PM GMT+1 - permalink - archive.org - http://wildfiregames.com/0ad/page.php?p=14448
    game linux rts
  • Martius Web : Tutoriaux XHTML/CSS, Conception de sites internet Web 2.0, PHP et Ajax
    December 5, 2011 at 11:42:04 AM GMT+1 - permalink - archive.org - http://www.martiusweb.net/index.html
    blog info linux
  • Vim : l'éditeur de texte du programmeur

    Mémo pour copier/coller avec vim
    couper une ligne : dd
    copier une ligne : yy
    coller : p

    December 2, 2011 at 10:16:43 AM GMT+1 - permalink - archive.org - http://www.siteduzero.com/tutoriel-3-88344-vim-l-editeur-de-texte-du-programmeur.html#ss_part_4
    coller copier linux raccourcis vim
  • thumbnail
    Les flux de redirection

    Comment utiliser les flux de redirection dans une console linux
    Sorties standards..

    December 2, 2011 at 9:44:14 AM GMT+1 - permalink - archive.org - http://www.siteduzero.com/tutoriel-3-62417-les-flux-de-redirection.html
    console flux linux
  • thumbnail
    Raccourcis console linux

    Quelques raccourcis dans la console linux
    ctrl + L : clear
    ctrl + u : effacer tout a gauche
    ctrl + k : effacer tout a droite
    ctr + a : se positionner tout a gauche
    ctrl +e se potionner tout a droite

    December 2, 2011 at 9:43:51 AM GMT+1 - permalink - archive.org - http://www.siteduzero.com/tutoriel-3-12745-entrer-une-commande.html#ss_part_4
    console linux raccourcis
  • fr/Gnome3 - Debian Wiki
    November 29, 2011 at 11:52:15 AM GMT+1 - permalink - archive.org - http://wiki.debian.org/fr/Gnome3
    debian gnome gnomeshell linux
  • mint_customization [sebsauvage]
    October 30, 2011 at 1:39:46 PM GMT+1 - permalink - archive.org - http://sebsauvage.net/wiki/doku.php?id=mint_customization
    configuration linux linuxmint
  • MySQL Cluster – Administration 5/5
    October 30, 2011 at 1:35:38 PM GMT+1 - permalink - archive.org - http://blog.nicolargo.com/2011/10/mysql-cluster-administration-55.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+LeBlogDeNicolargo+%28Le+blog+de+NicoLargo%29&utm_content=Google+Reader
    cluster linux mysql
  • La création de RPM pour les nuls : Création du fichier SPEC et du Paquetage - Wiki Fedora-Fr
    October 21, 2011 at 8:54:32 AM GMT+2 - permalink - archive.org - http://doc.fedora-fr.org/wiki/La_cr%C3%A9ation_de_RPM_pour_les_nuls_:_Cr%C3%A9ation_du_fichier_SPEC_et_du_Paquetage
    linux rpm
  • My perfect Irssi setup » Kung Foo Code
    October 19, 2011 at 1:11:54 PM GMT+2 - permalink - archive.org - http://www.kungfoocode.org/how-to/my-perfect-irssi-setup/
    irc irssi linux
  • Que fait un fork() ? | CommentCaMarche
    October 19, 2011 at 10:20:26 AM GMT+2 - permalink - archive.org - http://www.commentcamarche.net/faq/10611-que-fait-un-fork
    fork linux
  • thumbnail
    Linux Exécuter des programmes en arrière-plan
    October 19, 2011 at 10:18:50 AM GMT+2 - permalink - archive.org - http://www.siteduzero.com/tutoriel-3-67789-executer-des-programmes-en-arriere-plan.html
    background console linux
  • Planet Libre - Six applications en console qu’il faut installer
    October 17, 2011 at 8:54:41 PM GMT+2 - permalink - archive.org - http://www.planet-libre.org/index.php?post_id=9479
    console linux logiciel
  • thumbnail
    Les meilleurs logiciels console : Pause café
    October 17, 2011 at 8:54:32 PM GMT+2 - permalink - archive.org - http://www.debian-fr.org/les-meilleurs-logiciels-console-t21796.html
    console linux logiciel
  • Linux Plus-Value: Configurer Samba
    May 31, 2011 at 6:13:28 PM GMT+2 - permalink - archive.org - http://www.linuxplusvalue.be/mylpv.php?id=11
    linux samba
  • IPtables : HOWTO
    May 13, 2011 at 8:45:27 AM GMT+2 - permalink - archive.org - http://www.nbs-system.com/blog/howto-iptables/
    iptables linux
  • Le blog de Nicolargo
    May 2, 2011 at 11:22:30 PM GMT+2 - permalink - archive.org - http://blog.nicolargo.com/
    blog linux
  • Tux-planet
    May 2, 2011 at 11:22:19 PM GMT+2 - permalink - archive.org - http://www.tux-planet.fr/
    blog linux
  • rsnapshot
    April 25, 2011 at 8:26:57 PM GMT+2 - permalink - archive.org - http://www.rsnapshot.org/
    linux rsnapshot rsync tools
  • Apprenez le Shell
    April 25, 2011 at 8:09:08 PM GMT+2 - permalink - archive.org - http://www.siteduzero.com/tutoriel-3-9678-apprenez-le-shell.html#part_9677
    base linux
  • Liens, liens symboliques et liens en dur
    April 24, 2011 at 8:50:00 PM GMT+2 - permalink - archive.org - http://wiki.mandriva.com/fr/Liens,_liens_symboliques_et_liens_en_dur
    hardlink linux ln
  • Installation de Samba avec support des ACLs sur un serveur Linux debian
    April 23, 2011 at 3:53:40 PM GMT+2 - permalink - archive.org - http://www.linux-france.org/~fclerc/article/serveur/samba-acl/debian-samba-acl-xfs.html
    acl linux
  • Gestion des ACL - Lea Linux
    April 22, 2011 at 1:15:45 PM GMT+2 - permalink - archive.org - http://www.lea-linux.org/documentations/index.php/Gestion_des_ACL
    acl linux
  • samba / gestion des ACL Win2K3 depuis un serveur debian - LinuxFr.org

    Pour info, j'ai résolu le premier problème.
    Le protocole smbfs est incompatible avec les signatures numériques de win2k3. le protocole cifs marche mieux et avec cette commande:
    mount -t cifs //monserveurwin2k3/partage /mnt/smb/dossierdemontage -o acl,username=vm
    je peux acceder aux partages du serveur win2k3.
    Par contre il n'est pas non plus compatible avec les ACL windows sur le partage NTFS; la commande:
    setfacl -m u:userdudomaine:w /mnt/smb/dossierdemontage/unfichier
    affiche toujours: "Opération non supportée".
    Est-ce que quel-qu'un a déja réussit cette opération?

    April 22, 2011 at 1:14:43 PM GMT+2 - permalink - archive.org - https://linuxfr.org/forums/linuxdebianubuntu/posts/samba-gestion-des-acl-win2k3-depuis-un-serveur-debian
    acl linux
  • Mise en place des ACL sur une Debian Testing | COAGUL
    April 22, 2011 at 1:12:22 PM GMT+2 - permalink - archive.org - http://coagul.org/drupal/node/131/
    acl linux
  • Droits multiples et ACL sous Debian | Epheo: Le Blog
    April 22, 2011 at 12:47:37 PM GMT+2 - permalink - archive.org - http://blog.epheo.eu/linux/droits-multiples-et-acl-sous-debian/
    acl linux
  • mount_fstab - Documentation Ubuntu Francophone
    April 22, 2011 at 11:32:50 AM GMT+2 - permalink - archive.org - http://doc.ubuntu-fr.org/mount_fstab
    fstab linux
  • Chapter 16. File, Directory, and Share Access Controls
    April 21, 2011 at 11:36:24 PM GMT+2 - permalink - archive.org - http://www.samba.org/samba/docs/man/Samba-HOWTO-Collection/AccessControls.html
    linux samba
  • Voir celui ci : Partage de fichiers avec Samba
    April 21, 2011 at 11:16:03 PM GMT+2 - permalink - archive.org - http://www.debianaddict.org/article38.html
    debian linux samba
  • HOWTO: SAMBA
    April 21, 2011 at 11:05:17 PM GMT+2 - permalink - archive.org - http://www.gcolpart.com/howto/samba.php4
    linux samba
  • Manpage of SMBMOUNT
    April 21, 2011 at 10:57:24 PM GMT+2 - permalink - archive.org - http://www.delafond.org/traducmanfr/man/man8/smbmount.8.html
    linux man smbmount
  • La commande iproute2
    February 16, 2011 at 2:04:55 PM GMT+1 - permalink - archive.org - http://www-l2ti.univ-paris13.fr/~fourmaux/stages/routeurlinux/iproute2.htm
    linux
  • Fonds d'écran - Tux-planet
    February 13, 2011 at 1:49:01 PM GMT+1 - permalink - archive.org - http://www.tux-planet.fr/wallpapers/
    linux
  • apt-get install rsync [RESOLU] : Support Debian
    February 11, 2011 at 3:05:41 PM GMT+1 - permalink - archive.org - http://www.debian-fr.org/apt-get-install-rsync-t14316.html
    linux rsync
  • Debian -- Détails du paquet rsync dans squeeze
    February 11, 2011 at 3:05:34 PM GMT+1 - permalink - archive.org - http://packages.debian.org/stable/rsync
    linux rsync
  • [Howto] Sauvegarde de fichiers personnels avec rsync et ssh
    February 11, 2011 at 12:12:47 PM GMT+1 - permalink - archive.org - http://forums.gentoo.org/viewtopic-t-517750-start-0.html
    linux rsync
  • Exemple utilisation rsync option --backup
    February 11, 2011 at 11:54:19 AM GMT+1 - permalink - archive.org - http://www.xenetis.org/linux_debian_sauvegarde_rsync_shell_usb.html
    linux rsync
  • Passer de Debian 5 Lenny à Debian 6 Squeeze - Blog Informatique by COLUNDRUM
    February 7, 2011 at 9:22:56 PM GMT+1 - permalink - archive.org - http://informatique.colundrum.eu/systeme/update-debian-5-lenny-to-debian-6-squeeze/
    blog linux
  • conky_orange GNOME-Look.org
    February 7, 2011 at 9:15:19 PM GMT+1 - permalink - archive.org - http://gnome-look.org/content/show.php/conky_orange?content=137503
    linux
  • Routage et ifconfig avec les commandes IP
    February 6, 2011 at 5:34:10 PM GMT+1 - permalink - archive.org - http://cyberzoide.developpez.com/reseaux/routage/
    linux
  • Configuration d’un Firewall IPCOP
    January 23, 2011 at 3:25:07 PM GMT+1 - permalink - archive.org - http://nilz.free.fr/wordpress/?p=70=2
    ipcop linux
  • Monter une partition au démarrage d'Ubuntu | Antithese

    Comment monter une partition automatiquement au démarrage de votre distribution linux ?

    January 23, 2011 at 3:25:06 PM GMT+1 - permalink - archive.org - http://www.antithese.fr/tuto-monter-une-partition-au-demarrage-dubuntu/
    boot linux mount
  • FFMPEG pour les nuls

    Si vous êtes sous linux et que vous utilisez de temps en temps ffmpeg, voici quelques lignes de commande qui vous seront surement utiles : Obtenir

    January 23, 2011 at 3:25:05 PM GMT+1 - permalink - archive.org - http://www.korben.info/ffmpeg-pour-les-nuls.html#comments
    ffmpeg linux video
  • 9 trucs à faire après l’installation de Ubuntu

    Site spécialisé dans les tutoriels, astuces, tests et ressources informatiques pour PC Windows et Linux.

    January 23, 2011 at 3:25:04 PM GMT+1 - permalink - archive.org - http://www.protuts.net/9-trucs-faire-priorite-installation-ubuntu/
    install linux ubuntu
  • diagnostic_outil - Documentation Ubuntu Francophone
    January 23, 2011 at 3:25:02 PM GMT+1 - permalink - archive.org - http://doc.ubuntu-fr.org/diagnostic_outil
    linux ubuntu
  • La gravure sous Ubuntu Feisty ou comment bien graver grâce à GNU/Linux - Partie 1/2 - Julius - "Blog en bordure de Sambre..."

    Les outils déjà présents dans Gnome Ubuntu allie grâce à Gnome des fonctionnalités très pratiques qui vous permettent de graver des données en quelques clics. Vous pouvez grâce à

    January 23, 2011 at 3:24:59 PM GMT+1 - permalink - archive.org - http://julius.sambrelug.be/post/2007/06/28/La-gravure-sous-Ubuntu-Feisty-ou-comment-bien-graver-grace-a-GNU/Linux-Partie-1/2
    gravure linux ubuntu
  • Lea-Linux
    January 23, 2011 at 3:24:47 PM GMT+1 - permalink - archive.org - http://www.lea-linux.org/
    linux
  • cairo-dock - Documentation Ubuntu Francophone
    January 23, 2011 at 3:24:25 PM GMT+1 - permalink - archive.org - http://doc.ubuntu-fr.org/cairo-dock
    linux
  • SMB HOWTO - HOWTO LINUX en français
    January 23, 2011 at 3:24:24 PM GMT+1 - permalink - archive.org - http://jp.barralis.com/howto/linux/SMB-HOWTO/SMB-HOWTO.php
    linux
  • La grande famille des processus - Linux Attitude
    January 23, 2011 at 3:24:23 PM GMT+1 - permalink - archive.org - http://linux-attitude.fr/post/la-grande-famille-des-processus
    linux
  • BlockOutTraffic - Documentation

    BlockOutTraffic addon for IPCop 1.4

    January 23, 2011 at 3:24:20 PM GMT+1 - permalink - archive.org - http://www.blockouttraffic.de/gettingstarted_fr.php
    linux
  • [Tuto][Débutant] IPCOP
    January 23, 2011 at 3:24:18 PM GMT+1 - permalink - archive.org - http://www.pcinpact.com/forum/index.php?showtopic=78177
    linux
  • DNS BIND9 LINUX
    January 23, 2011 at 3:24:17 PM GMT+1 - permalink - archive.org - http://www.theodys.org/index.php/post/2007/05/14/Installation-et-configuration-dun-serveur-DNS-Bind9-sur-Ubuntu
    bind dns linux
  • URL filter add-on for IPCop and SmoothWall

    URL filter add-on for IPCop and SmoothWall

    January 23, 2011 at 3:24:16 PM GMT+1 - permalink - archive.org - http://www.urlfilter.net/quickreference.html
    ipcop linux
  • grub-pc - Documentation Ubuntu Francophone
    January 23, 2011 at 3:24:15 PM GMT+1 - permalink - archive.org - http://doc.ubuntu-fr.org/grub-pc
    grub linux
  • Linux : Swap activer/desactiver
    January 23, 2011 at 3:24:14 PM GMT+1 - permalink - archive.org - http://doc.ubuntu-fr.org/windows/swap
    linux swap
  • Linux : Grub 1 reparation avec cd SuperGrub
    January 23, 2011 at 3:24:13 PM GMT+1 - permalink - archive.org - http://forum.ubuntu-fr.org/viewtopic.php?id=154052
    grub linux
  • Bluefish, un éditeur Web très puissant - Génération Linux

    Etant moi-même un développeur de sites Web, je cherchais un logiciel libre me permettant de coder du PHP ou du HTML avec toutes les fonctionnalités qui me semblaient indispensable

    January 23, 2011 at 3:24:11 PM GMT+1 - permalink - archive.org - http://www.generation-linux.fr/index.php?post/2007/12/09/4-bluefish-un-editeur-web-tres-puissant
    editeur linux
  • How to Setup iSCSI Drive Using FreeNAS | Train Signal Training - Free Computer Training Videos

    I recently wrote an article on how to setup a NAS using the open source FreeNAS software. One of the many features of FreeNAS is the ability to setup an

    January 23, 2011 at 3:24:10 PM GMT+1 - permalink - archive.org - http://www.trainsignaltraining.com/how-to-setup-iscsi-drive-using-freenas/2009-01-19/
    iscsi linux
Links per page: 20 50 100
page 2 / 2
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation