[ FAILURE ] Stopped with error /dev/dm-0
Place file on:
/etc/init.d/stop-cryptswapThen execute:
If anyone is interested in setting up their system to automatically (or manually) sign their git commits with their GPG key, here are the steps:
$ git config --global commit.gpgsign true ([OPTIONAL] every commit will now be signed)$ git config --global user.signingkey ABCDEF01 (where ABCDEF01 is the fingerprint of the key to use)$ git config --global alias.logs "log --show-signature" (now available as $ git logs)$ git config --global alias.cis "commit -S" (optional if global signing is false)$ echo "Some content" >> example.txt$ git add example.txt$ git cis -m "This commit is signed by a GPG key." (regular commit will work if global signing is enabled)Change MySQL ROOT Password:
sudo cat /etc/mysql/debian.cnf
mysql -u debian-sys-maint -p
ALTER USER 'root'@'localhost' IDENTIFIED BY ''; GRANT ALL PRIVILEGES ON . TO 'root'@'localhost'; FLUSH PRIVILEGES;
Dockerfile that is based on your production image and
simply install xdebug into it. Exemple:FROM php:5
RUN yes | pecl install xdebug \
&& echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \
| sudo usermod -aG plugdev $LOGNAME | |
| sudo vi /etc/udev/rules.d/51-android.rules | |
| lsusb | |
| SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4ee7", MODE="0666", GROUP="plugdev" | |
| sudo udevadm control --reload-rules | |
| adb tcpip 5555 |