2017年1月9日月曜日

Stderr: VBoxManage.exe: error: Could not find a controller named 'SATA Controller' の解消方法

以下のような設定で vagrant up をしたら、タイトルのエラーが出来ました。
 ["storageattach", "5cbed0f4-9370-4603-8da8-f02b7f943cad", "--storagectl", "SATA Controller", "--port", "1", "--device", "0", "--type", "hdd", "--medium", "010node.com.vdi"]



解決手順は以下の通りです。
 1、まず VirtualBoxの設定画面で、「新しいストレージコントローラーを追加委します。」からSATAコントローラーを追加する

 
2、次に、 設定ファイルの「 "--storagectl", "SATA Controller"」を「 "--storagectl", "SATA"」に変更する。
 SATA Controllerの「名前」のところに、名前は「SATA」となっているので、それに合わせる必要。

2017年1月7日土曜日

cygwinでansibleインストール時に「 /usr/include/sys/time.h:104:34: エラー: 不明な型名 'u_int' です」のエラー解決方法

cyginでansibleをインストールしたら、以下のエラーが出来ました
 /usr/include/sys/time.h:104:34: エラー: 不明な型名 'u_int' です

解決方法は、ファイル「/usr/include/sys/time.h」に「u_int」の定義を追加すること

vi /usr/include/sys/time.h


#ifndef u_int
typedef unsigned int u_int;
#endif

cygwinにsshpassを入れる手順

Step1、まずダウンロード用ディレクトリーを作成
   mkdir -p /usr/local/src

Step2、Step1で作成したディレクトリーに移動
   cd /usr/local/src

Step3、sshpassのソースファイルをダウンロードする
   wget "https://sourceforge.net/projects/sshpass/files/sshpass/1.06/sshpass-1.06.tar.gz/download" -O sshpass.tar.gz

Step4、ダウンロードしたファイルを解凍
    tar xvfz sshpass.tar.gz

Step5、手動でコンパイルとインストールする
   cd sshpass-1.06
  
  ./configure
  make
  make install

    
Step6、バージョン確認
 sshpass -V