web-dev-qa-db-ja.com

scl CentOS 6.4を恒久的に有効にする方法は?

新しいバージョンのdevtoolset(1.1)をインストールしましたが、これらをデフォルトに永久的に設定するにはどうしたらよいのか疑問に思いました。現在、CentOSを実行しているサーバーにSSHで接続するとき、このコマンドを実行する必要がありますscl enable devtoolset-1.1 bash

私はそれを〜/ .bashrcに追加して、最後の行に単に貼り付けてみましたが、成功しませんでした。

38
th3v0id

あなたの~/.bashrcまたは~/.bash_profile単にdevtoolsetで提供される「有効」スクリプトを入手します。たとえば、Devtoolset 2の場合、コマンドは次のとおりです。

source /opt/rh/devtoolset-2/enable

または

source scl_source enable devtoolset-2

より効率的:フォークボムやトリッキーなシェルは不要

69
Destroyica

source /opt/rh/devtoolset-4/enableの代替は

source scl_source enable devtoolset-4

上記のシェルスクリプトscl_sourceは、ハードコードされたパスを使用するよりもエレガントです(別のマシンでは異なる場合があります)。ただし、scl_source/opt/rh/devtoolset-4/enableやその他のものを使用するため、scl_sourceの方が効率が良くありません。

scl_sourceを使用するには、パッケージscl-utilsをアップグレードする必要があるかもしれません

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

簡単なコピー貼り付け

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

好奇心が強い人々のためのソースコード

scl_sourceソースコードの例:
https://Gist.github.com/bkabrda/6435016

Red Hat 7.1にインストールされているscl_source

#!/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 "$@"; 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
14
olibre

問題は、scl enable devtoolset-1.1 bashが新しいbashシェルを作成することです。したがって、それを.bashrcに入れると、新しいシェルが作成されます。これにより、.bashrcが読み込まれ、scl enable devtoolset-1.1 bashが実行され、新しいシェルが作成され、.bashrcが読み込まれます... Forkbomb!

あなたはおそらくあなたの.bashrcにこのようなものを望みます:

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

または

if [ -z "$TRIEDSCLDEVTOOLSET" ]; then
  export TRIEDSCLDEVTOOLSET=true
  scl enable devtoolset-1.1 bash
fi
  • 1つ目は、devtoolset-1.1にgcc 4.7.2が含まれていない場合はforkbombを続行し、ネイティブ環境にgcc 4.7.2がある場合も機能しません。
  • これにより、上記のように新しいシェルが作成されます。したがって、ターミナルウィンドウまたはsshセッションを作成すると、2つのbashセッションに参加し、exitを2回実行する必要があります。
4
rob05c

他の回答で言及されているスクリプトを見つける別の方法は、パッケージマネージャーにスクリプトの場所を通知させることです。

これは、RHEL/CentOSのvagrantマシンにdotnetツールを取り込むために実行するものです。

source $(rpm -ql rh-dotnet20-runtime|grep -E /enable$)

1
kenchilada