Preparing a Windows 10 machine for the Labs
Windows 10 includes a feature called Windows Subsystem for Linux. This allows you to run a pure Linux operating system, without needing a virtual machine or a special shell like Cygwin
or git bash
. This the best way to run the lab steps, and to run a cloud development environment in general, on Windows 10. You have the choice of various Linux distributions to install. This document describes installing Ubuntu. The sequence is as follows:
- Enable Windows Subsystem for Linux
- Install the Ubuntu app
- Configure Ubuntu
- Install curl
- Install IBM Cloud Developer Tools
- Install & Configure Java
- Install node.js
If you are using an older version of Windows, like Windows 7, follow the instructions at the link below to set up your workstation for the lab exercises.
Setting up Windows 7 for the lab exercises
Step 1: Enable Windows Subsystem for Linux
- Right-click on the Start menu and click on Settings.
- In the Search window, type
Turn Windows Features On Or Off
and click on that item. - Check the box for Windows Subsystem for Linux.
- Follow the directions and restart if requested.
Step 2: Install the Ubuntu app
- Open a browser and go to the Microsoft Store at
https://www.microsoft.com/en-us/store
. Search for and install the Ubuntu app. This will install the latest stable version of Ubuntu. When this document was written, the version was18.0.4
. - Follow the prompts to install Ubuntu.
- When the installation is finished, the Install button will change to say Launch. Click the Launch button to start Ubuntu.
Step 3: Configure Ubuntu
- When Ubuntu launches for the first time, it will ask you for a user name. This will be the root user for your Ubuntu system. Enter the user name of your choice.
- When prompted, enter and confirm a password for your user.
- After this, the basic installation and configuration of Ubuntu is complete and you are at a command prompt. Enter
pwd
to find your location in the filesystem. You should be at/home/<username>
. - That is all the configuration you need to do. If you are interested in more information about Windows Subsystem for Linux, a useful setup guide can be found at
https://github.com/michaeltreat/Windows-Subsystem-For-Linux-Setup-Guide/blob/master/readmes/02_WSL_Ubuntu_setup.md
.
The remaining steps are all performed in the Windows Subsystem for Linux session, and are the same as the Linux setup steps.
Step 4: Install curl
-
Update all the component installation packages for your operating system.
sudo apt-get update && sudo apt-get dist-upgrade
-
Run the following command (At the message Do you want to continue, type Y):
sudo apt-get install curl
-
When the installation is complete, verify that it was successful by typing
curl https://www.google.com
-
Verify that the response is HTML for the Google home page.
NOTE: If the response is The document has moved, then curl was successfully installed, but the url is not correct. According to your geography, you need to change the extension.
Step 5: Install the IBM Cloud Developer Tools
- Follow the instructions at Getting started with the IBM Cloud CLI to install the IBM Cloud Developer Tools.
Step 6: Install & Configure Java
-
From your command line, enter the following command:
sudo apt-get install openjdk-8-jdk export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 export PATH=$PATH:$JAVA_HOME/bin
-
To make these definitions persist over new sessions and reboots, enter your environment variable definitions into your profile.
sudo vi /etc/profile
Add the following statements to the end of the file, and save and close it.
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 export PATH=$PATH:$JAVA_HOME/bin
Step 7: Install node.js
Ubuntu includes Node.js in its default repositories. The version that was used for this installation was 4.2.6. Your version might be different.
-
Install it by typing the apt install command (At the message Do you want to continue, type Y):
sudo apt install nodejs
-
Verify the installation:
node -v js
- The response is the version number (for example, v4.2.6).
-
Install the Node Package Manager (npm) (at the message Do you want to continue, type Y):
sudo apt install npm
-
Verify the installation:
npm version
- You should see a JSON object similar to this:
{ npm: '3.5.2', ares: '1.10.1-DEV', http_parser: '2.5.0', icu: '55.1', modules: '46', node: '4.2.6', openssl: '1.0.2g-fips', uv: '1.8.0', v8: '4.5.103.35', zlib: '1.2.8' }