GNU/Linux >> Tutoriales Linux >  >> Linux

¿Cómo habilitar permanentemente scl CentOS 6.4?

En tu ~/.bashrc o ~/.bash_profile Simplemente obtenga el script "habilitar" provisto con el conjunto de herramientas de desarrollo. Por ejemplo, con Devtoolset 2, el comando es:

source /opt/rh/devtoolset-2/enable

o

source scl_source enable devtoolset-2

Mucho más eficiente:sin bomba fork, sin caparazón engañoso


Una alternativa de source /opt/rh/devtoolset-4/enable es

source scl_source enable devtoolset-4

El script de shell anterior scl_source es más elegante que usar una ruta codificada (puede ser diferente en otra máquina). Sin embargo scl_source hace menos porque /opt/rh/devtoolset-4/enable usa scl_source y otras cosas.

Para usar scl_source es posible que deba actualizar el paquete scl-utils

yum update scl-utils  # old scl-utils versions miss scl_source

Copiar y pegar rápido

echo 'source scl_source enable devtoolset-4' >> ~/.bashrc
    # Do not forget to change the version ↑

Código fuente para curiosos

Un ejemplo de scl_source código fuente:
https://gist.github.com/bkabrda/6435016

El scl_source instalado en mi Red Hat 7.1

#!/bin/bash

_scl_source_help="Usage: source scl_source <action> [<collection> ...]

Don't use this script outside of SCL scriptlets!

Options:
    -h, --help    display this help and exit"

if [ $# -eq 0 -o $1 = "-h" -o $1 = "--help" ]; then
    echo "$_scl_source_help"
    return 0
fi


if [ -z "$_recursion" ]; then
    _recursion="false"
fi
if [ -z "$_scl_scriptlet_name" ]; then
    # The only allowed action in the case of recursion is the same
    # as was the original
    _scl_scriptlet_name=$1
fi
shift 1

if [ -z "$_scl_dir" ]; then
    # No need to re-define the directory twice
    _scl_dir=/etc/scl/conf
    if [ ! -e $_scl_dir ]; then
        _scl_dir=/etc/scl/prefixes
    fi
fi

for arg in "[email protected]"; do
    _scl_prefix_file=$_scl_dir/$arg
    _scl_prefix=`cat $_scl_prefix_file 2> /dev/null`
    if [ $? -ne 0 ]; then
        echo "Can't read $_scl_prefix_file, $arg is probably not installed."
        return 1
    fi

    # First check if the collection is already in the list
    # of collections to be enabled
    for scl in ${_scls[@]}; do
        if [ $arg == $scl ]; then
            continue 2
        fi
    done

    # Now check if the collection isn't already enabled
    /usr/bin/scl_enabled $arg > /dev/null 2> /dev/null
    if [ $? -ne 0 ]; then
        _scls+=($arg)
        _scl_prefixes+=($_scl_prefix)
    fi;
done

if [ $_recursion == "false" ]; then
    _i=0
    _recursion="true"
    while [ $_i -lt ${#_scls[@]} ]; do
        _scl_scriptlet_path="${_scl_prefixes[$_i]}/${_scls[$_i]}/${_scl_scriptlet_name}"
        source "$_scl_scriptlet_path"
        if [ $? -ne 0 ]; then
            echo "Can't source $_scl_scriptlet_name, skipping."
        else
            export X_SCLS="${_scls[$_i]} $X_SCLS"
        fi;
        _i=$(($_i+1))
    done
    _scls=()
    _scl_prefixes=()
    _scl_scriptlet_name=""
    _recursion="false"
fi

El problema es que scl enable devtoolset-1.1 bash crea un nuevo shell bash. Entonces, cuando lo coloca en su .bashrc, crea un nuevo shell... que carga su .bashrc, que ejecuta scl enable devtoolset-1.1 bash , que crea un nuevo shell, que carga tu .bashrc... ¡Forkbomb!

Probablemente quieras algo como esto en tu .bashrc:

if [ "$(gcc -dumpversion)" != "4.7.2" ]; then 
  scl enable devtoolset-1.1 bash
fi

o

if [ -z "$TRIEDSCLDEVTOOLSET" ]; then
  export TRIEDSCLDEVTOOLSET=true
  scl enable devtoolset-1.1 bash
fi
  • el primero continuará forkbomb si devtoolset-1.1 no contiene gcc 4.7.2, y tampoco funcionará si su entorno nativo tiene gcc 4.7.2.
  • esto crea un nuevo caparazón, como arriba. Entonces, cuando cree su ventana de terminal o sesión ssh, estará en dos sesiones bash y tendrá que exit dos veces.

Linux
  1. Cómo habilitar IPv6 en CentOS / RHEL 7

  2. Cómo habilitar IPv6 en CentOS / RHEL 5

  3. Cómo habilitar el reenvío X11 en CentOS/RHEL 5,6,7

  4. Cómo habilitar/deshabilitar los modos SELinux en RHEL/CentOS

  5. Cómo habilitar el color del texto en vi similar a vim en CentOS/RHEL

Cómo actualizar CentOS

Cómo habilitar el repositorio EPEL en CentOS

Cómo habilitar SSH en CentOS

Cómo habilitar el repositorio EPEL en CentOS 8

Cómo habilitar el repositorio REMI en CentOS 8

Cómo instalar y configurar GlusterFS en CentOS 7/CentOS 8