• Re: Linux upgrade.

    From Carlos E.R.@21:1/5 to All on Mon Dec 23 22:30:13 2024
    On 2024-12-23 22:21, D wrote:
    So the upgrade took me 45 minutes, and the only modification I needed to
    do was to update my midnight commander config file, because apparently someone in the project decided on a new config format between version 3
    and version 4.

    Version 4 is old. I have 4.8.27, and my distribution is old.

    --
    Cheers, Carlos.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to All on Mon Dec 23 22:21:55 2024
    As part of my christmas tradition, I always upgrade my linux when the
    holiday starts. The reason is that if something goes wrong, I have a long
    time to fix it, without anything work related getting in the way.

    Every year, I am equally surprised when things just work. I move my dot
    files, and all application are there, with the settings I'm used to.

    Even my compiled programs such as alpine, leafnode and possibly one or two more, and my python invoicing application, could just be moved and worked
    right away.

    So the upgrade took me 45 minutes, and the only modification I needed to
    do was to update my midnight commander config file, because apparently
    someone in the project decided on a new config format between version 3
    and version 4.

    Impressive!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John McCue@21:1/5 to nospam@example.net on Mon Dec 23 22:04:35 2024
    D <nospam@example.net> wrote:
    As part of my christmas tradition, I always upgrade my linux
    when the holiday starts.

    Interesting, my yearly tradition is to do multiple full
    system backup of my workstation and server this time a year.
    Two for "off-site" and a couple for home :)

    --
    csh(1) - "An elegant shell, for a more... civilized age."
    - Paraphrasing Star Wars

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to John McCue on Mon Dec 23 22:52:12 2024
    On Mon, 23 Dec 2024 22:04:35 -0000 (UTC), John McCue wrote:

    ... my yearly tradition is to do multiple full system backup of
    my workstation and server this time a year.

    The only things I consider crucial to back up are my own work. I don’t
    bother backing up OS installations, apart from the contents of /etc.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to John McCue on Tue Dec 24 00:27:12 2024
    On Tue, 24 Dec 2024 00:23:43 -0000 (UTC), John McCue wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:

    On Mon, 23 Dec 2024 22:04:35 -0000 (UTC), John McCue wrote:

    ... my yearly tradition is to do multiple full system backup of my
    workstation and server this time a year.

    The only things I consider crucial to back up are my own work. I don?t
    bother backing up OS installations, apart from the contents of /etc.

    Yes, that is what I do, backup data, static data dirs with various OS
    Config Dirs.

    And here’s another tip: before modifying anything in /etc, I try to make a backup copy with the suffix “-orig” attached. That way, it’s easy to find all the places I’ve customized the config, with a simple command like

    find /etc -iname \*-orig

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John McCue@21:1/5 to Lawrence D'Oliveiro on Tue Dec 24 00:23:43 2024
    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
    On Mon, 23 Dec 2024 22:04:35 -0000 (UTC), John McCue wrote:

    ... my yearly tradition is to do multiple full system backup of
    my workstation and server this time a year.

    The only things I consider crucial to back up are my own work. I don?t
    bother backing up OS installations, apart from the contents of /etc.

    Yes, that is what I do, backup data, static data dirs with
    various OS Config Dirs.

    --
    csh(1) - "An elegant shell, for a more... civilized age."
    - Paraphrasing Star Wars

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From vallor@21:1/5 to ldo@nz.invalid on Tue Dec 24 02:08:42 2024
    On Tue, 24 Dec 2024 00:27:12 -0000 (UTC), Lawrence D'Oliveiro
    <ldo@nz.invalid> wrote in <vkcv50$1f4ve$2@dont-email.me>:

    On Tue, 24 Dec 2024 00:23:43 -0000 (UTC), John McCue wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:

    On Mon, 23 Dec 2024 22:04:35 -0000 (UTC), John McCue wrote:

    ... my yearly tradition is to do multiple full system backup of my
    workstation and server this time a year.

    The only things I consider crucial to back up are my own work. I don?t
    bother backing up OS installations, apart from the contents of /etc.

    Yes, that is what I do, backup data, static data dirs with various OS
    Config Dirs.

    And here’s another tip: before modifying anything in /etc, I try to make
    a backup copy with the suffix “-orig” attached. That way, it’s easy to find all the places I’ve customized the config, with a simple command
    like

    find /etc -iname \*-orig

    Or you could:

    # mkdir RCS
    # ci -w(your username) -l -d (filename)

    rcs, the revision control system, is lightweight and easy to handle. You
    can diff your files with rcsdiff.

    Beats keeping around "filename-orig", "filename.old",
    "filename.notsoold", "filename.thisoneworkedbefore", etc.

    (Or, you could use git, but that's overkill for /etc files...)

    --
    -v System76 Thelio Mega v1.1 x86_64 NVIDIA RTX 3090 Ti
    OS: Linux 6.12.6 Release: Mint 21.3 Mem: 258G
    "The cost of feathers has risen... Now even DOWN is up!"

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to vallor on Tue Dec 24 02:24:37 2024
    On 24 Dec 2024 02:08:42 GMT, vallor wrote:

    On Tue, 24 Dec 2024 00:27:12 -0000 (UTC), Lawrence D'Oliveiro <ldo@nz.invalid> wrote in <vkcv50$1f4ve$2@dont-email.me>:

    And here’s another tip: before modifying anything in /etc, I try to
    make a backup copy with the suffix “-orig” attached. That way, it’s
    easy to find all the places I’ve customized the config, with a simple
    command like

    find /etc -iname \*-orig

    Or you could:

    # mkdir RCS ...

    Some people use Git. Why be satisfied with half-measures?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From vallor@21:1/5 to ldo@nz.invalid on Tue Dec 24 03:04:29 2024
    On Tue, 24 Dec 2024 02:24:37 -0000 (UTC), Lawrence D'Oliveiro
    <ldo@nz.invalid> wrote in <vkd614$1gfpo$3@dont-email.me>:

    On 24 Dec 2024 02:08:42 GMT, vallor wrote:

    On Tue, 24 Dec 2024 00:27:12 -0000 (UTC), Lawrence D'Oliveiro
    <ldo@nz.invalid> wrote in <vkcv50$1f4ve$2@dont-email.me>:

    And here’s another tip: before modifying anything in /etc, I try to
    make a backup copy with the suffix “-orig” attached. That way, it’s >>> easy to find all the places I’ve customized the config, with a simple
    command like

    find /etc -iname \*-orig

    Or you could:

    # mkdir RCS ...

    Some people use Git. Why be satisfied with half-measures?

    You snipped out (as you are wont to do):

    v] (Or, you could use git, but that's overkill for /etc files...)

    rcs isn't a "half-measure" -- it's a simpler measure. But by all means,
    use git:

    1) cd /etc
    2) git init
    3) [...]
    4) Profit!

    --
    -v System76 Thelio Mega v1.1 x86_64 NVIDIA RTX 3090 Ti
    OS: Linux 6.12.6 Release: Mint 21.3 Mem: 258G
    "Computers make very fast, very accurate mistakes."

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to vallor on Tue Dec 24 05:50:28 2024
    On 24 Dec 2024 03:04:29 GMT, vallor wrote:

    rcs isn't a "half-measure" -- it's a simpler measure.

    Simpler still is just copying files. Easier to find where changes have
    been made.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From 186283@ud0s4.net@21:1/5 to All on Tue Dec 24 01:31:38 2024
    On 12/23/24 4:21 PM, D wrote:
    As part of my christmas tradition, I always upgrade my linux when the
    holiday starts. The reason is that if something goes wrong, I have a
    long time to fix it, without anything work related getting in the way.

    Every year, I am equally surprised when things just work. I move my dot files, and all application are there, with the settings I'm used to.

    Even my compiled programs such as alpine, leafnode and possibly one or
    two more, and my python invoicing application, could just be moved and
    worked right away.

    So the upgrade took me 45 minutes, and the only modification I needed to
    do was to update my midnight commander config file, because apparently someone in the project decided on a new config format between version 3
    and version 4.

    Impressive!


    What ? WHAT ??? An actual LINUX question ???!!! :-)

    Me, I just generally avoid serious kernel upgrades ...
    just the usual auto-upgrades until I feel it's time
    to jump up two or three whole distro versions. It's
    only 'home use' now, so I'm not so worried about
    Vlad and Xi.

    Alas most of my stuff is Deb based, and WORM was
    NOT encouraging - too 'Canonical' now. DO have
    some Arch/Fedora based boxes though ... may just
    go straight Fedora for awhile ........

    DID love OpenSUSE - but now it's kinda trapped in
    the IBM/RHEL vortex. Don't wanna be an unpaid
    beta-tester for IBM.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Kettlewell@21:1/5 to vallor on Tue Dec 24 08:19:36 2024
    vallor <vallor@cultnix.org> writes:
    rcs isn't a "half-measure" -- it's a simpler measure.

    Obsolete three generations of software ago, more like.

    But by all means, use git:

    1) cd /etc
    2) git init
    3) [...]
    4) Profit!

    https://packages.debian.org/bookworm/etckeeper is the common way to do
    this in Debian and its derivatives; it automatically commits during
    package installs/upgrades.

    --
    https://www.greenend.org.uk/rjk/

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to Carlos E.R. on Tue Dec 24 12:57:10 2024
    On Mon, 23 Dec 2024, Carlos E.R. wrote:

    On 2024-12-23 22:21, D wrote:
    So the upgrade took me 45 minutes, and the only modification I needed to do >> was to update my midnight commander config file, because apparently someone >> in the project decided on a new config format between version 3 and version >> 4.

    Version 4 is old. I have 4.8.27, and my distribution is old.

    Apologies, I should have been more clear. I have:

    GNU Midnight Commander 4.8.30
    Built with GLib 2.78.3
    Built with S-Lang 2.3.1a with terminfo database
    Built with libssh2 1.11.0
    With builtin Editor
    With subshell support as default
    With support for background operations
    With mouse support on xterm and Linux console
    With support for X11 events
    With internationalization support
    With multiple codepages support
    With ext2fs attributes support
    Virtual File Systems:
    cpiofs, tarfs, sfs, extfs, ftpfs, sftpfs
    Data types:
    char: 8; int: 32; long: 64; void *: 64; size_t: 64; off_t: 64;.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to John McCue on Tue Dec 24 14:03:12 2024
    On Mon, 23 Dec 2024, John McCue wrote:

    D <nospam@example.net> wrote:
    As part of my christmas tradition, I always upgrade my linux
    when the holiday starts.

    Interesting, my yearly tradition is to do multiple full
    system backup of my workstation and server this time a year.
    Two for "off-site" and a couple for home :)

    A wise tradition! In my case, I have an ancient script based on rsync and
    tor, that does daily differentials to an old off site laptop.

    I have been toying with the idea of replacing it with restic, but haven't
    yet gotten around to it. Let's see, maybe in 2025. ;)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to 186282@ud0s4.net on Tue Dec 24 15:26:29 2024
    On Tue, 24 Dec 2024, 186282@ud0s4.net wrote:

    On 12/23/24 4:21 PM, D wrote:
    As part of my christmas tradition, I always upgrade my linux when the
    holiday starts. The reason is that if something goes wrong, I have a long
    time to fix it, without anything work related getting in the way.

    Every year, I am equally surprised when things just work. I move my dot
    files, and all application are there, with the settings I'm used to.

    Even my compiled programs such as alpine, leafnode and possibly one or two >> more, and my python invoicing application, could just be moved and worked
    right away.

    So the upgrade took me 45 minutes, and the only modification I needed to do >> was to update my midnight commander config file, because apparently someone >> in the project decided on a new config format between version 3 and version >> 4.

    Impressive!


    What ? WHAT ??? An actual LINUX question ???!!! :-)

    Apologies!

    Me, I just generally avoid serious kernel upgrades ...
    just the usual auto-upgrades until I feel it's time
    to jump up two or three whole distro versions. It's
    only 'home use' now, so I'm not so worried about
    Vlad and Xi.

    Same here + the company web server, but it only has two ports open to the
    net, so nothing to worry about there.

    Then I have my colleague who runs some hosting, and I actually have no
    idea what he runs. Since he is responsible, he gets free choice as long as
    it's not windows or kubernetes, and those rules he has followed.

    Alas most of my stuff is Deb based, and WORM was
    NOT encouraging - too 'Canonical' now. DO have
    some Arch/Fedora based boxes though ... may just
    go straight Fedora for awhile ........

    DID love OpenSUSE - but now it's kinda trapped in
    the IBM/RHEL vortex. Don't wanna be an unpaid
    beta-tester for IBM.

    Yes, opensuse has served me well for at least a decade if not more. But
    I've heard rumours they will stop with the leap distribution and do some
    kind of rootless, or rolling release stuff _only_. I do not like it! I
    want stability and not sand shifting under my feet.

    So if/when they disappear, I'm looking at FreeBSD to replace it,
    alternatively possibly debian or slckware. We'll see!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From John McCue@21:1/5 to vallor on Tue Dec 24 20:05:51 2024
    vallor <vallor@cultnix.org> wrote:
    <snip>
    # mkdir RCS
    # ci -w(your username) -l -d (filename)

    rcs, the revision control system, is lightweight and easy to
    handle. You can diff your files with rcsdiff.

    That is exactly what I do with OS configs.

    <snip>

    --
    csh(1) - "An elegant shell, for a more... civilized age."
    - Paraphrasing Star Wars

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From rbowman@21:1/5 to 186282@ud0s4.net on Tue Dec 24 19:21:12 2024
    On Tue, 24 Dec 2024 01:31:38 -0500, 186282@ud0s4.net wrote:

    Me, I just generally avoid serious kernel upgrades ...
    just the usual auto-upgrades until I feel it's time to jump up two or
    three whole distro versions. It's only 'home use' now, so I'm not so
    worried about Vlad and Xi.

    The Fedora box pulls down kernels frequently and is usually only a minor version or two behind the latest. The Ubuntu box is still 6.8.0. They both
    work fine for anything I do.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From 186283@ud0s4.net@21:1/5 to All on Wed Dec 25 01:14:26 2024
    On 12/24/24 9:26 AM, D wrote:


    On Tue, 24 Dec 2024, 186282@ud0s4.net wrote:

    On 12/23/24 4:21 PM, D wrote:
    As part of my christmas tradition, I always upgrade my linux when the
    holiday starts. The reason is that if something goes wrong, I have a
    long time to fix it, without anything work related getting in the way.

    Every year, I am equally surprised when things just work. I move my
    dot files, and all application are there, with the settings I'm used to. >>>
    Even my compiled programs such as alpine, leafnode and possibly one
    or two more, and my python invoicing application, could just be moved
    and worked right away.

    So the upgrade took me 45 minutes, and the only modification I needed
    to do was to update my midnight commander config file, because
    apparently someone in the project decided on a new config format
    between version 3 and version 4.

    Impressive!


     What ? WHAT ??? An actual LINUX question ???!!!  :-)

    Apologies!

     Me, I just generally avoid serious kernel upgrades ...
     just the usual auto-upgrades until I feel it's time
     to jump up two or three whole distro versions. It's
     only 'home use' now, so I'm not so worried about
     Vlad and Xi.

    Same here + the company web server, but it only has two ports open to
    the net, so nothing to worry about there.

    Then I have my colleague who runs some hosting, and I actually have no
    idea what he runs. Since he is responsible, he gets free choice as long
    as it's not windows or kubernetes, and those rules he has followed.

    Linux is pretty damned secure - so keeping up with
    the very latest updates (unless it's a busy busy
    outward-facing server) is usually not so critical.
    Kernel 6.x has some added goodies over 4.x, but
    it's not THAT much "improved".

     Alas most of my stuff is Deb based, and WORM was
     NOT encouraging - too 'Canonical' now. DO have
     some Arch/Fedora based boxes though ... may just
     go straight Fedora for awhile ........

     DID love OpenSUSE - but now it's kinda trapped in
     the IBM/RHEL vortex. Don't wanna be an unpaid
     beta-tester for IBM.

    Yes, opensuse has served me well for at least a decade if not more. But
    I've heard rumours they will stop with the leap distribution and do some
    kind of rootless, or rolling release stuff _only_. I do not like it! I
    want stability and not sand shifting under my feet.

    There's much to be said for solid 'releases'.

    "Rolling" WORKS of course, but it subtly alters the
    landscape over short time-scales. Updates also use
    a lot of bandwidth - almost the entire distro - for
    even the smallest additions.

    DID get Tumbleweed to work on a Pi4 ... but it
    wasn't very snappy even using lighter desktops.

    So if/when they disappear, I'm looking at FreeBSD to replace it, alternatively possibly debian or slckware. We'll see!

    FreeBSD ain't terrible. Depends on your needs however.
    One of my biggest gripes with the BSDs is that their
    drivers tend to be YEARS behind.

    Despite bragging, never really got OpenBSD to install
    super-clean. It's also kinda too security anal. For
    SOME applications though that may be good.

    DragonFly is OK ... forked from Free4 ... has its own
    odd file system however.

    You MIGHT want to look at OpenIndiana. Again a bit
    odd, but it works.

    In any case, Linux is NOT the alpha and omega of *IX
    systems.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From 186283@ud0s4.net@21:1/5 to rbowman on Wed Dec 25 02:15:44 2024
    On 12/24/24 2:21 PM, rbowman wrote:
    On Tue, 24 Dec 2024 01:31:38 -0500, 186282@ud0s4.net wrote:

    Me, I just generally avoid serious kernel upgrades ...
    just the usual auto-upgrades until I feel it's time to jump up two or
    three whole distro versions. It's only 'home use' now, so I'm not so
    worried about Vlad and Xi.

    The Fedora box pulls down kernels frequently and is usually only a minor version or two behind the latest. The Ubuntu box is still 6.8.0. They both work fine for anything I do.

    Zactly ... ordinary upgrades almost always get it done.

    Again though, a busy outwards-facing server, some of
    those point upgrades MAY be valuable.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to 186282@ud0s4.net on Wed Dec 25 12:42:13 2024
    This message is in MIME format. The first part should be readable text,
    while the remaining parts are likely unreadable without MIME-aware tools.

    On Wed, 25 Dec 2024, 186282@ud0s4.net wrote:

    Same here + the company web server, but it only has two ports open to the
    net, so nothing to worry about there.

    Then I have my colleague who runs some hosting, and I actually have no idea >> what he runs. Since he is responsible, he gets free choice as long as it's >> not windows or kubernetes, and those rules he has followed.

    Linux is pretty damned secure - so keeping up with
    the very latest updates (unless it's a busy busy
    outward-facing server) is usually not so critical.
    Kernel 6.x has some added goodies over 4.x, but
    it's not THAT much "improved".

    This mirrors my experiences. I've never had any break ins on my servers. This has always been to limited exposure, rather than me being up to date with the latest patches. Oh, and also due to the simplicity of what I hosted which means the limited exposure above.

     Alas most of my stuff is Deb based, and WORM was
     NOT encouraging - too 'Canonical' now. DO have
     some Arch/Fedora based boxes though ... may just
     go straight Fedora for awhile ........

     DID love OpenSUSE - but now it's kinda trapped in
     the IBM/RHEL vortex. Don't wanna be an unpaid
     beta-tester for IBM.

    Yes, opensuse has served me well for at least a decade if not more. But
    I've heard rumours they will stop with the leap distribution and do some
    kind of rootless, or rolling release stuff _only_. I do not like it! I want >> stability and not sand shifting under my feet.

    There's much to be said for solid 'releases'.

    Amen!

    "Rolling" WORKS of course, but it subtly alters the
    landscape over short time-scales. Updates also use
    a lot of bandwidth - almost the entire distro - for
    even the smallest additions.

    DID get Tumbleweed to work on a Pi4 ... but it
    wasn't very snappy even using lighter desktops.

    I tried to get opensuse to work on my radxa zero, but didn't work. I suspect something needed to be changed or adapted with the image since the debian I used
    in the end, had been massaged by the radxa team.

    So if/when they disappear, I'm looking at FreeBSD to replace it,
    alternatively possibly debian or slckware. We'll see!

    FreeBSD ain't terrible. Depends on your needs however.
    One of my biggest gripes with the BSDs is that their
    drivers tend to be YEARS behind.

    I imagine it should work fine on VM:s and a standard, older server. I tried it on a 1 year old Asus laptop and it worked pretty ok.

    Despite bragging, never really got OpenBSD to install
    super-clean. It's also kinda too security anal. For
    SOME applications though that may be good.

    DragonFly is OK ... forked from Free4 ... has its own
    odd file system however.

    You MIGHT want to look at OpenIndiana. Again a bit
    odd, but it works.

    Woulnd't that be even further behind than FreeBSD?

    In any case, Linux is NOT the alpha and omega of *IX
    systems.

    This is the truth!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Computer Nerd Kev@21:1/5 to nospam@example.net on Thu Dec 26 07:02:58 2024
    D <nospam@example.net> wrote:
    As part of my christmas tradition, I always upgrade my linux when the
    holiday starts. The reason is that if something goes wrong, I have a long time to fix it, without anything work related getting in the way.

    Where practical I prefer to clone the drive and upgrade the clone,
    then work on the issues while using the old OS on the original
    drive and finally clone the upgrade drive over when everything's
    working right (after doing a backup of the old one just in case I
    was wrong). So there's no deadline as such, just the annoyance of
    needing to note when new software is installed during use so the
    same can be done on the upgrade drive.

    Every year, I am equally surprised when things just work. I move my dot files, and all application are there, with the settings I'm used to.

    I often have trouble with things getting unintentionally
    uninstalled.

    --
    __ __
    #_ < |\| |< _#

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From vallor@21:1/5 to All on Wed Dec 25 21:30:53 2024
    On Wed, 25 Dec 2024 02:15:44 -0500, "186282@ud0s4.net" <186283@ud0s4.net>
    wrote in <BcucnUKMhO-9LPb6nZ2dnZfqn_ednZ2d@earthlink.com>:

    On 12/24/24 2:21 PM, rbowman wrote:
    On Tue, 24 Dec 2024 01:31:38 -0500, 186282@ud0s4.net wrote:

    Me, I just generally avoid serious kernel upgrades ...
    just the usual auto-upgrades until I feel it's time to jump up two or >>> three whole distro versions. It's only 'home use' now, so I'm not so >>> worried about Vlad and Xi.

    The Fedora box pulls down kernels frequently and is usually only a minor
    version or two behind the latest. The Ubuntu box is still 6.8.0. They both >> work fine for anything I do.

    Zactly ... ordinary upgrades almost always get it done.

    Again though, a busy outwards-facing server, some of
    those point upgrades MAY be valuable.

    I remembered this one:

    "EXT4 Has A Very Nice Performance Optimization For Linux 6.11"

    https://www.phoronix.com/news/Linux-6.11-EXT4

    --
    -v System76 Thelio Mega v1.1 x86_64 NVIDIA RTX 3090 Ti
    OS: Linux 6.13.0-rc4 Release: Mint 21.3 Mem: 258G
    "He who Laughs, Lasts."

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to Computer Nerd Kev on Wed Dec 25 23:08:12 2024
    On Wed, 26 Dec 2024, Computer Nerd Kev wrote:

    D <nospam@example.net> wrote:
    As part of my christmas tradition, I always upgrade my linux when the
    holiday starts. The reason is that if something goes wrong, I have a long
    time to fix it, without anything work related getting in the way.

    Where practical I prefer to clone the drive and upgrade the clone,
    then work on the issues while using the old OS on the original

    Way to advanced for my humble infrastructure. ;) But online and in the
    hosting environment, snapshots are very convenient when doing any big
    changes. Actually, I do have btrfs on my opensuse, so when doing any
    upgrades, it does take a snapshot, so I do have the option of rolling back
    to the last good snapshot. Come to think of it, I've done it once with
    great success! =)

    drive and finally clone the upgrade drive over when everything's
    working right (after doing a backup of the old one just in case I
    was wrong). So there's no deadline as such, just the annoyance of
    needing to note when new software is installed during use so the
    same can be done on the upgrade drive.

    Every year, I am equally surprised when things just work. I move my dot
    files, and all application are there, with the settings I'm used to.

    I often have trouble with things getting unintentionally
    uninstalled.

    Strangely enough, everything survived and was upgraded after the OS
    upgrade. Opensuse is a true ninja! I do not understand why not more people
    use it in production. I suspect that it is one distro that will disappear within the next 10 years or so, as SUSE gets more and more mismanaged.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From 186283@ud0s4.net@21:1/5 to vallor on Wed Dec 25 20:54:27 2024
    On 12/25/24 4:30 PM, vallor wrote:
    On Wed, 25 Dec 2024 02:15:44 -0500, "186282@ud0s4.net" <186283@ud0s4.net> wrote in <BcucnUKMhO-9LPb6nZ2dnZfqn_ednZ2d@earthlink.com>:

    On 12/24/24 2:21 PM, rbowman wrote:
    On Tue, 24 Dec 2024 01:31:38 -0500, 186282@ud0s4.net wrote:

    Me, I just generally avoid serious kernel upgrades ...
    just the usual auto-upgrades until I feel it's time to jump up two or >>>> three whole distro versions. It's only 'home use' now, so I'm not so >>>> worried about Vlad and Xi.

    The Fedora box pulls down kernels frequently and is usually only a minor >>> version or two behind the latest. The Ubuntu box is still 6.8.0. They both >>> work fine for anything I do.

    Zactly ... ordinary upgrades almost always get it done.

    Again though, a busy outwards-facing server, some of
    those point upgrades MAY be valuable.

    I remembered this one:

    "EXT4 Has A Very Nice Performance Optimization For Linux 6.11"

    https://www.phoronix.com/news/Linux-6.11-EXT4


    Maybe ... but it's STILL "mass storage" and will
    be VASTLY slower than the CPU and such.

    Oh well, better than tape reels and such ...

    I kinda remember doing code 'overlays' with stuff
    pulled off those spinny tapes ... like WOW slow !
    The good 'ole "batch" days :-)

    Turbo Pascal did 'overlays' too - and had to use
    'em early on with limited PCs. However 'cheap'
    HDDs had been invented so it wasn't THAT bad.

    5 1/4 full-height Rodime 10 MEGAbyte HDD ...
    that's the first 'cheap' one I used. Something
    like $2600 1980s dollars. My poor boss spent
    the whole weekend with the thing trying to
    get it to boot the system. I looked at it on
    Monday ... turned out he was just too IMPATIENT
    and would restart over and over and over before
    the boot routine could fully kick in :-)

    Not sure if those were "MFM" or just "FM".

    STILL kinda write software with the 'batch'
    approach in mind. First bit does its stuff
    and makes temp file, then the second works
    on that and makes another temp file, on
    and on until it's done. Advantage - you can
    LOOK at those temp files for debugging clues.
    Just include a "-P" 'preserve tempfiles' option.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From 186283@ud0s4.net@21:1/5 to All on Wed Dec 25 21:47:13 2024
    On 12/25/24 5:08 PM, D wrote:


    On Wed, 26 Dec 2024, Computer Nerd Kev wrote:

    D <nospam@example.net> wrote:
    As part of my christmas tradition, I always upgrade my linux when the
    holiday starts. The reason is that if something goes wrong, I have a
    long
    time to fix it, without anything work related getting in the way.

    Where practical I prefer to clone the drive and upgrade the clone,
    then work on the issues while using the old OS on the original

    Way to advanced for my humble infrastructure. ;) But online and in the hosting environment, snapshots are very convenient when doing any big changes. Actually, I do have btrfs on my opensuse, so when doing any upgrades, it does take a snapshot, so I do have the option of rolling
    back to the last good snapshot. Come to think of it, I've done it once
    with great success! =)

    drive and finally clone the upgrade drive over when everything's
    working right (after doing a backup of the old one just in case I
    was wrong). So there's no deadline as such, just the annoyance of
    needing to note when new software is installed during use so the
    same can be done on the upgrade drive.

    Every year, I am equally surprised when things just work. I move my dot
    files, and all application are there, with the settings I'm used to.

    I often have trouble with things getting unintentionally
    uninstalled.

    Strangely enough, everything survived and was upgraded after the OS
    upgrade. Opensuse is a true ninja! I do not understand why not more
    people use it in production. I suspect that it is one distro that will disappear within the next 10 years or so, as SUSE gets more and more mismanaged.

    The death of OpenSUSE is that it's part of the IBM/RHEL
    vortex now, just like CentOS. Using it, you're basically
    an unpaid beta tester for IBM. Eventually they won't need
    that so much - and that entire distro family will just
    go away.

    Hmm ... time for a "MOREOpenSUSE" fork ... it really is a
    very good, useful, helpful distro. Used it for a LONG
    time for both workstations and servers.

    Debian WAS good - but now it's gone way too 'Canonical'
    for no good reasons whatsoever except to cause problems.
    A few forks like Devuan may still be OK for now.

    Arch derivs and a few of the BSDs may be your future.
    Just downloaded the latest 'Dragonfly' yesterday. I'll
    make a VM out of it for experimental purposes. The
    biggest BSD prob these days is that the driver database
    tends to run years behind ... making them better for
    servers with boring standard hardware.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lars Poulsen@21:1/5 to 186282@ud0s4.net on Thu Dec 26 03:40:38 2024
    On 2024-12-26, 186282@ud0s4.net <186283@ud0s4.net> wrote:
    The death of OpenSUSE is that it's part of the IBM/RHEL
    vortex now, just like CentOS. Using it, you're basically
    an unpaid beta tester for IBM. Eventually they won't need
    that so much - and that entire distro family will just
    go away.

    Are you saying that RedHat has bought SUSE?
    I see no reference to this in the Wikipedia articles about SuSE and
    openSUSE.

    Or do you just mean that SUSE uses RPM packaging like RedHat
    distributions do?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From rbowman@21:1/5 to Lars Poulsen on Thu Dec 26 04:19:55 2024
    On Thu, 26 Dec 2024 03:40:38 -0000 (UTC), Lars Poulsen wrote:

    On 2024-12-26, 186282@ud0s4.net <186283@ud0s4.net> wrote:
    The death of OpenSUSE is that it's part of the IBM/RHEL vortex now,
    just like CentOS. Using it, you're basically an unpaid beta tester
    for IBM. Eventually they won't need that so much - and that entire
    distro family will just go away.

    Are you saying that RedHat has bought SUSE?
    I see no reference to this in the Wikipedia articles about SuSE and
    openSUSE.

    It's hard to keep track of the shell game from Novell to Attachmate to MicroFocus but I believe EQT AB has it now, at least the Enterprise.

    https://www.reuters.com/markets/deals/german-software-firm-suse-be-taken- private-by-eqt-16-euros-per-share-2023-08-17/

    I don't know if OpenSUSE is upstream of SLE like Rawhide/Fedora are
    upstream of RHEL. No particular reason but I missed the leap from 13.2 to
    Leap and eventually went to Fedora on that box.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Lars Poulsen on Thu Dec 26 08:14:18 2024
    On Thu, 26 Dec 2024 03:40:38 -0000 (UTC), Lars Poulsen wrote:

    Are you saying that RedHat has bought SUSE?

    The one you are responding to is known for spouting dubious stuff like
    that.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to 186282@ud0s4.net on Thu Dec 26 12:37:28 2024
    On Wed, 25 Dec 2024, 186282@ud0s4.net wrote:

    On 12/25/24 5:08 PM, D wrote:


    On Wed, 26 Dec 2024, Computer Nerd Kev wrote:

    D <nospam@example.net> wrote:
    As part of my christmas tradition, I always upgrade my linux when the
    holiday starts. The reason is that if something goes wrong, I have a long >>>> time to fix it, without anything work related getting in the way.

    Where practical I prefer to clone the drive and upgrade the clone,
    then work on the issues while using the old OS on the original

    Way to advanced for my humble infrastructure. ;) But online and in the
    hosting environment, snapshots are very convenient when doing any big
    changes. Actually, I do have btrfs on my opensuse, so when doing any
    upgrades, it does take a snapshot, so I do have the option of rolling back >> to the last good snapshot. Come to think of it, I've done it once with
    great success! =)

    drive and finally clone the upgrade drive over when everything's
    working right (after doing a backup of the old one just in case I
    was wrong). So there's no deadline as such, just the annoyance of
    needing to note when new software is installed during use so the
    same can be done on the upgrade drive.

    Every year, I am equally surprised when things just work. I move my dot >>>> files, and all application are there, with the settings I'm used to.

    I often have trouble with things getting unintentionally
    uninstalled.

    Strangely enough, everything survived and was upgraded after the OS
    upgrade. Opensuse is a true ninja! I do not understand why not more people >> use it in production. I suspect that it is one distro that will disappear
    within the next 10 years or so, as SUSE gets more and more mismanaged.

    The death of OpenSUSE is that it's part of the IBM/RHEL
    vortex now, just like CentOS. Using it, you're basically
    an unpaid beta tester for IBM. Eventually they won't need
    that so much - and that entire distro family will just
    go away.

    What is this IBM/RHEL vortex of SUSE? I've missed that completely. Is
    anyone buying SUSE? SUSE has a hidden gem and that is their deal with SAP, where they are the default OS in many SAP environments.

    Hmm ... time for a "MOREOpenSUSE" fork ... it really is a
    very good, useful, helpful distro. Used it for a LONG
    time for both workstations and servers.

    Debian WAS good - but now it's gone way too 'Canonical'
    for no good reasons whatsoever except to cause problems.
    A few forks like Devuan may still be OK for now.

    Sigh... debian was on my list, as well as devuan.

    Arch derivs and a few of the BSDs may be your future.
    Just downloaded the latest 'Dragonfly' yesterday. I'll
    make a VM out of it for experimental purposes. The
    biggest BSD prob these days is that the driver database
    tends to run years behind ... making them better for
    servers with boring standard hardware.

    I think you are right. The more I look the more BSD seems like a good
    choice. It seems Linux is becoming too cloudified and too governed by big corporations. I tried to work with the linux foundation once, and it was
    just revolting. I am working with a non-profit now under the linux
    foundation, and it is so sloooooooooooow. It is a miracle they manage to
    get anything done at all. =/

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to Lars Poulsen on Thu Dec 26 12:52:10 2024
    On Thu, 26 Dec 2024, Lars Poulsen wrote:

    On 2024-12-26, 186282@ud0s4.net <186283@ud0s4.net> wrote:
    The death of OpenSUSE is that it's part of the IBM/RHEL
    vortex now, just like CentOS. Using it, you're basically
    an unpaid beta tester for IBM. Eventually they won't need
    that so much - and that entire distro family will just
    go away.

    Are you saying that RedHat has bought SUSE?
    I see no reference to this in the Wikipedia articles about SuSE and
    openSUSE.

    Or do you just mean that SUSE uses RPM packaging like RedHat
    distributions do?


    Yes, I am also a bit confused. Based on what I hear from inside the
    company, SUSE does a good job of making themselves obsolete though, so no
    help from IBM needed. ;)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to rbowman on Thu Dec 26 12:57:46 2024
    On Thu, 26 Dec 2024, rbowman wrote:

    On Thu, 26 Dec 2024 03:40:38 -0000 (UTC), Lars Poulsen wrote:

    On 2024-12-26, 186282@ud0s4.net <186283@ud0s4.net> wrote:
    The death of OpenSUSE is that it's part of the IBM/RHEL vortex now,
    just like CentOS. Using it, you're basically an unpaid beta tester
    for IBM. Eventually they won't need that so much - and that entire
    distro family will just go away.

    Are you saying that RedHat has bought SUSE?
    I see no reference to this in the Wikipedia articles about SuSE and
    openSUSE.

    It's hard to keep track of the shell game from Novell to Attachmate to MicroFocus but I believe EQT AB has it now, at least the Enterprise.

    https://www.reuters.com/markets/deals/german-software-firm-suse-be-taken- private-by-eqt-16-euros-per-share-2023-08-17/

    Yes, EQT seems to be the current owner. Strange! I could have bet I heard rumours about them selling it to a UK private equity company, but maybe
    the deal didn't happen in the end.

    When I was working there, they had a great retirement plan. 20% of your on target earnings (regardless of it you met your target or not) they put
    away in an retirement account for you. The only company I heard that had a better plan was Oracle where the figure was 30%.

    I don't know if OpenSUSE is upstream of SLE like Rawhide/Fedora are
    upstream of RHEL. No particular reason but I missed the leap from 13.2 to Leap and eventually went to Fedora on that box.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Carlos E.R.@21:1/5 to Lars Poulsen on Thu Dec 26 14:04:49 2024
    On 2024-12-26 04:40, Lars Poulsen wrote:
    On 2024-12-26, 186282@ud0s4.net <186283@ud0s4.net> wrote:
    The death of OpenSUSE is that it's part of the IBM/RHEL
    vortex now, just like CentOS. Using it, you're basically
    an unpaid beta tester for IBM. Eventually they won't need
    that so much - and that entire distro family will just
    go away.

    Are you saying that RedHat has bought SUSE?

    Certainly not.

    I see no reference to this in the Wikipedia articles about SuSE and
    openSUSE.

    Or do you just mean that SUSE uses RPM packaging like RedHat
    distributions do?


    --
    Cheers, Carlos.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Carlos E.R.@21:1/5 to rbowman on Thu Dec 26 14:27:22 2024
    On 2024-12-26 05:19, rbowman wrote:
    On Thu, 26 Dec 2024 03:40:38 -0000 (UTC), Lars Poulsen wrote:

    On 2024-12-26, 186282@ud0s4.net <186283@ud0s4.net> wrote:
    The death of OpenSUSE is that it's part of the IBM/RHEL vortex now,
    just like CentOS. Using it, you're basically an unpaid beta tester
    for IBM. Eventually they won't need that so much - and that entire
    distro family will just go away.

    Are you saying that RedHat has bought SUSE?
    I see no reference to this in the Wikipedia articles about SuSE and
    openSUSE.

    It's hard to keep track of the shell game from Novell to Attachmate to MicroFocus but I believe EQT AB has it now, at least the Enterprise.

    https://www.reuters.com/markets/deals/german-software-firm-suse-be-taken- private-by-eqt-16-euros-per-share-2023-08-17/

    I don't know if OpenSUSE is upstream of SLE like Rawhide/Fedora are
    upstream of RHEL. No particular reason but I missed the leap from 13.2 to Leap and eventually went to Fedora on that box.

    openSUSE (not OpenSUSE) Tumbleweed is loosely upstream of SLE, and SLE
    is the basis (package compatible) of Leap.

    The next SLE has been delayed for about two years, I think. The new
    design is taking longer than they thought.

    https://news.opensuse.org/2024/10/07/leap-16-0-prealpha/


    There were talks of using containers, but I'm unsure of the name.

    "Just for clarification SLFO, SUSE Linux Framework One, is the source
    pool for SLES 16 and SL Micro 6.X. SLFO was previously known as
    Adaptable Linux Platform (ALP)."


    https://www.suse.com/c/revolutionizing-linux-distributions-with-an-adaptable-linux-platform/

    https://www.suse.com/c/suse-salp-raises-the-bar-on-confidential-computing/

    https://www.muylinux.com/2024/01/15/opensuse-leap-16-alp/

    --
    Cheers, Carlos.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From D@21:1/5 to Carlos E.R. on Thu Dec 26 16:42:53 2024
    On Thu, 26 Dec 2024, Carlos E.R. wrote:

    On 2024-12-26 05:19, rbowman wrote:
    On Thu, 26 Dec 2024 03:40:38 -0000 (UTC), Lars Poulsen wrote:

    On 2024-12-26, 186282@ud0s4.net <186283@ud0s4.net> wrote:
    The death of OpenSUSE is that it's part of the IBM/RHEL vortex now, >>>> just like CentOS. Using it, you're basically an unpaid beta tester >>>> for IBM. Eventually they won't need that so much - and that entire >>>> distro family will just go away.

    Are you saying that RedHat has bought SUSE?
    I see no reference to this in the Wikipedia articles about SuSE and
    openSUSE.

    It's hard to keep track of the shell game from Novell to Attachmate to
    MicroFocus but I believe EQT AB has it now, at least the Enterprise.

    https://www.reuters.com/markets/deals/german-software-firm-suse-be-taken-
    private-by-eqt-16-euros-per-share-2023-08-17/

    I don't know if OpenSUSE is upstream of SLE like Rawhide/Fedora are
    upstream of RHEL. No particular reason but I missed the leap from 13.2 to
    Leap and eventually went to Fedora on that box.

    openSUSE (not OpenSUSE) Tumbleweed is loosely upstream of SLE, and SLE is the basis (package compatible) of Leap.

    The next SLE has been delayed for about two years, I think. The new design is taking longer than they thought.

    https://news.opensuse.org/2024/10/07/leap-16-0-prealpha/


    There were talks of using containers, but I'm unsure of the name.

    "Just for clarification SLFO, SUSE Linux Framework One, is the source pool for SLES 16 and SL Micro 6.X. SLFO was previously known as Adaptable Linux Platform (ALP)."


    https://www.suse.com/c/revolutionizing-linux-distributions-with-an-adaptable-linux-platform/

    https://www.suse.com/c/suse-salp-raises-the-bar-on-confidential-computing/

    https://www.muylinux.com/2024/01/15/opensuse-leap-16-alp/

    I was reading up on opensuse 16 yesterday and it seems that 16 will let
    you do container based read only root, and regular read/write root. Since
    I like to make modifications and not have to restart, I'll happily take
    the classic version. Seems like opensuse leap will live on for all of
    version 16 at least! =)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)