Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ch1.1-linux-installation.md #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/ch1.1-linux-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,15 @@ Once the USB drive is written, boot the machine from the USB drive (using a BIOS

Setting up a virtual machine is a great way to play with and learn Linux without having to install it on a physical machine. We recommend using [Oracle VirtualBox](https://www.virtualbox.org/) for this purpose since it's free and open source. You can download it here: <https://www.virtualbox.org/wiki/Downloads>.

To setup a linux Virtual Machine (VM), follow this guide: <https://ubuntu.com/tutorials/how-to-run-ubuntu-desktop-on-a-virtual-machine-using-virtualbox#1-overview>. It's written for Ubuntu, but the steps for booting from the ISO image should be almost identical for other distros.
To setup a linux Virtual Machine (VM), follow this guide: <https://ubuntu.com/tutorials/how-to-run-ubuntu-desktop-on-a-virtual-machine-using-virtualbox#1-overview>. It's written for Ubuntu, but the steps for booting from the ISO image should be almost identical for other distros.

## Installing via WSL (no ISO) (Windows only)
For Windows computers with Windows 10 or 11, this is an easy way to use the Ubuntu terminal on top of your system without partitioning your hard drive or using a virtual machine. Windows essentially treats it like another program on the computer, so you run it anytime you like from the Start Menu or from the terminal drop-down menu.
* To install WSL, open the terminal in administrator mode and execute:
```
wsl --install
```
* Once it is installed, you can then go ahead and set up our Linux username and password
* You may need to restart before you can use the Ubuntu terminal\
* Once it is all set up, you access and manipulate all the files on your computer using Ubuntu
* This can be very useful for testing C code that needs to run on the CSU Linux computers for homework.