Thank you all who reached out, it really was awesome.
Was super easy, even my Nvidia cards driver was basically automated. Haven’t played anything yet but I’m sure I’ll be fine.
I opened up the command thingy a couple of times just to get some settings how I wanted them, but could have gotten by without it.
The biggest stumbling block for me personally was getting the thumb drive in order, then the hardware to boot from it. First you gotta use a thing called Rufus to format the drive correctly, not sure how or why, but you do.
And then I couldn’t get my laptop to load bios no matter what key/s I mashed at restart, but searching " advanced startup options" in settings brought me to a menu to reboot from my (now correctly formatted) USB drive.
The rest drove itself. Still some stuff to figure out with it but it’s doable. Very polished and user friendly.Thank you all again so much!
command thingy
They grow up so fast.
One of us One of us One of us! :)
Welcome to the penguin party! 🐧
I use Arch by the way.
I did too, never again. Fedora just works.
If you happen to care, what you were doing with the program Rufus was creating a “bootable media”. Think back in the day when you had to buy a Windows CD and insert that to install or update Windows. This is kind of the evolution of that. An operating system installer can be loaded into a thumb drive (some utilities even let you put many on one drive, and then you can choose between them) and then you tell your computer to read from the USB drive first (which you did via the BIOS boot menu configuration) and instead of booting up your installed Windows, it gives you the option of installing whatever is on your USB drive.
This is fortunately often a pretty painless process, creating the USB boot loaders isn’t hard, and virtually every single Linux distro out there can be installed in this way.
Glad you’re enjoying Mint, and excellent choice for a new Linux user. If you like it, you’ll never need to change to anything else.
Welcome!
Ya I was wondering why I couldn’t download it in that state already directly to the drive. But I suppose there was already some formatting that needed to be stripped down before it could function as a boot strapper or whatever it’s called.
Seriously thank you all for reaching out. I thought like maybe one person would begrudgingly link me a copy of Linux for dummies, but you all were so helpful!
And it really wasn’t as hard as I thought it would be. I have memories of messing with Linux in like… 04 or 5 maybe? The ease of use has come a long way, applications are just working without fuss. 10/10
Linux is built by the community for the community. I think trying to help people move to linux is just in just in linux users blood 😅
I think a better analogy is “remember when you had an iso that you had to burn onto a DVD to be able to boot from it? Or to be able to have the CD player recognize it instead of just writing the songs into it?, sort of the same thing”.
What you downloaded is a binary image, i.e. the sequence of 0 and 1 needed for a computer to boot into Linux, now you need to feed that sequence directly to the computer, but the computer only knows how to read it from a thumb drive directly, not from a file inside the thumb drive, so you need to write that sequence bit by bit in order on the thumb drive. Back in the day we used Nero for dvds, Rufus does the same but to a thumb drive.
Fun fact in Linux you can use
dd
which unlike what most people say doesn’t stand for Disk Destroyer (although certainly lots of disks were destroyed by it), which is an application that does binary writes. Hell, in Linux you can actually docat image.iso > /dev/sdb
and that should work, that is essentially print the output of the file image.iso and write it into/dev/sdb
which should be the second disk plugged to your system (first one being/dev/sda
).Cool, I started using Linux back in 04, but I think not that much changed, I think it’s mostly people who change the way they look at Linux, outside of gaming, for day to day use, Linux was very usable even back then.
Dude, just have to say, your comments are so informative, helpful, and tailored to the individual’s question or situation. Thank you for being a part of this community! Your example makes the place better for everyone.
Setting up nvidia drivers wasn’t an issue? Well then I guess I was stupid or just extremely unlucky. I ran into so many driver issues on Mint it’s ridiculous.
Probably a day late and a dollar short but here:
I was having issues until I turned secure boot off. I also have to have two graphical drivers running.
This page helped out https://forums.linuxmint.com/viewtopic.php?t=370633
No you don’t, they’re mutually exclusive, there are a couple of ways to check which one you’re running, from
lsmod
to check which module is loaded on the kernel to my favorite:glxinfo | grep -i vendor
First of all don’t run random commands from the internet without understanding them. Now to what that command does,
glxinfo
prints a lot of output about what’s being used to render OpenGL, you might need to install mesa-demos, mesa-tools or something else if glxinfo is not installed by default. Then the pipe, i.e. the vertical bar|
says to grab the output from the left command and feed it to the right command.grep
is used to filter an input, and the-i
flag tells it to do it without being case sensitive, i.e. Insensitive. Thenvendor
is the text you’re using as a filter. Long story short that command shows information about the vendor used to render OpenGL.If it says Nvidia you’re using the proprietary driver (which you should use from your other comment). If it says Mesa you’re using the open source drivers (which should be “fine” but will have very bad gaming performance)
this seems to imply it ll switch the gpu on or off depending on load
Ok, prime laptop, run the following then:
prime-run glxinfo | grep -i vendor
if prime-run doesn’t work there are others like optimun, I’ll check which one is the correct for mint and reply back.sam@sam-ROG-Strix-G531GT-GL531GT:~$ prime-run glxinfo | grep i vendor grep: vendor: No such file or directory
prime-run: command not found
Yeah, there might be an nvidia-prime package or something, either that or the command in mint must be different. Quick Google didn’t helped me and it’s after 1AM for me so my brain is not helping either, hopefully someone else can help you, if not tomorrow I’ll be back.
But everything looks correct, Nvidia settings only works if the Nvidia driver is installed, now all you need is to figure out how to tell Mint to run things with the Nvidia GPU and you should be good to go.
glxinfo | grep -i vendor server glx vendor string: SGI client glx vendor string: Mesa Project and SGI Vendor: Intel (0x8086) OpenGL vendor string: Intel
so this means im using my proccesor and not gpu to render shite?
From our other reply you should be fine, this is a prime laptop so it will use the CPU for everything unless you specify different z that’s by intent to preserve power since Nvidia cards consume lots of it and otherwise your battery would last an hour or so, windows does the same, the difference is that Windows tries to guess which apps need it and on Linux you have to be specific about it.
Ty!
Quick test you can run to confirm this is
lspci | grep nvidia
andlspci | grep nouveau
one of them will display something and the other nothing (hopefully),nvidia
is the name of the properietary driver,nouveau
is the open source one.
I’m happy for you!!! Happy to hear you’re enjoying your freedom.
green ubuntu goes brrrr
Also on Mint here after trying NixOS and then Zorin.
Note about Steam gaming: Steam seems to choose the experimental version of Proton (their compatibility layer) by default which exhibited very poor performance for me.
As soon as I forced games to launch with version 8 (latest stable) I was getting full frames on Fallout 4.
As soon as I find the time will do the same thing. Congrats!
I’m glad you had a better experience than I did. The past two nights, I was messing around with a live version of mint and had nothing but problems. The programs I installed from the software manager didn’t work and I couldn’t even get wine to work. I followed the instructions on mints site and wine kept having installation errors. I’m going back to ubuntu as I didn’t have these problems with that distro. Glad you’re up and running though!
Next on the list: get into tabletop RPG, but not DnD.