Fury

Ideals are peaceful - history is violent

Docker

Boot2docker

  • Quick-Start: Run Boot2Docker (located in Applications), which will open a terminal window. Then, start a test container with:
    docker run hello-world
  • To save and share container images, automate workflows, and more sign-up for a free Docker Hub account.
  • You can upgrade your existing Boot2Docker VM without data loss by running:
    boot2docker upgrade

Open a terminal and Execute commands and Keep terminal open

gnome-terminal --tab -e "/bin/bash -c 'ls -al ; exec /bin/bash -i'"

Variable Attributes

Aligned Variable


char tmpBuf[BLOCKSIZE] __attribute__((__aligned__(ALIGNMENT)));
char *tmpBuf = (char*) memalign(ALIGNMENT, BLOCKSIZE);



相關文件