Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > alt.os.linux.mint > #45747
| From | Paul <nospam@needed.invalid> |
|---|---|
| Newsgroups | alt.os.linux.mint, alt.comp.os.windows-10 |
| Subject | Re: DistroWatch Q&A: Advice for new Linux users |
| Date | 2025-10-29 20:37 -0400 |
| Organization | A noiseless patient Spider |
| Message-ID | <10duc0l$3bdhe$1@dont-email.me> (permalink) |
| References | (3 earlier) <mmak39Fd7qlU3@mid.individual.net> <10dq8ql$1fiiq$4@dont-email.me> <10driod$2gftl$7@dont-email.me> <10dt5lg$2ub8k$4@dont-email.me> <10du1je$3845i$2@dont-email.me> |
Cross-posted to 2 groups.
On Wed, 10/29/2025 5:39 PM, Lawrence D’Oliveiro wrote:
> On Wed, 29 Oct 2025 13:43:09 +0000, J. P. Gilliver wrote:
>
>> On 2025/10/28 23:14:21, Lawrence D’Oliveiro wrote:
>>>
>>> You have the choice. You can download things and build from source.
>>
>> That seems to crop up more often than I'd expect. I don't think I've
>> _ever_ had to "build from source" for Windows things ...
>
> Windows doesn’t make it easy, or even reliable. Which is why the
> (mis)conception is widespread that you need a PhD in CompSci, or something
> like that, to do it on Linux.
A journey of a thousand miles, starts with a single step.
From my MINGW home folder.
$ cat bobble.c
#include <stdio.h>
/* gcc -o bobble.exe bobble.c # default optimization */
int main(int argc, char** argv)
{
printf("ARGC is %d\n", argc);
for(int i = 0; i < argc; i++) {
printf("ARGV[%d] is %s\n", i, argv[i]);
}
char line[BUFSIZ];
fputs("\nTo quit the program, press the return key now", stdout);
fflush(stdout);
fgets(line, sizeof line, stdin);
return 0;
}
$ gcc -o bobble.exe bobble.c
There, I've compiled a Windows program. The program
happens to be pointless, but it's a program. I've achieved
something. Now, I just have to learn to program :-)
If you're in Visual Studio instead, you can ask for the
Window template, and that gives you a program that opens
a rectangular window frame. And they give you the code
to do that. Then, you pop in your printf statements
or whatever :-) See, easy peasy.
In MINGW, a package that has a Makefile, I can run
"make" and it does all the compiler calls for you, and
you don't have to be all that clever to do one of those.
And if you need little code snippets to experiment with,
there is rosettacode for examples. There might be some C code
here, to print the digits of Pi .
https://rosettacode.org/wiki/Pi
You can also have the AI write you some code. With
no guarantees the code works, and then your
skills as a debugging person are more important
than your skills as a programmer. One program I asked
the AI to write, it was pretty well entirely rewritten
by the time I was finished with it. Nothing wrong with that,
as the AI version is the "salt" to get you started. It has
enough programming constructs in it, to teach you a little bit.
Paul
Back to alt.os.linux.mint | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll 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