OOP Lab0. Racovcena Irina. FAF-212
I've installed Manjaro Linux with the following steps:
I had to make space for installing Manjaro. Since I had a free disk D, I've decided to dedicate it to installing LInux. So, it looked like this on Windosk disk manager in the end of installing:
I've downloaded the ISO from the Manjaro webside and burnt it to a USB flash drive.
I've restarted my computer and was pressing F2 key
comtinously, so I could get it in BIOS settings. After changing Boot priority, I had Windows on UEFI and LInux on Legacy.
Once the USB flash card is connected to the laptop, I could start the Manjaro installation.
(The next screenshots will be provided as examples since i couldn't make screenshots during installation)
I could launch the installer after clicking the Launch Installer
button:
Then I clicked Continue
and had to set my location, time zone and click Next
again. After this the next option was Keyboard
where you have to set language and layout.
I've faced problems with Partition
, since I could use the free space which included the whole disk D and had more than enough storage for installing Manjaro. Therefore, I had to divide it manually. The result was shown on the first screen above.
Afterwards, the hardest past left I just had to set all the users settings such as my name, name of the computer and password. Then I could see Summary
and finally Install
and after it Finish
which looked like this:
The first essential tool was zsh
shell. I had it already after installing Manjaro so I skipped this step:
Then I installed oh-my-zsh
which is the most popular framework for managing Zsh configuration, plugins, and themes:
I downloaded base-level grub
that included gcc:
And my favorite IDE - Visual Studio Code
I made a folder named "lab0" whewe my C program is supposed to be:
The main.c
file included the "Hello, World!" program:
Further, I made a new repository on GitHub and named it lab0
. Therefore, I had to connect my GitHub account and Git on my laptop so I could have acces to my program in this folder from GitHub website. Entered my user email and user name, added my first commit and changed branches from master
to main
:
and pushed it:
The result on GitHub webpage:
Now it's time for a Makefile, adding the second commit, compiling and running the program: