Configure Your Computer
Depending on your operating system, there are a bunch of things we need to do to setup your computer up for this course.
The precise steps to take depend on your operating system.
Move on to the next section only once you’ve completed the instructions above for your operating system. Advanced users on Windows may also use the new Bash for Windows feature, but we will not be providing official directions. Note that if you use Bash for Windows, you’ll need to install Java twice (once inside Bash for Windows, and once inside Windows itself, following the directions above).
Learn to Use the Terminal
The terminal is an application that allows you to run all sorts of programs, as well as manipulate files in your own computer. It is a powerful but also dangerous tool, so please be careful with using some of these commands. On Unix-like operating systems, the Terminal application will provide you with everything that you need. On macOS, for example, you can use Spotlight to search for the Terminal application.
The lab computers run the Linux operating system. As such, you can use terminal commands to make changes to your directory and files. Here are some important ones that you may find useful in this course:
cd
- Change your working directory
cd hw
This command will change your directory to
hw
. pwd
- Present working directory
pwd
This command will tell you the full absolute path for the current directory you are in if you are not sure where you are.
.
- Means your current directory
cd .
This command will change your directory to the current directory (aka. do nothing).
..
- Means one parent directory above your current directory
cd ..
This command will change your directory to its parent. If you are in
/workspace/day1/
, the command will place you in/workspace/
. ls
- List files/folders in directory
ls
This command will list all the files and folders in your current directory.
ls -l
This command will list all the files and folders in your current directory with timestamps and file permissions. This can help you double-check if your file updated correctly or change the read-write- execute permissions for your files.
mkdir
- Make a directory
mkdir dirname
This command will make a directory within the current directory called
dirname
. rm
- Remove a file
rm file
This command will remove file from the current directory. It will not work if
file
does not exist.rm -r dir
This command will remove the
dir
directory recursively. In other words, it will delete all the files and directories indir
in addition todir
itself. Be careful with this command! cp
- Copy a file
cp lab01/original lab02/duplicate
This command will copy the
original
file in thelab01
directory and and create aduplicate
copy in thelab02
directory. mv
- Move or rename a file
mv lab01/original lab02/original
This command moves
original
fromlab01
tolab02
. Unlikecp
, mv does not leave original in thelab01
directory.mv lab01/original lab01/newname
This command does not move the file but rather renames it from
original
tonewname
.
Here are some other useful tricks when navigating on command line:
-
Most terminals can autocomplete file and directory names for you with tab completion. When you have an incomplete name (for something that already exists), try pressing the Tab key for autocomplete or a list of possible names.
-
If you want to retype the same instruction used recently, press the Up key on your keyboard until you see the correct instruction. This saves typing time if you are doing repetitive instructions (like running Java programs on command line while testing).
Test Run
Let’s ensure that everything is working.
Git
First open up your terminal. Check that git is a recognized command by typing the following command:
git --version
The version number for git should be printed. If you see “git: command not found”, or similar, try opening a new terminal window, restarting your computer, or installing Git again.
Java
Finally, let’s check that javac
and java
are working. Start by running the following commands on your terminal.
mkdir ~/temp
cd ~/temp
-
Then, open your operating system’s file explorer in this directory. You can do this from the command line:
- Mac:
open .
- Windows:
explorer .
- Ubuntu:
gnome-open .
- Linux Mint:
xdg-open .
ormate .
- Mac:
-
In this newly-opened directory, create a file
HelloWorld.java
with these contents:public class HelloWorld { public static void main(String[] args) { System.out.println("Hello world!"); } }
-
In your terminal, enter
ls
(list the files/folders in this directory). You should seeHelloWorld.java
listed. -
Run
javac HelloWorld.java
. If this produces any output, then something may be wrong with your setup. Try opening a new terminal window or restarting your computer. If that still doesn’t work, see the Troubleshooting section under the directions for your operating system. -
Type
ls
, and you should see bothHelloWorld.java
and a freshly createdHelloWorld.class
(thejavac
command created this file). -
Run
java HelloWorld
. It should print out “Hello world!” for you. If it didn’t, something is wrong with your setup! -
You’re done! Hold on to
HelloWorld.java
, you’ll submit it at the end of today’s lab.
The screenshot below shows what we’re hoping for when we do steps 4-7. If you see something similar to this, your Java setup is complete.