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


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

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

From Dan Purgert <dan@djph.net>
Newsgroups alt.os.linux.mint, alt.comp.os.windows-10
Subject Re: DistroWatch Q&A: Advice for new Linux users
Date 2025-10-30 22:58 +0000
Organization A noiseless patient Spider
Message-ID <slrn10g7rd4.286.dan@djph.net> (permalink)
References (9 earlier) <10dv8jd$3hf8p$2@dont-email.me> <slrn10g6fer.286.dan@djph.net> <10dvgj1$3hf8p$4@dont-email.me> <slrn10g6p4i.286.dan@djph.net> <10dvt44$3hf8q$1@dont-email.me>

Cross-posted to 2 groups.

Show all headers | View raw


On 2025-10-30, Jeff Layman wrote:
> 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.
>> 
>> [...]
>> 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.

Save the file, then 'chmod o+x thefile"

  chmod --> change mode (permission) bits
  o+x --> for "o"wner, set the e"x"ecute bit 
  thefile --> just a placeholder for the filename you saved it as

>
> 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)?

Because the okular (the last part of that pipeline) was still running.

>
> 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 '-' "

you'll need to read the qpdfview manual to determine what switch (if
any) it needs to be told "read from stdin".  

It may also be the case that you cannot pipe input into qpdfview (I know
evince has this shortcoming).

> 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.

Artifact of opening it from a pipeline.  

If you want to save the output as a file, this is a little more
straightforward:

  gunzip -c $(man -w WHATEVER) | groff -ktman -Tpdf > WHATEVER.pdf


Instead of sending the groff conversion output of the "WHATEVER" manpage
into okular, the above command stuffs it into the file "WHATEVER.pdf"
(then you can open it with whatever viewer you want).

-- 
|_|O|_|
|_|_|O| Github: https://github.com/dpurgert
|O|O|O| PGP: DDAB 23FB 19FA 7D85 1CC1  E067 6D65 70E5 4CE7 2860

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