How to install Docker on Ubuntu 17.04

I’ve installed Ubuntu 17.04 (VirtualBox). But since I have Ubuntu 17.04, it seems like docker is not yet available for Ubuntu 17.04. Is there any workaround to install Docker on Ubuntu 17.04? This is my commande line history: 2 curl -L https://github.com/docker/machine/releases/download/v0.10.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine && chmod +x /tmp/docker-machine && sudo cp /tmp/docker-machine /usr/local/bin/docker-machine 3 … Read more

Convert mp3 file to wav? using the command line?

I have an Mp3 file i need to convert to .wav to be able to import it into a voice changer program. How do I do this using the command line? Answer Using ffmpeg – installed by default ffmpeg -i input.mp3 output.wav Alternative – mpg123 sudo apt-get install mpg123 Then to convert mp3 to wav … Read more