serveurs:installation:etc-bashrc

Modifier le fichier .bashrc template

  • Éditer le fichier : vi /etc/skel/.bashrc
  • Décommenter les lignes d'alias, activer la gestion de la coloration du prompt
  • Ajouter le code suivant à la fin pour la prise en compte des dossier bin/ de l'utilisateur :
    # Set PATH so it includes user's private bin if it exists and not already set
    if [[ -d "${HOME}bin" && ":$PATH:" != *":${HOME}bin:"* ]] ; then
        PATH="${HOME}bin:${PATH}"
    fi
     
    # Set PATH so it includes user's private bin if it exists and not already set
    if [[ -d "${HOME}.local/bin" && ":${PATH}:" != *":${HOME}.local/bin:"* ]] ; then
        PATH="${HOME}.local/bin:${PATH}"
    fi
  • Lancer la commande : update-alternatives --config editor
  • Choisir l'éditeur qui vous convient, dans notre cas /usr/bin/vim.tiny, l'option 8
  • serveurs/installation/etc-bashrc.txt
  • Dernière modification : 2021/04/29 07:00
  • de jpmilcent