gtlacey wrote:I have no LiveCD, I downloaded the files from Zorin onto a USB.
This is still considered a LiveCD, even though in modern systems users are often using a USB.
gtlacey wrote: Where do I access CODE: SELECT ALL?
The code tags are like the quote tags used on the forum. They act as separators between comments to make it easier to differentiate them.
The portion within the code tags:
sudo apt-get remove firefox
is the part you want to use.
"sudo" means "SuperUser Do" as in "Do this" (Just SuperUser is "su"). APT is "Advanced Package Tool." "apt-get" is the users command line backend for APT.
So what we get is "SuperUser account do package removal with Package Tool on Firefox".
sudo apt-get remove firefox
or in code tags:
- Code:
sudo apt-get remove firefox
To install:
sudo apt-get install firefox
or in code tags:
- Code:
sudo apt-get install firefox
It was One Year ago that I migrated from Windows to Linux using Zorin. I remember the confusion of learning something new very well. Using the command line (or terminal) took some getting used to. It was intimidating because it seemed like you had to learn a lot of code or something.
But actually, the command line is quite easy. You don't have to learn a lot of code. Once I got the hang of it, now I use the command line for the vast majority of operations, from converting files from one extension to another (changing png images to svg images), copying and moving files, examining the system, changing directories... It is simpler, faster, more intuitive and more effective. As well as safer.