• 0 Posts
  • 23 Comments
Joined 3 years ago
cake
Cake day: June 13th, 2023

help-circle

  • Debian is fine distro and many people rely on it as strong foundation including the people that build ubuntu and mint. Maybe Debian is the hidden champion.

    When Ubuntu became popular, it had some advantages like reliable release cycles, slightly newer packages, better integration of proprietary drivers. Stuff that was not wanted in Debian stable main at the time.

    Other non-debian-based distros also brought some advantages.

    Personally, I’d love to see Debian as the base distro with Mint, Ubuntu and others building ontop of it. I like my apt update. I just won’t send novices straight to Debian when the derivates have more desktop users.




  • You don’t have to switch if you like what you found. Some people distro hop, some stay on the same one their whole life.

    Too answer your question: Keeping your data is not hard and you should have a backup. Keeping your configuration/customization is a different story; if you don’t like the defaults, the tweaking is practically lost when you swap distros or DEs.

    Too address the elefant in the room: Those beginner-friendly distros (e.g. Mint, Ubuntu, …) that you “start with” are actual full-fledged Linux distros under the hood. They usually try to create a UI that’s easier to navigate for someone switching from Windows (rarely from mac) and have a friendly community. They are opionated on some design choices but otherwise 99% identical to the underlying generic purpose distro.

    Ubuntu is based on Debian. Mint is based on Ubuntu. Most Everything build for Debian will also work on Ubuntu or Mint. If you like Mint and it works on your hardware, there’s no objective need to switch to Debian (or Arch or Gentoo) ever. People switch as a learning exercise or for bragging rights.

    The main purpose of trying different distro is to find your style. Experts could probably configure Debian to look and behave just like Mint, but it’s easier and more consistent if you get it all of the box.










  • _edge@discuss.tchncs.detoLinux@lemmy.mlMacOS Preview equivalent
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    9 months ago

    Preview is one of the things mac os got right. it’s hard to copy. If you think about it, it does not make sense that a tool called preview that most people use to quickly read pdf (and other) files, is also a lightweight pdf editor, which is often more useful than acrobat or pdfedit or whatever you use.

    It’s not logical. no one will make a clone of it.

    you’ll have to get used to other tools.





  • I use Ubuntu every day. I’m part of the Linux community. And i believe that Ubuntu helped to make the Linux desktop easy and available and sort-of cool.

    There’s no hate, but i could live without snap, unity and oversimplification. Actually that’s my biggest issue. Give me settings, give me choice. Hibernate works fine on my machine, don’t hide it.

    Apt/deb is a fine package manager, flatpak and docker can supplement it when you want something not packaged as deb. The way Ubuntu updates browser over snap is a small improvement, but it’s not worth deviating from the rest of the Linux world.

    I don’t hate Ubuntu. I think they are wasting their time on stuff no one needs. Missing the chance to improve Linux for everyone.


  • Your problem is most likely escaping. $1 has a meaning in regex and in shell. You want the former and the single quotes achieve this.

    In your second example, with alias, probably the shell interpreting this replaces $1 with whatever the first arg in the shell environment is, probably the empty string.

    Not sure what the problem with the shell script is. Anyway try escaping the $ as $ and \ as \.

    You can see where you are wrong if you replace prename with echo for debugging. Or in a shell script do

    set -ex