dpkg -l linux-image*
uname -r
sudo apt-get remove linux-image-2.6.32-{21,37,38,39,40,41,42,43,44}-server
sudo apt-get autoremove
This file contains 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
<?php | |
declare(strict_types=1); | |
namespace Banks\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
use Doctrine\Common\Collections\ArrayCollection; | |
use Doctrine\Common\Collections\Collection; | |
use Branches\Entity\Branch; |
- Set up GitHub account + add your SSH keys
- Fork php-src repo to your GitHub account
- Clone source (or use USB stick) & cd into directory
- Update origin remote URL with your fork
$ git remote set-url origin {your-fork-URL}
This file contains 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
FROM ubuntu:16.04 | |
MAINTAINER Sammy Kaye Powers | |
RUN apt-get update \ | |
&& apt-get install sudo vim git -y \ | |
&& apt-get install build-essential autoconf valgrind -y \ | |
&& apt-get install re2c bison -y \ | |
&& apt-get install libxml2-dev locales lcov -y |