Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Why Doesn't Root Dir Appear?

14 views
Skip to first unread message

Diego Garcia

unread,
Nov 29, 2021, 6:40:48 PM11/29/21
to
I just recently transitioned from static device nodes (simple and efficient) to dynamic
nodes (complex and pointless) using e/udev (not because of desire but because
of necessity due to the libinput fiasco wrought by GNOME/freedesktop).

My root directory is on partition /dev/sda3.

When I execute " df -h /dev/sda3" I get the message:

devtmpfs 7.8G 0 7.8G 0% /dev

WTF! This is nonsense!

The command "cfdisk /dev/sda" shows this:

Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 314574847 314572800 150G 83 Linux
/dev/sda2 314574848 629147647 314572800 150G 83 Linux
/dev/sda3 629147648 681576447 52428800 25G 83 Linux
/dev/sda4 681576448 1953525167 1271948720 606.5G 5 Extended
├─/dev/sda5 681578496 786436095 104857600 50G 83 Linux
...

The size of /dev/sda3 is 25G.

Also, the mount command shows:

/dev/sda3 on / type ext3 (rw,noatime,nodiratime)
...

No other partition shows this behavior.

If I execute "df -h /dev/sda5" I get:

/dev/sda5 49G 5.1G 42G 11% /usr

which is the correct usage information.

Why does "df -h /dev/sda3" fail to show the correct usage?

With static nodes this does not happen. Only the "new improved Linux," courtesy of
the GNOME/freedesktop faggots, does this lunacy prevail.

--
Scratch your technical itch:
https://www.linuxfromscratch.org/

Grant Taylor

unread,
Nov 29, 2021, 7:19:32 PM11/29/21
to
On 11/29/21 4:40 PM, Diego Garcia wrote:
> When I execute " df -h /dev/sda3" I get the message:
>
> devtmpfs 7.8G 0 7.8G 0% /dev
>
> WTF! This is nonsense!

That's what I'm used to. (More details below.)

> If I execute "df -h /dev/sda5" I get:
>
> /dev/sda5 49G 5.1G 42G 11% /usr
>
> which is the correct usage information.

That's unexpected to me.

> Why does "df -h /dev/sda3" fail to show the correct usage?

It does show the correct usage to me.

I'm used to df (disk free) showing the free space of the file system
containing the file that you ask about. So when you ask about
/dev/sda3, that's device file named "sda3" in the "/dev" file system.
The "/dev" file system happens to be tmpfs. Hence why you see what you
see in the first output.

I would have expected "df -h /dev/sda5" to also show the free space of
the "/dev" file system.

Try /just/ "df -h" and see if it shows your root file system. I expect
that it will.



--
Grant. . . .
unix || die

David W. Hodgins

unread,
Nov 29, 2021, 8:09:46 PM11/29/21
to
On Mon, 29 Nov 2021 18:40:46 -0500, Diego Garcia <d...@chaos.info> wrote:
> Why does "df -h /dev/sda3" fail to show the correct usage?
>
> With static nodes this does not happen. Only the "new improved Linux," courtesy of
> the GNOME/freedesktop faggots, does this lunacy prevail.

On my Mageia 8 system, which uses udev ...
$ df /dev/sdb2
Filesystem Size Used Avail Use% Mounted on
/dev/sdb2 63G 48G 13G 80% /

So it isn't a caused by using udev.

What's the full output of "df -h" without a device specified?

Regards, Dave Hodgins

Aragorn

unread,
Nov 29, 2021, 9:49:53 PM11/29/21
to
On 29.11.2021 at 17:19, Grant Taylor scribbled:

> On 11/29/21 4:40 PM, Diego Garcia wrote:
>
> > When I execute " df -h /dev/sda3" I get the message:
> >
> > devtmpfs 7.8G 0 7.8G 0% /dev
> >
> > WTF! This is nonsense!
>
> That's what I'm used to. (More details below.)

I don't know what distribution the OP is using, but he explicitly
mentioned eudev, which is a standalone udev fork created by Gentoo
because of earlier (meanwhile proven-false) concerns that the mainstream
udev — which now comes bundled as part of systemd — would no longer be
supporting distributions not based upon systemd.

I don't know what distribution the OP is using, but you yourself are a
Slackware user, and Slackware also used eudev. The OP is himself most
likely not using Slackware, because his distribution allows for the
installation of GNOME, which Slackware does not carry in its repository
— maybe he's using Devuan, because even Gentoo has already long ago
transitioned away from static device nodes.

So, what we have here are two presumably different distributions, both
using eudev, and both manifesting the same oddity in the output of the
"df" command, while at the same time, this oddity does not occur in
Mageia (as testified by Dave W. Hodgins), nor in Manjaro (as verified
by myself), both of which use the mainstream udev — Mageia is a
Mandriva fork, while Manjaro is based upon Arch and uses many
unmodified Arch packages, among which systemd and udev.

The above all said, logic therefore suggests that this odd behavior of
the "df" command would be due to a bug in eudev, and if so, then it
would probably be wise to report this to the upstream eudev developers
over at Gentoo.

--
With respect,
= Aragorn =

Carlos E.R.

unread,
Nov 29, 2021, 10:00:08 PM11/29/21
to
On 30/11/2021 00.40, Diego Garcia wrote:
> I just recently transitioned from static device nodes (simple and efficient) to dynamic
> nodes (complex and pointless) using e/udev (not because of desire but because
> of necessity due to the libinput fiasco wrought by GNOME/freedesktop).
>
> My root directory is on partition /dev/sda3.
>
> When I execute " df -h /dev/sda3" I get the message:
>
> devtmpfs 7.8G 0 7.8G 0% /dev

That's not your root, that's the size of the filesystem where
"/dev/sda3" is mounted, ie, "/dev".


I rather prefer that to see a copy paste showing the complete command
prompt sequence from start to end. Like this:

Telcontar:~ # df -h /dev/sda3
Filesystem Size Used Avail Use% Mounted on
devtmpfs 16G 36K 16G 1% /dev
Telcontar:~ #


...

> Why does "df -h /dev/sda3" fail to show the correct usage?
>
> With static nodes this does not happen. Only the "new improved Linux," courtesy of
> the GNOME/freedesktop faggots, does this lunacy prevail.

It works fine here.

Look, the command doesn't tell you the size of a partition, but of a
mount point. Or filesystem, rather.

Telcontar:~ # df -h /dev/sda3
Filesystem Size Used Avail Use% Mounted on
devtmpfs 16G 36K 16G 1% /dev
Telcontar:~ # df -h /dev/sda2
Filesystem Size Used Avail Use% Mounted on
devtmpfs 16G 36K 16G 1% /dev
Telcontar:~ # df -h /dev/sda1
Filesystem Size Used Avail Use% Mounted on
devtmpfs 16G 36K 16G 1% /dev
Telcontar:~ #


Before, it happened that the "mount point" /dev/sda3 happened to be the
same as root, so it gave the result you expected. But now, it is a
different partition (/dev), so it gives you the size of "/dev". Exactly
what you asked.


The correct command you want is not "df -h /dev/sda3", but "df -h /":

Telcontar:~ # df -h /
Filesystem Size Used Avail Use% Mounted on
/dev/nvme0n1p5 148G 59G 82G 43% /
Telcontar:~ #


So, stop blaming udev, gnome, freedesktop, etc :-)


--
Cheers, Carlos.

166p1

unread,
Nov 29, 2021, 10:53:54 PM11/29/21
to
Has he tried "sudo df -h" ??? I've run into permissions
issues with df before.

Grant Taylor

unread,
Nov 29, 2021, 11:22:45 PM11/29/21
to
On 11/29/21 7:49 PM, Aragorn wrote:
> but you yourself are a Slackware user
Actually, I'm not.

I'm replying form a Gentoo system (still using udevd).

I have terminals open administering Debian, Ubuntu, and FreeBSD systems.

I've seen the behavior I described using `df` on Solaris and AIX too.

> The above all said, logic therefore suggests that this odd behavior
> of the "df" command would be due to a bug in eudev,

I can't agree with that.

Assuming that it's a bug in eudev is somewhat like thinking the fridge
has stopped cooling when the milk smells bad. There can be multiple
things going on, like /dev being it's own file system, or not, and the
milk having a best buy date /before/ the two week vacation that you go
back from a week ago.

I maintain that `df` has always shown the free space for the file system
the referenced file is on. If /dev/<bla> is on an independent /dev file
system, then it's perfectly natural that `df` will show the /dev file
system and device, /not/ the / (root) file system and device. If /dev
is not an independent file system and instead part of the / (root) file
system, that's a horse of a different color.

I'd be curious what the type, major, and minor numbers are for the
devices in question in /dev. After all, (e)udev etc. create device
nodes. The device nodes are actually the representation into the
kernel. If the device nodes are correct, then chances are quite good
that (e)udev is perfectly fine.

It may even be something associated with the way that things are mounted
causing df to mis-report the underlying file system that the device node
lives on vs the file system the node has on it.

There could be all sorts of things going on that may not be a bug in
(e)udev.

Aragorn

unread,
Nov 29, 2021, 11:54:14 PM11/29/21
to
On 29.11.2021 at 21:22, Grant Taylor scribbled:

> On 11/29/21 7:49 PM, Aragorn wrote:
>
> > but you yourself are a Slackware user
>
> Actually, I'm not.

I deducted this from the fact that you appear to be mainly posting in
alt.os.linux.slackware.

My apologies, then. ;)

> > The above all said, logic therefore suggests that this odd behavior
> > of the "df" command would be due to a bug in eudev,
>
> I can't agree with that.
>
> Assuming that it's a bug in eudev is somewhat like thinking the
> fridge has stopped cooling when the milk smells bad. There can be
> multiple things going on, like /dev being it's own file system, or
> not, and the milk having a best buy date /before/ the two week
> vacation that you go back from a week ago.
>
> I maintain that `df` has always shown the free space for the file
> system the referenced file is on. If /dev/<bla> is on an independent
> /dev file system, then it's perfectly natural that `df` will show the
> /dev file system and device, /not/ the / (root) file system and
> device. If /dev is not an independent file system and instead part
> of the / (root) file system, that's a horse of a different color.


[nx-74205:/dev/pts/3][/home/aragorn]
[05:40:51][aragorn] > mount | grep sda3
/dev/sda3 on / type btrfs
(rw,nodev,noatime,nodiratime,sync,compress=zstd:3,ssd,space_cache,subvolid=257,subvol=/@)

[nx-74205:/dev/pts/3][/home/aragorn]
[05:41:28][aragorn] > mount | grep devtmpfs
devtmpfs on /dev type devtmpfs
(rw,nosuid,size=8121260k,nr_inodes=2030315,mode=755)

[nx-74205:/dev/pts/3][/home/aragorn]
[05:41:49][aragorn] > df -h /dev/sda3
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 1.0G 13M 781M 2% /

[nx-74205:/dev/pts/3][/home/aragorn]
[05:42:08][aragorn] >


In other words...

° My /dev is distinct from the root filesystem — its contents reside
on devtmpfs.

° I am not seeing the odd output that the OP is seeing, and that you
yourself report to be seeing as well.

Now, devtmpfs is initialized in the kernel itself and the device nodes
for the internally mounted — in the physical/mechanical sense — block
devices is enumerated by the kernel even before userspace is
initialized, so maybe the skewed output you are both seeing has
something to do with the kernel version?


[nx-74205:/dev/pts/3][/home/aragorn]
[05:48:47][aragorn] > uname -r
5.4.159-1-MANJARO

[nx-74205:/dev/pts/3][/home/aragorn]
[05:48:55][aragorn] >

J.O. Aho

unread,
Nov 30, 2021, 1:57:25 AM11/30/21
to
On 30/11/2021 00.40, Diego Garcia wrote:
> I just recently transitioned from static device nodes (simple and efficient) to dynamic
> nodes (complex and pointless) using e/udev (not because of desire but because
> of necessity due to the libinput fiasco wrought by GNOME/freedesktop).
>
> My root directory is on partition /dev/sda3.
>
> When I execute " df -h /dev/sda3" I get the message:
>
> devtmpfs 7.8G 0 7.8G 0% /dev
>
> WTF! This is nonsense!

df works only on properly mounted file systems, it fallbacks to /dev as
there ain't a mounted /dev/sda3.

I think the 7.8G is based on the amount of ram you have and those the
maximum space the /dev theoretically could occupy.



> The size of /dev/sda3 is 25G.
>
> Also, the mount command shows:
>
> /dev/sda3 on / type ext3 (rw,noatime,nodiratime)
> ...

Seems your mountpoint is wrong, the mount says it's /, so it seems you
have managed to mount it to / and on top of that you have mounted
/dev/sda2 (I'm guessing that is your system partition)

How does your /etc/fstab look like?


> With static nodes this does not happen. Only the "new improved Linux," courtesy of
> the GNOME/freedesktop faggots, does this lunacy prevail.

Switch to a distribution more fitted to your needs...


--

//Aho

The Natural Philosopher

unread,
Nov 30, 2021, 3:59:48 AM11/30/21
to
Gnome is far above the kernel/filesystem code. Why are you raving at Gnome?


--
“But what a weak barrier is truth when it stands in the way of an
hypothesis!”

Mary Wollstonecraft

Richard Kettlewell

unread,
Nov 30, 2021, 4:41:12 AM11/30/21
to
Grant Taylor <gta...@tnetconsulting.net> writes:
> On 11/29/21 4:40 PM, Diego Garcia wrote:
>> When I execute " df -h /dev/sda3" I get the message:

What does ‘df --version’ say?

What is the full contents of /proc/mounts?

>> devtmpfs 7.8G 0 7.8G 0% /dev
>>
>> WTF! This is nonsense!
>
> That's what I'm used to. (More details below.)
>
>> If I execute "df -h /dev/sda5" I get:
>>
>> /dev/sda5 49G 5.1G 42G 11% /usr
>>
>> which is the correct usage information.
>
> That's unexpected to me.
>
>> Why does "df -h /dev/sda3" fail to show the correct usage?
>
> It does show the correct usage to me.
>
> I'm used to df (disk free) showing the free space of the file system
> containing the file that you ask about. So when you ask about
> /dev/sda3, that's device file named "sda3" in the "/dev" file
> system.

The documented behavior is:

If an argument FILE resolves to a special file containing a mounted
file system, ‘df’ shows the space available on that file system
rather than on the file system containing the device node. GNU ‘df’
does not attempt to determine the disk usage on unmounted file
systems, because on most kinds of systems doing so requires
extremely nonportable intimate knowledge of file system structures.

i.e. if you’re talking about coreutils df then you only got used to that
behavbior with unmounted filesystems.

Anyway the implication is that the OP’s df can’t determine that
/dev/sda3 is mounted for some reason. That’s a puzzle given mount can
apparently work it out.

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

The Natural Philosopher

unread,
Nov 30, 2021, 4:45:30 AM11/30/21
to
On 30/11/2021 04:54, Aragorn wrote:
> On 29.11.2021 at 21:22, Grant Taylor scribbled:
>
>> On 11/29/21 7:49 PM, Aragorn wrote:
>>
>>> but you yourself are a Slackware user
>>
>> Actually, I'm not.
>
> I deducted this from the fact that you appear to be mainly posting in
> alt.os.linux.slackware.
>
> My apologies, then. ;)
>
No Aragorn, strictly you *inferred* it.


*deductive* logic is of the nature of:

IF a straight line is the shortest distance between two points THEN (all
of geometry, etc) is *demonstrably* true.

If you want to view it in terms of information, one can prove that e.g.
the *deductions* of formal geometry contain no more information than is
expressed by it's axioms: That is the formal proofs of geometry are in
fact no more than explications of implicit information contained in the
axioms.

This is a completely different case from *inductive* logic, where
instead of working from axioms (or prime causes) to effects, we try to
work the reverse magic: go from effects, to *possible causes*.

The problem here is that there is a many-to-one set of potential causes,
for any effect.

e.g. the *demonstrable fact* of his posting in alt.os.linux.slackware
*might* mean that he is secretly enamoured of another poster there, he
once installed slackware and hasn't unsubscribed yet, he is off his
trolley and thinks slackware is a form of clothing....

This is the generalised form of Hume's Problem Of Induction.
Winnie Ille Pu said:

"De heffalumpis semper dubitandum est. Cura ut bene valeas!"*

Which of course was plagiarised by Kierkegaard as "De omnibus
dubitandum est".

But the message is clear. Doubt must the default condition when applied
to inductive hypothesises, or inferences.

Everything from Divine Intervention to the Russians must be considered a
suspect, And as Sherlock Holmes incorrectly remarked 'when you have
eliminated all the impossible, whatever is left must be the truth' Sadly
for Sherlock, he was involved not in deduction, but in induction, and
only in fiction does the *possible* truth become *single valued*.

In short there are an infinite number of explanations that *don't* fit
the facts and an infinite number that *do*.

And anyone who claims they have arrived at 'The scientific truth' is
dangerously deluded.

William of Ockham along with other mediæval thinkers was well aware of
this :
"Numquam ponenda est pluralitas sine necessitate"

Which basically boils down to '[since we can't know the truth], keep
theories simple enough to work and no more'

A view the Church tried correctly to instil in Galileo, when he
attempted to ascribe Truth content to what was simply another inductive
theory, and as we know from Einstein, there is no centre round which
everything rotates anywhere in the Universe, it's all relative, so you
just pick the most convenient axes**.

So it is important to understand that deduction is logic, but science
and casual explanations lie in the realm of induction, or inference, and
the only advantage science ultimately has, is not the establishment of
truth content, but in the efficacy of its predictions. Science that
doesn't predict what happens, isn't science. ***

*Winnie Ille Pu:
https://kupdf.net/download/winnie-ille-pupdf_59c0fd2f08bbc57e12686fb6_pdf

**http://vps.templar.co.uk/Cartoons%20and%20Politics/centrifugal_force.png

*** except of course ClimateScience, where the 'science' has singularly
failed to predict anything that has actually happened to any degree of
accuracy better than chance.

--
"First, find out who are the people you can not criticise. They are your
oppressors."
- George Orwell

Diego Garcia

unread,
Nov 30, 2021, 6:07:40 AM11/30/21
to
On Mon, 29 Nov 2021 17:19:36 -0700, Grant Taylor wrote:

>
> Try /just/ "df -h" and see if it shows your root file system. I expect
> that it will.
>

It does:

[~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 25G 16G 8.3G 65% /
tmpfs 7.8G 508K 7.8G 1% /run
devtmpfs 7.8G 0 7.8G 0% /dev
/dev/sda5 49G 5.1G 42G 11% /usr

But this does not:

[~]# df -h /dev/sda3
Filesystem Size Used Avail Use% Mounted on
devtmpfs 7.8G 0 7.8G 0% /dev

But this also does:

[News]# df -h /
Filesystem Size Used Avail Use% Mounted on
/dev/root 25G 16G 8.3G 65% /

Diego Garcia

unread,
Nov 30, 2021, 6:11:50 AM11/30/21
to
On Tue, 30 Nov 2021 03:49:50 +0100, Aragorn wrote:

>
> I don't know what distribution the OP is using,
>

A distro, in my view, should only be a stepping stone toward creating ones
own standalone GNU/Linux system.

Linux is a lot simpler than it may appear and if one not be dependent on
a distro after a few years of using and learning Linux.

Every user should have his own personal distro.

Diego Garcia

unread,
Nov 30, 2021, 6:18:33 AM11/30/21
to
On Tue, 30 Nov 2021 08:59:45 +0000, The Natural Philosopher wrote:

>
> Gnome is far above the kernel/filesystem code. Why are you raving at Gnome?
>

I gave the reason.

GNOME, via freedesktop.org, has succeeded in mandating the use of libinput as
the only input driver for X Window, which thereby destroys the possibility of using
static device nodes which thereby overly complicates the entire GNU/Linux system.

Diego Garcia

unread,
Nov 30, 2021, 6:23:41 AM11/30/21
to
On Tue, 30 Nov 2021 05:54:11 +0100, Aragorn wrote:

>
> Now, devtmpfs is initialized in the kernel itself and the device nodes
> for the internally mounted — in the physical/mechanical sense — block
> devices is enumerated by the kernel even before userspace is
> initialized,
>

That may be the way most distros do it, but it's not the only way and
it's not the way that I do it.

The end result, in any case, is the same.

marrgol

unread,
Nov 30, 2021, 7:06:57 AM11/30/21
to
On 30/11/2021 at 12.07, Diego Garcia wrote:
>> Try /just/ "df -h" and see if it shows your root file system. I expect
>> that it will.
>>
>
> It does:
>
> [~]# df -h
> Filesystem Size Used Avail Use% Mounted on
> /dev/root 25G 16G 8.3G 65% /
> tmpfs 7.8G 508K 7.8G 1% /run
> devtmpfs 7.8G 0 7.8G 0% /dev
> /dev/sda5 49G 5.1G 42G 11% /usr
>
> But this does not:
>
> [~]# df -h /dev/sda3
> Filesystem Size Used Avail Use% Mounted on
> devtmpfs 7.8G 0 7.8G 0% /dev
>
> But this also does:
>
> [News]# df -h /
> Filesystem Size Used Avail Use% Mounted on
> /dev/root 25G 16G 8.3G 65% /

You have /dev/root mounted on /, not /dev/sda3.

What does 'ls -l /dev/sda3 /dev/root' show you?
I'd say these are both device files with the same
major and minor numbers… Like this:

# ls -l /dev/sdf1 /dev/foo
brw-rw---- 1 root root 8, 81 Nov 30 13:04 /dev/foo
brw-rw---- 1 root disk 8, 81 Nov 28 19:21 /dev/sdf1
#
# mount | grep ' /boot '
/dev/sdf1 on /boot type ext4 (rw,relatime)
#
# df -h /dev/sdf1
Filesystem Size Used Avail Use% Mounted on
/dev/sdf1 487M 163M 295M 36% /boot
#
# df -h /dev/foo
Filesystem Size Used Avail Use% Mounted on
devtmpfs 4.0M 8.0K 4.0M 1% /dev
#
# umount /boot
# mount /dev/foo /boot
#
# mount | grep ' /boot '
/dev/foo on /boot type ext4 (rw,relatime)
#
# df -h /dev/sdf1
Filesystem Size Used Avail Use% Mounted on
devtmpfs 4.0M 8.0K 4.0M 1% /dev
#
# df -h /dev/foo
Filesystem Size Used Avail Use% Mounted on
/dev/foo 487M 163M 295M 36% /boot
#


--
mrg

Richard Kettlewell

unread,
Nov 30, 2021, 7:07:01 AM11/30/21
to
Diego Garcia <d...@chaos.info> writes:
> On Mon, 29 Nov 2021 17:19:36 -0700, Grant Taylor wrote:
>> Try /just/ "df -h" and see if it shows your root file system. I expect
>> that it will.
>>
>
> It does:
>
> [~]# df -h
> Filesystem Size Used Avail Use% Mounted on
> /dev/root 25G 16G 8.3G 65% /
^^^^^^^^^

This is why. df can’t find a filesystem corresponding to /dev/sda3,
because / is mounted on /dev/root. That ultimately resolves to the same
thing but not in a way that df can see through.

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

Richard Kettlewell

unread,
Nov 30, 2021, 7:40:58 AM11/30/21
to
Diego Garcia <d...@chaos.info> writes:
> Aragorn wrote:
>> I don't know what distribution the OP is using,
>
> A distro, in my view, should only be a stepping stone toward creating ones
> own standalone GNU/Linux system.
>
> Linux is a lot simpler than it may appear and if one not be dependent on
> a distro after a few years of using and learning Linux.
>
> Every user should have his own personal distro.

That would be impractical for most users and a ridiculous waste of time
and effort for the rest.

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

J.O. Aho

unread,
Nov 30, 2021, 11:16:00 AM11/30/21
to

On 30/11/2021 00.40, Diego Garcia wrote:

Subject is a bit misleading... those my original post didn't include the
following:

> I just recently transitioned from static device nodes (simple and efficient) to dynamic
> nodes (complex and pointless) using e/udev (not because of desire but because
> of necessity due to the libinput fiasco wrought by GNOME/freedesktop).
>
> My root directory is on partition /dev/sda3.
>
> When I execute " df -h /dev/sda3" I get the message:
>
> devtmpfs 7.8G 0 7.8G 0% /dev

/dev/sda3 ain't mounted, you have /dev/root mounted, sure they are the
same partition this time. The /dev/root was mounted by the initramfs for
your kernel as there was a lack of root= option in the boot loader for
your kernel.

Add root=/dev/sda3 to the kernel options and you should have /dev/sda3
mounted instead of /dev/root.


This is unrelated to the redhat gnome gang.


--

//Aho

The Natural Philosopher

unread,
Nov 30, 2021, 11:22:52 AM11/30/21
to
+ 1000

Yes I customise my desktop, no it is not a 'new distro'


--
“Politics is the art of looking for trouble, finding it everywhere,
diagnosing it incorrectly and applying the wrong remedies.”
― Groucho Marx

Steve Carroll - fretwizzer

unread,
Nov 30, 2021, 12:34:17 PM11/30/21
to
Of course, the top undertaking that is important to Alan B is seeming "the
winner", and if he can't have that he will do whatever it takes to effectively
shout truly honest people down... there is no stopping him. Alan B is STILL
fixated on ONLY himself, as I suggested, when it comes to the topic of
puppet usage. And he completely ducks the fact that his "shill" has not
only confessed to engaging in that against Snit but he has said he believes
it to be no real deal... irrelevant.

Alan B and Snit both lie ceaselessly and shamelessly and continue to do
so. So no motivation in showing any further respect or restraint. Wow -
- in Alan B's 'mind', that a file has been published is "evidence" that
Snit wrote it now? Alan B is trying "really hard" to project their crap
onto Snit. For some time Alan B has encouraged the theory that Snit needs
'support' to point out all his BS. The fact is that no one needs any help
to do that. So Alan B pulls this hateful flooding crap in a weak effort
to 'peddle' the idea that Snit is like him.

-
E-commerce Simplified
https://duckduckgo.com/?q=%22NARCISSISTIC+BIGOT%22
Automate Google Groups https://www.youtube.com/watch?v=hYQ4Tg0r0g0&feature=youtu.be
Steve Petruzzellis the Narcissistic Bigot

Diego Garcia

unread,
Nov 30, 2021, 2:42:39 PM11/30/21
to
On Tue, 30 Nov 2021 12:40:56 +0000, Richard Kettlewell wrote:

>>
>> Every user should have his own personal distro.
>
> That would be impractical for most users and a ridiculous waste of time
> and effort for the rest.
>

Not so.

Once the initial phase of customization is complete, maintenance
becomes very easy provided one uses an automated build system such
as Gentoo Portage or Pauludis which will keep track of all dependencies.

The Linux kernel is very stable and the user only has to be troubled
to enter "make oldconfig" at the keyboard with each new release.

I devote about 30 minutes maximum each week in maintaining my custom
"distro."

There is no real argument against doing this.

The only exception is when some rouge, renegade, psuedo-authorithy
like RedHat, GNOME, or freedesktop.org decides to break the stability
with some new-fangled "improvement" and to abandon support for all other
options.

That's exactly what happened with libinput. The user then has to scramble
to accommodate these tyrannanical changes.

Carlos E.R.

unread,
Nov 30, 2021, 3:56:07 PM11/30/21
to
Yep.

--
Cheers, Carlos.

Diego Garcia

unread,
Nov 30, 2021, 6:32:00 PM11/30/21
to
On Tue, 30 Nov 2021 03:49:50 +0100, Aragorn wrote:

>
> eudev, which is a standalone udev fork created by Gentoo
> because of earlier (meanwhile proven-false) concerns that the mainstream
> udev — which now comes bundled as part of systemd — would no longer be
> supporting distributions not based upon systemd.
>

That's not true. The reason for the eudev fork was that non-glibc
systems were having problems. Read this from Gentoo news:

"The integration of udev into the systemd git repo introduced numerous
problems for non-glibc systems, such as musl and uclibc. Several
options were considered, and the one chosen was to fork and maintain udev
independent of the rest of systemd."

These problems have been recently eliminated but the freedom-of-choice
community still has strong suspicions about the motives of systemd
developers.

Diego Garcia

unread,
Nov 30, 2021, 6:37:44 PM11/30/21
to
On Tue, 30 Nov 2021 13:06:54 +0100, marrgol wrote:

>
> What does 'ls -l /dev/sda3 /dev/root' show you?
> I'd say these are both device files with the same
> major and minor numbers… Like this:
>

[~]# ls -l /dev/sda3 /dev/root
ls: cannot access '/dev/root': No such file or directory
brw-rw---- 1 root disk 8, 3 Nov 30 17:15 /dev/sda3

Diego Garcia

unread,
Nov 30, 2021, 6:41:30 PM11/30/21
to
On Tue, 30 Nov 2021 07:57:22 +0100, J.O. Aho wrote:

>
> How does your /etc/fstab look like?
>


/dev/sda3 / ext3 defaults,noatime,nodiratime 1 0
/dev/sda6 swap swap defaults 0 0
/dev/sda5 /usr ext3 defaults,noatime,nodiratime 1 0
/dev/sda8 /opt ext3 defaults,noatime,nodiratime 1 0
/dev/sda7 /tmp ext3 defaults,noatime,nodiratime 1 0
proc /proc proc nosuid,noexec,nodev 0 0
sysfs /sys sysfs nosuid,noexec,nodev 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
tmpfs /run tmpfs defaults 0 0
devtmpfs /dev devtmpfs mode=0777,nosuid 0 0

Diego Garcia

unread,
Nov 30, 2021, 6:44:45 PM11/30/21
to
On Tue, 30 Nov 2021 09:41:10 +0000, Richard Kettlewell wrote:

>
> What is the full contents of /proc/mounts?
>

/dev/root / ext3 rw,noatime,nodiratime 0 0
tmpfs /run tmpfs rw,relatime,inode64 0 0
proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
devtmpfs /dev devtmpfs rw,nosuid,relatime,size=8167508k,nr_inodes=2041877,mode=755,inode64 0 0
/dev/sda5 /usr ext3 rw,noatime,nodiratime 0 0
/dev/sda8 /opt ext3 rw,noatime,nodiratime 0 0
/dev/sda7 /tmp ext3 rw,noatime,nodiratime 0 0
devpts /dev/pts devpts rw,relatime,gid=5,mode=620,ptmxmode=000 0 0

Diego Garcia

unread,
Nov 30, 2021, 8:02:16 PM11/30/21
to
On Tue, 30 Nov 2021 17:15:56 +0100, J.O. Aho wrote:

>
> Add root=/dev/sda3 to the kernel options and you should have /dev/sda3
> mounted instead of /dev/root.
>

I have been using that option from time immemorial and only with
e/udev have I seen this problem.

/dev/sda3 is mounted by the kernel at boot or else my boot scripts
would not function.

These scripts run in user space and call udevadm to do a post-trigger
of the events already read by the kernel. It will produce the exact same
/dev tree that I could produce myself with static nodes. What a waste!

But it's no longer important. I can now use df to find how much space is left
on /dev/sda3.

stepore

unread,
Nov 30, 2021, 10:54:31 PM11/30/21
to
On 11/29/2021 03:40 PM, Diego Garcia wrote:

> <snip> courtesy of
> the GNOME/freedesktop faggots, does this lunacy prevail.
>

Intolerant. Hostile. Homophobic.

Richard Kettlewell

unread,
Dec 1, 2021, 3:59:21 AM12/1/21
to
Diego Garcia <d...@chaotic.info> writes:
> Richard Kettlewell wrote:
>>> Every user should have his own personal distro.
>>
>> That would be impractical for most users and a ridiculous waste of time
>> and effort for the rest.
>>
>
> Not so.
>
> Once the initial phase of customization is complete, maintenance
> becomes very easy provided one uses an automated build system such
> as Gentoo Portage or Pauludis which will keep track of all dependencies.

Sounds more like using Gentoo and making grandiose claims about it than
maintaining a personal distribution.

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

Diego Garcia

unread,
Dec 1, 2021, 5:21:31 AM12/1/21
to
That statement was a deliberate test. Sophisticated people will be able
to see beyond those meaningless garnishments and grasp the true
meaning.

YOU failed.

YOU are probably 5% Linux and 95% Mickeysoft anyway.

The Natural Philosopher

unread,
Dec 1, 2021, 7:59:38 AM12/1/21
to
On 30/11/2021 19:42, Diego Garcia wrote:
> I devote about 30 minutes maximum each week in maintaining my custom
> "distro."

I devote less than 30 minutes a year.

--
“People believe certain stories because everyone important tells them,
and people tell those stories because everyone important believes them.
Indeed, when a conventional wisdom is at its fullest strength, one’s
agreement with that conventional wisdom becomes almost a litmus test of
one’s suitability to be taken seriously.”

Paul Krugman

Diego Garcia

unread,
Dec 1, 2021, 10:15:10 AM12/1/21
to
On Wed, 01 Dec 2021 12:59:37 +0000, The Natural Philosopher wrote:

>
> I devote less than 30 minutes a year.
>

Congrats.

In exchange you get an OS that is semi-crippled with security features
and totally lacking in optimization and that performs at least 30% slower.

That may not be an issue for most but I would rather wait 3 hours
as opposed to 6 hours for my Povray animations to finish.

The Natural Philosopher

unread,
Dec 1, 2021, 11:09:10 AM12/1/21
to
On 01/12/2021 15:15, Diego Garcia wrote:
> On Wed, 01 Dec 2021 12:59:37 +0000, The Natural Philosopher wrote:
>
>>
>> I devote less than 30 minutes a year.
>>
>
> Congrats.
>
> In exchange you get an OS that is semi-crippled with security features
> and totally lacking in optimization and that performs at least 30% slower.
>

No, I don't. The operating system is faster than the applications I run
and the networks I run them over.


> That may not be an issue for most but I would rather wait 3 hours
> as opposed to 6 hours for my Povray animations to finish.
>

I simply spent about $300 on an old HP desktop to get that sort of speed
increase.

$300 of my time is only a few hours

--
"A point of view can be a dangerous luxury when substituted for insight
and understanding".

Marshall McLuhan

Diego Garcia

unread,
Dec 1, 2021, 12:33:06 PM12/1/21
to
On Wed, 01 Dec 2021 16:09:08 +0000, The Natural Philosopher wrote:

>>
>> In exchange you get an OS that is semi-crippled with security features
>> and totally lacking in optimization and that performs at least 30% slower.
>>
>
> No, I don't. The operating system is faster than the applications I run
> and the networks I run them over.
>

You are totally missing the fun factor.

Wouldn't you want to be able to show off to your friends and acquaintances
the fabulous GNU/Linux machine that you built from scratch all by yourself?

Do-it-yourself projects are supremely enjoyable and rewarding and GNU/Linux
is the do-it-yourselfer's dream.

There is no thrill in using a totally "canned" and off-the-shelf distro.

The Natural Philosopher

unread,
Dec 1, 2021, 3:20:48 PM12/1/21
to
On 01/12/2021 17:33, Diego Garcia wrote:
> On Wed, 01 Dec 2021 16:09:08 +0000, The Natural Philosopher wrote:
>
>>>
>>> In exchange you get an OS that is semi-crippled with security features
>>> and totally lacking in optimization and that performs at least 30% slower.
>>>
>>
>> No, I don't. The operating system is faster than the applications I run
>> and the networks I run them over.
>>
>
> You are totally missing the fun factor.
>
> Wouldn't you want to be able to show off to your friends and acquaintances
> the fabulous GNU/Linux machine that you built from scratch all by yourself?
>
Did that about 30 years ago

> Do-it-yourself projects are supremely enjoyable and rewarding and GNU/Linux
> is the do-it-yourselfer's dream.

You have no idea. I spent a large part of my working life turning dead
hardware into working computers.

These days I just want the bastards to work. I've got better things to do

>
> There is no thrill in using a totally "canned" and off-the-shelf distro.

There is, if you are building custom applications on top

>


--
In theory, there is no difference between theory and practice.
In practice, there is.
-- Yogi Berra

Diego Garcia

unread,
Dec 1, 2021, 6:34:12 PM12/1/21
to
On Wed, 01 Dec 2021 20:20:46 +0000, The Natural Philosopher wrote:

>
> These days I just want the bastards to work. I've got better things to do
>
> There is, if you are building custom applications on top
>

A true craftsman has a deep respect and admiration for the quality
of his tools.

Maybe you create just using toolkits, like Mickeysoft .Net, and
cannot fathom the intricate infrastructure?

stepore

unread,
Dec 1, 2021, 10:50:56 PM12/1/21
to
On 12/01/2021 02:21 AM, Diego Garcia wrote:
>> On 11/29/2021 03:40 PM, Diego Garcia wrote:
>>
>>> <snip> courtesy of
>>> the GNOME/freedesktop faggots, does this lunacy prevail.
>>>
>>
>> Intolerant. Hostile. Homophobic.
>>
>
> That statement was a deliberate test. Sophisticated people will be able
> to see beyond those meaningless garnishments and grasp the true
> meaning.
>
> YOU failed.

You made the statement. And I don't know you enough to recognize your
games. So, I see it as a your fail if it was a test. Besides, whether it
was or not, please feel free to take it back or apologize for it.


> YOU are probably 5% Linux and 95% Mickeysoft anyway.

Wrong again.

The Natural Philosopher

unread,
Dec 2, 2021, 3:42:50 AM12/2/21
to
On 01/12/2021 23:34, Diego Garcia wrote:
> On Wed, 01 Dec 2021 20:20:46 +0000, The Natural Philosopher wrote:
>
>>
>> These days I just want the bastards to work. I've got better things to do
>>
>> There is, if you are building custom applications on top
>>
>
> A true craftsman has a deep respect and admiration for the quality
> of his tools.
>
> Maybe you create just using toolkits, like Mickeysoft .Net, and
> cannot fathom the intricate infrastructure?
>
No, I write HTML/CSS and JavaScript, C, PHP and mysql.

All I want is a stable implementation of apache, mysql and NFS file
share support.
Linux is not a tool, it is simply a stable workbench.

The tools are those languages.

Stéphane CARPENTIER

unread,
Dec 3, 2021, 3:54:18 PM12/3/21
to
Le 30-11-2021, Diego Garcia <d...@chaotic.info> a écrit :
> On Tue, 30 Nov 2021 12:40:56 +0000, Richard Kettlewell wrote:
>
>>>
>>> Every user should have his own personal distro.
>>
>> That would be impractical for most users and a ridiculous waste of time
>> and effort for the rest.
>
> I devote about 30 minutes maximum each week in maintaining my custom
> "distro."

It's a lot of time.

> There is no real argument against doing this.

The argument is not against doing this, but against telling everyone
should do this. It's not the same.

--
Si vous avez du temps à perdre :
https://scarpet42.gitlab.io

Diego Garcia

unread,
Dec 4, 2021, 6:10:49 AM12/4/21
to
On Fri, 03 Dec 2021 20:44:47 +0000, Stéphane CARPENTIER wrote:

>
> The argument is not against doing this, but against telling everyone
> should do this. It's not the same.
>

But RedHat and the majority of distros literally forcing systemd
as the default is acceptable.

You advocate a strange double standard.

Stéphane CARPENTIER

unread,
Dec 5, 2021, 5:22:25 AM12/5/21
to
Le 04-12-2021, Diego Garcia <d...@chaos.info> a écrit :
> On Fri, 03 Dec 2021 20:44:47 +0000, Stéphane CARPENTIER wrote:
>
>>
>> The argument is not against doing this, but against telling everyone
>> should do this. It's not the same.
>>
>
> But RedHat and the majority of distros literally forcing systemd
> as the default is acceptable.

They have to chose a default, there are no other possibility. So,
they chose the best one available.

> You advocate a strange double standard.

You are comparing two different things. I'm not saying people have
to keep the default choice.

STALKING_TARGET_84

unread,
Dec 5, 2021, 10:43:14 PM12/5/21
to
You saying something is so does not make it true.

You can say I am The Thing for all I care.

So -- in The Thing's 'story', that a link has been made public is "verification"
that Just Wondering built it now? Just Wondering must have read The Thing
doxing files and became insanely jealous. I suspect this is our first manifestation
of the improved Just Wondering. You do realize that the massive floods ending
up in multiple groups started out in COLA, right?

The Thing is trying ("very, very" hard) to project their crap onto Just
Wondering. For some time The Thing has bulldozed the idea that Just Wondering
needs 'backing' to point out all his forgeries. The fact is that no one needs
any documentation to do that. So The Thing pulls this insane trolling poppycock
in a weak attempt to 'peddle' the idea that Just Wondering is like him.

-
E-commerce Simplified!
https://www.bing.com/search?q=%22functionally%20illiterate%20fraud%22
https://search.givewater.com/serp?q=%22narcissistic%20bigot%22

Diego Garcia

unread,
Dec 6, 2021, 7:58:26 PM12/6/21
to
On Sun, 05 Dec 2021 10:20:36 +0000, Stéphane CARPENTIER wrote:

>
> They have to chose a default, there are no other possibility. So,
> they chose the best one available.
>

Have to?

All distros should include all available options or else they get
out of the distro business.

But they are lazy and likely incompetent.

Just like most web sites only serve up pages designed for mobile
devices (because that's the majority) rather than use the standard
user agent string to determine the device and serve accordingly.

Carlos E.R.

unread,
Dec 7, 2021, 4:08:09 PM12/7/21
to
On 07/12/2021 00.35, Diego Garcia wrote:
> On Sun, 05 Dec 2021 10:20:36 +0000, Stéphane CARPENTIER wrote:
>
>>
>> They have to chose a default, there are no other possibility. So,
>> they chose the best one available.
>>
>
> Have to?
>
> All distros should include all available options or else they get
> out of the distro business.

Obviously they don't get out of the distro business, which means they
know more about the distro business than you do :-P

--
Cheers, Carlos.

Stéphane CARPENTIER

unread,
Dec 10, 2021, 4:28:48 PM12/10/21
to
Le 06-12-2021, Diego Garcia <d...@chaos.info> a écrit :
> On Sun, 05 Dec 2021 10:20:36 +0000, Stéphane CARPENTIER wrote:
>
>>
>> They have to chose a default, there are no other possibility. So,
>> they chose the best one available.
>
> Have to?

Of course. Whatever the choice there is always a default and it's a good
thing.

> All distros should include all available options

There are two issues with your point. First it implies all distros
should include systemd which is not what you are asking for. Second, if
an option is not good enough, every issue with it will become the issue
of the distro instead of the issue of the option's provider.

> or else they get out of the distro business.

The facts are against your claim. The most popular distros don't
propose any choice about the init system.

> But they are lazy and likely incompetent.

Far from it. Providing a robust distro usable by a lot of people in a
lot of ways require a lot of work and competence. But you are unable to
realize how customising an OS for only one personal computer is easier
to provide something way more broadly usable.

Diego Garcia

unread,
Dec 10, 2021, 6:56:44 PM12/10/21
to
On Fri, 10 Dec 2021 21:28:46 +0000, Stéphane CARPENTIER wrote:

>
>> But they are lazy and likely incompetent.
>
> Far from it. Providing a robust distro usable by a lot of people in a
> lot of ways require a lot of work and competence. But you are unable to
> realize how customising an OS for only one personal computer is easier
> to provide something way more broadly usable.
>

Gentoo has been quite successful in this respect. It can accommodate
both mass preferences and personal preferences. Gentoo, and LFS,
offer both systemd and non-systemd configurations.

(Note: I use Gentoo only for automated building. Otherwise my system
is my own creation.)

Thus, YOU are the one who fails to understand.

Most GNU/Linux distros only PANDER to an assumed ignorant majority.
They will play the role of master to the user slaves.

Gentoo, and its equivalents like LFS, assume an informed and knowledgeable
user base. With Gentoo, and LFS, developers and users are on an equal footing.

Only idiots, like YOU, can be fooled.

Stéphane CARPENTIER

unread,
Dec 11, 2021, 5:05:49 PM12/11/21
to
Le 10-12-2021, Diego Garcia <d...@chaos.info> a écrit :
> On Fri, 10 Dec 2021 21:28:46 +0000, Stéphane CARPENTIER wrote:
>
>>
>>> But they are lazy and likely incompetent.
>>
>> Far from it. Providing a robust distro usable by a lot of people in a
>> lot of ways require a lot of work and competence. But you are unable to
>> realize how customising an OS for only one personal computer is easier
>> to provide something way more broadly usable.
>
> Gentoo has been quite successful in this respect. It can accommodate
> both mass preferences and personal preferences. Gentoo, and LFS,
> offer both systemd and non-systemd configurations.

You believe what you want, but LFS and Gentoo are not used by the mass.
The users of Linux are something like 1 or 2 percents of all of the
computers' users. And of those little percentage, probably no more of
1 or 2 percent are using LFS and Gentoo. There is nothing close to a
mass preferences.

> (Note: I use Gentoo only for automated building. Otherwise my system
> is my own creation.)

We have not the same definition of one's own system creation. If you
want to go this road, for automatics reasons, I changed the mkarchiso
file to add a user able to be used with ssh and I made my own distro by
your standards. But unlike you, I'm not pretending anything about my
needs and the mass needs.

And by the way, I remember the last time you needed LaTeX to create a
pdf, you asked for help. So basically, your own distro is useless. It's
only purpose is to manage its updates.

> Thus, YOU are the one who fails to understand.

To understand what? That you are a daydreamer? Far from it.

> Most GNU/Linux distros only PANDER to an assumed ignorant majority.

Thanks to them, not to you, the mass can use Linux.

> They will play the role of master to the user slaves.

Really, you have no idea about the relation between the requesters of
solutions and the providers. When a payed system like Windows or MacOS
is not convenient, the users are complaining only to themselves. When an
opensource system doesn't fit the requirements, the users are asking
strongly for improvements.

> Gentoo, and its equivalents like LFS, assume an informed and knowledgeable
> user base. With Gentoo, and LFS, developers and users are on an equal footing.

Yes, so what? It's good for them.

> Only idiots, like YOU, can be fooled.

Fooled by what? I'm doing what I want with Archlinux. As I don't need
Gnome, it would be easy for me to switch from systemd to another init
system. But there is nothing better today, I don't want to switch to
something else. Maybe one day I will, but for now, I have no reason.

The same for LFS and Gentoo. For me LFS is interesting for educational
purposes, not for a day to day usage. And Gentoo can be good, but I see
no reason to switch for it, it wouldn't provide me anything I can get
right now.

The only distro I'm considering for a switch today is NixOS (or Guix for
the same reasons). It would be difficult, but it looks really
interesting.

Helmut Achterberg

unread,
Dec 11, 2021, 5:13:57 PM12/11/21
to
That's the beauty of Linux. There is a distribution or platform for
just about every need. I use MXLinux / kde, but for my needs I could
easily switch to Ubuntu or LinuxMint or Slackware. I used Gentoo a
long time ago and found it very stable. The handbook was literally a
textbook education in Linux and I did indeed learn a lot.
Rather playing my dick is bigger than yours, we should embrace all
that Linux can do and choose the distro that works best for our
particular needs.
There is no "best" Linux.
And IMHO that is actually a good thing.


--
Helmut
"If you don't like Linux, you might tick incorrectly"

Diego Garcia

unread,
Dec 11, 2021, 6:39:30 PM12/11/21
to
On Sat, 11 Dec 2021 22:13:54 +0000, Helmut Achterberg wrote:

>
> That's the beauty of Linux. There is a distribution or platform for
> just about every need ...
> There is no "best" Linux.
> And IMHO that is actually a good thing.
>

Is there?

It seems to me that the majority of distros have converged on
RedHat/Debian/systemd.

GNU/Linux, aside from Gentoo/LFS, no longer serves just about
every need.

GNU/Linux, however, still could remain free if not for RedHat and
its cohorts severely limiting choice.

An informed and sophisticated user base would vehemently rebel
but most GNU/Linux users nowadays are just looking for a "freebie"
(free as in beer) and couldn't care less about true software freedom.

Carlos E.R.

unread,
Dec 11, 2021, 10:12:08 PM12/11/21
to
We'll make our own choices, thankyou.

--
Cheers, Carlos.

STALKING_TARGET_27

unread,
Dec 12, 2021, 5:02:45 AM12/12/21
to
Did -hh think that was clever?

Translation: "-hh" is now *entirely* unable to camouflage his motives.
But -hh feels the need to insult the cult-like herd of convenient friends.

Demanding -hh to admit guilt, which I have done, is not the same as quoting
his fraud. My main idea was that advocates stay here so that they can take
on bullies. It's not as if most do not know what this place is, Troll Killer
Snit especially.


--
This broke the Internet!
Automate Google Groups https://www.youtube.com/watch?v=hYQ4Tg0r0g0&feature=youtu.be
https://swisscows.com/web?query=%22narcissistic%20bigot%22
<https://www.truepeoplesearch.com/results?name=4234911448&Diesel_Gremlin_Dustin_James_Cook>
Dustin Cook is a functionally illiterate fraud

J.O. Aho

unread,
Dec 12, 2021, 5:31:13 AM12/12/21
to

On 12/12/2021 00.39, Diego Garcia wrote:
> On Sat, 11 Dec 2021 22:13:54 +0000, Helmut Achterberg wrote:
>
>>
>> That's the beauty of Linux. There is a distribution or platform for
>> just about every need ...
>> There is no "best" Linux.
>> And IMHO that is actually a good thing.
>>
>
> Is there?
>
> It seems to me that the majority of distros have converged on
> RedHat/Debian/systemd.

There are a good number of distributions that do not use systemd, but
sure the most popularly used ones tend to use systemd.


> GNU/Linux, aside from Gentoo/LFS, no longer serves just about
> every need.

LFS I wouldn't class ass a distribution and the instructions do not
cover much of options.

Gentoo can be bent to many things, but do not serve all needs, for
example it lacks binary packages. The merit of Gentoo is the work they
done to make an up to date systemd-free system which has helped other
distributions and even the BSD community.


> GNU/Linux, however, still could remain free if not for RedHat and
> its cohorts severely limiting choice.

RedHat don't limit your freedom, you still can choose to build and
install your own init system and kernel, so you could in theory do a
systemd-free RedHat, just loads more to keep it up to date.

As long as you don't maintain a such version of RedHat and release it
for public use, I wouldn't call it a new distribution, it's just a
modified RedHat.


--

//Aho

HHI

unread,
Dec 12, 2021, 6:22:48 AM12/12/21
to
Ryan Sullivan wants to hurt everyone here: If Ryan Sullivan can't have
dominate conversations here then nobody will.

For most I'd just think it is questionable. However, given that it's Ryan
Sullivan I would forget that doubt and go straight to 'bullshit' because
that's most of what he does. Just call it a lie and watch him beg you to
prove it. Ryan Sullivan expects people to believe that a poster such as
Snit who he has frequently declared to be a liar is someone to 'respect'?
How can he believe people are THAT stupid? Translation: "Ryan Sullivan"
is now ENTIRELY powerless to disguise his motives.


--
Puppy Videos!!
https://www.bing.com/search?q=%22functionally%20illiterate%20fraud%22
https://www.google.com/search?q=Steve%20Petruzzellis%20narcissistic%20bigot
<https://alt.computer.workshop.narkive.com/dCDisEHZ/dustin-cook-aka-diesel-
aka-gremlin-i-fucked-you-over-with-your-bank-account>

Steve Carroll

unread,
Dec 12, 2021, 6:54:57 PM12/12/21
to
Steve "Steven Petruzzellis" Carroll's obsession with Peter the Cöwardly
Liön started in 2004 when Carroll got mad about his then girlfriend obsessing
over Peter the Cöwardly Liön (heavily documented here: <http://tinyurl.com/proof-
about-ebot>). Peter the Cöwardly Liön continued to respond to Steve for
about 5 years, when Steve flipped out in 2009 and started contacting Peter
the Cöwardly Liön's employer with the stated goal to have him fired (he
spoke of doing so even if he had to twist arms):

<http://goo.gl/OHNryA>
<http://goo.gl/MZ6yCD>
<http://goo.gl/WaKKGq>

There were more, but Carroll has had them deleted from the Google archive.
I have not spent the time to find them elsewhere (and likely will not).

With that Peter the Cöwardly Liön stopped responding directly to Steve
except for *one* chance he gave him in 2011 when Steve was accusing *Peter
the Cöwardly Liön* of running: <http://goo.gl/racU64>.

Carroll, as predicted, ran (he always does when faced with facts):
<http://goo.gl/qHs5Xh>

Steven Petruzzellis knows he has no backing for any of his nonsense and
has become, if anything, more and more obsessive since Peter the Cöwardly
Liön stopped responding to him.

Steve "Steven Petruzzellis" Carroll is truly a very, very sick man.

--
Puppy Videos!!
<http://web.archive.org/web/20200911090855/https://www.usphonebook.com/423-
491-1448?Dustin-Cook=&Diesel=&Gremlin=>
https://www.youtube.com/watch?v=3NmOycD4yKU
<https://www.spokeo.com/Dustin-Cook/Tennessee/Kingsport/p40064865906>
Dustin Cook is a functional illiterate fraud

The Natural Philosopher

unread,
Dec 13, 2021, 6:51:37 AM12/13/21
to
On 12/12/2021 10:31, J.O. Aho wrote:
> There are a good number of distributions that do not use systemd, but
> sure the most popularly used ones tend to use systemd.

If the point of your distro is stability and longevity, the the fact
that there are a hundred plus programmers dashing behind Pöeterring with
poop scoops and plastic bags does tend to favour using what everybody
else is gradually making work.


Let's face is, Post Script and X windows were both designed by committee
to be far far more than was necessary, and are both massive examples of
creeping featurism and bloatware but have over the years been tamed to
become useable.

Systemd will in the end be made to work, not because it's good, but
because everyone decides to put effort into making it usable.


--
Labour - a bunch of rich people convincing poor people to vote for rich
people by telling poor people that "other" rich people are the reason
they are poor.

Peter Thompson

J.O. Aho

unread,
Dec 13, 2021, 8:41:28 AM12/13/21
to

On 13/12/2021 12.51, The Natural Philosopher wrote:

> Systemd will in the end be made to work, not because it's good, but
> because everyone decides to put effort into making it usable.

Sadly systemd/Linux will be the one and only in the future, which also
will cause Linux programs no longer compatible with BSD.

--

//Aho

Dan Espen

unread,
Dec 13, 2021, 8:59:46 AM12/13/21
to
On the face of it, this is a gross mis-representation of the situation.

Why is it sad that the _few_ Linux programs that interface with systemd
will not run without systemd?

--
Dan Espen

Paul

unread,
Dec 13, 2021, 10:26:13 AM12/13/21
to
On 12/13/2021 6:51 AM, The Natural Philosopher wrote:
> On 12/12/2021 10:31, J.O. Aho wrote:
>> There are a good number of distributions that do not use systemd, but sure the most popularly used ones tend to use systemd.
>
> If the point of your distro is stability and longevity, the the fact that there are a hundred plus programmers dashing behind Pöeterring with poop scoops and plastic bags does tend to favour using what everybody else is gradually making work.
>
>
> Let's face is, Post Script and X windows were both designed by committee to be far far more than was necessary, and are both massive examples of creeping featurism and bloatware but have over the years been tamed to become useable.

PostScript wasn't designed by a committee, and in fact is
a nice design. It's an RPN language that uses a stack. It's
fully documented in the form of a book.

It was PDF, that started out with an intent, but got saddled
with parallel subsystems (JetForm). And also had attack surfaces
added to it (javascript, a movie player, and so on). It's PDF
that you should heap scorn on, because nobody but Adobe can
handle every possible feature in it. And it's because not
all the features in Adobe readers or editors are really PDF.
That's why they could make PDF an ISO standard and defend
their products at the same time. By just bolting stuff on the
side, that weren't really PDF.

On XWindows, you could continue to run your legacy applications
(like say Xeyes), without having to accommodate the lengthy list
of added subsystems. I don't see that as a problem. Where I have
a problem, is where something is not backward compatible and
breaks everything it touches.

If you wanted an example of rampant bustedness, that would be Python.
Any time I want to run some Python thing, my distro is just a
bleeding mess, and after a week of poking at it, I have to give up.

Paul

Smit

unread,
Dec 13, 2021, 1:42:17 PM12/13/21
to
Seriously, what lie?

Any dreadfully moronic druggie could easily do the same.

We're all sorry Mike Easter's a paranoid, narcissistic, delusional liar
but that's not gonna change anything <shrug>. Besides Mike Easter, who *doesn't*
know what I am doing?

How many more chances does Mike Easter's extremely loser arse (a brick
knows more than Mike Easter and is useful) need to prove their Snit (a real
advocate) flooding accusation with proof?

It is the same thing that happens in every group Mike Easter defiles.

--
Curious how these posts are made? Email: fretw...@gmail.com

Diesel Kook

unread,
Dec 13, 2021, 5:06:41 PM12/13/21
to
When I got here, I wanted to be fair and impartial. I gave Jeff Relf more
than an intelligent person should. Jeff Relf has yet to show how ClamXav
does anything above the basics on Linux.

I'm about to give up on him, myself. Like all trolls, he's repeatably looking
for some way to abuse, no matter how bizarre the accusation. I will not
read his response to this post. He's hurting, wants to pretend he is innocent,
and will lash out. Most likely opening with a dismissive "<crickets>", as
if what I've written is _so_ absurd. That BADish "game plan" was the final
indignity, for me. Nobody gets it, I barely understand it.

--
My Snoring Solution
https://gibiru.com/results.html?q=%22narcissistic%20bigot%22
https://duckduckgo.com/?q=steve+carroll%3A+narcissistic+bigot

Dustin the dude with the stuck floppy

unread,
Dec 14, 2021, 5:06:48 AM12/14/21
to
On Monday, December 13, 2021 at 8:26:13 AM UTC-7, Paul wrote:
LOL! He'd have to be afflicted with dementia to be unsure of if he "never
had" purchased a website. Sound like anyone in here? When a guy can not
remember his past claims and utilizes make-believe, self-image saving hogwash
later, it's damn obvious what his error is. Glasser Michael Snit says I'm
not 'able' to call out their trolling, and they aren't going to be held
accountable for any prior harm they caused. Rather, I'm expected to forget
it all, and let them start from scratch so they can just repeat the nonsense
all over again, while they accept no responsibility for what they say and
do online towards others? It is not surprising that Glasser Michael Snit
faked boredom at the condition of being assumed credible... knowing that
it is unlikely to ever happen. Gee, imagine Glasser Michael Snit trying
to pin his nonsense on others, no one has ever seen that before < @_@ >.



--
I Left My Husband & Daughter At Home And THIS happened
https://www.google.com/search?q=steve+carroll%3A+narcissistic+bigot
<https://www.truepeoplesearch.com/details?phoneno=4234911448&rid=0x0&Diesel&Gremlin&Dustin_Cook>
https://duckduckgo.com/?q=steve%20carroll%20narcissistic%20bigot
0 new messages