1/9
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Why did we make a virtual machine?
It exposes us to Linux, which is a key industry technology and is directly related to the content of this course. Virtualization is also a key industry technology.
Summarize the main steps taken to create a Lunix VM (using VMWare Fusion).
Acquire the operating system that you’re going to install into the VM (we used an iso file for ubuntu linux)
Launch VMWare Fusion on the desktop mac and create a new virtual machine
Fill in the details for your virtual machine, including pointing it to the operating system file, and fill out several forms
Watch as the operating system installation process progresses and completes
You have a working virtual machine !
What does the Linux command “pwd” do?
print working directory; shows what directory you’re in
What does the Linux command “cd” do?
change directory; will automatically change to home directory, and cd [var] will change you to that directory
What does the Linux command “ls” do?
list files; lists file names
What does the Linux command “ls -l” do?
lists file names in “long” form with extra information
What does the Linux command “ls [name; for example, cs245]” do?
lists files in the directory specified
What does the Linux command “mkdir” do?
make a new directory (within the directory you’re already in)
What does the Linux command “rmdir” do?
remove a directory (that has to be empty)
What would the following sequence of commands do?
$ cd
$ cat ../stella/myFile.txt
“cat” displays the contents of a file; this would display the contents of myFile.txt