2020-01-01から1年間の記事一覧

rsync でデータ移行したときのメモ(macOS)

古いmacから新しいmacへデータを移行をrsyncで行ったときのメモです。 rsync 移行先で実行 rsync -auvzE --progress 移行元のIP:~/Desktop ~/Desktop a archive mode; same as -rlptgoD (no -H) u skip files that are newer on the receiver v increase ver…

PHP 7.0 な環境でも PECL で Xdebug をインストールしたい

PHP 7.0で動く古いアプリケーションでPHPUnitを動かしたくなりました。 いまは、普通にはXdebugをインストールできません。 # pecl install xdebug pecl/xdebug requires PHP (version >= 7.1.0), installed version is 7.0.33 これは Xdebug 2.9.1 以降、PH…