https://blog.flexvdi.com/2015/03/17/enabling-kvm-virtualization-on-the-raspberry-pi-2/
Month: February 2019
Applications of transrectal ultrasound in prostate cancer
Source: Applications of transrectal ultrasound in prostate cancer
Amilcare Ponchielli – Wikipedia
Amilcare Ponchielli (Italian: [aˈmilkare poŋˈkjɛlli], 31 August 1834 – 16 January 1886) was an Italian opera composer, best known for his opera La Gioconda. He was married to the soprano Teresina Brambilla.
Amilcare Ponchielli (Italian: [aˈmilkare poŋˈkjɛlli], 31 August 1834 – 16 January 1886) was an Italian opera composer, best known for his opera La Gioconda. He was married to the soprano Teresina Brambilla.
Source: Amilcare Ponchielli – Wikipedia
Comparison of Standard and Datacenter editions of Windows Server 2019
Source: Comparison of Standard and Datacenter editions of Windows Server 2019 | Microsoft Docs
Egmont (Beethoven)
Egmont, Op. 84 by Ludwig van Beethoven, is a set of incidental music pieces for the 1787 play of the same name by Johann Wolfgang von Goethe. It consists of an overture followed by a sequence of nine pieces for soprano, male narrator, and full symphony orchestra. (The male narrator is optional; he is not used in the play and does not appear in all recordings of the complete incidental music.) Beethoven wrote it between October 1809 and June 1810, and it was premiered on 15 June 1810.
Source: Egmont (Beethoven) – Wikipedia
Beethoven – Egmont Overture – YouTube
How to install Docker and deploy a LAMP Stack
– Docker is a container platform for applications. With Docker, users can download pre-configured apps without the hassle of the installation and configuration process. Docker containers can also build on each other.
sudo docker pull linode/lamp
– Run, create, or turn on a new container and forward port 80: sudo docker run -p 80:80 -t -i linode/lamp /bin/bash – As the container’s root user, start Apache:
service apache2 start
– Start MySQL:
service mysql start
– Exit the container while while leaving it running by pressing:
ctrl + p then ctrl + q.
– Enter the IP address in a web browser to test the site.
Note
The website’s root directory is /var/www/example.com/public_html/.
Congratulations, you have installed a configured LAMP stack using Docker!
How to Setup a Simple Apache Web Server in a Docker Container
How to Setup a Simple Apache Web Server in a Docker Container
Source: How to Setup a Simple Apache Web Server in a Docker Container
KVM or VirtualBox (or both)?
Source: KVM or VirtualBox (or both)?
Hermann Prey – Tannhauser – O du mein holder Abendstern
mattrayner/docker-lamp
How to Install Docker on Ubuntu 14.04 LTS
Introduction
Docker is a container-based software framework for automating deployment of applications. “Containers” are encapsulated, lightweight, and portable application modules.
Pre-Flight Check
- These instructions are intended for installing Docker.
- I’ll be working from a Liquid Web Core Managed Ubuntu 14.04 LTS server, and I’ll be logged in as root.
Step 1: Installation of Docker
First, you’ll follow a simple best practice: ensuring the list of available packages is up to date before installing anything new.
apt-get update
Let’s install Docker by installing the docker-io package:
apt-get -y install docker.io
Link and fix paths with the following two commands:
ln -sf /usr/bin/docker.io /usr/local/bin/docker
sed -i '$acomplete -F _docker docker' /etc/bash_completion.d/docker.io
Finally, and optionally, let’s configure Docker to start when the server boots:
update-rc.d docker.io defaults
Step 2: Download a Docker Container
Let’s begin using Docker! Download the fedora Docker image:
docker pull ubuntu
Step 3: Run a Docker Container
Now, to setup a basic ubuntu container with a bash shell, we just run one command. docker run will run a command in a new container, -i attaches stdin and stdout, -t allocates a tty, and we’re using the standard ubuntu container.
docker run -i -t ubuntu /bin/bash
That’s it! You’re now using a bash shell inside of a ubuntu docker container.
To disconnect, or detach, from the shell without exiting use the escape sequence Ctrl-p + Ctrl-q.
There are many community containers already available, which can be found through a search. In the command below I am searching for the keyword debian:
docker search debian
Source: How to Install Docker on Ubuntu 14.04 LTS | Liquid Web Knowledge Base