Created
January 4, 2017 07:51
-
-
Save jamtur01/38d5006a262f35db6d0b275be1c1f1f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
My root partition mounted read only too. To fix, I ran: | |
blkid | |
to get the disk's new UUID, and then updated /etc/fstab with the new value: | |
cp /etc/fstab /run | |
vim /run/fstab | |
mount --no-mtab --fstab /run/fstab -o remount,rw / | |
cp /run/fstab /etc | |
reboot | |
I also had to manually install a few bits: | |
apt-get install libapache2-mod-php7.0 php7.0-mysql mysql-client-core-5.7 mysql-server-5.7 | |
and futz with config files. | |
I tried booting the 4.4 kernel, but networking didn't load, so I reverted to the 3.3 kernel for now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment