Disneyland Guide – Spring 1976

Disneyland Guide - Spring 1976
Disneyland Guide – Spring 1976 Front Cover

At Easter in 1976, my parents took my brothers and I to Disneyland.  It was a dream come true!  I was cleaning out some things from my parents’ house (they have since passed), and I ran across the “Disneyland Guide” from that trip.  I thought it was pretty cool, so I scanned it in and put it up on my website, in case anyone else wants to see what Disneyland was like back then.

Click on the images to see them in greater detail.

Inside front cover, and Table of Contents (page 1)
General Information (pages 2 and 3)
The A-B-C’s etc. of Disneyland Ticket Books (page 4), Adventures and Attractions (page 5)
Adventures and Attractions, continued (pages 6 and 7)
Main Street, U.S.A. (pages 8 and 9)
Adventureland (pages 10 and 11)
New Orleans Square (page 12), Bear Country (page 13)
Disneyland map (pages 14 and 15)
Frontierland (pages 16 and 17)
Fantasyland (pages 18 and 19)
Tomorrowland (pages 20 and 21)
Food and Refreshments (pages 22 and 23)
Shops and Stores (pages 24 and 25)
Your Disneyland Entertainment Calendar (pages 26 and 27)
Your Disneyland Entertainment Calendar, continued (page 28), Free Shows and Exhibits (page 29)
Disneyland Guide – Spring 1976 Back Cover

Installing Anaconda on Debian

Screenshot of Anaconda logoIn this post, I present step-by-step instructions for installing Anaconda, a Python package manager for data science, and a number of included data science Python packages, including Spyder and Jupyter Notebook.

What is Anaconda?

If you want to do some data science with Python, it is highly recommended that you use Anaconda.  According to the Anaconda website, “Anaconda® is a package manager, an environment manager, a Python/R data science distribution, and a collection of over 1,500+ open source packages.”  So, what that means is that it looks after installing and managing various Python packages for data science in an easy-to-use manner. It’s way easier than dealing with all the interactions and dependencies between the various versions of those packages.

Why do you want to use Anaconda?  Again, according to the Anaconda Starter Guide:

Many scientific packages require a specific version of Python to run. It’s difficult to keep various Python installations on one computer from interacting and breaking, and harder to keep them up-to-date. Anaconda Distribution makes management of multiple Python versions on one computer easier, and provides a large collection of highly optimized, commonly used data science libraries to get you started faster.

What is included with Anaconda?  From that Starter Guide, here’s the highlight of some of the things that are either installed with Anaconda, or can be installed with Anaconda:

  • NumPy: scientific computer library for Python
  • SciPy: scientific computing library for Python
  • Matplotlib:2D plotting library for Python
  • Pandas: powerful Python data structures and data analysis toolkit
  • Seaborn: statistical graphics library for Python
  • Bokeh: interactive web visualization library
  • Scikit-Learn: Python modules for machine learning and data mining
  • NLTK: natural language toolkit
  • Jupyter Notebook: web app that allows you to create and share documents that contain live code, equations, visualizations and explanatory text
  • R essentials: 80+ of the most used R packages for data science

That’s just a few of the highlights. There are over 1500 packages that can be installed with Anaconda.

This post leads you through the steps to install Anaconda on a computer running the Debian Linux distribution.  My Debian box (actually, a Vagrant Virtualbox VM running Debian) uses the XFCE desktop environment; you’ll need some GUI to use Anaconda.  But, you can also use the command-line based “conda” program if you don’t want a GUI.

Installing Anaconda

The Anaconda website is at https://www.anaconda.com.  The documentation for it is at https://docs.anaconda.com/anaconda/. You can find the downloads at https://www.anaconda.com/distribution/; at the time of this writing, the latest version for Linux is Anaconda 2018.12.  I’m going to use the Python 3.7 version; if you want to use the Python 2.7 version, download that instead.  You can see all the downloads at https://repo.anaconda.com/archive/.  Either download the installer with your browser, or download it from a Terminal window.  I downloaded it from a Terminal window.

Open a Terminal window on the GUI, and download the latest 64-bit version of the Anaconda installer:

wget https://repo.anaconda.com/archive/Anaconda3-2018.12-Linux-x86_64.sh

 

Download the Anaconda installer

It’s quite large (652.5M), so it takes a while to download.

Installation instuctions are at https://docs.anaconda.com/anaconda/install/linux/.  To install:

bash Anaconda3-2018.12-Linux-x86_64.sh

Be sure you execute this in the directory that you downloaded the file to!

Executing the Anaconda installer

  • Press enter to review the license agreement, hitting space to scroll through the agreement.  When asked if you accept the license terms, type yes and press enter to accept.

Accept license terms

  • Press enter to confirm the install location of /home/username/anaconda3 (for me, my username is vagrant)

Specify installation directory

  • The installer now installs a number of packages, and then asks if you want the installer to initialize Anaconda in your .bashrc file

Confirm changes to bashrc

  • Typically, you’ll want the installer to update your .bashrc file.  Type yes and press enter to do so. You might not want it to if you have multiple installations of Anaconda, but that’s pretty rare.
  • After your .bashrc file is updated, you’ll be asked if you want to install Microsoft VSCode.

VSCode installation prompt

  • I’m not going to install it.  Type no and press enter to NOT install Microsoft VSCode.  Note: if you want to install it, you would need to run the installer as root.

Don't install VSCode

  • Close and re-open the Terminal window so that the changes to your .bashrc file are read in.

You can check for successful installation by running “anaconda-navigator” from the terminal.

anaconda-navigator

When it starts up, you’ll be asked if you want to provide anonymized usage information.  If you’re OK with that, click the “OK, and don’t show again” button (otherwise, it asks every time you start it up); if not, uncheck the “Yes, I’d like to help improve Anaconda.” checkbox, then click the “OK, and don’t show again” button.

Anaconda Navigator usage info request

And here’s Anaconda Navigator in all its glory!

Anaconda Navigator screenshot

Notice the applications that have been installed.  I’ve got:

  • Jupyter Lab 0.35.3
  • Jupyter Notebook 5.7.4
  • Jupyter Qt console 4.4.3
  • Spyder 3.3.2

Exit anaconda-navigator (File / Quit).  If told that Anaconda Navigator is still busy, click Yes to exit.

The installer and the packages that it includes are quite large.  Let’s free up some space now. First, delete the file Anaconda3-2018.12-Linux-x86_64.sh.

rm Anaconda3-2018.12-Linux-x86_64.sh

Then, using conda, the command line version of Anaconda, remove the downloaded package installers.  From the Terminal, run:

conda clean --tarballs

You’ll be given a list of all of the package installers that will be deleted, as well as the size of those files.  You’ll then be asked whether to proceed; type y and press enter to delete them.

Updating packages installed with Anaconda

Now, let’s make sure we’ve got all of the latest versions of packages that have been installed with Anaconda.  But, rather than using Anaconda, we’ll use the command line version, conda. The reason for this is you need to update packages one at a time with Anaconda; with conda, you can update everything at once.

In your Terminal window, execute:

conda update --all

This will check to see which packages can be updated, list them, and ask you to proceed.  Type y and press enter.

After doing this, free up space again:

conda clean --tarballs

And, you’ve now got Anaconda installed and up-to-date!

Creating SSH keys in Eclipse on Windows 10

If you want to use SSH keys in Eclipse, such as if you’re going to connect an Eclipse Git repository with GitHub or BitBucket, you may want to use Eclipse to create and manage the keys for you.  It’s pretty easy to do.

Where to store your keys

I recommend storing your keys in a folder named .ssh underneath your home folder.  Most programs that use SSH keys expect that, including Eclipse, so unless you’ve got a really good reason to do it differently, go with the standard.

What type of key to use

You’ve got two choices for type of key to use with Eclipse: RSA and DSA.  According to this page on StackExchange, you want to use RSA.

The next thing you need to decide is how long your key is.  Ideally, we’d use a key length of 2048 or 4096; unfortunately, Eclipse only generates a 1024 bit key.  There is a bug report filed against Eclipse to change this, but it’s been open since 2013, so I’m guessing it’s not going to be changed soon.  So, I guess I lied — you don’t need to decide how long your key is, because it’s going to be 1024 bits!

Generating the key

Open Eclipse, then from the menu, select Window, and from the Window menu, select Preferences.  You’ll get a window that looks like this:

On the left side, expand General (click on the > beside General), then expand Network Connections, and finally select SSH2:

You’ll see here that it defaults to storing the keys in the .ssh folder of your home folder — that’s good, that’s what we want.

Select the Key Management tab:

We want to create an RSA Key, so click the “Generate RSA Key…” button.  You’ll get something like this:

So, what’s happened?  Eclipse has generated a “key pair”, a pair of matching keys that you can use to authenticate who you are.  The idea is that you keep one of the keys secret (the “private” key), and you don’t ever let anyone else ever see that.  The other key (the “public” key) you can let anybody see; in fact, they’re going to need to know your public key so that you can authenticate with them.  The public key is what’s shown in the “You can paste this public key into the remote authorized_keys file:” box.

The private key is not shown.  You will want to save it to your .ssh folder.  Before saving it, you need to decide if you want to encrypt the key.  If you don’t, anyone who gets access to your .ssh folder can get your private key and pretend they’re you.  But, if you do encrypt it, every time you go to use the key, you’re going to have to type in a password. I generally encrypt my private key.

To specify a password to encrypt your private key, enter it into the “Passphrase” field.  Type it again into the “Confirm passphrase” field. Be sure to choose a good password! If you don’t type anything into those two fields, your private key will be stored unencrypted.  Eclipse will warn you when you try to save your private key:

In this example, I have typed in a passphrase.  When I press the “Save Private Key…” button, I get this dialog box:

You can ignore the “known_hosts” file in there; that’s from something else I’ve done.  You probably don’t have it. Anyways, it defaults to saving your private key in a file called “id_rsa”; unless you’ve got a really good reason to change it, just go with the default.

Actually, when I save it, it creates two files: one called “id_rsa” that contains my encrypted private key, and another called “id_rsa.pub” that contains my public key that I can share with anybody.

Done!  Now I can share my public key with GitHub or BitBucket, and I can easily authenticate with those systems with Eclipse.  Click the “Apply and Close” button, and you’re good to go!

Summary: Setting up a Debian Vagrant box on Windows 10 with VirtualBox

File was modified as follows: converted from SVG to JPG
Debian-OpenLogo” by Ebrahim is licensed under CC BY-SA 3.0

In my three previous posts (Post 1, Post 2, Post 3), I detailed the steps involved in setting up a Debian Vagrant box on Windows 10.  It contains lots of explanations and screenshots; if you know what you’re doing, and you just want to see the steps, this is the post for you!

Install the vagrant-vbguest plugin, if you don’t have it installed already:

vagrant plugin install vagrant-vbguest

Create the Vagrantfile:

vagrant init debian/buster64

Update the Vagrantfile by adding the following lines to the appropriate locations:

config.vm.synced_folder ".", "/vagrant", type: "virtualbox"

config.vm.provider "virtualbox" do |vb|
  vb.gui = true
  vb.memory = "2048"
  vb.customize ["modifyvm", :id, "--vram", "12"]
end

Start up the VM.  This will download the Vagrant box if required, then create the VM, start it up, and install the VirtualBox Guest Additions:

vagrant up

SSH in to the VM, update the software, and install the GUI software:

vagrant ssh
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get autoremove
sudo tasksel install xfce-desktop

Reboot the system, and maximize the GUI window after the system has booted:

logout
vagrant halt
vagrant up

Log in to the GUI (username vagrant, password vagrant).

And, you’re done!

Adding a GUI to a Debian Vagrant box

File was modified as follows: converted from SVG to JPG
Debian-OpenLogo” by Ebrahim is licensed under CC BY-SA 3.0

This is the third post in a series explaining how to set up a Debian Vagrant box on a Windows 10 machine.  In the first post, I talk about how to download a Debian base box from the Hashicorp atlas repository of base boxes, and how to create a Virtual Machine from that base box.  In the second post, I describe how to install the VirtualBox Guest Additions into your Debian box, and how to configure a shared folder between the VM and your Windows host machine.  In this post, I describe how to install a GUI.

If you know what you’re doing, and you want to skip all the explanations and just see the steps involved, feel free to look at my summary!

Note: this blog post was written with Debian 9 Stretch, but I’ve tested it with 10 Buster, and everything works the same.  The screenshots will vary slightly, but everything works good!

Setting up your Vagrantfile

We’re going to make some configuration changes to our Vagrantfile, so if your VM is currently running, shut it down:

vagrant halt

The first thing we’re going to want to do is to set up our Vagrantfile to configure VirtualBox with our Vagrant box.  There are some minor changes we need if we’re going to run a GUI on our VM. Open up your Vagrantfile in your favourite text editor.  Find the section of commented out lines that begin with “Provider-specific configuration”:

Add the following lines after that section:

config.vm.provider "virtualbox" do |vb|
  vb.gui = true
  vb.memory = "2048"
  vb.customize ["modifyvm", :id, "--vram", "12"]
end

This part of my file now looks like:

What this does is configures VirtualBox.  If you are using a different provider, say VMware, you’ll need to do something different; that’s outside the scope of this post.

What these lines do is as follows:

  • “vb.gui = true”: configures VirtualBox to appear when it is run.  Up until now, when we start up our VM, we don’t actually see it. This line changes that.
  • “vb.memory = “2048””: assigns 2GB to your virtual machine.  This isn’t necessary for running a GUI, but the default of 512MB isn’t enough for the development work I do.  If you don’t have a lot of memory on your Windows host machine, leave this line out.
  • “vb.customize [“modifyvm”, :id, “–vram”, “12”]”: assigns 12MB of video RAM to the virtual video card.  The default is 8MB, and that’s not quite enough to run full-screen on my 1920×1080 display. The minimum is 9MB, but I like to give myself a bit of wiggle room.

Installing the GUI

Now that we’ve got the Vagrantfile set up, start up the VM:

vagrant up

The VM will start as normal, but what will be different is that you’ll see the VirtualBox GUI running.  We’ll just ignore it for now, and continue to ssh into our VM.

vagrant ssh

If it’s been a while since you set up your VM, you may want to make sure you’ve got all the latest packages, although this isn’t always necessary.  I do it for completeness. Execute these commands inside your SSH session:

sudo apt-get update
sudo apt-get upgrade

Now, there’s a single command that we need to execute to install the GUI.  I’m installing the XFCE desktop; it’s nice and simple and easy to use.

sudo tasksel install xfce-desktop

This command now goes out and downloads all the required packages, then installs them.  Be warned that this is a slow process; when I did this as I was writing this post, it required downloading 944 packages!  Also, know that if you want to wipe out your VM and recreate it with “vagrant destroy / vagrant up”, you’re going to have to download all these packages again.  But, sometimes that can’t be helped…

Once the download and install completes, log out of your SSH session, reboot the VM, and it will start up with the GUI!

logout
vagrant halt
vagrant up

Using the GUI

Once your VM boots, you’ll have a GUI window:


You can use this window as-is, but it’s kind of small.  I always maximize it. The first time you do this it’s going to look kind of strange:


Not a concern, as it will fix itself when we log in.  Now, log in on the GUI, using the username of vagrant and the password of vagrant.  The GUI will log you in, and resize to use the full screen:


And, you’re done!  You’ve now got a Debian box with a GUI running in Vagrant!

Shutting down the VM

When I’m done working with the GUI, I always first log out of the GUI (Applications / Log Out from the XFCE menu, then choose Log Out), then I switch to my Windows command prompt window and do a “vagrant halt”.  I don’t know if this is necessary, but it’s probably good practice: it lets the Debian GUI cleanly shut down, and then lets Vagrant cleanly shut down. It’s probably not a problem to just shut down the VM from the GUI, but I’m a little anal-retentive that way….

Installing VirtualBox Guest Additions in a Debian Vagrant box on Windows 10

Short answer: Use the vagrant-vbguest plugin to make things easy!

This is the second post in a series of three that describe how I set up my Debian development environment in Vagrant on Windows 10, using VirtualBox as the provider.  The first post shows how to set up a basic, command-line only, Debian box. The third describes how to install a GUI. In this post, I describe how to install the VirtualBox Guest Additions.

If you know what you’re doing, and you want to skip all the explanations and just see the steps involved, feel free to look at my summary!

Note: this blog post was written with Debian 9 Stretch, but I’ve tested it with 10 Buster, and everything works the same.  The screenshots will vary slightly, but everything works good!

What does the VirtualBox Guest Additions offer?

According to the VirtualBox User Manual, installing the Guest Additions provides the following advantages (read the User Manual for more details):

  • Mouse pointer integration: makes it easier to use the mouse between the virtual machine and your Windows host)
  • Shared folders: makes accessing files between your VM and your Windows host easier
  • Better video support: not a big deal if you’re doing command-line only work, but if you’re using a GUI, it makes a huge difference.  For me, I like to resize the GUI, and when I do that, the screen in Debian automatically resizes. Very nice.
  • Seamless windows: I’ve never actually used this.  Read the manual for what it is (as I should do!).
  • Generic host/guest communication channels: Something else I’ve never used….
  • Time synchronization: synchronizes the time between your VM and the Windows host.  If you ever pause your VM, this is really nice because it automatically updates the time in the VM when you unpause.  Not something you’ll ever notice when you’re using it, but you will notice if you don’t have this feature!
  • Shared clipboard: Easy cut-and-paste between your VM and the Windows host.
  • Automated logons (credentials passing): Never used this, so I can’t really comment.

What’s involved in installing the VirtualBox Guest Additions?

You’re probably convinced now that having the VirtualBox Guest Additions installed is a good thing.  Unfortunately, getting them installed is normally a bit of a pain. They are distributed within VirtualBox as an ISO file, which you can mount as a CD-ROM on your VM.  Then, you run the install script, and everything happens nice (hopefully): installing new device drivers, adding kernel modules, etc., etc. But, the problem I had, is that I need to have a bunch of software installed in my VM before I can install the Guest Additions.  I suppose that’s not that hard, I just need to figure out what I need first. I could even record the list of required software in a blog post!

Another problem is that every time you upgrade your version of VirtualBox, or the kernel in the virtual machine, you need to re-install the Guest Additions.  If you don’t, things likely still will work, but it’s better to be safe than sorry. VirtualBox will warn you if you’re running a different version of the Guest Additions, but you’ll need to update them yourself.

But, there’s a better way!

Using the vagrant-vbguest plugin

Vagrant allows you to extend its functionality using plugins.  There is a plugin, called vagrant-vbguest, that does all of the hard work for you involved in setting up the Guest Additions.  Once you’ve got it installed, every time you run vagrant, it will check to see if the Guest Additions are installed, and at the correct version; if not, it will automatically install them (or upgrade them) for you.  It will even automatically install the software required to do the installation!

I ALWAYS use the vagrant-vbguest plugin.  It’s possible to use plugins on a per-VM basis (I’ve read, anyways, but I’ve never tried it), but it makes things so much simpler, why would you not want to do it?

Installing the vagrant-vbguest plugin

Installing the vagrant-vbguest plugin is VERY easy.  Just execute:

vagrant plugin install vagrant-vbguest

This will go out to the Internet, download the plugin, and install it in Vagrant.


And that’s all there is to it!

Installing the VirtualBox Guest Additions with the vagrant-vbguest plugin

The wonderful thing about this plugin is, once it’s installed, you don’t have to do anything else!  Every time you start up a Vagrant box with “vagrant up”, the plugin will ensure that the Guest Additions are installed; if they’re not, it will install it for you.  Here we go:

vagrant up

And here’s some screenshots of the plugin in action.  First, the VM boots as usual:


Then, Vagrant checks to see if the Guest Additions are installed:


Next, it checks to see if the packages required to install the Guest Additions are installed in the VM; if they’re not, it installs them:


I’m not going to bother showing the installation of these 34 packages.  After they are installed, Vagrant mounts the Guest Additions ISO from VirtualBox into our VM:


Then, it actually installs the Guest Additions:


And finally, it starts up the Guest Additions, unmounts the ISO, and finishes the “vagrant up”:


Because we’ve made changes to the kernel, I always like to reboot the system after installing the Guest Additions.  Maybe it’s not necessary, but I prefer to be safe. Just shut it down and restart:

vagrant halt
vagrant up

You’ll now see, as part of the bootup sequence, that Vagrant checks to ensure that the Guest Additions are installed and running:

Setting up shared folders in your VM

Now that we’ve got the Guest Additions installed in the VM, let’s set up shared folders, so that we can easily access our Windows files in our VM, and vice-versa.  What we’ll do is set up a single folder that will be shared between the VM and the Windows host. First, shut down the VM:

vagrant halt

Now, use your favourite text editor to edit the “Vagrantfile” configuration file.  Within that file, you’ll find some lines like:

We’re going to add a new line after this to specify how we want to set up our shared folder.  What I’m going to do is have the current folder (the one with Vagrantfile in it) show up in my VM in the location /vagrant.  To do this, add the following line after the lines above:

config.vm.synced_folder ".", "/vagrant", type: "virtualbox"

This tells Vagrant to mount the current folder (“.”) on the Windows host into the VM at location “/vagrant”, and to use a VirtualBox shared folder.  There is also an “rsync” way of sharing folders, but that requires installing additional software on both Windows and the VM, and it doesn’t automatically sync the files.  I much prefer the VirtualBox shared folders. Anyways, that section of my Vagrantfile now looks like:

Start Vagrant back up:

vagrant up

You’ll notice in the bootup sequence a message indicating the shared folder:

Using the shared folders

Let’s actually try out the shared folders.  First, ssh into the VM:

vagrant ssh

If, from within the VM, you look at the contents of the /vagrant directory, you’ll see:


which is the same as what you see in File Explorer in Windows (not counting the hidden .vagrant folder!):


If you look at the contents of the Vagrantfile in the VM, you’ll see that it is the same as the file on Windows — they are the same file!

Next, try creating a file in the VM:


And you’ll see it’s also visible in Windows:


So, if you ever want to move files between the VM and the Windows host, just drop them in the appropriate folder, and you’re good to go!

Cleaning up

If you want to remove the plugin from Vagrant, it’s pretty easy to do:

vagrant plugin uninstall vagrant-vbguest


Note that this only uninstalls the plugin, it does not uninstall the VirtualBox Guest Additions.  If you do want to uninstall the Guest Additions, I’d suggest destroying the box, and recreating:

vagrant destroy
vagrant up

I personally prefer having the Guest Additions installed, so I always have the plugin installed.

What’s next?

In the first post, I looked at how you can set up a basic Debian box in Vagrant.  But, it’s command-line only. That’s OK for an old Unix hacker like me, but if you prefer a GUI, the next post talks about how to do that.

Setting up a Debian Vagrant box on Windows 10 with VirtualBox

File was modified as follows: converted from SVG to JPG
Debian-OpenLogo” by Ebrahim is licensed under CC BY-SA 3.0

Update on July 23, 2019: Since the time I originally made this post, Debian has moved from version 9.6 Stretch to 10.0 Buster.  I’ve updated the post accordingly.  Thankfully, nothing changed but the name of the Vagrant box to use!  If you still want to use Stretch, replace everywhere that it says stretch64 with buster64.  Some of your error messages may be different, though…

Lately, for my Linux development, I’ve been using Vagrant, using VirtualBox as a provider.  In Vagrant, I set up a Debian box and do my development on that. It’s nice and easy to set up, and if I want to restart with a clean installation of Debian, it’s very easy to do.

I’ll write three posts about how I set it up.  In this first post, I detail the steps that I use to create a basic Debian box, with no GUI.  In my second post, I describe the steps I use to set up VirtualBox’s Guest Additions, so that I can share files between my host Windows system and my Debian Vagrant box.  In the third post, I give the steps that I use to set up a GUI.

If you know what you’re doing, and you want to skip all the explanations and just see the steps involved, feel free to look at my summary!

Debian’s Vagrant Box

The Debian project provides standard Vagrant boxes in the Vagrant Cloud box catalog.  You can read about them on the Debian wiki, and look at the provided boxes on https://app.vagrantup.com/debian/.  The latest version of Debian is version 10, codenamed Buster.  At the time of writing this post, the latest point release was 10.0, and I’m using the 64-bit version of Debian.  So, the Vagrant box I’m using is debian/buster64.

The Debian Vagrant box provides a standard basic Debian system, containing all packages with priority required, important, and standard.  Note that it does NOT include a GUI; you’re just going to get a command-line version. We’ll look at how to set up a GUI in the third post.

Prerequisites

To set this up, you need to have both VirtualBox and Vagrant installed.  You can download VirtualBox from the website https://www.virtualbox.org.  The download page is https://www.virtualbox.org/wiki/Downloads, and the installation instructions are in Chapter 2 of the User Manual. You can download Vagrant from the website https://www.vagrantup.com, where the download page is at https://www.vagrantup.com/downloads.html, and the installation instructions are at https://www.vagrantup.com/intro/getting-started/install.html.  I installed VirtualBox first, then Vagrant.  I don’t know if the order matters, but it made sense to me, and I know that works!

Creating the Vagrantfile

Once you’ve got Vagrant and VirtualBox installed, you’re going to want to create the configuration file for your box.  This file is called Vagrantfile. I’ve created a folder under my home directory called vagrant-VMs, and underneath that, another folder called buster.  I’ve created multiple folders under vagrant-VMs, one for each Vagrant configuration, but in this post, I’m only discussing my Buster installation.

Here’s looking at my folder in File Explorer:

Open a command prompt, then change to the vagrant-VMs\buster folder:

cd vagrant-VMs\buster

Next, use Vagrant to create the Vagrantfile for us:

vagrant init debian/buster64

This will create the Vagrantfile that configures the usage of the Vagrant box.  The box won’t actually be downloaded until you try to bring the box up for the first time.

Here’s a screenshot.

You might want to take a look at the Vagrantfile; it’s just a text file (actually, a Ruby program file), so you can look at it in your favourite text editor, such as Notepad, Notepad++, or Vim.  There’s actually very little in the file; most of it is commented-out configuration, giving examples of things you may want to configure. But, for now, we’ll just leave things as they are.

Here’s a screenshot of the complete file (click to view it larger):

Creating the Virtual Machine

The next step is to create and start up the virtual machine.  We’ll use the “vagrant up” command to do that.  The first time you run this, it will connect to the Hashicorp atlas (a repository of Vagrant boxes, maintained by the developers of Vagrant) and download a copy of the box (called the “base box”).  Then, it will create a virtual machine as a copy of the downloaded base box; subsequent executions will just use the virtual machine you’ve already created.

Note: Vagrant creates a folder to hold all its configuration data under your home directory, with the name .vagrant.d.  If you’re curious where the downloaded base box goes, it goes underneath that folder, in a subfolder named boxes. On Windows, I use File History to back up my files; because these boxes are so big, and because I can easily re-download them, I don’t want to back them up, so I configure File History to not backup the .vagrant.d\boxes folder.  There’s another folder that I also don’t back up, but I’ll mention that next…

Second note: the virtual machine gets created in a folder in your home directory called “VirtualBox VMs”.  Once again, I don’t want to back these up, so I add this folder to my list of excluded folders in File History.  You may want to back them up, but as I said before, you can easily recreate these VMs, so it’s a waste of backup space to back them up.

OK, so let’s create our Virtual Machine:

vagrant up

You’ll see a whole bunch of messages.  Vagrant goes through the following steps when it creates the VM:

  • Imports the debian/buster64 base box and uses it to create a new VM
  • Configures the networking of the new VM
  • Boots the VM, and waits for the booting to complete
  • Uses SSH to connect to the VM, and replaces the SSH key in the VM (more on that later)
  • Checks to see if the VirtualBox guest additions are installed.

You’ll now see one of two messages about the VirtualBox guest additions.  If they are not installed in the Vagrant box (they shouldn’t be, but version 10.0.0 of the box seems to include them), you’ll get a scary error message telling you that you should install them, and that a lot of things won’t work until you install them.  Ignore that for now; I’ll look at installing the guest additions in my next post.  If they are installed (version 10.0.0, I’m looking at you!), you may get a slightly less scary message that the guest additions on the VM don’t match the installed version of VirtualBox.  Don’t worry about that, as we’ll install the proper version in the next post.

At the time of writing, I also get a VERY scary error message about attempting to rsync a shared folder.  Once again, don’t worry about that; we’ll resolve that in the next post as well.

With regards to SSH: the buster64 box that was downloaded from the Hashicorp atlas has a well-known SSH key, but you really want that to be secret.  But, if it was secret, we wouldn’t be able to connect to the VM. So, when we first bring up the VM, Vagrant connects to the VM using the well-known key, then generates a secret key, and replaces the well-known key with our new secret key.  Finally, it disconnects and reconnects using the new key, just to make sure everything is working OK.

Here’s a screenshot of all the output (click to enlarge):

You’ll notice that it doesn’t appear that the VM is running.  The “vagrant up” command completes and returns us to the command prompt, and there isn’t a VirtualBox GUI.  But, don’t worry, VirtualBox is running; you just can’t see it! If you really want, you can start up Windows’ Task Manager, and see the VBoxHeadless process listed under Background Processes.  Or, you can start up VirtualBox, and you’ll see that you’ve got a running VM!

Bringing Debian Up-to-date

There may be security patches issued by Debian that aren’t incorporated into your imported box.  The next thing we’re going to do is to bring all the software up-to-date.

Log in to the VM using the “vagrant ssh” command:

vagrant ssh

This will connect to the VM using SSH, and will log you in to an account named “vagrant”.  This account was present in the Vagrant box you downloaded; it’s a standard convention used by Vagrant boxes.  If you ever need to log in without using the “vagrant ssh” command, the password is also “vagrant”.

Here’s a screenshot:

Once you’re logged in, you’ll be at the Debian command prompt.  We’ll want to execute the following commands:

sudo apt-get update
sudo apt-get upgrade

The first command will connect to the Debian package repository, and download a list of all of the latest versions of Debian packages.  The second command will download and install any packages that have been updated in the repository since the Vagrant base box was created.

Here’s a screenshot of executing the update:

and another of executing the upgrade (click to enlarge).  Note that your packages being updated almost certainly will be different from mine.

Depending on which packages have been updated, there are two other possible commands you may need to execute.  If you get a message about some packages being held back, execute this command:

sudo apt-get dist-upgrade

And, if you get a message that some packages are no longer needed, you can remove them with:

sudo apt-get autoremove

Actually, there’s really no harm in executing both of these commands anyways, since we’re setting up a new VM; they just might not do anything.

And now, we’re done!  We’ve got an up-to-date Debian system running.

Log out of the SSH session to return to the Windows command prompt:

logout

Shutting down the Virtual Machine

The last thing to do is to shut down the virtual machine.  That’s very easy to do from the Windows command prompt. Execute:

vagrant halt

And you’ll get a message that Vagrant is gracefully shutting down the virtual machine.

Next time you want to start the VM back up, just go to your vagrant-VMs\buster folder (or whatever you called it), and re-execute “vagrant up”.  It won’t need to recreate the VM; it’ll just use it as it was the last time you used it.

Do you want to clean up?

For completeness, I should mention how you can clean up what you’ve done.

If you want to delete the VM that you created, execute:

vagrant destroy

That will delete the virtual machine.  You can easily recreate the VM, though, just be executing “vagrant up” again.  This is a nice easy way to start your VM over fresh if you mess it up somehow. It leaves your Vagrantfile intact, so any configuration changes you made in there will be used the next time you recreate the virtual machine.  But, any changes you made inside the VM (such as updating Debian!) will need to be redone.

If you also want to remove the base box, execute:

vagrant box remove debian/buster64

If you want to use it again, you’ll need to re-download it; executing “vagrant up” will automatically do that for you if you need it.

Next steps

It’s very useful to have the VirtualBox guest additions installed on your system; I detail how to do that in my next post.  This will allow you to share files between your VM and your Windows machine that the VM is running on. Also, if you’re running a GUI (which I’ll describe how to set up in my third post), it allows you to resize the window, which is very handy!

My Mom’s Jumbo Raisin Cookies recipe

Last weekend was the first Mother’s Day since my mother passed away.  Unrelated to that, I’ve had a craving for her raisin cookies.  I found her recipe, and just made them.  They aren’t as good as hers were, but that’s probably because I’m not a good baker!  I thought I’d share the recipe.

Jumbo Raisin Cookies

  • 2 cups raisins
  • 1 cup water

Boil 5 minutes and set aside to cool.

Cream:

  • 1 cup shortening
  • 2 cups sugar
  • 3 eggs
  • 1 teaspoon vanilla

Add cooled raisins (use juice and all)

Sift together:

  • 4 cups all-purpose flour
  • 1 teaspoon baking powder
  • 1 teaspoon soda
  • 2 teaspoons salt
  • 1 1/2 teaspoons cinnamon
  • 1/4 teaspoon nutmeg
  • 1/4 teaspoon allspice

Add to raisin mixture.  Add 1 cup chopped nuts if desired (she never did this, and neither do I!).  Mix well and drop by teaspoons full. Bake at 375° F. for 12 to 15 minutes.  Makes 5 dozen cookies.

A few assorted fortune cookies

There used to be a good Chinese food restaurant near my work, and my co-workers and I would go there for lunch on Fridays.  The restaurant is still there, but the ownership has changed and the quality has gone way down since.  So, instead we’ll often go to the Spring Roll Restaurant.  Excellent food and good prices (I recommend the Special # 1, which unfortunately doesn’t show up on their online menu), but that’s not the point of this posting!

The old place used to give fortune cookies after the meal, and I collected a number of them.  I was cleaning up my office last week, and decided to throw out the fortunes, but I wanted to record them.  Here they are, in no specific order:

  • Focus in on the color yellow tomorrow for good luck!
  • You will run into an old friend soon.
  • Tomorrow your friend or partner will tell you some exciting news.
  • The next full moon brings an enchanting evening.
  • Happiness surrounds your events this week.
  • Others admire your assertiveness.
  • You have a great appreciation for beautiful things.
  • Get ready to do something daring.
  • Enough is as good as a feast.
  • You will obtain your goal if you maintain your course.
  • You will receive a big compliment in front of others.
  • A job well begun is half done.
  • It’s the journey and not the destination that counts.
  • You constantly struggle for self improvement — and it shows.
  • A simple kindness today will bring you great reward.

Here’s a fun (and a little spicy) game — add “in bed” to the end of any fortune you get.  It puts them in a whole different light!

 

Installing Google Fonts on Windows 10

A quick how-to guide on how to install Google Fonts into Windows 10.

Google Fonts is a collection of fonts intended for use on the Web.  From the Google Fonts About page:

Google Fonts makes it quick and easy for everyone to use web fonts, including professional designers and developers. We believe that everyone should be able to bring quality typography to their web pages and applications.

Our goal is to create a directory of web fonts for the world to use. Our API service makes it easy to add Google Fonts to a website in seconds. The service runs on Google’s servers which are fast, reliable and tested. Google provides this service free of charge.

I was trying to make a graphic that used Ultra, one of the fonts, and I wanted to use Inkspace to make it.  But, Google Fonts are web fonts, and I wanted to have Ultra as a font installed on my computer so I could use it.  It turns out that it’s not that hard to do.  I’ll show the steps for installing Open Sans.

First, go to the Google Fonts homepage.  In the upper left corner is a search box:

The Google Fonts search box
The Google Fonts search box

Type in the name of the font you’re looking for, in this case, Open Sans.  The Google Fonts website will filter down all of the fonts it knows about, and only show the ones matching what you’ve typed in.  For me, it showed me two fonts: Open Sans and Open Sans condensed.

GoogleFonts2

With each of the fonts displayed, there’s a blue “Add to Collection” button.  Click that button, and that font will be added to a collection of fonts, displayed at the bottom of the page.

GoogleFonts3

Next, we’re going to want to download a Zip file that contains a TTF file (short for True Type font, one of the types of fonts that Windows understands) of the font we’ve selected.  If we add more than one font to our collection, all the fonts will be in the Zip file.  Anyways, there’s a download button on the page, but it’s not real obvious.  It’s in the upper right corner of the page, and looks like a down arrow:

GoogleFonts4

Click that, and you’ll get a dialog box telling you that you don’t need to download the font.  If you’re just using it for the web, that’s right, but we want to install the font into Windows 10.

GoogleFonts5

We want to choose the first option, “Download the font families in your Collection as a .zip file”.  Click on the .zip file link, and your browser will download a zip file to your computer — in my case, it was called Open_Sans.zip.  Go to wherever that file was downloaded (likely your Downloads folder), right-click on the file, and select “Extract All…”.  You’ll be asked where to extract the files to, and it will default to the current directory.  Click the Extract button, and a new folder will be created containing a LICENSE.txt file and one or more TTF files.

The next thing to do is to install the TTF file (or files) into Windows 10.  Open up the Control Panel (type Control Panel into the Windows search box if you’re not sure how to open it), and you’ll get this window:

GoogleFonts6

Click on the Appearance and Personalization heading to get:

GoogleFonts7

Under Fonts, click on “Preview, delete, or show and hide fonts”.  You’ll be taken to a window showing all the fonts installed on your system:

GoogleFonts8

Finally, from that folder of downloaded fonts, drag the fonts you want to install into this new window, and the fonts should now be installed!