• vim

      # Astuces
        :mo,:co        move or copy selected lines to the address.
        :ce,:ri,:le     (ce)nter,  justify right or left the selected text.
        ^,<Entrer>,-     go to the first caract of the current, the follow or previous line.
        gv         get back the previous visual selection we've just lost.
        zz (reframe)     center the surrent line on the screen.
        ``         get back to the point where we were before a jump (after a research for ex)
        :e!         Reload the current file.
        :%s/\n//,:%s     Delete all ampty lines.
        /^.*$//            delete lines that contain only spaces.
        :vsp
        :sp

      *Mode Insertion
      C-y         recopie le caractère de la ligne du dessus en mode insertion.
      ^T,^D     indente la ligne courante vers la droite, vers la gauche.
      <C-o>     dans le mode insertion exécute une commande du mode normal (par exemple dd) puis de retourner dans le monde insertion.
      gi        entre en mode insertion à l'endroit où la dernière insertion à été effectuée.
      ^,<Entrer>,-  va sur le premier caractère de la ligne courante, la m chose pour la ligne suivante et précédente.


      Mode normal
      :<#ligne1>,<#ligne2>!fmt     Formate le texte dans la porté à 75 colonnes.
      :marks     liste toutes les marques posées, en indiquant le nom de la marque, la ligne, la colonne, ainsi que le fichier concerné.


      Le mode "Lecture Seul" ou "Read Only"
      :w !sudo tee % Enregistrer modifications sur un fichier "read only"

      * Insertions                     |  * Lignes                                   |    * Window
        a    après le curseur.    |    ^       Début de ligne.            |      c-W s    split
        A    en fin de ligne.        |    $       Fin de ligne.                 |      c-W n    new window
        gi    last insert position |    -      1st carac ligne précédente     |      c-W v    split vert
                                             |    + enter 1st carac ligne suivante.   |        c-W ^^   split to #
        i    avant le curseur.      |    H       Première ligne de l’écran.  |      c-W c  close curr
        I    en début de ligne.    |    L       Dernière ligne de l’écran.   |      c-W o  close others
        o    à la ligne suivante.  |    ]       Début de section suivante. |      Rotate up       c-W R
        O    à la ligne précédente.    |    [       Début de section précédente |      Rotate down     c-W d
                        |    J       Fusionne deux lignes (join) |      move to top     c-W K
                        |                        |       move to bottom  c-W J
                        |                        |       move to left    c-W H
                        |                        |       move to Right   c-W L
                                                |       Equal size    c-W =
      * Copie et déplacement de texte                                                   |      Max Height    c-W _
        Y       Copie la ligne courante dans un nouveau tampon.                     |      min height    c-W 1_
        yy      Copie la ligne courante.                                            |      Max Width    c-W |
        p      Paste the yank buffer after the cursor (or below the current line)  |      min width    c-W 1|
        P      Paste the yank buffer before the cursor (or above the current line) |      jump to this tag g^]
        "+p    colle depuis le tampon x                        |      jump back       ^t
        "xyy    Copie la ligne courante dans le tampon x.
        "xd     Supprime la ligne courante et la place dans le tampon x.
        "Xd     Supprime la ligne courante et l’ajoute au tampon x.
        "xp     Insère le contenu du tampon x.
        vG"+yy     tout copier dans tampon x. (+ : pour copier dans le X)
        "+y    copier dans presse papier de x
        "+p    coller depuis x
        "*y    copier ds pp de vim
        "*p    coller depuis pp de vim

      * Effacements
        dd      Supprime la ligne en cours.
        d^      Efface du début de la ligne jusqu’au curseur.
        D       Efface du curseur à la fin de la ligne.
        d/ momo Efface until la première occurrence de motif .
        p       Insère après curseur texte supprimée ou copié.
        P       Insère avant curseur texte supprimée ou copié.
        u       Annule la dernière opération.
        U       Annule toutes les opérations effectuées sur la ligne courante.
        .       Répète la dernière opération.
        ~       Change la casse du caractère au curseur

      * Remplacements
        c       Début d’une opération de remplacement.
        C       Remplacement jusqu’en fin de ligne.
        rx      Remplace le caractère courant par x.
        R       Active le mode Remplacement.
        s       Remplace un caractère.
        S       Remplace une ligne entière.
        cw      Modifie le mot courant.
        cc      Modifie la ligne courante.
        dw      Supprime le mot courant.

      * Sauvegarder et quitter
        ZZ      Quitte l’éditeur et enregistre le fichier s’il a été modifié.
        :x      Identique à ZZ.
        :w      Enregistre le fichier.
        :wq     Enregistre le fichier et quitte l’éditeur.
        :w!    Enregistre le fichier en passant outre les protections (read only par ex).
        :q      Quitte l’éditeur.
        :q!    Quitte l’éditeur sans enregistrer les dernières modifications.

        :e file Édite le fichier fichier sans quitter vi.
        :n      Édite le fichier suivant.
        :n files   Spécifie une nouvelle liste de fichiers .
        :args   Affiche la liste des fichiers à éditer.

      * Commandes "shell"
        :r files     Insère le contenu de «  fichier » .
        :r! commande Insère le résultat de «  commande » .
        :n1,n2! commande Envoie lignes n1, n2 à 'commande' les remplace par sortie de 'commande'.
         !!      Répète la dernière commande système.


      * Déplacement du curseur            |     *    Écrans
        h    Un caractère vers la gauche .    |    ctrl-f  Avance d’un écran.
        j    Un caractère vers le bas.    |    ctrl-b  Recule d’un écran.
        k    Un caractère vers le haut.    |       z enter Put active line on thetop.
            l space Un caractère vers la droite.    |       z.      put active line to the center.
                                    z-      put active line to the botom.

      * Texte                          *    Recherche
        w ou W    Début du mot suivant.        |       / momo Recherche momo vers l’avant.
        b ou B    Début du mot courant.        |     / Répétition recherche vers l’avant.
        e ou E    Fin du mot courant.        |     ? momo  Recherche momo vers l’arrière.
        )    Début de la phrase suivante.    |     ? Répétition recherche vers l’arrière.
        (    Début de la phrase précédente.    |     n Répète la dernière opération recherche.
        }    Début du paragraphe suivant.    |     % Déplacement vers [,(,{ ou est curseur.
        {    Début du paragraphe précédent.    |
        ]    Début de la section suivante.    |
        [    Début de la section précédente.    |

    **************************************************************************************************

    http://www.coagul.org/spip.php?article241&var_recherche=vim

    >> Options
    Option          Commentaire
    -b              Mode binaire. Permet l’édition d’un fichier binaire ou exécutable.
    -g              Active l’interface graphique si vi a été compilé avec le support d’une
                    interface graphique. Équivalent à la commande gvim pour la version améliorée, vim
    -r fichier      Mode récupération. Le fichier d’échange fichier est utilisé pour récupérer
                    une session après un crash.
    -v              Mode vue. L’option lecture seule est activée. L’édition est cependant
                    possible mais le fichier est protégé contre un effacement accidentel et il faut                    forcer l’écrasement avec le point d’exclamation.
    —               Marque la fin des options. Cela permet d’éditer un fichier dont le nom
                    commence par un tiret.
    *******************************************

       * pour le .vimrc
    :source ~/.vimrc         Permet de recharger son vimrc sans avoir à relancer vim.
                Cela marche aussi pour les scripts que vous venez de modifier ou que vous êtes en train de développer.
    set scrolloff=1000         Permet d'avoir constamment la ligne courante au centre de l'écran.
    au FileType * setl fo-=cro     Désactive l'autocomplétion pour les lignes de commentaires.
    inoremap ( ()<left>     Ferme une parenthese, et se place entre les deux. Cf vim.wikia pour des solutions plus avancées.
    autocmd BufNewFile * silent! 0r ~/Templates/%:e.tpl     Lors de la création d'un nouveau fichier vim ira voir si un fichier                             <code><extension>.tpl existe dans votre $HOME/Templates/ et le chargera.


    aucun commentaire
  • ###  screen - tmux cross reference (draft)
    {Option}                             {screen}                 {tmux}
    User config file                   ~.screenrc               ~.tmux.conf
    Session files                       /tmp/uscreens/         /tmp/tmux-10/
    List sessions                         screen -ls               tmux ls
    Default bindkey                     Ctrl-a                      Ctrl-b
    Rename window                  <bindkey> Shift-a     <bindkey> ,
    Reattach                               screen -x                tmux attach
    Reattach +detach others     screen -DR             tmux attach -d

    ### KEYBIDINGS
      # Basic                                               | # Detach / Reattach
       {screen}  {tmux} {effect}                |  {screen}  {tmux} {effect}
        (C-a)            C-b: send-prefix             |   ( d )    D: detach
                           C-o: rotate-window         |             d: detach-client
                            C-z: suspend-client        |   tmux attach    to reattach a client
                                                                 |   (*)        s: choose-session ( * -?)
                                                                 |   ( D D )       Detach and logout
                                                                 |
      # Move                                                | # SPlit
        Space: next-layout     (arranging vert/horiz ?)    |   ( S )    ": split-window
                    0: select-window -t :0            |   ( | )    %: split-window -h
                    9: select-window -t :9            |   ( X )    !: break-pane
        ( ' )    ': select-prompt                       |   (tab)    o: down-pane
        ( c )    c: create new window             |
                l: last-window                            |   ( k )    x: confirm-before kill-pane
                n: next-window                          |           {: swap-pane -U
                p: previous-window                   |           }: swap-pane -D
        ( " )    w: choose-window                   |           Up: up-pane
                f: command-prompt "find-window '%%'"    |           Down: down-pane
                                                                 |
      # Kill                                                    | # Resize
        ( k )    &: confirm-before kill-window  |           C-Up: resize-pane -U
                                                                 |           C-Down: resize-pane -D
      # Display                                            |           C-Left: resize-pane -L
                ?: list-keys                                 |           C-Right: resize-pane -R
                i: display-message                    |           M-Up: resize-pane -U 5
           q: display-panes     (give nb of splitted panes)    |           M-Down: resize-pane -D 5
        ( l )    r: refresh-client                        |           M-Left: resize-pane -L 5
                t: clock-mode                            |           M-Right: resize-pane -R 5
        ( " )    w: choose-window                   |
                                                                 |
    # Buffer                                                | # Edit
                #: list-buffers                            |   ,: command-prompt "rename-window '%%'"
                -: delete-buffer                          |   .: command-prompt "move-window -t '%%'"
        ( [ );(esc)    [: copy-mode                  |
        ( ] )    ]: paste-buffer                         | # Technic
                PPage: copy-mode                    |           :: command-prompt
        ( > )       Write paste buffer to a file  |   ( x )    X: lockscreen
        ( < )       Reads exchange file into paste buffer|
        ( = )       Removes file used by < and >        |
        ( { );( } )    Copy and paste a previous (cmd) line |

    # Select                                                |
        M-1: select-layout even-horizontal     |
        M-2: select-layout even-vertical         |
        M-3: select-layout main-horizontal     |
        M-4: select-layout main-vertical         |
        M-n: next-window -a                           |
        M-o: rotate-window -D                        |
        M-p: previous-window -a                     |


    #################################################################################################################


            ###########################################
            ################# SCREEN ##################
            ###########################################

    ### OPTIONS
      -a        include all capabilities in each window’s termcap.
      -A        Adapt the sizes of all windows to the size of the current terminal.
      -c file    override the default configuration file from “$HOME/.screenrc” to file.
      -e xy        Change the command character to be x. (Change 'C-a' into 'C-y' here)
      -f, -fn, -fa    turns flow-control on, off, or “automatic switching mode”.
      -h num    Specifies the history scrollback buffer to be num lines high.
      -i        will cause the interrupt key (usually C-c) to interrupt the display immediately when flow-control is on.
      -l, -ln    turns login mode on or off.
      -ls, -list    does not start screen, but prints a list of pid.tty.host strings identifying your screen sessions.
              `detached’ can be resumed “screen -r”. `attached’ are running and have a controlling terminal.
      -L        tells screen your auto-margin terminal has a writable last-position on the screen.
      -m        causes screen to ignore the $STY environment variable.
        ...

     ## Deatache/Reatache
      -d|-D [pid.tty.host]    does not start screen, but detaches the elsewhere running screen session.
      -d -r        Reattach a session and if necessary detach it first.
      -d -R        Reattach a session and if necessary detach or even create it first.
      -d -RR    Reattach a session and if necessary detach or create it.
      -D -r        Reattach a session. If necessary detach and logout remotely first.
      -D -R        Attach here and now.
      -D -RR    Attach here and now. Whatever that means, just do it.
      -d -m        Start screen in “detached” mode. This creates a new session but doesn’t attach to it. Useful for scripts.
      -D -m        also starts screen in “detached” mode, but doesn’t fork a new process
      -x        Attach to a not detached screen session. (Multi display mode).
      -X        Send the specified command to a running screen session.

    ### KEYS BINDING
     # DISPLAY
      C-a ' (select)        Prompt for a window name or number to switch to.
      C-a " (windowlist -b) Present a list of all windows for selection.
      C-a l (redisplay)     Fully refresh current window.
      C-a m (lastmsg)       Repeat the last message displayed in the message line.
      C-a * (displays)      Show a listing of all currently attached displays.
      C-a A (title)         Allow the user to enter a name for the current window.
      C-a C (clear)         Clear the screen.

     # MOVE
      C-a C-a (other)       Toggle to the window displayed previously.
      C-a <0-9>             Switch to window number 0 - 9.
      C-a space, C-a n      Switch to the next window.
      C-a N (number)        Show the number (and title) of the current window.
      C-a backspace C-a h C-a p     Switch to the previous window (opposite of C-a n).

     # SPLIT
      C-a S (split)        Split the current region into two new ones horizontaly.
      C-a | (vertical)    Split the current region into two new ones verticaly.
      C-a Q (only)          Delete all regions but the current one.
      C-a tab (focus)       Switch the input focus to the next region.  See also split, remove, only.
      C-a F (fit)           Resize the window to the current region size.

     # COPY
      C-a [, C-a esc (copy) Enter copy/scrollback mode.
      C-a ] (paste .)    Write the contents of the paste buffer to the stdin queue of the current window.
      C-a > (writebuf)    Write paste buffer to a file.
      C-a < (readbuf)    Reads the screen-exchange file into the paste buffer.
      C-a = (removebuf)    Removes the file used by C-a < and C-a >.
      C-a {, C-a } (history) Copy and paste a previous (command) line.

     # DETACHE/ATACHE
      C-a d (detach)        Detach screen from this terminal.
      C-a D D (pow_detach)  Detach and logout.

     # KILL
      C-a X (remove)    Kill the current region.
      C-a C-\ (quit)        Kill all windows and terminate screen.
      C-a k (kill)          Destroy current window.

     # SPECIAL
      C-a L (login)        Toggle this windows login slot. Available only if screen is configured to update the utmp database.
      C-a M (monitor)    Toggles monitoring of the current window.
      C-a q    (xon)        Send a control-q to the current window.
      C-a r (wrap)        Toggle the current window’s line-wrap setting. (turn current window automatic margins on and off).
      C-a s (xoff)        Send a control-s to the current window.
      C-a C-v (digraph)    Enter digraph. (???)
      C-a W (width)        Toggle 80/132 columns.
      C-a x (lockscreen)    Lock this terminal.
      C-a z (suspend)    Suspend screen. Your system must support BSD-style job-control.
      C-a Z (reset)        Reset the virtual terminal to its “power-on” values.
      C-a . (dumptermcap)   Write out a “.termcap” file. (???)
      C-a : (colon)        Enter command line mode.
      C-a _ (silence)    Start/stop monitoring the current window for inactivity.
      C-a a (meta)          Send the command character (C-a) to window. See escape command.
      C-a b (break)         Send a break to window.
      C-a B (pow_break)     Reopen the terminal line and send a break.
      C-a f (flow)          Toggle flow on, off or auto.
      C-a C-g (vbell)       Toggles screen's visual bell mode.
      C-a h (hardcopy)      Write a hardcopy of the current window to the file "hardcopy.n".
      C-a H (log)           Begins/ends logging of the current window to the file "screenlog.n".

     # HELP
      C-a ? (help)        Show key bindings.
      C-a , (license)       Shows here it went to and why you can use it.
      C-a t (time)          Show system information.
      C-a v (version)       Display the version and compilation date.
      C-a w (windows)       Show a list of window.
      C-a c (screen)        Create a new window with a shell and switch to that window.
      C-a i (info)          Show info about this window.


    aucun commentaire
  • sc               Disable chat mode
    Ctrl-a        Go to the beginning of the input line
    Ctrl-e          Go to the end of the input line
    Ctrl-l          Force a refresh
    Up/Down         Move in the input line history
    PgUp/PgDown     Move inside the roster (buddylist)
    Tab             Complete current word, in the input line
    Ctrl-g          Cancel completion
    Ctrl-c          Abort multi-line messages and completions
    Ctrl-d          Send/terminate a multi-line message
    Ctrl-p/Ctrl-n   Scroll up/down half a screen in the buffer window (chat mode)
    Ctrl-Left       Move the cursor back to the start of the current or previous word
    Ctrl-Right      Move the cursor forward to the end of the current or next word
    Ctrl-u          Delete from beginning of the line to the cursor
    Ctrl-k          Delete from the cursor to the end of line
    Ctrl-w          Backward kill word
    Ctrl-t          Transpose chars


        o            online
        f               free for chat
        a               away
        n               not available (labeled extended away in some clients)
        d               do not disturb
        i               invisible (displayed only for your resource)
        _               offline (or invisible to you)
        ?               unknown, usually meaning you are not authorized to see this buddy’s status
        x               a conference room in which you are not participating
        C               a conference room in which you are participating

    Examples:
    --- Buds        This is a group named Buds
    #[o] John       John is online, can see your status, and sent you a message that you did not read yet
    {?} Sally       Neither you nor Sally have authorized each other to see your online status
    {a} Jane        Jane is away, but she cannot see your online status
    #[C] x@y.c      You are participating in x@y.c conference room, and there are unread messages

    COMMANDS RELATED TO MCABBER
           /add [jid [nickname]]
                 ex    /add somebody@jabber.server.com Somebody

           /alias [name [= command line]]
              ex    /alias away = status away

           /authorization allow|cancel|request|request_unsubscribe [jid]
              ex

           /buffer clear|close|close_all|purge|list,
           /buffer top|bottom|date|%|search_backward|search_forward,
           /buffer scroll_lock|scroll_unlock|scroll_toggle,
           /buffer save filename


    aucun commentaire
  • > change the theme:    ./mc_change_theme.sh puthre.theme
    >  Input Line Keys
           C-a              puts the cursor at the beginning of line.
           C-e              puts the cursor at the end of the line.
           C-b, move-left   move the cursor one position left.
           C-f, move-right  move the cursor one position right.
           Alt-f            moves one word forward.
           Alt-b            moves one word backward.
           C-h, backspace   delete the previous character.
           C-d, Delete      delete the character in the point (over the cursor).
           C-@              sets the mark for cutting.
           C-w              copies the text between the cursor and the mark to a kill buffer
                 and removes the text from the input line.
           Alt-w            copies the text between the cursor and the mark to a kill buffer.
           C-y              yanks back the contents of the kill buffer.
           C-k              kills the text from the cursor to the end of the line.
           Alt-p, Alt-n     browse through the command history. Alt-p takes you to the last entry,
                            Alt-n takes you to the next one.
           Alt-C-h, Alt-Backspace              delete one word backward.
           Alt-Tab          does the filename, command, variable, username and hostname completi
    -------------------
    > Shell Command Line
           Alt-Enter    copy selected file name to the command line.
           C-Enter        same a Alt-Enter.
           C-Shift-Enter    copy full path name of selected file to the command line.
           Alt-Tab        completion.
           C-x t, C-x C-t    copy tagged files to the command line.
           C-x C-t        the same from the other panel.
           C-x p, C-x C-p    copy the current path name to the command line,
           C-x C-p        copy the other panel’s path name to the command line.
           C-q            insert specific characters (as '+') (the  quote command)
           Alt-p, Alt-n    browse through the command history. Respectively: last entry, next one.
           Alt-h          history of input lines.

    ---------------------
    >  General Movement Keys
           Prev Page, Page Up, Alt-v    - moves one page up.
           Next Page, Page Down, C-v    - moves one page down.
           Home, A1                - moves to the beginning.
           End, C1                - move to the end.

    >  File viewer
           b, C-b, C-h, Backspace, Delete    - moves one page up.
           Space bar            - moves one page down.
           u, d                   - moves one half of a page up or down.
           g, G                   - moves to the beginning or to the end.

    --------------------
    >  Input Line Keys
           C-a            puts the cursor at the beginning of line.
           C-e            puts the cursor at the end of the line.
           C-b, move-left    move the cursor one position left.
           C-f, move-right  move the cursor one position right.
           Alt-f          moves one word forward.
           Alt-b          moves one word backward.
           C-h, backspace     delete the previous character.
           C-d, Delete    delete the character in the point (over the cursor).
           C-@            sets the mark for cutting.
           C-w            copies the text between the cursor and the mark to a kill buffer and                    removes  the text from the input line.
           Alt-w          copies the text between the cursor and the mark to a kill buffer.
           C-y            yanks back the contents of the kill buffer.
           C-k            kills the text from the cursor to the end of the line.
           Alt-p, Alt-n     browse through the command history. Alt-p takes you to the last entry,
                Alt-n takes you to the next one.
           Alt-C-h, Alt-Backspace              delete one word backward.
           Alt-Tab        does the filename, command, variable, username and hostname completion.

    -------------------------
    > some options
          -a, --stickchars        - Disable usage of graphic characters for line drawing.
          -b, --nocolor        - Force black and white display.

    ------------------------------------

           C-l    repaint all the information in the Midnight Commander.
           C-x c  run the Chmod command on a file or on the tagged files.
           C-x o  run the Chown command on the current file or on the tagged files.
           C-x l  run the link command.
           C-x s  run the symbolic link command.
           C-x i  set the other panel display mode to information.
           C-x q  set the other panel display mode to quick view.
           C-x !  execute the External panelize command.
           C-x h  run the add directory to hotlist command.
           Alt-!  executes the Filtered view command, described in the view command.
           Alt-?  executes the Find file command.
           Alt-c  pops up the quick cd dialog.
           C-o    when the program is being run in the Linux or FreeBSD console or under  an  xterm,
                  it  will  show  you  the  output  of  the previous command.  When ran on the Linux
                  console, the Midnight Commander uses an external program  (cons.saver)  to  handle
                  saving and restoring of information on the screen.

           Tab, C-i            change  the  current  panel.
           Insert, C-t        tag  files.
           Alt-g, Alt-r, Alt-j     select the top file,  the  middle  file  or  the  bottom  one.
           C-s, Alt-s        start  a  filename search in the directory listing.
           Alt-t              toggle the current display listing mode.
           C-\ (control-backslash)    show the directory hotlist and change to the selected directory.
           +  (plus)        select (tag) a group of files.
           \ (backslash)        unselect a group of files. This is the  opposite  of  the  '+' key.
           home, a1, Alt-<          move the selection bar to the first entry in the panel.
           end, c1, Alt->        move the selection bar to the last entry in the panel.
           next-page, C-v           move the selection bar one page down.
           prev-page, Alt-v         move the selection bar one page up.

           Alt-o  If  the  currently  selected file is a directory, load that directory on the other
                  panel and moves the selection to the next file.
           Alt-i  make the current directory of the current panel also the current directory of  the
                  other  panel.   Put the other panel to the listing mode if needed.  If the current
                  panel is panelized, the other panel doesn’t become panelized.

           C-PageUp, C-PageDown
                  only when supported by the terminal: change to ".." and to the currently  selected
                  directory respectively.

           Alt-y              go to the previous directory in the history.
           Alt-u              go to the next directory in the history.
           Alt-Shift-h, Alt-H    displays the directory history.


    aucun commentaire
  • # Flags
    Values of the “current state” flag
        A    Automatically chosen to be installed
        i    the package is installed and all its dependencies are satisfied.
        c    the package was removed, but its configuration files are still present.
        p    the package and all its configuration files were removed, or the package was never installed.
        v    the package is virtual.
        B    the package has broken dependencies.
        u    the package has been unpacked but not configured.
        C    half-configured: the package's configuration was interrupted.
        H    half-installed: the package's installation was interrupted.

    Values of the “action” flag
        i    the package will be installed.
        u    the package will be upgraded.
        d    the package will be deleted: it will be removed, but its configuration files will remain on the system.
        p    the package will be purged: it and its configuration files will be removed.
        h    the package will be held back: it will be kept at its current version, even if a newer version becomes                available, until the hold is cancelled.
        F    An upgrade of the package has been forbidden.
        r    the package will be reinstalled.
        B    the package is “broken”: some of its dependencies will not be satisfied.                            Aptitude will not allow you to install, remove, or upgrade anything while you have broken packages.


    # Colors guide:
          * Black    The package cannot be upgraded (or is not going to be installed), and it has no dependency problems.
          * Green   The package is going to be installed.
          * Blue    The package is currently installed, and it will be upgraded.
          * Magenta The package is currently installed, but it will be removed.
          * White   The package is currently installed, and be “held” at its current version: automatic upgrades will ignore it
          * Red    This package is broken: some of its dependencies will not be satisfied.


    aucun commentaire


    Suivre le flux RSS des articles de cette rubrique
    Suivre le flux RSS des commentaires de cette rubrique