タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

vagrantに関するzetta1985のブックマーク (1)

  • Vagrant の仮想マシンと SCP でファイルをやり取りする

    Vagrant で管理している仮想マシンとファイルをやり取りするには、共有ディレクトリを使うやり方もあるようだけど、もっとシンプルに SCP でファイルを送受信してみる。 まずは仮想マシンに送信するためのファイルを用意しておく。 $ cat << EOS > hello.txt Hello, World!! EOS Vagrant で仮想マシンを作成する。 $ vagrant init centos65 $ vagrant up $ vagrant status Current machine states: default running (virtualbox) The VM is running. To stop this VM, you can run `vagrant halt` to shut it down forcefully, or you can run `vagran

    Vagrant の仮想マシンと SCP でファイルをやり取りする
  • 1