The officially official Devuan Forum!

You are not logged in.

#1076 Re: Other Issues » [SOLVED] Problems with a Seagate portable drive » 2021-11-18 14:36:43

Hello:

Ron wrote:

--- snip ---
mount: /mnt: WARNING: source write-protected, mounted read-only.
--- snip ---

For some reason the hardware was write-protected and mounted read-only.
It may be that the firmware did it because it detected a physical problem.
Or not ...  8^|

Check this Seagate link:
https://www.seagate.com/gb/en/support/k … -220091en/

If I were you and the files stored on the drive are safe/backed up, I'd clear it completely and reformat it.
Then check it to see it's health.

A.

#1077 Re: Hardware & System Configuration » [SOLVED] Alternative/simpler MTA for Devuan » 2021-11-17 16:27:46

Hello:

MiyoLinux wrote:

Thank you very much ...

You're welcome.

I'm of the opinion that every Linux installation should have a simple and efficient MTA such as the dma package installed by default.

See: https://wiki.debian.org/Debate/DefaultMTA
Otherwise, just how do you get important system notifications sent by applications such as cron?

If you are the type of user that needs something more complex, then you will know that you have to install something with higher capabilitites such as Exim4 and proceed in consequence.

Of course and as always, YMMV.

Best,

A.

#1078 Re: Hardware & System Configuration » [SOLVED] Alternative/simpler MTA for Devuan » 2021-11-17 10:47:12

Hello:

MiyoLinux wrote:

... been eyeballing that package ...

I've just installed it.
Straightforward, easily configured from the start and works right out of the box.
From what I have seen/tested, works exactly as intended.

The maintainer keeps a clear head:

https://bugs.debian.org/cgi-bin/bugrepo … g=712137#8

Unless you are running some serious email stuff in your box, I'd say it is a great option.
Don't think you'll have unpleasant surprises like I had with Exim4.  8^|

https://dev1galaxy.org/viewtopic.php?id=4379
https://dev1galaxy.org/viewtopic.php?id=4672

---
Edit:
Besides needing to be in the mail group, you will also need to install the mailutils package.
Otherwise doing mail at the command line will not work.

Don't know why, I would have thought it to be a dependency.
---

Best,

A.

#1079 Re: Hardware & System Configuration » [SOLVED] Alternative/simpler MTA for Devuan » 2021-11-17 10:38:56

Hello:

steve_v wrote:

Yes.

Right.

Yes, I saw it.
But it is eight years old and makes me wonder why it is not the default for Devuan.

Based on this following features should be sufficient to fullfil these necessities:
    local delivery
    forwarding to a smarthost
    defering if immediate delivery is not possible

I do read my local mail and use coolmail to get notification warnings on screen.
Everyone else should also read their local mail.

Thanks for your input.

A.

#1080 Re: Hardware & System Configuration » [SOLVED] Alternative/simpler MTA for Devuan » 2021-11-16 19:10:49

Hello:

steve_v wrote:
Altoid wrote:

Anyone here using DMA ...

Yes.

Right.

What version?
The one in the Beowulf repository?
ie: 0.11-1+deb10u1

Thanks for your input.

A.

#1081 Hardware & System Configuration » [SOLVED] Alternative/simpler MTA for Devuan » 2021-11-16 12:47:25

Altoid
Replies: 8

Hello:

Given the issues I have encountered with the default MTA for Debian/Devuan and the insight gained from them, I have concluded that having it installed is overkill.

It (potentially) provides much more than what I need for my system, both in features and grief.

As a result I was wondering about an alternative application that will do only what I need and while looking for an alternative I found an MTA called Dragonfly Mail Agent (DMA) which would seem to simple enough while having the features I need.

ie: only local MUA mail generated by applications and (eventually, not for the moment) remote delivery. 

The DragonFly Mail Agent is a small Mail Transport Agent (MTA), designed for home and office use. It accepts e-mail messages from locally installed Mail User Agents (MUA) and delivers the messages either locally or to a remote destination.

Remote delivery includes several features like TLS/SSL support and SMTP authentication, but not MX record lookups. Therefore, dma is currently not suitable for direct remote delivery.

However, it works very well for handling local mail plus secure mail submission to a remote smarthost (e.g. for travelling mobile computers).

Anyone here using DMA on their Devuan system?

Thanks in advance.

Best,

A.

#1082 Re: Hardware & System Configuration » [SOLVED] Boot delay at MTA start » 2021-11-12 16:24:44

Hello:

Altoid wrote:

... a (not too) short delay at "Starting MTA:" ...
... (as I understand it) Exim4 is doing a check on something.
... a way to make VBox start the VM sooner and maybe delay Exim4?

Rather dissapointed to see that I'm probably the only one here using Pi-hole on a VM. 8^P

But I digress, so to the point:

The problem was not caused by the VBox VM / Exim4 starting order but by Exim4's default configuration / installation process / whatever.
ie: Exim4 was not waiting for the virtual machine to start but was obviously attempting to do something and not being able to do it.
Hence the delay at boot.

I really did not want to but finally ended up diving into the Exim4 configuration files.

On the suggestion of a (very kind) member of the exim-users list, I was given instructions for changing the 30s value on daemon_startup_sleep but that did not solve the problem.

While I was at it, I also tried playing with the reverse DNS values, including remming the whole reverse DNS block, also to no avail.
This left me with the impression that the problem (30s delay) was not at all related to the reverse DNS done by Exim4 or the daemon_startup_sleep value.

A last minute complete reinstall of Exim4 (typical MS strategy I really loathe) did not work either.

tl;dr

The solution was to add 'this' line to the the 'Main' section of the file exim4.conf.template:

disable_ipv6 = true

But I had to add it: it was not there by default.
ie: not disable_ipv6 = false, disable_ipv6 = true or even disable_ipv6 = so it would come up (?) when running dpkg-reconfigure exim4-config.

I was just shooting in the dark, no memory of how I got to doing that.
It was late, I was tired, cannot remember.

Probably the paniclog message I had not seen before?

In any case, to me this is another Exim4 bug.
I see it as a bug because this is happening even after a clean Exim4 installation on a Devuan installation with IPv6 disabled everywhere:

1.
The kernel command line includes the bit needed to disable ipv6 at boot:

ipv6.disable=1

2.
The /etc/hosts file has no machine readable IPv6 lines:

groucho@devuan:~$ cat /etc/hosts
#
127.0.0.1         localhost  devuan
#
# remmed to disable ip6
#::1              localhost       ip6-localhost ip6-loopback
#fe00::0          ip6-localnet
#fe00::0          ip6-mcastprefix
#fe02::1          ip6-allnodes
#fe02::1          ip6-allrouters
groucho@devuan:~$ 

3.
The /etc/ssh/ssh_config file includes the line needed to disable ipv6:

groucho@devuan:~$ cat /etc/ssh/ssh_config
--- snip ---
AddressFamily inet     # instead of 'any' or 'inet6'
--- snip ---
groucho@devuan:~$

So that was it, Exim4 was attempting to do something on IPv6 but not being able to do it.
In spite of IPv6 being disabled at the kernel command line, /etc/hosts and /etc/ssh/ssh_config.

The end result being a 30s delay at boot.

Have a good week-end.

Best,

A.

#1083 Hardware & System Configuration » [SOLVED] Boot delay at MTA start » 2021-11-11 21:06:53

Altoid
Replies: 1

Hello:

Like mentioned in another thread, I am running Pi-Hole v5.6 - FTL v5.11 - Web Interface v5.8 on a virtual machine as a recursive DNS for my Linux box.

The Devuan ascii virtual machine is set up to start up automatically when I boot.
I have set the cache on Pi-hole to a value of '0' so caching is all done by Unbound.
It uses the default list and I have added others.
The rig is not kept on 24/07 but is booted up a few times every 24 hours.

From what I can see it is working properly and Pi-Hole diagnostics declare no issues but there's a 'snag in the weave' so to speak:

When booting, I'm getting a (not too) short delay at "Starting MTA:" which is when (as I understand it) Exim4 is doing a check on something.

After a delay of ~30/40s, the MTA resumes loading and then exim4 starts and everything works as expected.
ie: after it finds the virtual machine.

I then log in and have to wait a bit for Pi-hole to come up and start working, but it is just 5s, so no big deal.

But the 30/40s delay at boot is rather annoying.

Exim4 wants to see the virtual machine, seems it is to do a reverse DNS lookup which can only do if the VM is up and running.

I have not been able to find a way for exim4 to not do this.

Now, nothing tries to send email to this system.
The MTA only receives system messages which help me keep tabs on what is going on. eg: crontab failures, warnings from other applications.

I would like to avoid having to delve into Exim4's innards which are a real nightmare.

Is there a way to make VBox start the VM sooner and maybe delay exim4?

Thanks in advance,

A.

#1084 Re: Desktop and Multimedia » [SOLVED] Xfburn error message » 2021-11-10 05:21:25

Hello:

Ron wrote:

... hope this is the proper board ...

Seems it is: Desktop and Multimedia

Ron wrote:

... search for this problem but came up empty.
... keep getting the error message below.

Me thinks you may have not searched well enough.

https://www.google.com/search?q=xfburn+ … CA0&uact=5

The link above will get you 166 results.
You may want to check some of them out.  8^)

That said:
I have xfburn 0.5.5 on Devuan Beowulf with a backported kernel:

:~$ uname -a
Linux devuan 5.10.0-0.bpo.3-amd64 #1 SMP Debian 5.10.13-1~bpo10+1 (2021-02-11) x86_64 GNU/Linux
:~$ 

What version of Devuan are you using?

The xfburn GUI starts up properly, would have to find a blank to test as I have not burnt a CD/DVD in a good while.

Is your device properly recognised?
ie: xfburn -> Edit -> Preferences -> Devices

Are the proper boxes ticked in the 'Detected devices' window?
ie: Write CD-R, Write CD-RW, Write DVD-R, Write DVD-RAM, Write Blu-ray.

At what point in the process do you get the error message?
Have you tested the burner with another application to rule out the hardware being the problem?

A.

#1085 Re: Desktop and Multimedia » xorg-server 21.1.0 - Final release » 2021-11-09 15:24:12

Hello:

Head_on_a_Stick wrote:

Trying out the new version ...
... pretty serious regression ...

Haven't tried it yet.
But I've seen that regressions are not something unheard of.
More so in recently <resurrected | previously declared abandoned> | <dead> software. 

Head_on_a_Stick wrote:

... new version uses the "correct" DPI and breaks scaling ...
Nice.

Hmmm ...
Bummer.

You may want to consider giving Kanapickas a (well deserved) hand and report the bug in as much detail as possible.

https://gitlab.freedesktop.org/xorg/xserver/-/issues

I'm sure he'll appreciate your input and see to get it straightened out soon enough.
And all will be well again. 8^D

Best,

A.

#1086 Re: Desktop and Multimedia » Devuan 4 Chimaera / SLiM and WiCD » 2021-11-09 11:31:07

Hello:

rolfie wrote:

... SLIM is no more maintained ...
... sort of deprecated.

For the longest time more or less the same was said of Xorg-server.
But there it is, born again so to speak.

https://xorg.freedesktop.org/archive/in … 1.1.tar.gz

Reminds me of reports of deaths being greatly exaggerated ...  8^D

This thanks to someone (Povilas Kanapickas) who stepped up.
And despite this dumb Python2 decision, I believe Wicd will also survive.

Apparently SLiM (ArchWiki) it is not fully compatible with systemd, including logind sessions.

It is an excellent example of Linux philosophy, I like it much more than any of the other DMs I have tried.
ie: lightweight, easy to configure, requires minimal dependencies and is independent of the DE: ticks all the boxes.

SLiM works for me on Devuan so that's what I use.
I recall that installing SLiM solved all the auth/log-in issues I was having in Devuan by not having a DM.

--> I think it should be the default Devuan DM.

I have read that GhostBSD 10.3 dropped GDM in favour of SLiM back in 2016 and is still there.
See http://www.ghostbsd.org/10.3_enoch

Hopefully someone will eventually step up and update it so it can be used with non-systemd distributions.

Use a systemd distro?
Then use one of those other bloated DMs.

If I cannot have it in the future, I'll just opt for not using a DM and see how I manage to work things out.

Best,

A.

#1087 Re: Desktop and Multimedia » xorg-server 21.1.0 - Final release » 2021-11-07 00:43:10

Hello:

Just received this in my inbox.

--- snip ---

This release fixes two relatively important issues that slipped into 21.1.0.

Jon Turney (1):
       s/__/@/ in inputtestdrv manpage

Matthieu Herrb (1):
       Make xf86CompatOutput() return NULL when there are no privates

Povilas Kanapickas (2):
       Makefile.am: Add missing meson build files to release tarball
       xserver 21.1.1

git tag: xorg-server-21.1.1

https://xorg.freedesktop.org/archive/in … 1.1.tar.gz
PGP:  https://xorg.freedesktop.org/archive/in … tar.gz.sig

--- snip ---

As you can see, xorg-server is indeed alive and well.
Here's hoping Debian picks it up soon.

Kudos to Povilas Kanapickas!

Best,

A.

#1088 Re: Hardware & System Configuration » [SOLVED] Anyone using Pi-Hole? » 2021-11-06 13:27:09

Hello:

FM81 wrote:

... running all that Raspberry-ARM-stuff in a virtual machine on your "Sun Ultra24"-box ...

No.
Sorry if I was not clear.
Too early or too late, can't recall. 8^|

I had a long unused Devuan ascii (VBox) virtual machine on my U24 and managed to install Pi-Hole v5.6 on it.
I found a video on line with instructions on how to do it on Ubuntu Server (roughly same thing) and the run it as a recursive DNS server.

https://www.youtube.com/watch?v=FnFtWsZ8IP0

You have to watch it a few times to get a grasp of it, especially if you have not done it before but it is roughly all there.
The chap talks a bit fast, you'll have to do some stop/backwards with the video feed and strain your eyes a bit.

It does involve a no-no: an automated install script from the Pi-Hole website but you have alternatives if that makes you feel unsafe.

Installing Pi-Hole on Devuan ascii was quite straightforward although it is not a supported OS, you just have to override the initial OS check.
Instructions are on-screen when you run the script.

Then you have to install unbound for the DNS server bit.
Find it on the Devuan repository.

I then set the Devuan ascii virtual machine to start at boot and that's about it.
See https://pgaskin.net/linux-tips/configur … autostart/

A small side effect is that my box's boot sequence lags for a shortish while when the system starts the MTA.
This is due to a failed reverse DNS lookup that Exim4 is attempting at boot and happens because the DNS running on the virtual machine is not up yet.

Haven't found a suitable solution for that yet.

------
EDIT I:
It's an exim4 caused problem.

Solution to that here: https://dev1galaxy.org/viewtopic.php?id=4672
------

As for how Pi-Hole works, it seems alright but there are quite a few things that require uBlock to remain in my browser (Pale Moon).
You Tube adds is one of them.

I still have to dive into Pi-Hole fine tuning, just a question of time.

------
EDIT II:
Fine tuning was basically disabling the Pi-hole cache and letting the Unbound DNS do that job on the VM.

See: https://medium.com/nerd-for-tech/recurs … a766d4f703

As for You Tube ads, it seems that your best bet would be uBlock.
------

Some things are supposed to be intercepted/sunk by Pi-Hole but they still show up as blocked by uBlock, have to do dome research on that.

------
EDIT III:

The reason to that is that while Pi-hole just blocks requests to ads, uBlock still thinks that there are ads to be blocked, even though they were blocked by Pi-hole. Pi-hole can't modify the web site that you see, so it can't signal to uBlock that an ad is blocked.

The only way for uBlock to know that Pi-hole blocked an ad is to see if the ad's image/resources are missing.
Otherwise, uBlock sees that there's a match against their filter, even if it's already blocked, and tries to block it.
But that means it is blocking an empty element.
ie: already blocked by Pi-Hole.
------

Thanks for your input.

Best,

A.

#1089 Re: Hardware & System Configuration » [SOLVED] Anyone using Pi-Hole? » 2021-11-04 20:23:41

Hello:

Dutch_Master wrote:

You still need proprietary boot files from an SD card to boot via the network.

Hmmm ...

I am not at all versed in how all this works and maybe don't understand it all well enough.
Please bear with me.  8^)

From what I do (?) understand, the usual way is to run Pi-Hole on a RPi.
The OS on the RPi can be the default one and I understand that it can also be Devuan.
But that's for later ...

My ADSL router (no WiFi, just cable) would use the RPi running Pi-Hole as a DNS instead of using a DNS from the net.
In this way Pi-Hole would filter all the unwanted crap from the web before it gets to my box.
The advantage being that it never gets loaded to then be blocked by uBlock and such.

My rig then would not waste resources (memory/CPU cycles, etc.), my browser would run lighter and as a result the connection is cleaner, safer and faster.

Is this an accurate account?

Thanks in advance.

A.

#1090 Hardware & System Configuration » [SOLVED] Anyone using Pi-Hole? » 2021-11-04 14:26:02

Altoid
Replies: 4

Hello:

I have an idle Raspberry Pi3B+ and have been wondering about setting up Pi-Hole and see if I can speed up my ADSL connection.
Then I thought that maybe it could be run from a VM on my Devuan box and have it come up with the OS instead of booting a RPi.

My Devuan Beowulf rig runs on a Core2 Q9550/8Gb. Sun Ultra24 WS, 

Any suggestions?

Thanks in advance,

A.

#1091 Re: Hardware & System Configuration » [SOLVED] apt and residual files » 2021-10-30 11:45:44

Hello:

hevidevi wrote:

... understand why now ...

Quite so ...
Result of not enough (or too much) coffee.  8^|

hevidevi wrote:

use dpkg -l like so to search for unneeded config files.

dpkg -l | grep ^rc

Yes.
Came up empty, as it should.

hevidevi wrote:

then remove them like this.

sudo apt purge "~c"    <-- double quotes.

Nothing to purge.

ralph.ronnquist wrote:

@Altoid, perhaps you where thinking
apt list --installed

Hmm ..

No, I was quite evidently not thinking, at least not coherently.

I started doing it right ie: with dpkg -l ...  but at some point wandered into apt list | grep residual ...  8^|
What else could have come up but a file named "residual"?

Thank you both for your input.
Have a good week-end.

Best,

A.

#1092 Hardware & System Configuration » [SOLVED] apt and residual files » 2021-10-29 18:06:59

Altoid
Replies: 4

Hello:

I run Devuan Beowulf on an Asus 1000HE netbook, used only for coffee roasting duty or to take along if I am out of town.

root@eee-dev3:~# uname -a
Linux eee-dev3 4.19.0-18-686-pae #1 SMP Debian 4.19.208-1 (2021-09-29) i686 GNU/Linux
root@eee-dev3:~# 

Being rather limited (Atom 280+2Gb), I try to keep it thin and free of stuff I don't need/want.

Recently I cleaned up a lot of residual files but I have come across a couple of rather stubborn ones:

root@eee-dev3:~# apt list | grep residual
residualvm-data/oldstable 0.3.1+dfsg-1 all
residualvm/oldstable 0.3.1+dfsg-1 i386
root@eee-dev3:~# 

I have no idea as to where these two came from as I have never installed anything related to them.
eg: 3D games, etc. 

I cannot seem to get a reasonable answer to this:

oot@eee-dev3:~# apt remove --purge residualvm
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package 'residualvm' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
root@eee-dev3:~# 
oot@eee-dev3:~# aptitude why residualvm
Not currently installed
The candidate version 0.3.1+dfsg-1 has priority optional
No dependencies require to install residualvm
root@eee-dev3:~# 

Independently of how this file happened to be (?) in my system, how can I get rid of it?

Thanks in advance,

A.

#1093 Desktop and Multimedia » xorg-server 21.1.0 - Final release » 2021-10-27 12:27:39

Altoid
Replies: 8

Hello:

Good news ...
Just received this in my inbox.

---

This is the final release of X server 21.1. There has been just one fix since
the second RC and at this time there are no known regressions since the 1.20
release series.

I expect that increased usage after the final release may still uncover
something interesting, so there is a potential for subsequent 21.1.1 patch
being released in the coming weeks rather than after the usual interval of
several months.

Notable changes since 1.20 include:

  - The meson support is now fully mature. While autotools support will still be
  kept for this release series, it will be dropped afterwards.

  - Glamor support for Xvfb.

  - Variable refresh rate support in the modesetting driver.

  - XInput 2.4 support which adds touchpad gestures.
 
  - DMX DDX has been removed.
 
  - X server now correctly reports display DPI in more cases. This may affect
  rendering of client applications that have their own workarounds for hi-DPI
  screens.

  - A large number of small features and various bug fixes.

Note that since 21.1 series XWayland is released separately and thus this
release does not include it.

--- snip ---

---

git tag: xorg-server-21.1.0

https://xorg.freedesktop.org/archive/in … 1.0.tar.gz
https://xorg.freedesktop.org/archive/in … 1.0.tar.gz

Best,

A.

#1094 Re: Devuan » As Debian 11 moves closer to Devuan. Is there any reason to stay on De » 2021-10-22 14:09:49

Hello:

rdav wrote:

... Debian hybrid Systemd-SysV-OpenRC gives me the creeps.
I can't see a reason to move.

+10
Because there is none.

But most important: the OPs original question has_already_been_answered (very wisely) by one of our admins.

golinux wrote:

Trust is a fragile thing and not easy to repair. 
It's about more than code ...

As far as I am concerned, golinux's answer was more than enough.
What else was needed?

I cannot believe time and resources are still being wasted on this thread, three pages long and started eight months ago.

A thread to justify/question Devuan's existence and what it stands for?
Absurd.

A.

#1096 Re: Hardware & System Configuration » [SOLVED] File manager -> directory not valid » 2021-10-21 12:34:40

Hello:

JWM-Kit wrote:

... would guess this is related to whatever service pcmanfm uses to mount drives.

This is what I have installed:

groucho@devuan:~$ apt list | grep installed | grep ud
--- snip ---
udev/oldstable,now 1:3.2.9+devuan4 amd64 [installed]
udiskie/oldstable,oldstable,now 1.7.7-1 all [installed]
udisks2/oldstable,now 2.8.1-4+devuan1 amd64 [installed,automatic]
groucho@devuan:~$ 

But none of these are listed as dependencies for PCManFM.

Now that I know what is going on, it is not much of a problem, but I do consider it to be a bug.

Thanks for your input.

A.

#1097 Re: Hardware & System Configuration » [SOLVED] File manager -> directory not valid » 2021-10-21 11:41:17

Hello:

Altoid wrote:

Any ideas?

Seems not.

It took me a good while as I was not able to find anything about this on the web (maybe was not looking properly?).
So I resorted to a trial and error method.

The answer:

If a device shown in Devices is not mounted, instead of getting the expected pop-up ie: Authentication required to mount XXXX nnnnn (/dev/sdxN), you get the error I made reference to in my OP.

This is something that had not occurred to me: the expected behaviour is that you get the pop-up asking for the credentials or at the very least a pop-up saying that the user is not allowed to mount the bloody device instead of one saying that the specified directory is not valid.   

Why is this so?
No idea.

Is it a bug?
Probably.

Posted.
https://sourceforge.net/p/pcmanfm/bugs/1129/

Let's see what happens.

Best,

A.

#1098 Re: Desktop and Multimedia » Devuan 4 Chimaera / SLiM and WiCD » 2021-10-21 02:52:40

Hello:

golinux wrote:

... believe that relates to accessibility features ...

Ahh ...
That accessibility.

Thanks for clearing that up for me.
So many things one takes for granted in life ...  8^|

golinux wrote:

Someone on the team is attempting to port it to python3.

Good to know.

The Devuan Package Information page shows this:

wicd
1.7.4+tb2-6+devuan2
http://deb.devuan.org/merged  chimaera-proposed-updates/main amd64
http://deb.devuan.org/merged  chimaera-proposed-updates/main i386
http://deb.devuan.org/merged  chimaera-proposed-updates/main arm64
http://deb.devuan.org/merged  chimaera-proposed-updates/main ppc64el

And the wicd home page says:

Awaking from deep sleep
Written for wicd by Andreas Messer on 2021-10-14

The wicd project has been in state of deep sleep for a while now while Python, GTK continue to develop. I'm trying to get it back on track. This will need several major changes to its code base and will take some time.

The previous entry in the Announcements was from 2014-12-21, almost seven years ago.
Seems more like a coma than deep sleep.

I'm in no hurry to leave Beowulf, so I can wait.

Thanks for the heads-up.

Best,

A.

#1099 Desktop and Multimedia » Devuan 4 Chimaera / SLiM and WiCD » 2021-10-21 01:09:56

Altoid
Replies: 5

Hello:

I have just been reading Devuan 4 Chimaera Release Notes and saw two things that called my attention:

1.

Note that slim (the default Display Manager for xfce) is not
accessible. Be sure to install lightdm or gdm3 if you require an
accessible Display Manager.

Q: why is this so?
It works perfectly well in Beowulf, why not in Chimaera?

The Devuan Package Information page says it is available for chimera, daedalus and ceres:

slim
1.3.6-5.2+devuan1
http://deb.devuan.org/merged  ceres/main amd64
http://deb.devuan.org/merged  daedalus/main  amd64
http://deb.devuan.org/merged chimaera/main amd64

2.
wicd

Wicd is no longer available in Devuan 4 Chimaera having been removed
from Debian Bullseye because of it's dependency on python2 which is now
obsolete.

I have always liked wicd, other conneciton managers I tried gave me endless grief.

I think I have other applications that depend on python2 ...

Thanks in advance,

A.

#1100 Re: Hardware & System Configuration » [SOLVED] File manager -> directory not valid » 2021-10-20 12:40:58

Hello:

Bump ...

Posted to the PCManFM sub-forum at LXDE and the only answer received suggested I was probably posting to the wrong forum as Devuan Beowulf installs with Xfce and not lxde (!!!) and directed me back here.  8^D

https://forum.lxde.org/viewtopic.php?f= … e85d2bfbd0

Altoid wrote:

Any ideas?

Thanks in advance,

A.

Board footer

Forum Software