With the new computer and the newer Microsoft Windows updates they have really jam packed their OS with bloat and spyware. That being said I have no idea what I’m doing with Linux, need help with where to start.? What are some general tips? I understand there’s a lot of prebuilt Linux distributions or something what are some first timer friendly ones? Really any help is appreciated because the biggest barrier to entry is the perceived difficulty of actually doing it.
It's been a few years, but I really liked Linux Mint and Xfce. The former is more friendly for beginners. But XFCE is responsive...like...you click and the computer responds immediately. It feels like the computer is really yours. Don't get me wrong, though, Linux Mint is really responsive, too, particularly in comparison to Windows.
You can always try them out, too, before you commit with your current computer. In the past, I've used VirtualBox to virtualize Mint/Xfce. . It sounds fancy, but it's pretty easy.
Linux Mint is great for beginners. Have you ever installed windows? Installing Linux Mint is as easy as that. The day to day use is not much different compared to windows. Don't be afraid to try it out, you can always go back to windows if it does not work out for you
Focus on simple things first too! I see a ton of people talking (in other threads) about not wanting to deal with the terminal/command line and that is fine. Mint will install/set up hardware without it and includes a software store that will handle everything via the GUI. Once it's installed check the store out and get the apps you want/need.
Then focus on one thing at a time - i.e. pick an app you need you haven't found/setting you really want to change and start googling/asking here for tips/help. Like any OS there will be some differences to get used to but you don't need to learn all at once!
I started with Ubuntu because it’s so widely covered in tutorials/guides and troubleshooting docs. I want to branch out and try other distros, but I have had no reason to stop using Ubuntu. I use 22.04 on my daily driver and Ubuntu server for my home servers.
My advice is to just do it and figure it out from there. If you're at least moderately tech-savvy and you're willing to look up how to do things, you'll be fine. The installation process is painless.
Think of the software you use on Windows, and then look up if a Linux version is available. Failing that, odds are pretty good that there's a FOSS alternative to replace it.
Each distribution has a built-in package manager that gives you access to tons of software. The majority of the free software that you'll want to use will probably be available from there.
Quick edit: The Linux community is truly supportive, and you'll pretty much always find someone somewhere willing to help you figure things out.
My best tip is not to worry too much about distro. I like mint, but it's not too different from PopOS or ubuntu. They're just some nice starting points.
If you look at a few and like how they look or feel, you should know the majority of that is the desktop environment not the distro. Meaning you can change it out without re-installing or losing all your apps.
If you like linux mint with cinimon, but want to try out xfce, then just go into the app centre, search 'xfce', install it, log out, select xfce, and log in. Nothing is lost and you can go back at any point in time. Same with plasma, gnome, lxqt, etc. (PopOS uses Gnome with the pop shell).
Only negative suggestion would be to avoid arch based distros for the time being. They assume a bit more knowlage and break much more often. I use EndeavorOS but I understand that life isn't for everyone
As others have said, Linux Mint is probably the best distro for absolute beginners. You'll have several desktop environments to choose from (the software suite that gives you things like window frames, the taskbar, the application launcher...). I like KDE Plasma and Cinnamon - Plasma is a lot more customizable, but Cinnamon is more robust and (IMO) better suited for beginners.
You'll have to unlearn a lot of Windows habits. - :q! is very important, remember it. - You won't download application installers from the internet, you'll have to either use the system's own package manager in the terminal (APT for Mint), a GUI front-end, or Flatpak. - You won't be able to choose where software are installed. - There are no lettered drives. There is a single root filesystem (equivalent to C:\ on Windows), and every other partition has to be mounted somewhere within that filesystem. Most graphical file manager applications take care of that automatically. - Updates are
... show more
As others have said, Linux Mint is probably the best distro for absolute beginners. You'll have several desktop environments to choose from (the software suite that gives you things like window frames, the taskbar, the application launcher...). I like KDE Plasma and Cinnamon - Plasma is a lot more customizable, but Cinnamon is more robust and (IMO) better suited for beginners.
You'll have to unlearn a lot of Windows habits. - :q! is very important, remember it. - You won't download application installers from the internet, you'll have to either use the system's own package manager in the terminal (APT for Mint), a GUI front-end, or Flatpak. - You won't be able to choose where software are installed. - There are no lettered drives. There is a single root filesystem (equivalent to C:\ on Windows), and every other partition has to be mounted somewhere within that filesystem. Most graphical file manager applications take care of that automatically. - Updates are very important. Fortunately they are much less of a pain in the ass. Graphical package manager apps usually offer automatic reminders, or you can use the terminal to update manually. - The terminal is much more important compared to Windows, and you should learn basic things like navigating the filesystem, handling files and directories, how to use sudo (eq. run as admin), how to manage running processes (top, kill/pkill/killall), and how to use the package manager. - Use manuals and the man command. The Arch Wiki is an invaluable tool for every distribution. - Ask your questions. There will be dickheads, but most people will be happy to help.
I swear to God this is my biggest gripe with Linux, not being able to choose where stuff gets installed. Like yeah cool I want to have the OS on a SSD but that doesn't mean I also want my packages to go to it too, the HDD is for that
Yeah I was thinking the same thing too, technically if we would recreate the file structure on the second drive, move everything there and set up soft links to those folders instead it might work? I need to try it out in a vm
Some directories can be moved, but you risk messing up your boot process if /lib, /etc, /bin, /sbin, and /dev are not on your root partition. Having /usr on a separate partition is sort-of possible, but even on Gentoo that's an uncommon configuration, and I'd expect less flexible distros not to allow it at all. /var, /opt, /root, and /home can be wherever, though.
It may be possible to put only selected files in your /lib and so on, and then mount another partition on a different drive on top of the minimal one late in the boot process, or even to stopgap things with a carefully-designed initramfs, but I think you'd be looking at some trial and error (and make it more difficult to update basic system packages).
Also, defining what is "just the OS" on Linux is not as easy as you may think. The smallest possible configuration that will get you a running system is a Linux kernel + busybox (a set of cut-down system tools that includes a simple init system, a shell, and a basic device manager). Most of what your distro packages is not part of the OS, strictly speakin
... show more
Some directories can be moved, but you risk messing up your boot process if /lib, /etc, /bin, /sbin, and /dev are not on your root partition. Having /usr on a separate partition is sort-of possible, but even on Gentoo that's an uncommon configuration, and I'd expect less flexible distros not to allow it at all. /var, /opt, /root, and /home can be wherever, though.
It may be possible to put only selected files in your /lib and so on, and then mount another partition on a different drive on top of the minimal one late in the boot process, or even to stopgap things with a carefully-designed initramfs, but I think you'd be looking at some trial and error (and make it more difficult to update basic system packages).
Also, defining what is "just the OS" on Linux is not as easy as you may think. The smallest possible configuration that will get you a running system is a Linux kernel + busybox (a set of cut-down system tools that includes a simple init system, a shell, and a basic device manager). Most of what your distro packages is not part of the OS, strictly speaking—it's optional add-ons that the people making the distro think most users will find useful.
What are you trying to separate from the OS files? If it's just personal documents and stuff like that, I don't see why you can't just keep those in your home directory. Or are you saying you want your installed programs separate from the Linux kernel? Then you can just put the boot partition on one drive and have the root partition on the other (including home). I guess I'm just a little confused as to what it is you're trying to separate here. What do you mean when you say "separate from the OS"?
Usually each distro decides which packages go in / and which in /usr based on how critical, more or less, a package is to the system. It's often not very easy to configure these choices because it affects other distro decisions, including filesystem structure and paths, and boot sequence. Beware that "just the OS" on a typical distribution is usually a lot less functionality than you get with "just" Windows NT.
There's also /usr/local for packages you install on your own, apart from the distro package manager, and /opt, for closed source binary only packages or for anything else that doesn't want to conform to the bin, lib, include, share schema.
I am more concerned about the life of the SSD than it filling up. I'd like to minimize the amounts of write operations and since I have a perfectly capable HDD that doesn't suffer from such a thing I want to offload all of that work.
Also thanks for mentioning mounting, completely forgot about that and it might actually be easier to do
I wouldn't worry too much about SSD wear. It's not nearly as big an issue for PCs, and wear balancing can stretch that ~10000-write lifetime to many years, especially if most of the SSD is empty. I bought my oldest SSD around 2015 and it still works perfectly. SMART barely reports any errors.
If you want frequently written files to be on the HDD, start with /var, /run, and ~/.cache. Those files are likely far bigger contributors to wear than anything inside /usr.
Package manager is your friend. Learn "whom is whom" in Linux (alsa = your sound "driver", for instance) and how to fully customize your Linux installation are what I'd call as "The Holy Trinity" of Linux. Know those, and you can call yourself a penguin.
I'm a fan of the "just dive in" approach. You may encounter issues, but researching the solutions is where you really begin to learn. I personally like Fedora, but any of the other distros mentioned are also great choices. The great thing, if you don't like it there's tons off other options to try.
I'd say install virtualbox on your windows, download a few isos and check them out; once you've made your mind on which one seems a decent one (don't worry too much: it's not like you can't change distro later on) and have found out replacements for all the apps you use (well, some of them will have a linux version too) save your windows data somewhere, format and reinstall.
I'd say to stay away from dual booting if you can: honestly, it's a pain. Ah, check that your hardware works well on linux before switching!
I agree with virtual box and testing. Most distros have a live boot to test the operating system really to get a good feel. If you like one then attach a virtual hard drive disk to the vm and do a full install and use that for most of the day.
Then once comfortable do a full install on the actual hardware.
I always say to start with some distro that is widely known and used like Ubuntu or fedora - the defaults they suggest. This is also their bread and butter release. Then slowly get into desktop and windowing environments. This will help you learn a new operating system and if there are issues you are using something “popular” to get a resolution than a smaller, lesser known user base of a system.
Expect things to just work, but also break or not work. Take your time and everything is able to be resolved. Not everything is perfect, but that is also what makes the Linux world great is there is something for everyone!
You can try out Fedora Kinoite or Silverblue. Stuff just works and is very hard to break. Kinoite uses KDE which has a more Windows-like UI, and Silverblue uses GNOME which has a more modern UI but will take some time for Windows users to get used to.
This may sound intimidating, but the procedure is straightforward and beginner-friendly. Once you do it, you'll have a system that will be very stable and hard to break. All maintenance will be done for you.
An immutable variant looks, feels, and behaves just like a regular desktop operating system, but your updates are delivered as full images of a working system.
True, but then it's complicated to install anything that's not available through a Flatpak, and a lot of online guides don't work. I love immutable distros (I use one myself), but I think they're best for either advanced users who can work around the quirks or basic users who only need the web browser and a few Flatpak apps.
Linux Mint with Cinnamon Desktop Environment, PoP Os with their Cosmic/gnome desktop environment, or Fedora workstation with KDE desktop environment. Pick one of those three and roll with it ;)
There are tonnes of reasons why these are good/bad choices but simply put. They are all very well documented (mint and Pop are Ubuntu based), Fedora has a very active and helpful community.
Cinnamon on mint and KDE on fedora are both very much like windows in the way they look and behave. PoP Os is a bit more Mac like with their desktop.
I personally use an Arch based distro (endeavour OS) but the three above are just much easier to sink your teeth into.
This only discourages people from switching to linux. You are doing this community a disservice. Nvidia GPUs work just fine, you simply recommend distros like Mint that properly support it. Once they are a linux user, they will naturally gravitate towards AMD GPUs.
Grab a second SSD or HD, that way, keep windows in one as it will be probably be supplied with the computer. Add Linux to the other disk, Debian maybe, EndeavourOs much better. ThNo dual boot. And when starting to computer just choose which disk you want to use (F8 or F12 often) and later if and when ready, you wipe the windows HD and use it for backups
First thing you do is get yourself a USB stick for booting, I know others suggest virtual machines for testing, but in my opinion you really want to run the distribution on real hardware and since you're going to install the system anyway you might just get used to the booting process. The boot process has been complicated a bit by UEFI and that's why I won't recommend using minor distros to begin with, because you'll want something that just boots and later installs nicely on a secureboot enabled system. The major distros have bootloaders and kernels signed and ready for secure boot systems.
It's a simple as: - Go grab Rufus for writing the .iso files to a USB stick. You can also use any other tool that allow you to write the .iso in raw form to the USB stick. - Download fx. Linux Mint (pick a mirror from the list) - Run Rufus and select your USB device, then open the .iso file you've
... show more
First thing you do is get yourself a USB stick for booting, I know others suggest virtual machines for testing, but in my opinion you really want to run the distribution on real hardware and since you're going to install the system anyway you might just get used to the booting process. The boot process has been complicated a bit by UEFI and that's why I won't recommend using minor distros to begin with, because you'll want something that just boots and later installs nicely on a secureboot enabled system. The major distros have bootloaders and kernels signed and ready for secure boot systems.
It's a simple as: - Go grab Rufus for writing the .iso files to a USB stick. You can also use any other tool that allow you to write the .iso in raw form to the USB stick. - Download fx. Linux Mint (pick a mirror from the list) - Run Rufus and select your USB device, then open the .iso file you've just downloaded - Click start and in the popup dialog choose to write as a raw DD image. - When done, reboot and choose to boot from the USB stick in your BIOS¹ menu. - You'll now be running Linux on your PC from a USB stick.
1: How to enter a menu where you can select the device to boot is up to your motherboard manufacturer, so consult the manual. Usually you can press Escape on boot or one of the F keys.
Yep, had a similar experience with anything Ubuntu based, especially on Acer laptops. Can easily be fixed by just adding grubx64.efi to the trusted secure boot files in the bios though
Every documentation would say it was supported but no ball. Tried Fedora first and worked smooth as butter. Then RHEL decided to be tools so on Debian now.
Stick to popular distros, mint, Fedora, kubuntu. Test out your hardware, i prefer using usb stick but vm will work Decide on a disto and install it to that partition or drive
I first used mint and made a duel boot machine If you are doing that.
Create a blank partition first in windows. Then install Linux
Install windows first. Install Debian stable as dual boot after that. Add your user to the sudo group and restart. When stuff breaks, look up how to fix it on your phone or in your windows install.
You’re gonna have to gain a different set of troubleshooting skills to deal with Linux, but it’s pretty easy.
Did that a year ago with Linux Mint and I love it. If I start my computer it boots Mint, if I press F11 during startup I can select Windows from the Boot menu. I have a 1TB SSD with two partitions, one NTFS for Windows and one EXT4 for Mint. All other harddrives (NTFS) can be used in both OSs. It wasn't that complicated, I just followed some tutorial anf I highly recommend this Kind of dual boot setup.
I'd suggest starting with a distro that very user friendly. Pop OS was the distro that made me ditch windows completely. I could also recommend Manjaro, it's almost as user friendly but it has AUR which basically let's you install stuff from github directly if a package isn't available (For example xpadneo is basically a requirement if you use a controller with Bluetooth and it's only in github). I haven't had to open a terminal with Manjaro since the first install.
Start with something designed around a graphical interface, pretty much anything based on Ubuntu will do this (Linux Mint, Zorin, Pop!_OS, etc).
If you use Nvidia Pop!_OS has an ISO file with Nvidia drivers already installed. It isn't hard to get Nvidia drivers on other distros but the more done for you the better.
If you can, dual boot with two hard drives. Windows will work when linux doesn’t/you break it. Learn linux, distro hop, figure it out - and you’ll be able to learn at your own pace.
I can't believe no one mentioned this yet. I hope OP reads this comment. The first step is to make sure this new computer you want to buy is compatible with Linux. Otherwise your experience will be very frustrating, no matter what distro you choose. That is, if you can install any distros at all. Ask the vendor if this machine is compatible with Linux.
There is some obscure/proprietary hardware that doesn't play nicely with linux. Fingerprint readers may not work on laptops, for example. I've had trouble with a trackpad in the past.
Agree to that, especially for video cards and Wi-Fi. These two can be hard to deal with... If your laptop is Wi-Fi only and you don't have a USB/Ethernet adaptor you may not be able to connect to the net at all
I have been daily driving Linux for a couple years now after finally jumping ship on Windows. Here are a few of my thoughts: - it is important to make the distinction between the distro and the desktop environment, which is a big part of how the UI will look and feel. Many of these DEs such as KDE Plasma, XFCE, and GNOME will be common across many distros. I might do some research on which DE you like the look of. I personally have used KDE the most and that is what I prefer, but all of them are valid options. - Coming from Windows, I would go into this with the mindset that you are learning a new skill. Depending on how advanced you are with windows, you will find that some things in Linux are simply done differently to how they are in Windows, and you will get used to them over time. Understanding how the file system works with mounting points rather than drive letters was probably a big one for me, but now that I have a grasp of it, it makes total sense to me and I really like it. - It will also be learning a skill in terms of occasionally debugging problems. As much as I... show more
I have been daily driving Linux for a couple years now after finally jumping ship on Windows. Here are a few of my thoughts: - it is important to make the distinction between the distro and the desktop environment, which is a big part of how the UI will look and feel. Many of these DEs such as KDE Plasma, XFCE, and GNOME will be common across many distros. I might do some research on which DE you like the look of. I personally have used KDE the most and that is what I prefer, but all of them are valid options. - Coming from Windows, I would go into this with the mindset that you are learning a new skill. Depending on how advanced you are with windows, you will find that some things in Linux are simply done differently to how they are in Windows, and you will get used to them over time. Understanding how the file system works with mounting points rather than drive letters was probably a big one for me, but now that I have a grasp of it, it makes total sense to me and I really like it. - It will also be learning a skill in terms of occasionally debugging problems. As much as I would like to report that I've never had a problem, I have occasionally run into things which required a bit of setup at first or didn't "just work" right out of the box. I know that probably sounds scary, but it really isn't with the right mindset, and there are tons of resources online and people willing to help.
PeepinGoodArgs
in reply to qooqie • • •It's been a few years, but I really liked Linux Mint and Xfce. The former is more friendly for beginners. But XFCE is responsive...like...you click and the computer responds immediately. It feels like the computer is really yours. Don't get me wrong, though, Linux Mint is really responsive, too, particularly in comparison to Windows.
You can always try them out, too, before you commit with your current computer. In the past, I've used VirtualBox to virtualize Mint/Xfce. . It sounds fancy, but it's pretty easy.
Home - Linux Mint
linuxmint.comlike this
sorrybookbroke, socphoenix, WR5 and menzentian like this.
digger
in reply to PeepinGoodArgs • • •like this
sorrybookbroke, PeepinGoodArgs and WR5 like this.
CAPSLOCKFTW
in reply to qooqie • • •like this
merci3, const_void, sorrybookbroke, Taufik Hidayat, Ricky, socphoenix, WR5, Sapphiria 🏳️⚧️ [she/her], solarvector, foiledAgain, Soused, Yuumi, camr_on, circuitfarmer, CannonGoBoom, valkyrie, qooqie, 0_0, r_ffer23, 30p87, TheWeirdo, iSeth, Mak40 and NorthWestWind like this.
don't like this
Taufik Hidayat, Zamundaaa and PoorlyWrittenPapyrus don't like this.
socphoenix
in reply to CAPSLOCKFTW • • •Focus on simple things first too! I see a ton of people talking (in other threads) about not wanting to deal with the terminal/command line and that is fine. Mint will install/set up hardware without it and includes a software store that will handle everything via the GUI. Once it's installed check the store out and get the apps you want/need.
Then focus on one thing at a time - i.e. pick an app you need you haven't found/setting you really want to change and start googling/asking here for tips/help. Like any OS there will be some differences to get used to but you don't need to learn all at once!
like this
cygnus, sorrybookbroke, Soused, Kingcong, CAPSLOCKFTW, 0_0, TheWeirdo and ABeeinSpace like this.
Bobby Bandwidth
in reply to qooqie • • •like this
sorrybookbroke, Ricky, socphoenix, AbouBenAdhem, NixDev, OhNoMoreLemmy, WR5, PoorlyWrittenPapyrus and huskerDude like this.
Bolle doesn't like this.
moody
in reply to qooqie • • •My advice is to just do it and figure it out from there. If you're at least moderately tech-savvy and you're willing to look up how to do things, you'll be fine. The installation process is painless.
Think of the software you use on Windows, and then look up if a Linux version is available. Failing that, odds are pretty good that there's a FOSS alternative to replace it.
Each distribution has a built-in package manager that gives you access to tons of software. The majority of the free software that you'll want to use will probably be available from there.
Quick edit: The Linux community is truly supportive, and you'll pretty much always find someone somewhere willing to help you figure things out.
Ricky likes this.
sorrybookbroke
in reply to qooqie • • •My best tip is not to worry too much about distro. I like mint, but it's not too different from PopOS or ubuntu. They're just some nice starting points.
If you look at a few and like how they look or feel, you should know the majority of that is the desktop environment not the distro. Meaning you can change it out without re-installing or losing all your apps.
If you like linux mint with cinimon, but want to try out xfce, then just go into the app centre, search 'xfce', install it, log out, select xfce, and log in. Nothing is lost and you can go back at any point in time. Same with plasma, gnome, lxqt, etc. (PopOS uses Gnome with the pop shell).
Only negative suggestion would be to avoid arch based distros for the time being. They assume a bit more knowlage and break much more often. I use EndeavorOS but I understand that life isn't for everyone
like this
socphoenix and WR5 like this.
rtxn
in reply to qooqie • • •As others have said, Linux Mint is probably the best distro for absolute beginners. You'll have several desktop environments to choose from (the software suite that gives you things like window frames, the taskbar, the application launcher...). I like KDE Plasma and Cinnamon - Plasma is a lot more customizable, but Cinnamon is more robust and (IMO) better suited for beginners.
You'll have to unlearn a lot of Windows habits.
... show more-
:q!
is very important, remember it.- You won't download application installers from the internet, you'll have to either use the system's own package manager in the terminal (APT for Mint), a GUI front-end, or Flatpak.
- You won't be able to choose where software are installed.
- There are no lettered drives. There is a single root filesystem (equivalent to
C:\
on Windows), and every other partition has to be mounted somewhere within that filesystem. Most graphical file manager applications take care of that automatically.- Updates are
As others have said, Linux Mint is probably the best distro for absolute beginners. You'll have several desktop environments to choose from (the software suite that gives you things like window frames, the taskbar, the application launcher...). I like KDE Plasma and Cinnamon - Plasma is a lot more customizable, but Cinnamon is more robust and (IMO) better suited for beginners.
You'll have to unlearn a lot of Windows habits.
-
:q!
is very important, remember it.- You won't download application installers from the internet, you'll have to either use the system's own package manager in the terminal (APT for Mint), a GUI front-end, or Flatpak.
- You won't be able to choose where software are installed.
- There are no lettered drives. There is a single root filesystem (equivalent to
C:\
on Windows), and every other partition has to be mounted somewhere within that filesystem. Most graphical file manager applications take care of that automatically.- Updates are very important. Fortunately they are much less of a pain in the ass. Graphical package manager apps usually offer automatic reminders, or you can use the terminal to update manually.
- The terminal is much more important compared to Windows, and you should learn basic things like navigating the filesystem, handling files and directories, how to use
sudo
(eq. run as admin), how to manage running processes (top
,kill
/pkill
/killall
), and how to use the package manager.- Use manuals and the
man
command. The Arch Wiki is an invaluable tool for every distribution.- Ask your questions. There will be dickheads, but most people will be happy to help.
Home | Flathub
Flathublike this
AbouBenAdhem, Taebesure, umami_wasabi, sorrybookbroke, WR5, Cargon, Yuumi, qx128, 257m, nadiaraven, CannonGoBoom, H3L1X, Successful_Try543, qooqie, Wigwam, r_ffer23, TheWeirdo, Scroll Responsibly, Egin and ABeeinSpace like this.
don't like this
PoorlyWrittenPapyrus and Yuumi don't like this.
Yuumi
in reply to rtxn • • •like this
jasep, panmeek and valkyrie like this.
jourgeist doesn't like this.
VoltaicGRiD
in reply to Yuumi • • •I just thought of this, could one, create symbolic links that point to /lib (for ex.) to "repoint" the directory a package gets installed to?
Not sure if this would work, but was curious if someone's attempted it before.
Yuumi likes this.
Yuumi
in reply to VoltaicGRiD • • •LlilL doesn't like this.
VoltaicGRiD
in reply to Yuumi • • •Yuumi likes this.
rtxn
in reply to Yuumi • • •Overlay filesystem - ArchWiki
wiki.archlinux.orgYuumi likes this.
Yuumi
in reply to rtxn • • •nyan
in reply to Yuumi • • •Some directories can be moved, but you risk messing up your boot process if /lib, /etc, /bin, /sbin, and /dev are not on your root partition. Having /usr on a separate partition is sort-of possible, but even on Gentoo that's an uncommon configuration, and I'd expect less flexible distros not to allow it at all. /var, /opt, /root, and /home can be wherever, though.
It may be possible to put only selected files in your /lib and so on, and then mount another partition on a different drive on top of the minimal one late in the boot process, or even to stopgap things with a carefully-designed initramfs, but I think you'd be looking at some trial and error (and make it more difficult to update basic system packages).
Also, defining what is "just the OS" on Linux is not as easy as you may think. The smallest possible configuration that will get you a running system is a Linux kernel + busybox (a set of cut-down system tools that includes a simple init system, a shell, and a basic device manager). Most of what your distro packages is not part of the OS, strictly speakin
... show moreSome directories can be moved, but you risk messing up your boot process if /lib, /etc, /bin, /sbin, and /dev are not on your root partition. Having /usr on a separate partition is sort-of possible, but even on Gentoo that's an uncommon configuration, and I'd expect less flexible distros not to allow it at all. /var, /opt, /root, and /home can be wherever, though.
It may be possible to put only selected files in your /lib and so on, and then mount another partition on a different drive on top of the minimal one late in the boot process, or even to stopgap things with a carefully-designed initramfs, but I think you'd be looking at some trial and error (and make it more difficult to update basic system packages).
Also, defining what is "just the OS" on Linux is not as easy as you may think. The smallest possible configuration that will get you a running system is a Linux kernel + busybox (a set of cut-down system tools that includes a simple init system, a shell, and a basic device manager). Most of what your distro packages is not part of the OS, strictly speaking—it's optional add-ons that the people making the distro think most users will find useful.
like this
Yuumi and jollyrogue like this.
WalrusByte
in reply to Yuumi • • •like this
Yuumi, panmeek, 257m and MediumGray like this.
Yuumi
in reply to WalrusByte • • •jollyrogue
in reply to Yuumi • • •Yeah, they’re installing software.
Everything below / is the OS. There isn’t an analog to C:\Windows in *nix-like operating systems.
The closest thing to a pure separation would be an immutable distro like Silverblue or MicroOS.
Yuumi likes this.
WalrusByte
in reply to Yuumi • • •Yuumi likes this.
mkwt
in reply to Yuumi • • •Usually each distro decides which packages go in / and which in /usr based on how critical, more or less, a package is to the system. It's often not very easy to configure these choices because it affects other distro decisions, including filesystem structure and paths, and boot sequence. Beware that "just the OS" on a typical distribution is usually a lot less functionality than you get with "just" Windows NT.
There's also /usr/local for packages you install on your own, apart from the distro package manager, and /opt, for closed source binary only packages or for anything else that doesn't want to conform to the bin, lib, include, share schema.
like this
Yuumi and sapient [they/them] like this.
rtxn
in reply to Yuumi • • •Is that really an issue, though? My entire install is only 38GB (not including swap), and I've never even gotten close to filling the root partition.
If you really want to, you could mount the HDD to
/usr
or make symlinks pointing to a directory on the HDD.Scroll Responsibly likes this.
Suns_Firstborn doesn't like this.
Yuumi
in reply to rtxn • • •I am more concerned about the life of the SSD than it filling up. I'd like to minimize the amounts of write operations and since I have a perfectly capable HDD that doesn't suffer from such a thing I want to offload all of that work.
Also thanks for mentioning mounting, completely forgot about that and it might actually be easier to do
rtxn
in reply to Yuumi • • •I wouldn't worry too much about SSD wear. It's not nearly as big an issue for PCs, and wear balancing can stretch that ~10000-write lifetime to many years, especially if most of the SSD is empty. I bought my oldest SSD around 2015 and it still works perfectly. SMART barely reports any errors.
If you want frequently written files to be on the HDD, start with
/var
,/run
, and~/.cache
. Those files are likely far bigger contributors to wear than anything inside/usr
.like this
Yuumi, jollyrogue, sapient [they/them], Scroll Responsibly and ABeeinSpace like this.
qx128
in reply to rtxn • • •Successful_Try543 likes this.
GustavoM
in reply to qooqie • • •foiledAgain
in reply to qooqie • • •PostMalort likes this.
lookawayimapuppy
in reply to foiledAgain • • •foiledAgain likes this.
foiledAgain doesn't like this.
Notamoosen
in reply to qooqie • • •PostMalort likes this.
gonzoknowsdotcom1
in reply to qooqie • • •gomp
in reply to qooqie • • •I'd say install virtualbox on your windows, download a few isos and check them out; once you've made your mind on which one seems a decent one (don't worry too much: it's not like you can't change distro later on) and have found out replacements for all the apps you use (well, some of them will have a linux version too) save your windows data somewhere, format and reinstall.
I'd say to stay away from dual booting if you can: honestly, it's a pain.
Ah, check that your hardware works well on linux before switching!
like this
mangaskahn, qjkxbmwvz, ultranaut, __armadillo__, negi, Nmarrock, DynamicBits, unipadfox, qooqie and SmallAlmond like this.
cjerrington
in reply to gomp • • •I agree with virtual box and testing. Most distros have a live boot to test the operating system really to get a good feel. If you like one then attach a virtual hard drive disk to the vm and do a full install and use that for most of the day.
Then once comfortable do a full install on the actual hardware.
I always say to start with some distro that is widely known and used like Ubuntu or fedora - the defaults they suggest. This is also their bread and butter release. Then slowly get into desktop and windowing environments. This will help you learn a new operating system and if there are issues you are using something “popular” to get a resolution than a smaller, lesser known user base of a system.
Expect things to just work, but also break or not work. Take your time and everything is able to be resolved. Not everything is perfect, but that is also what makes the Linux world great is there is something for everyone!
Enjoy!
IverCoder
in reply to qooqie • • •You can try out Fedora Kinoite or Silverblue. Stuff just works and is very hard to break. Kinoite uses KDE which has a more Windows-like UI, and Silverblue uses GNOME which has a more modern UI but will take some time for Windows users to get used to.
After installing either of those, you should rebase to Universal Blue Bluefin if you chose Silverblue, or to Universal Blue
kinoite-main
/kinoite-nvidia
for NVIDIA GPUs if you chose Kinoite. Alternatively, rebase to Universal Blue Bazzite if you do a lot of gaming.This may sound intimidating, but the procedure is straightforward and beginner-friendly. Once you do it, you'll have a system that will be very stable and hard to break. All maintenance will be done for you.
Fedora Silverblue | The Fedora Project
fedoraproject.orglike this
joey and jollyrogue like this.
LinuxSBC
in reply to IverCoder • • •Toidi
in reply to qooqie • • •Linux Mint with Cinnamon Desktop Environment, PoP Os with their Cosmic/gnome desktop environment, or Fedora workstation with KDE desktop environment. Pick one of those three and roll with it ;)
There are tonnes of reasons why these are good/bad choices but simply put. They are all very well documented (mint and Pop are Ubuntu based), Fedora has a very active and helpful community.
Cinnamon on mint and KDE on fedora are both very much like windows in the way they look and behave. PoP Os is a bit more Mac like with their desktop.
I personally use an Arch based distro (endeavour OS) but the three above are just much easier to sink your teeth into.
like this
ultranaut, cantsurf, Ademir, Moobythegoldensock, nadiaraven, Anafabula, Urist, torvusbogpod, deathbird and SmallAlmond like this.
nestEggParrot
in reply to Toidi • • •I dont think pop is any more mac like than default gnome is.
Esp with tiling it might be even less so.
Drew likes this.
Presi300
in reply to qooqie • • •like this
Successful_Try543, SmallAlmond and Skull giver like this.
Holzkohlen doesn't like this.
Holzkohlen
in reply to Presi300 • • •Once they are a linux user, they will naturally gravitate towards AMD GPUs.
Presi300
in reply to Holzkohlen • • •like this
Skull giver and Trailblazing Braille Taser like this.
Minty95
in reply to qooqie • • •like this
deathbird, qayxsw10987, Successful_Try543, WexCore and ashnn28 like this.
smpl
in reply to qooqie • • •First thing you do is get yourself a USB stick for booting, I know others suggest virtual machines for testing, but in my opinion you really want to run the distribution on real hardware and since you're going to install the system anyway you might just get used to the booting process. The boot process has been complicated a bit by UEFI and that's why I won't recommend using minor distros to begin with, because you'll want something that just boots and later installs nicely on a secureboot enabled system. The major distros have bootloaders and kernels signed and ready for secure boot systems.
It's a simple as:
... show more- Go grab Rufus for writing the .iso files to a USB stick. You can also use any other tool that allow you to write the .iso in raw form to the USB stick.
- Download fx. Linux Mint (pick a mirror from the list)
- Run Rufus and select your USB device, then open the .iso file you've
First thing you do is get yourself a USB stick for booting, I know others suggest virtual machines for testing, but in my opinion you really want to run the distribution on real hardware and since you're going to install the system anyway you might just get used to the booting process. The boot process has been complicated a bit by UEFI and that's why I won't recommend using minor distros to begin with, because you'll want something that just boots and later installs nicely on a secureboot enabled system. The major distros have bootloaders and kernels signed and ready for secure boot systems.
It's a simple as:
- Go grab Rufus for writing the .iso files to a USB stick. You can also use any other tool that allow you to write the .iso in raw form to the USB stick.
- Download fx. Linux Mint (pick a mirror from the list)
- Run Rufus and select your USB device, then open the .iso file you've just downloaded
- Click start and in the popup dialog choose to write as a raw DD image.
- When done, reboot and choose to boot from the USB stick in your BIOS¹ menu.
- You'll now be running Linux on your PC from a USB stick.
1: How to enter a menu where you can select the device to boot is up to your motherboard manufacturer, so consult the manual. Usually you can press Escape on boot or one of the F keys.
Rufus - Create bootable USB drives the easy way
rufus.ielike this
Sharp312 and Kolgeirr like this.
niisyth
in reply to smpl • • •I've had luck with Fedora and Debian.
In case you trip at mint same as me.
CaptainJack42
in reply to niisyth • • •smpl
in reply to niisyth • • •niisyth
in reply to smpl • • •21.1
Every documentation would say it was supported but no ball.
Tried Fedora first and worked smooth as butter.
Then RHEL decided to be tools so on Debian now.
Jacob Urlich 🌍
in reply to qooqie • •don't like this
niisyth, Holzkohlen, Razsiel and owatnext don't like this.
Linux reshared this.
joel_feila
in reply to qooqie • • •Stick to popular distros, mint, Fedora, kubuntu.
Test out your hardware, i prefer using usb stick but vm will work
Decide on a disto and install it to that partition or drive
I first used mint and made a duel boot machine
If you are doing that.
Create a blank partition first in windows. Then install Linux
like this
ashnn28, rishado, intrapt, themarty27 and joojmachine like this.
nestEggParrot
in reply to joel_feila • • •Most ubuntu installers should allow you to install along with windows with just a dragger to choose size. No need to manually shrink partitions.
Correct me if this is only on Ubuntu and not on its derivatives.
themarty27 likes this.
Jacob Urlich 🌍
Unknown parent • •Linux reshared this.
bloodfart
in reply to qooqie • • •Install windows first. Install Debian stable as dual boot after that. Add your user to the sudo group and restart. When stuff breaks, look up how to fix it on your phone or in your windows install.
You’re gonna have to gain a different set of troubleshooting skills to deal with Linux, but it’s pretty easy.
like this
wh0se, Spider89, bingbong, Feathercrown and Eneryi like this.
jack doesn't like this.
Teppichbrand
in reply to bloodfart • • •CaptainJack42
Unknown parent • • •Whisper06
in reply to qooqie • • •theshatterstone54 likes this.
jack doesn't like this.
FluffyPotato
in reply to qooqie • • •MonocrystalMonkey doesn't like this.
Rogueren
in reply to qooqie • • •Start with something designed around a graphical interface, pretty much anything based on Ubuntu will do this (Linux Mint, Zorin, Pop!_OS, etc).
If you use Nvidia Pop!_OS has an ISO file with Nvidia drivers already installed. It isn't hard to get Nvidia drivers on other distros but the more done for you the better.
Kuro likes this.
Kongar
in reply to qooqie • • •BastingChemina
in reply to Kongar • • •LogarithmicCamel
in reply to qooqie • • •like this
MrBubbles96, km3k, sirjash, wh0_cares, erinsc, arty, Adsooi and sponge like this.
offby1
in reply to LogarithmicCamel • • •like this
wh0_cares, Veraxis and 0ddysseus like this.
Ádám doesn't like this.
Ádám
in reply to offby1 • • •like this
jsonborne, erinsc and sponge like this.
Syrup
in reply to LogarithmicCamel • • •LogarithmicCamel likes this.
tla
in reply to qooqie • • •15 Places Where You Can Buy Linux Computers
Abhishek Prakash (It's FOSS)km3k likes this.
Veraxis
in reply to qooqie • • •- it is important to make the distinction between the distro and the desktop environment, which is a big part of how the UI will look and feel. Many of these DEs such as KDE Plasma, XFCE, and GNOME will be common across many distros. I might do some research on which DE you like the look of. I personally have used KDE the most and that is what I prefer, but all of them are valid options.
- Coming from Windows, I would go into this with the mindset that you are learning a new skill. Depending on how advanced you are with windows, you will find that some things in Linux are simply done differently to how they are in Windows, and you will get used to them over time. Understanding how the file system works with mounting points rather than drive letters was probably a big one for me, but now that I have a grasp of it, it makes total sense to me and I really like it.
- It will also be learning a skill in terms of occasionally debugging problems. As much as I... show more
- it is important to make the distinction between the distro and the desktop environment, which is a big part of how the UI will look and feel. Many of these DEs such as KDE Plasma, XFCE, and GNOME will be common across many distros. I might do some research on which DE you like the look of. I personally have used KDE the most and that is what I prefer, but all of them are valid options.
- Coming from Windows, I would go into this with the mindset that you are learning a new skill. Depending on how advanced you are with windows, you will find that some things in Linux are simply done differently to how they are in Windows, and you will get used to them over time. Understanding how the file system works with mounting points rather than drive letters was probably a big one for me, but now that I have a grasp of it, it makes total sense to me and I really like it.
- It will also be learning a skill in terms of occasionally debugging problems. As much as I would like to report that I've never had a problem, I have occasionally run into things which required a bit of setup at first or didn't "just work" right out of the box. I know that probably sounds scary, but it really isn't with the right mindset, and there are tons of resources online and people willing to help.
like this
secret301, BastingChemina, FlyingCricket and NichtElias like this.
Jacob Urlich 🌍
in reply to qooqie • •Linux reshared this.