LoginSignup
1
0

More than 5 years have passed since last update.

Open vSwitchのインストール

Last updated at Posted at 2018-06-03

やってみたのでメモ

手順

  1. あらかじめ依存ライブラリをインストール

    # yum -y install make gcc openssl libcap-ng epel-release
    
  2. pipをインストール

    # yum -y install python-pip
    
  3. sixライブラリをインストール

    # pip install six
    
  4. ファイルをダウンロードする

    # curl -LkvOf http://openvswitch.org/releases/openvswitch-2.9.2.tar.gz
    
  5. ファイルを展開する

    # tar zxf openvswitch-2.9.2.tar.gz
    
  6. configureを実行する

    # cd openvswitch-2.9.2
    # ./configure
    
  7. makeを実行する

    # make
    
  8. インストールする

    # make install
    

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0