ゆるーい備忘録

まいにちべんきょう

2016-08-01から1ヶ月間の記事一覧

FiddlerをMacにインストール

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null ; brew install caskroom/cask/brew-cask 2> /dev/null パスワード入力 brew cask install fiddler 完了。 brewってこんなに便利なの…

composer updateをしようとしたらcommand not foundになった話

vagrantにcomposerをいれてプロジェクトの作成をした。 composer update のコマンドを打ちたかったのだが、 -bash: composer: command not found って返ってきた。 現状 [root@localhost cakephp]# ls -la total 1672 drwxrwxrwx. 1 vagrant apache 136 Aug …

vagrant destroyしようとしたら「tty」エラーが出た話

windows10 babunを使用 Vagrant is attempting to interface with the UI in a way that requires a TTY. Most actions in Vagrant that require a TTY have configuration switches to disable this requirement. Please do that or run Vagrant with TTY. …

Vagrant環境の時刻変更したい

ローカル環境のみ、一時的に時間を変更したい。。 ホストOSとゲストOSの時刻同期を切る $ sudo su - # service vboxadd-service stop 時刻変更 # date -s "2017/08/23 00:00:00" これでOK! 時刻戻す場合 # service vboxadd-service start