The officially official Devuan Forum!

You are not logged in.

#126 Re: Desktop and Multimedia » Dozens of lxqt-config-monitor processes are started » 2023-12-14 17:01:40

Post that to the github discussion. It might point then towards the bug. (Sorry if you'e already done that).

#127 Re: Desktop and Multimedia » Dozens of lxqt-config-monitor processes are started » 2023-12-13 17:33:52

zombie processes are processes that have been terminated, but not reaped by their parent. So look at the PPID (3339 in the first post) with ps -fp 3339 (replace 3339 which whatever the current PPID is). That should tell you what started them, which is probably where the bug is.

See man ps and search for zombie for details.

#128 Re: ARM Builds » Help, upgrading fails » 2023-11-30 17:25:06

Is there a /boot directory? I assume you are running as root so will be able to write to /boot

That's all I can think of, but sometimes checking silly things can find silly problems.

#129 Re: Installation » in a way related to installation or at least Devuan » 2023-11-30 17:14:55

nahkhiirmees wrote:

Since there are no colors with "ls" inside xfce's terminal

Run alias
On my system the last line of output is

alias ls='ls --color=auto'

And my .bashrc sets that. I hope this gives you a clue.

#130 Re: Desktop and Multimedia » [SOLVED] Sylpheed no longer working » 2023-11-18 17:19:25

What happens if you tell it to use googlemail.com instead of gmail.com ? I have one system using kmail where it insists on using the wrong type of auth for gmail.com but I can get it to work with googlemail.com (it's kmail being "clever" that causes the problem). I can't check details on that system just now though, sorry.

That took quite a lot of puzzling to work out.

#131 Re: Installation » nvidia-legacy-390 » 2023-11-09 16:57:02

It depends what your old graphics cards are. And if you just want them for screen display or want to use CUDA.

Obviously "nvidia-legacy-390" will only be needed for Nvidia cards. And it will be needed for CUDA.

I'd suggest trying out a live DVD/USB which doesn't have those drivers but does have nouveau. Or post a list of what cards you have.

#132 Re: Installation » [SOLVED] Strange filemanager behaviour » 2023-10-06 16:07:33

Altoid wrote:

But the locate result came up repeatedly, seems that it could find the hidden files.

From man locate
locate reads one or more databases prepared by updatedb(8) and writes file names matching at least one of the PATTERNs to standard output, one per line.

So if updatedb ran when the filesystem was not mounted it would find the "hidden" files and put them into the database. So running locate repeatedly would always show them, until the next updatedb run.

#133 Re: Installation » [SOLVED] Strange filemanager behaviour » 2023-10-05 16:30:17

I think what fstab says may be a red herring. What seems to have happened is that the mount point is a directory in your root filesystem, and some files and directories have been moved into there when the /media/storage filesystem is not mounted.

To recover I suggest:
df -k /media/storage
If the filesystem is mounted there unmount it, and re-check with df -k /media/storage to make sure it's not mounted now.
As root:
cd /media
ls -al
Make sure there is not a storage2 dir already!
mv storage storage2
mkdir storage
Then storage2 will contain all the recovered data and the process of mounting the filesystem when needed should still work.

I've had to get at data buried under a mount point *without* unmounting the filesystem. But I would not recommend doing that unless you fully understand the process (NFS doesn't cross mountpoints, so mounting the root filesystem via NFS lets you get there. But it's a tricky process.)

#134 Re: Other Issues » OpenRC init script works fine on Gentoo and Artix – but not on Devuan » 2023-10-04 16:21:40

Read the man page for env.

#!/usr/bin/env python3

Will only work if python3 is in it's $PATH. Try which python3 to make sure it's installed on your system.

#135 Re: Off-topic » Hi all! Back again after many adventures! » 2023-10-03 15:53:03

fsmithred wrote:

I'm not sure what's in non-free now that they moved the firmware.

Nvidia's proprietary drivers etc (which you need to run CUDA apps) should be in there.

#136 Re: Desktop and Multimedia » The computer suddenly went out of action » 2023-10-01 16:25:08

First try running memtest86 for a few hours. Run it single threaded first. If it doesn't hang or report any faults try it again multi threaded. If memtest86 crashes as well then the OS must be innocent.

Next boot Linux and run watch sensors in a terminal window. That will show how hot the CPU etc are. If it gets over 100C then check all fans are OK, there's no fluff on the CPU, etc.

#137 Re: Packaging for Devuan » Basic Packaging workflow for new package.(new maintainer) » 2023-09-30 16:07:43

Could someone run adequate --all on Cerebus or Daedalus? I got a load of warnings on my system but it's ASCII and installing Nvidia CUDA support may have caused some of them (as well as other things I've had to mess with when recovering from a disk failure).

#138 Re: Packaging for Devuan » Basic Packaging workflow for new package.(new maintainer) » 2023-09-28 16:09:40

I've just found (from an article in Linux Magazine) that there's a program called adequate which sanity checks packages for violations of Debian package guidelines.

Install with apt-get install adequate and read it's man page for details (it won't usually need to be run as root). From a quick check it should find various packaging errors, although there can be false positives. And it only checks if a package is correctly packaged, not if it actually does what it is supposed to. But it looks worth adding to recommended workflow.

#139 Re: Devuan » They say systemd makes packaging easier, better of the two evils? » 2023-09-18 16:29:00

zapper wrote:

Btw, if systemd theoretically was the lesser of two evils, what the hell has this world become!

Presumably the only other choice would be Windows.

#140 Re: Desktop and Multimedia » Deleting and renaming folders on an external hard drive. » 2023-09-18 16:16:58

Does the path to the directory have spaces in it? That could confuse things.

Try:
ls -A  /media/charon/seagate backup plus drive/dr web
If that gets similar errors try:
ls -A '/media/charon/seagate backup plus drive/dr web'
Putting quotes round the path should stop spaces in the name causing problems.

Assuming the directory really is empty (ls -A should return nothing if it is empty) try:
rmdir '/media/charon/seagate backup plus drive/dr web'

And similar for renaming directories.

#141 Re: Desktop and Multimedia » Input/output error with EasyCap capture card on VLC and OBS » 2023-09-13 16:02:35

hunter0one wrote:
hunter@ryzen-rig:~$ ls -l /dev/video*
crw-rw----+ 1 root video 81, 0 Sep 12 08:34 /dev/video0
crw-rw----+ 1 root video 81, 1 Sep 12 08:34 /dev/video1

Check your ID is in the video group. id should tell you. Post output from it if not sure.

#142 Re: Desktop and Multimedia » installing a theme from the official devuan package repository » 2023-09-07 16:23:43

When you see an example command starting with a $ don't enter the $, just the rest of the command. It's usually the terminal prompt.

In the unlikely event you did need to enter the $ the poster would tell you explicitly.

#143 Re: Installation » [SOLVED] after upgrade from chimaera to daedalus fail2ban package is broken » 2023-09-02 16:24:21

My first thought would be to patch the fail2ban initscript to always return success. Eg put exit 0 near the start of it.

#144 Re: Devuan » Devuan is much faster on older hardware than debian(celeron n3050) » 2023-08-31 16:41:56

How much memory does the system have? It might well be that systemd uses a LOT more memory, so the system starts page thrashing.

Either way it's nice to have another objective argument against systemd.

#145 Re: Desktop and Multimedia » [SOLVED] manually mount disks always have different mount points? » 2023-08-29 16:03:45

golinux wrote:

It used to be easy with gksu thunar but gksu was removed/deprecated years ago. Search and there might be current alternatives.

Try sudo thunar in a terminal window. Any way to run thunar as root *should* have the desired result. But I've not tested it.

#146 Re: Installation » Trying to install wine32 results in deleting all gnome and xfce » 2023-08-29 15:52:41

If you can't log in to the GUI try ctrl-alt-f1 (press all 3 keys at once, in that order) which should get you to a text console where you can log on and try to fix things.

Next time you try to install something *always* do a simulation run first and check what it says it's going to do.

#147 Re: Installation » [SOLVED] I had to remove my own user and add it back, what do I do now? » 2023-08-27 16:16:27

*If* you added it back with the *same* UID and GID then everything should work OK. But if not you will have problems.

Did it's home directory change? If not then all the files you had beforehand should be in there. Look at them with ls -al and check they show user and group names in the output.

If not it's possible to chown them to your new id with something like find . -uid 1000 -exec chown chris:chris {} \; (replace 1000 with the old UID, chris:chris with your new userid and group and chown with echo for the first run).

*** WARNING *** I've not tested this, though I've had to do it many years in the past.

#148 Re: Other Issues » Lazarus package broken? » 2023-08-25 16:31:03

Should you have non-free-firmware in your sources.list? I don't think that would cause this problem but might cause problems with hardware support later.

#149 Re: Devuan » Can anyone fill me in on why and how exactly systemd took over Linux? » 2023-08-22 16:18:08

I've recently found a new command most which is like less but automatically shows binary data in dump format. I've installed it on all my systems so I have some chance of making sense of binary data. But that's just a fallback although very worth having.

As far as Red Hat goes I've made a mental note to never use it again.

#150 Re: Installation » [SOLVED] Radeon driver not loading under Daedalus » 2023-08-20 16:12:07

I suspect the PREEMPT_DYNAMIC kernel. I have one system I use to run CUDA (on a Nvidia card) where I have to boot it with the default kernel, not the preempt one, to get CUDA to work.

If you have an option to boot the 6.1 default kernel could you try it to see if that's the problem?

Board footer

Forum Software