Hi! I’m seeking some advice and sanity check on hopping from Ubuntu to Fedora on my personal PC. I’ve been using Ubuntu LTS for almost two years now, switched from Windows and never looked back. But I cannot say I know Linux well. I use my PC for browsing, some gaming with Steam (I have AMD GPU), occasional video editing, tinkering with some self-hosted stuff that is on separate hardware.

I don’t like the way Ubuntu is moving with snaps. And LTS version falls behind too much. So I decided to move to Fedora.

My plan is simple:

  1. I will install Fedora on a fresh nvme drive. I want disk encryption, so I’m going to have LUKS over btrfs for /home, and the root will remain unencrypted.
  2. I will copy all files from old /home to new /home, with the exception of dot-files.
  3. I plan to make use of flatpaks, so I don’t think configuration for my apps is easily transferable. I’ll have to install and configure apps from scratch, unless I’ll have to use an RPM package.

Does all of this make sense? Is there a way to simplify app re-configuration in my case?

And as I never used Fedora extensively (booting from live image doesn’t count), are there any caveats I should be aware of?

  • _cnt0@sh.itjust.works
    link
    fedilink
    arrow-up
    27
    ·
    7 months ago

    Enable rpmfusion for media codecs and things like libdvdcss or unrestricted mesa drivers: https://rpmfusion.org/Configuration

    https://docs.fedoraproject.org/en-US/quick-docs/installing-plugins-for-playing-movies-and-music/

    Fedora comes out of the box with a curated flatpak repo. You might want to replace that with flathub: https://flatpak.org/setup/Fedora

    Imho, there’s no reason not to enable disk encryption for root. Luks configuration during setup is very straightforward.

    If you don’t have nvidia graphics, enable uefi and secure boot (no legacy options). Fedora works well with it out of the box.

    • Pantherina@feddit.de
      link
      fedilink
      arrow-up
      4
      arrow-down
      1
      ·
      7 months ago

      This is essential. sudo dnf install libavcodec-freeworld may already be enough if you dont need ffmpeg for anything.

      Or you use ublue, where rpmfusion and ffmpeg are preinstalled.

      • _cnt0@sh.itjust.works
        link
        fedilink
        arrow-up
        3
        ·
        7 months ago

        Two more things that came to mind. If you want to use another desktop environment than gnome (default), you should be aware of spins: https://fedoraproject.org/spins/

        Spins work against the same repositories, they just come with other sets of packages preinstalled.

        Also, you said you’re using amd gpu. Fedora has the drivers for that out of the box. But due to fedora’s strict FOSS policy, some hardware acceleration features are stripped out of the amd driver. I mentioned you can get the unstripped drivers from rpmfusion. That is detailed here: https://rpmfusion.org/Howto/Multimedia

        The relevant bit being this:

        sudo dnf swap mesa-va-drivers mesa-va-drivers-freeworld
        sudo dnf swap mesa-vdpau-drivers mesa-vdpau-drivers-freeworld
        

        Those packages work together with the drivers from the official repos. They can get out of sync. That never happened to me, yet. But if an update mentions some conflict with mesa-*, just don’t do that update until that conflict disappears. If you ever run into the issue you can also undo the last update with the dnf history commands.

  • Maestro@kbin.social
    link
    fedilink
    arrow-up
    25
    arrow-down
    2
    ·
    7 months ago

    Why not move to Debian? Ubuntu was born in a time when Debian stable had a really long release cycle and wasn’t desktop ready. But times have changed. Debian is a great desktop without all of Canonical’s Ubuntu “experiments” like snap.

    • GustavoM@lemmy.world
      link
      fedilink
      English
      arrow-up
      12
      arrow-down
      2
      ·
      7 months ago

      This. Edit /etc/sources/apt, switch to sid, sudo apt update and you’ll have “a better ubuntu.”

    • joyofpeanuts@beehaw.org
      link
      fedilink
      arrow-up
      6
      ·
      7 months ago

      I second this. I have been using Ubuntu for at least 10 years by I really do not like snaps or flatpaks for that matter. So, after some disappointing attempts using Debian in the past, I had a new go at it 1-2 years ago and I was positively surprised: Ubuntu without the useless bloat - kind of normal because Ubuntu is based on Debian. For sure the my next PC will be using Debian: efficient, highly configurable, and quite user friendly once you understand it’s ways of configuring things.

      • pound_heap@lemm.eeOP
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        I see your point… I use Debian for my self-hosted environment, so having similar system on desktop may save some cognitive load. My main arguments against Debian are (maybe misinformed though):

        • No btrfs support in installer OK, Debian wiki says it’s there
        • Major annual upgrades to keep up with stable look more scary than more incremental and frequent updates of Fedora. And using Sid as someone suggested sounds too crazy for main PC

        So yeah, looks like it’s just upgrades… Gives me something to think about while I’m moving my apps to flatpaks

    • thayer@lemmy.ca
      link
      fedilink
      English
      arrow-up
      3
      ·
      7 months ago

      That still wouldn’t answer their dilemma of older versioning of packages, unless they went to Sid.

      • Maestro@kbin.social
        link
        fedilink
        arrow-up
        4
        ·
        7 months ago

        Debian stable has newer packages than Ubuntu LTS. Debian has pretty regular releases these days.

  • brenno@lemmy.brennoflavio.com.br
    link
    fedilink
    arrow-up
    12
    ·
    7 months ago

    Why don’t you install flatpak on Ubuntu, make the packaging migration before doing the OS migration so you can evaluate your workflow with the new packaging system? Afer you’re used and confident with flatpak, backup and restore the flatpak folder into fedora and you transition should be smoother (don’t need to worry with 2 stuff at the same time)

  • ObsidianBreaks@lemmy.ml
    link
    fedilink
    arrow-up
    11
    ·
    7 months ago

    Plan sounds alright. A couple of notes.

    • Don’t forget your passwords and bookmarks stored in browser when doing the copy over.
    • Personally, I’d use Full Disk Encryption (FDE) because it’s a default option on the Fedora installer and is more secure, and well-tested, and easier to configure.
    • For your planned installables, I’d keep a list of apps you regularly install in a file somewhere (even better would be a script which installs them all) then when you distro-hop it’s easier as you can just change your script for whatever package manager.
    • Some of your apps will store their configuration in your home directory in a dot file, you might be able to copy these over one-by-one for each app.
    • Have you decided on Fedora Workstation or Fedora Silverblue? Each have their merits and demerits, and its worth investigating.
    • pound_heap@lemm.eeOP
      link
      fedilink
      arrow-up
      1
      ·
      7 months ago

      Thanks!

      Bookmarks and passwords are taken care of. And for the apps I’ll try to get migrated to flatpaks as many as I can while still on original system.

      I also see that full disk encryption is being recommended a lot, and I don’t have any solid reasons to encrypt only /home.

      I have not given much thought on Silverblue. Is it “flatpak-only”? If so I’ll need to go through my apps to see if that could work. And my backup strategy will need to change - I use Duplicacy that is not available as a Flatpak

  • EponymousBosh@beehaw.org
    link
    fedilink
    arrow-up
    14
    arrow-down
    5
    ·
    7 months ago

    Honestly, if you like Ubuntu but dislike Snaps, Linux Mint might be a better choice than Fedora if you’re not as comfortable with Linux. Mint is basically “Ubuntu without all Canonical’s garbage.”

      • jcarax@beehaw.org
        link
        fedilink
        arrow-up
        3
        ·
        7 months ago

        I agree with this, Fedora is pretty boring. It’s polished and well thought out. Just wait a few weeks before upgrading to new versions, but that goes for pretty much everyone besides Debian stable.

    • Pantherina@feddit.de
      link
      fedilink
      arrow-up
      4
      arrow-down
      5
      ·
      7 months ago

      Do not use Mint. Ubuntu uses GNOME which is modern and secure. Mint will need a year or so to get Wayland support, and it will always be behind on security updates. Just run unsnap, install the apps and Gnome tweaks you want I would say.

      • jcarax@beehaw.org
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        Why is using Ubuntu against it’s nature, by removing snaps, preferable to moving to a distro that aligns more with OP’s preferences?

          • jcarax@beehaw.org
            link
            fedilink
            arrow-up
            1
            arrow-down
            1
            ·
            7 months ago

            I guess, but Canonical keeps trying to stand out against the crowd with one thing or another. Mir, Snap, etc. Unless you buy into their supposed vision, why bother?

  • thayer@lemmy.ca
    link
    fedilink
    English
    arrow-up
    8
    ·
    edit-2
    7 months ago

    Flatpak apps will use the same dotfiles as apps installed via traditional methods, however the storage location will likely be different. Most dotfiles will be contained within their respective flatpak app directory under ~/.var, so you can cherry pick which settings you want to bring over.

  • jman6495@lemmy.ml
    link
    fedilink
    arrow-up
    6
    ·
    7 months ago

    Yes, but if you intend to mainly use flatpak you might want to try fedora Silverblue

    • Possibly linux@lemmy.zip
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      2
      ·
      7 months ago

      I personally wouldn’t recommend that. Its all personal option and there isn’t one that’s better in a general sense

  • NotAnArdvark@lemmy.ca
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    7 months ago

    Are you leaving behind the dotfiles because you don’t want to bring over any of your old configuration?

    For whatever it’s worth, you can remove Snap support from your Ubuntu system. If you want more current software, AppImage and Flatpaks are good for that.

    • Avid Amoeba@lemmy.ca
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      7 months ago

      Removing snap is somewhat unwise. Ignoring it is the safe way to go. Ubuntu might ship a system component you’re not aware of via snap. If you kill snap support you may end up with a broken system. To avoid headaches, simply ignore snap.

      • folkrav@lemmy.ca
        link
        fedilink
        arrow-up
        15
        ·
        7 months ago

        If one dislikes snaps, the even wiser choice is just skipping Ubuntu altogether.

          • folkrav@lemmy.ca
            link
            fedilink
            arrow-up
            2
            ·
            edit-2
            7 months ago

            Zorin, Mint and Pop all are Ubuntu based distros that replace snaps with flatpak by default. I don’t know what would make any of those any more difficult than straight up Ubuntu. I’d even argue that most mainstream distros aren’t any harder to use than one another. Most of the differences between traditional distributions are behind the scenes: package manager, init system, default applications/configurations…

            Even Arch, which has a reputation of being “hard”, isn’t particularly hard to use. It’s the lack of an installer that makes people freak out. The rest is just Linux. Once you plop in a GUI for package management and a proper desktop environment, from an end user perspective, nothing of it is inherently harder.

            • Avid Amoeba@lemmy.ca
              link
              fedilink
              arrow-up
              1
              ·
              7 months ago

              Solving problems is what becomes more difficult. There’s rarely issues with the happy path. The further away you move from mainline, the more components are different, the fewer of the solutions on askubuntu.com work by simply copy-pasting them. A novice user has no idea what the solutions do and why they don’t work. Instead they have to keep trying other copy-pasta hoping some would work. At best taking longer to solve it, and at worst some copy-pasta breaking something on their system.

              • folkrav@lemmy.ca
                link
                fedilink
                arrow-up
                1
                ·
                edit-2
                7 months ago

                Copy pasting random stuff from askubuntu is how you break your install in the first place. Novices don’t “have” to do that, they get told to do it by randoms on askubuntu that should not do that. Understanding an issue is key to fixing it, regardless of the problem’s nature.

                I’ve yet to hit anything that worked on Ubuntu that didn’t on Mint. Hell, I find half of what I need on Arch Wiki even when not using Arch.

                • Avid Amoeba@lemmy.ca
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  7 months ago

                  While you’re right, this expectation is unrealistic. Not only is it unrealistic for novice hobbyists, it’s unrealistic for people who use Linux to do other things, not for the sake of using Linux or learning its innards. For example my family members who use it for work an leisure. They couldn’t and won’t be bothered with learning how hibernation on Linux works. They want hibernate to work. The have me to make it work for them but folks who don’t will go to askubuntu.com, grab a well upvoted answer and copy-paste it straight into a terminal.

      • pound_heap@lemm.eeOP
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        That’s what I mostly do now. But it requires some extra work, as some apps are not available in Ubuntu DEB repository. Also, I don’t like the approach that Canonical takes, pushing snaps so much

    • pound_heap@lemm.eeOP
      link
      fedilink
      arrow-up
      2
      ·
      7 months ago

      Well, my original plan was to copy configuration over after I install apos that are not available as flatpaks. Looks like I can copy configuration for those too, just to another location

    • NanoooK@sh.itjust.works
      link
      fedilink
      arrow-up
      8
      arrow-down
      1
      ·
      7 months ago

      This makes me think of the tool for windows to remove the bloat.

      Just use a distribution that doesn’t force snap down your throat.

    • Pantherina@feddit.de
      link
      fedilink
      arrow-up
      3
      ·
      7 months ago

      Great tool! Funny that after removing snapd all those mounts appear. Afaik a reboot solved this for me, did it on a Ubuntu install already, and everything works fine

    • pound_heap@lemm.eeOP
      link
      fedilink
      arrow-up
      1
      ·
      7 months ago

      Interesting. It says that the project is in pre-alpha stage… not sure if I would be able to verify the scripts it generates

  • Pantherina@feddit.de
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    7 months ago

    I want to write a script for this app config backup stuff once. Also working on Windows, but maan I have low motivation on that one haha.

    You can use your configs, relevant for me are

    • firefox: ~/.mozilla/firefox can stay if you keep using Fedora Firefox
    • thunderbird ~/.thunderbird/ copied to ~/.var/app/org.mozilla.Thunderbird/.thunderbird
    • libreoffice from somewhere to the flatpak directory (useful if you have a custom dictionary, autocompletions or interface)
    • qgis, element

    Many other apps use the same structure with a profile folder so easily transferrable.

    In firefox and thunderbird you either delete the whole contents and replace everything, or you only paste the contents of your *-default-release folder in the new default release folder, after deleting its contents.

    Flatpak apps need to be ran once, to create the ~/.var/app/ subfolder. After that you can close them and replace everything. If you delete that folder, or move it somewhere as a backup, the settings are reset to default. Pretty cool.

    If you want to try the new image-based distro model, I can highly recommend ublue and their installer. It has all the codecs out of the box and also an nvidia version which will never break basically, if it should, you can roll back to your previous system that worked.

    It is a very cool distro model, and ublue has loots of customizations. If you never tried KDE I recommend their kinoite-main (do not use any -nokmods, these images are outdated as they removed kmods from -main !)

  • lemmyvore
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    6
    ·
    edit-2
    7 months ago

    You don’t have to use an LTS version if you don’t want to stick to it… Also Fedora is on a yearly upgrade cycle too, just so you know, it’s not a rolling distro. You can actually upgrade sooner on Ubuntu because it’s on a 6-month upgrade cycle.

    • Audacity9961@feddit.ch
      link
      fedilink
      arrow-up
      13
      ·
      edit-2
      7 months ago

      Fedora is on a six monthly cycle just like non-LTS Ubuntu; neither distro is on a yearly release cycle. The previous release is just supported for an extra six months, for one year of support per release for Fedora.

      Fedora itself isn’t rolling but the kernel and mesa packages do roll between releases, and it is more bleeding edge than Ubuntu generally.

  • Possibly linux@lemmy.zip
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    7
    ·
    7 months ago

    Not really. Dnf is slower and Fedora prompts to reboot to install updates.

    There also is a slight different system setup with a different kernel and different automatic mounts. It won’t make any difference unless you are tweaking your system at a fairly low level.

  • danielfgom@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    20
    ·
    7 months ago

    Don’t move to Fedora. They are Red Hat and recently shat all over Free Software principles and broke the GPL by making Red Hat Enterprise CLOSED SOURCE.

    They are dead to the Linux and Free Software world. You’ll be going from bad to worse.

    I HIGHLY recommend Linux Mint Debian Edition 6. It’s based directly on Debian (one of the oldest distros ever and the best), is Free Software loving and 100% Community. No Greedy Corp Inc in sight.

    It runs the excellent Cinnamon desktop and the Mint team have set up all the apps etc perfectly. And because it’s Debian it’s super reliable and has massive amounts of apps etc .

      • danielfgom@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        2
        ·
        7 months ago

        Literally the majority of the developers working there are full time Red Hat employees. It’s Red Hat disguised as community.

        • Carl George@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          7 months ago

          The last time the project leader measured it, only about 40% of Fedora contributors were known to be Red Hat employees. So while it’s a big chunk, it’s not a majority.

    • folkrav@lemmy.ca
      link
      fedilink
      arrow-up
      7
      arrow-down
      1
      ·
      edit-2
      7 months ago

      It’s basically the opposite. Fedora is the community based upstream, and some of it reaches RHEL, but Fedora isn’t Red Hat.

      What Red Hat did was limit who they distribute the source code to to paid customers, and add provisions to their TOS to give them the right to end their paid contract with you if you redistribute it. You aren’t prevented from doing so, but choosing to do so prevents you from getting future versions, which you were only entitled to through said contract. They also still open-source to CentOS Stream, just upstream of RHEL.

      Now, do I think it was a good move by RH, no. Was it legal, probably, yes, but IANAL, eventual courts will tell. Did it go against the “spirit” of the GPL, maybe, yes. But is RHEL closed-source? No, it’s objectively not. Please, don’t spread misinformation.

      • danielfgom@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        3
        ·
        7 months ago

        Misinformation my ass

        Read. Then read again. Then read again until you get it.

        From gnu.org “What is free software?”

        “Free software” means software that respects users’ freedom and community. Roughly, it means that the users have the freedom to run, copy, distribute, study, change and improve the software. Thus, “free software” is a matter of liberty, not price. To understand the concept, you should think of “free” as in “free speech,” not as in “free beer.” We sometimes call it “libre software,” borrowing the French or Spanish word for “free” as in freedom, to show we do not mean the software is gratis.

        You may have paid money to get copies of a free program, or you may have obtained copies at no charge. But regardless of how you got your copies, you always have the freedom to copy and change the software, even to sell copies.

        As you can see Free Software (and the GPL) says that the end user has the right to FREELY USE AND REDISTRIBUTE the software, AS IS.

        In other words, I could get a copy of RHEL and without making a single change, could redistribute it or even sell it.

        Yet Red Hat calls this “freeloading”. Yet that is PRECISELY what Free Software is about!

        Rocky Linux, Alma Linux etc were well within their rights to rebrand and redistribute RHEL bug for bug to others. Red Hat had no right to shut them out. Yes they could have made them a customer and charged them for it, but they didn’t do that. And if I’m not mistaken they made the binaries available, not the source code. Meaning that Rocky and Alma would need to spend weeks compiling the code before they could even make it ready for distribution.

        Now, someone could become a client of Red Hat, get the code and then host it on a server for anyone to download. But I have a feeling Red Hat would drop them as soon as they found out.

        Basically RH now have a closed source mentality.

        As for Fedora, stop being so naive. Were you born yesterday? I’m an IT Pro and I can tell your if my company set up a working group full of full time employees to work on a “community” distro which then gets directly absorbed into it company and used in our enterprise products, that working group is to all intents and purposes a part of my company since I’m freaking paying their salaries, and they are working on my freaking product!

    • LeFantome@programming.dev
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      7 months ago

      You better hope that Cinnamon migrates to Wayland before Red Hat stops supporting Xorg. Despite the deeply researched and evidence based opinion above, Red Hat is the the primary contributor to many of the technologies propping up Mint. Xorg is MIT licensed of course and Red Hat has no obligation to share their changes for Xorg with Mint but they do. Most of the original software Red Hat writes is released under the GPL and used by every other distro. The very first program that Debian runs when it boots was written and is maintained by Red Hat. Fedora was founded by Red Hat to explicitly be community based and they pay the salaries of many of the prominent contributors. Regardless of what you think of Red Hat’s behaviour, I am embarrassed for anybody that honestly believes Red Hat is closed source, even without the all caps.

      • danielfgom@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        3
        ·
        7 months ago

        Can you read? Have a read of what Richard Stallman says Free Software is:

        “Free software” means software that respects users’ freedom and community. Roughly, it means that the users have the freedom to run, copy, distribute, study, change and improve the software. Thus, “free software” is a matter of liberty, not price. To understand the concept, you should think of “free” as in “free speech,” not as in “free beer.” We sometimes call it “libre software,” borrowing the French or Spanish word for “free” as in freedom, to show we do not mean the software is gratis.

        You may have paid money to get copies of a free program, or you may have obtained copies at no charge. But regardless of how you got your copies, you always have the freedom to copy and change the software, even to sell copies.

        Read carefully. Several times if you don’t get it at first. Then go cry in a corner for being a jackass

    • Pantherina@feddit.de
      link
      fedilink
      arrow-up
      6
      arrow-down
      1
      ·
      7 months ago

      Imagine working on big parts of the Linux desktop and projects just use your source code and build exact clones off your Distro, while all the developers you pay need the income to keep contributing to awesome modern software.

      It is difficult but businesses are asked if Linux Desktop needs money, not hobby users.

      • danielfgom@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        2
        ·
        7 months ago

        They shouldn’t have used Linux in that case because according to GNU, the FSF and Richard Stallman, if you use Free Software under the GPL you are agreeing to the following:

        “Free software” means software that respects users’ freedom and community. Roughly, it means that the users have the freedom to run, copy, distribute, study, change and improve the software. Thus, “free software” is a matter of liberty, not price. To understand the concept, you should think of “free” as in “free speech,” not as in “free beer.” We sometimes call it “libre software,” borrowing the French or Spanish word for “free” as in freedom, to show we do not mean the software is gratis.

        You may have paid money to get copies of a free program, or you may have obtained copies at no charge. But regardless of how you got your copies, you always have the freedom to copy and change the software, even to sell copies.

        As you can see, they are required by the principles of free software to let others distribute it, when without changing a single line of code… Don’t go calling us freeloaders when were practicing Free Software principles.