Tags: linux

Sort by: Date / Title /

  1. 1 day ago by bobuse
    1. dcop --user $USER --session `dcop --user $USER --list-sessions | grep DCOP`  ksmserver ksmserver logout 0 0 0
  2. 1 week ago by matt
    -e filename
        True if filename exists.
    -d filename
        True if filename exists and is a directory.
    -f filename
        True if filename exists and is a plain file.
    -h filename
        True if filename exists and is a symbolic link.
    -r filename
        True if filename exists and is readable.
    -w filename
        True if filename exists and is writable.
    -n string
        True if the length of string is non-zero.
    -z string
        True if the length of string is zero.
    string
        True if string is not the empty string.
    s1 = s2
        True if the strings s1 and s2 are identical.
    s1 != s2
        True if the strings s1 and s2 are not identical.
    n1 -eq n2
        True if the numbers n1 and n2 are equal.
    n1 -ne n2
        True if the numbers n1 and n2 are not equal.
    n1 -gt n2
        True if the number n1 is greater than n2.
    n1 -ge n2
        True if the number n1 is greater than or equal to n2.
    n1 -lt n2
        True if the number n1 is less than n2.
    n1 -le n2
        True if the number n1 is less than or equal to n2.
    ! expression
        Negates expression, that is, returns true iff expression is false.
    expr1 -a expr2
        True if both expressions, expr1 and expr2 are true.
    expr1 -o expr2
        True if either expression, expr1 or expr2 is true.
    ( expression )
        True if expression is true. This allows one to nest expressions.
  3. 2 weeks ago by neorom
    snmptranslate -Tp -IR system
    # ou system est le nom de la branche à afficher
  4. 2 weeks ago by gameplayer and saved by 1 other
    Cette commande va effectuer le status sur tous les fichiers contenus dans $liste_file_to_update, ne récupère que les lignes commençant par M (fichiers modifiés), supprime les 9 premiers caractères (pour supprimer les caractères de statut affichés par svn status) et retire les espaces et caractères numériques restant au début de la ligne.
    1. svn status -u $liste_file_to_update | egrep '^M' | cut -c 9- | sed "s/[1-9 ][1-9 ]*\//\//g"
  5. 1 month ago by enoch
    Re: apt-? how do I get the feature whatprovides?
    The functionality you were looking for is supplied by apt-file. To install:
    
    sudo apt-get install apt-file
    
    To use:
    
    sudo apt-file update
    
    sudo apt-file search <filename>
    
    Enjoy,
    
    Tim.
    milstead is offline   	Reply With Quote
  6. 2 months ago by advitam
    Ceci permet de lancer Konqueror en navigateur de fichier et non en navigateur web.
    1. kfmclient openProfile filemanagement
  7. 2 months ago by bobuse
    1. mencoder -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=400 -oac copy -o source.avi destination.avi
  8. sponsorised links
  9. 3 months ago by neorom
    Si vous obtenez une erreur 18 au boot d'un linux (après son installation généralement). Le problème vient de la déclaration de la taille du disque dur dans le bios. Il faut passer le disque dur en "large" dans la section appropriée du bios
  10. 3 months ago by p.rousset
    1) put in asound.conf :
    
    pcm.!default {
        type plug
        slave.pcm "surround51"
        slave.channels 6
        route_policy duplicate
    }
    
    2) restart alsa => sudo /etc/init.d/alsa-utils restart
  11. 3 months ago by neorom
    1. fichier :  /etc/sysconfig/network-scripts/ifcfg-eth2
    2. configuration :
    3. DEVICE=eth2
    4. BOOTPROTO=static
    5. ONBOOT=yes
    6. HWADDR=00:1a:20:6a:d8:a4
    7. IPADDR=192.168.1.129
    8. NETMASK=255.255.255.128
    9.  
    10. fichier : /etc/sysconfig/network
    11. configuration :
    12. NETWORKING=yes
    13. HOSTNAME=toto.lan.fr
    14. GATEWAY=192.168.1.254

First / Previous / Next / Last / Page 1 of 9 (84 posteets)