Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > alt.os.linux.mint > #45761

Re: DistroWatch Q&A: Advice for new Linux users

From Jeff Layman <Jeff@invalid.invalid>
Newsgroups alt.os.linux.mint, alt.comp.os.windows-10
Subject Re: DistroWatch Q&A: Advice for new Linux users
Date 2025-10-30 14:35 +0000
Organization A noiseless patient Spider
Message-ID <10dvt44$3hf8q$1@dont-email.me> (permalink)
References (8 earlier) <10du2k1$3845i$7@dont-email.me> <10dv8jd$3hf8p$2@dont-email.me> <slrn10g6fer.286.dan@djph.net> <10dvgj1$3hf8p$4@dont-email.me> <slrn10g6p4i.286.dan@djph.net>

Cross-posted to 2 groups.

Show all headers | View raw


On 30/10/2025 13:13, Dan Purgert wrote:
> On 2025-10-30, Jeff Layman wrote:
>> On 30/10/2025 10:28, Dan Purgert wrote:
>>> On 2025-10-30, Jeff Layman wrote:
>>>> On 29/10/2025 21:57, Lawrence D’Oliveiro wrote:
>>>>> gunzip -c $(man -w bash) | groff -ktman -Tpdf | okular -
>>>>
>>>> (computer name):~$ gunzip -c $(man -w bash) | groff -ktman -Tpdf | okular -
>>>>
>>>> groff: fatal error: cannot load 'DESC' description file for device 'pdf'
>>>> org.kde.okular.core: No plugin for mimetype '"application/x-zerosize"'.
>>>
>>> Chances are you've only got 'groff-base' installed, rather than the full
>>> 'groff' package.
>>> [...]
>>>     3. "apt install groff" to install the full package.
>>
>> Successfully installed. There's quite a lot of it, but I've plenty of
>> disk space.
> 
> Yeah, the "quite a lot" is why it's not installed by default, same as
> other things like vim.  Most people don't need all the fluff, so I guess
> the idea is to save space on the install ISOs.
>>
>>>     4. Run that command from Lawrence again
>>
>> It worked perfectly and that pdf is *much* easier to read than a
>> screenful of "manual" instructions in the Terminal. I've saved it for
>> future reference.
> 
> Great! Something you might want to consider here is making yourself a
> little manpage wrapper script so you can get the PDF output for any
> manpages you want to read.
> 
> Something like this ought to do it -- though admittedly this is rather
> off the cuff, so might have an egregious error or three.
> 
>    #!/usr/bin/env bash
>    
>    #usage reminder if we forgot the input parameter, or had too many
>    if [[ $# -ne 1 ]]; then
>      printf "man2pdf error: incorrect number of parameters given.\n"
>      printf "usage: man2pdf <topic> (e.g. man2pdf bash).\n"
>      exit 1
>    fi
> 
>    #'man -w' will return 0 only if the manpage exists
>    if $(man -w $1 &>/dev/null ) ; then
>      gunzip -c $(man -w "$1") | groff -ktman -Tpdf | okular -
>    else
>      printf "man2pdf error: No manual page for \"$1\" found.\n"
>    fi
> 
> Save it as say "/usr/local/bin/man2pdf", and make sure it's executable.
> 
> Alternatively, in Mint, I believe that if you create a $HOME/bin/
> directory, it will be added to your $PATH on the next login.  But that
> has the "downside" of not being globally accessible then (mostly a
> concern if you have multiple users on your PCs -- SO, kids,
> just-for-banking, whatever).

Thanks for the script. I'm the only user of this laptop, so I'll 
probably do it via a $HOME/bin/ directory. I've never made an executable 
file, but I'll have a read up on how to do it.

I have a question or perhaps two (they might be related) - which perhaps 
should be directed to Lawrence, but I'm pretty sure you'll know the 
answer. After running:
:~$ gunzip -c $(man -w bash) | groff -ktman -Tpdf | okular -
the terminal remained open, and when I tried to close it was warned that 
there was still a process running in it, and closing the terminal would 
kill it. Why does that script not end cleanly (if that's the right term)?

Also, at the end, he said:
(Substitution of alternative PDF viewer is left as an exercise for the
reader.)
I tried the $ gunzip... expression he used, but substituting qpdfview 
for okular.

That, however, resulted in qpdfview opening, but with an error message:
"Warning
Could not open '-' "

I was a bit puzzled, but then remembered that when Okular opened with 
the manual text, I tried to save it but couldn't as both "Save" and 
"Save as" were greyed out. I was able to print that manual as "another" 
pdf, and that's what I was referring to in my reply as being much easier 
to use.

Okular is not only a pdf reader, but the properties of that manual 
document refer to it as being a pdf (v 1.4). Why was it not saveable 
directly as a pdf, and what went wrong with the qpdfview command if it 
is a pdf?

-- 
Jeff

Back to alt.os.linux.mint | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

DistroWatch Q&A: Advice for new Linux users "Alan K." <alan@invalid.com> - 2025-10-27 08:14 -0400
  Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-27 09:43 -0400
    Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-27 14:03 +0000
      Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-27 10:19 -0400
      Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-27 21:37 +0000
        Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-28 01:26 -0400
          Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-28 06:08 +0000
            Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-28 02:59 -0400
            Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-28 21:29 +1100
            Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-28 11:17 +0000
              Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-28 23:11 +0000
                Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-29 13:36 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 21:37 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 19:52 -0400
            Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-28 13:14 +0000
  Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-27 13:54 +0000
    Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-27 10:12 -0400
    Re: DistroWatch Q&A: Advice for new Linux users Dan Purgert <dan@djph.net> - 2025-10-27 15:01 +0000
    Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-27 21:35 +0000
      Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-27 19:06 -0400
        Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-27 23:10 +0000
      Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-28 12:20 +1100
        Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-28 11:18 +0000
          Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-28 23:26 +1100
          Re: DistroWatch Q&A: Advice for new Linux users Dan Purgert <dan@djph.net> - 2025-10-28 13:10 +0000
            Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-29 00:21 +1100
          Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-28 23:14 +0000
            Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-29 13:43 +0000
              Re: DistroWatch Q&A: Advice for new Linux users Handsome Jack <jack@handsome.com> - 2025-10-29 14:13 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 11:16 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 21:42 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 20:02 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Anssi Saari <anssi.saari@usenet.mail.kapsi.fi> - 2025-10-30 15:32 +0200
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 21:11 +0000
              Re: DistroWatch Q&A: Advice for new Linux users Dan Purgert <dan@djph.net> - 2025-10-29 15:00 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 12:24 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 21:41 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 20:12 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Dan Purgert <dan@djph.net> - 2025-10-30 10:10 +0000
              Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 21:39 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 20:37 -0400
      Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-28 13:23 +0000
  Re: DistroWatch Q&A: Advice for new Linux users Windows Devil <invalid@invalid.invalid> - 2025-10-27 14:00 +0000
    Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-27 11:16 -0400
      Re: DistroWatch Q&A: Advice for new Linux users Monsieur <Monsieur@notreal.invalid> - 2025-10-27 18:19 +0100
        Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-28 11:31 +1100
      Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-27 21:34 +0000
        Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-28 13:35 +0000
    Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-27 21:32 +0000
    Re: DistroWatch Q&A: Advice for new Linux users Daniel70 <daniel47@nomail.afraid.org> - 2025-10-28 22:09 +1100
      Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-28 11:27 +0000
    Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-10-28 16:27 -0700
    Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-10-29 19:57 +0100
      Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 21:44 +0000
        Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-30 10:32 +1100
        Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-30 15:30 +0000
      Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-30 15:22 +0000
        Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-10-30 16:59 +0100
          Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-30 14:33 -0400
          Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-31 13:58 +0000
            Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-10-31 19:48 +0100
              Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-31 20:20 +0000
                Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-11-01 13:53 +0100
              Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-31 18:55 -0400
                Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-11-01 14:29 +0100
              Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-11-01 05:59 -0400
                Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-11-01 14:33 +0100
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-11-01 09:50 -0400
                Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-11-01 16:11 +0100
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-01 20:26 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-11-01 13:58 -0700
              Re: DistroWatch Q&A: Advice for new Linux users Char Jackson <none@none.invalid> - 2025-11-01 17:00 -0500
        Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-31 11:28 +1100
          Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-31 08:23 -0400
            Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-31 23:37 +1100
              Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-10-31 19:52 +0100
                Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-31 20:20 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-10-31 13:57 -0700
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-31 23:02 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-11-01 16:10 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-11-01 11:01 -0700
                Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-11-01 12:00 -0700
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-01 19:40 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-11-01 14:44 -0700
                Re: DistroWatch Q&A: Advice for new Linux users Sump <sumpusent@outlook.com> - 2025-11-01 23:00 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-11-01 17:07 -0700
                Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-11-02 14:21 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-11-02 01:17 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-11-02 14:07 +0000
                Re: DistroWatch Q&A: Advice for new Linux users vallor <vallor@vallor.earth> - 2025-11-01 02:28 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-11-01 16:19 +0000
              Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-31 23:00 +0000
              Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-11-03 10:40 +1100
                Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-11-04 13:13 +1100
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-11-04 05:24 -0500
                Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-11-04 21:41 +1100
                Re: DistroWatch Q&A: Advice for new Linux users yossarian <<nomail@gmail.com>> - 2025-11-04 12:41 +0100
                Re: DistroWatch Q&A: Advice for new Linux users yossarian <<nomail@gmail.com>> - 2025-11-04 13:04 +0100
                Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-11-05 00:45 +1100
                Re: DistroWatch Q&A: Advice for new Linux users vallor <vallor@vallor.earth> - 2025-11-04 12:53 +0000
            Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-31 22:59 +0000
              Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-11-01 16:41 +0000
          Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-31 14:53 +0000
            Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-11-01 10:21 +1100
      Re: DistroWatch Q&A: Advice for new Linux users lisa <not.in.use@home.invalid> - 2025-10-30 21:18 +0100
        Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-10-30 21:40 +0100
          Re: DistroWatch Q&A: Advice for new Linux users lisa <not.in.use@home.invalid> - 2025-10-30 22:51 +0100
            Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-10-31 19:53 +0100
          Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-30 18:23 -0400
            Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-10-31 20:45 +0100
  Re: DistroWatch Q&A: Advice for new Linux users Stan Brown <someone@example.com> - 2025-10-27 09:14 -0700
    Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-27 13:17 -0400
      Re: DistroWatch Q&A: Advice for new Linux users "Alan K." <alan@invalid.com> - 2025-10-27 13:58 -0400
      Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-27 18:38 +0000
        Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-27 18:43 +0000
        Re: DistroWatch Q&A: Advice for new Linux users Daniel70 <daniel47@nomail.afraid.org> - 2025-10-29 22:00 +1100
          Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-29 14:03 +0000
            Re: DistroWatch Q&A: Advice for new Linux users Daniel70 <daniel47@nomail.afraid.org> - 2025-10-30 19:54 +1100
              Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 21:18 +0000
          Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 21:48 +0000
        Re: DistroWatch Q&A: Advice for new Linux users Dan Purgert <dan@djph.net> - 2025-10-29 11:50 +0000
          Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-29 23:31 +1100
            Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-29 23:42 +1100
              Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 08:50 -0400
                Re: DistroWatch Q&A: Advice for new Linux users vallor <vallor@vallor.earth> - 2025-10-29 20:34 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 21:20 -0400
              Re: DistroWatch Q&A: Advice for new Linux users Jeff Layman <Jeff@invalid.invalid> - 2025-10-30 08:25 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-30 14:41 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Jeff Layman <Jeff@invalid.invalid> - 2025-10-31 09:04 +0000
      Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-10-28 16:40 -0700
  Re: DistroWatch Q&A: Advice for new Linux users MikeS <MikeS@fred.com> - 2025-10-27 20:47 +0000
    Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-27 21:18 +0000
      Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-28 12:10 +1100
      Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-28 13:44 +0000
        Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-29 10:27 +1100
    Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-28 02:09 -0400
      Re: DistroWatch Q&A: Advice for new Linux users Handsome Jack <jack@handsome.com> - 2025-10-28 07:13 +0000
        Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-28 05:06 -0400
          Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-28 11:59 +0000
          Re: DistroWatch Q&A: Advice for new Linux users Daniel70 <daniel47@nomail.afraid.org> - 2025-10-29 23:13 +1100
            Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 08:58 -0400
              Re: DistroWatch Q&A: Advice for new Linux users Daniel70 <daniel47@nomail.afraid.org> - 2025-10-30 00:32 +1100
        Re: DistroWatch Q&A: Advice for new Linux users Daniel70 <daniel47@nomail.afraid.org> - 2025-10-29 22:55 +1100
    Re: DistroWatch Q&A: Advice for new Linux users Bob Martin <bob.martin@excite.com> - 2025-10-28 07:09 +0000
    Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-10-28 16:46 -0700
      Re: DistroWatch Q&A: Advice for new Linux users Hank Rogers <Hank@nospam.invalid> - 2025-10-28 20:03 -0500
        Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-10-28 19:10 -0700
          Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-29 17:33 +1100
            Re: DistroWatch Q&A: Advice for new Linux users Daniel70 <daniel47@nomail.afraid.org> - 2025-10-29 23:18 +1100
              Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-29 23:36 +1100
                Re: DistroWatch Q&A: Advice for new Linux users Daniel70 <daniel47@nomail.afraid.org> - 2025-10-30 00:42 +1100
                Re: DistroWatch Q&A: Advice for new Linux users Felix <none@not.here> - 2025-10-30 01:05 +1100
                Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-29 14:36 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 11:29 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 22:05 +0000
                Re: DistroWatch Q&A: Advice for new Linux users marc <marc@none.of.your.business> - 2025-10-30 18:20 +0100
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 21:58 +0000
                Re: DistroWatch Q&A: Advice for new Linux users "J. P. Gilliver" <G6JPG@255soft.uk> - 2025-10-30 07:26 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 21:46 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-29 21:57 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Jeff Layman <Jeff@invalid.invalid> - 2025-10-30 08:45 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Dan Purgert <dan@djph.net> - 2025-10-30 10:28 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Jeff Layman <Jeff@invalid.invalid> - 2025-10-30 11:01 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Dan Purgert <dan@djph.net> - 2025-10-30 13:13 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Jeff Layman <Jeff@invalid.invalid> - 2025-10-30 14:35 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-30 13:51 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 21:45 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Dan Purgert <dan@djph.net> - 2025-10-30 22:58 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Jeff Layman <Jeff@invalid.invalid> - 2025-10-31 08:43 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 21:33 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 21:27 +0000
                Re: DistroWatch Q&A: Advice for new Linux users MikeS <MikeS@fred.com> - 2025-10-30 10:16 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-30 14:04 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 21:20 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 21:19 +0000
                Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-30 18:34 -0400
                Re: DistroWatch Q&A: Advice for new Linux users Lawrence D’Oliveiro <ldo@nz.invalid> - 2025-10-30 23:09 +0000
            Re: DistroWatch Q&A: Advice for new Linux users vallor <vallor@vallor.earth> - 2025-10-29 20:28 +0000
        Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-10-30 17:01 +0100
          Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-30 14:19 -0400
            Re: DistroWatch Q&A: Advice for new Linux users "s|b" <me@privacy.invalid> - 2025-11-01 14:42 +0100
      Re: DistroWatch Q&A: Advice for new Linux users Frank Slootweg <this@ddress.is.invalid> - 2025-10-29 11:31 +0000
        Re: DistroWatch Q&A: Advice for new Linux users MikeS <MikeS@fred.com> - 2025-10-29 13:12 +0000
          Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 12:13 -0400
  Re: DistroWatch Q&A: Advice for new Linux users Mike Easter <MikeE@ster.invalid> - 2025-10-28 19:55 -0700
    Re: DistroWatch Q&A: Advice for new Linux users Paul <nospam@needed.invalid> - 2025-10-29 08:42 -0400

csiph-web