The officially official Devuan Forum!

You are not logged in.

#1 Re: Hardware & System Configuration » How to change the Login background in Excalibur ? » 2025-12-02 17:14:16

@shugg, the first terminal command to learn is man (short for manual) which tells you how to use terminal commands.
Start with:
man less # less is the program man uses to display the man pages.
man man # Tells you how to use man
man cp # cp is short for copy, can be used to copy files to a new place.
man sudo # For when you need to be root to do something.

Whenever someone recommends a command you are not familiar with read the man page first so you can tell what it will do before you run it. In time you will built up a useful set of commands.

#2 Re: Hardware & System Configuration » [SOLVED] File in ~/.config/pulse » 2025-11-25 17:10:25

ls -l ~/.config/pulse should tell you when it was created. If that was before you purged pulseaudio then you can just delete it (and presunably then rmdir ~/.config/pulse as well).

#3 Re: Installation » [SOLVED] Mirrors not Working? (24 Nov) » 2025-11-24 17:17:48

deb.devuan.org is an alias for deb.rr.devuan.org. And that's a round robin list of IP addresses. Some ISPs don't like that setup.
Whereas deb.debian.org is just one system.

What country are you in? You will probably need to use a mirror in your country (or a nearby country). Try host deb.devuan.org to get the list of IP addresses, then check where each IP address is, eg host 185.236.240.103 (that one's in Poland). Ping the few nearest mirrors and try the first that responds.

Edit. Cross posted with his update, glad to see it's sorted.

#4 Re: Off-topic » Quiz of the day » 2025-11-12 17:37:52

I was asked a similarly ambiguous question when I was at school:

Q: What is the commonest element?

I answered:
Hydrogen is the commonest element in the universe.
Oxygen is the commonest element on earth.

Both lines were ticked as correct.

#5 Re: Hardware & System Configuration » [SOLVED] Excalibur 6 - cannot shut down from terminal » 2025-11-09 17:28:58

After a bit of investigation I found /etc/default/halt tells halt what to do by default. That may be why it's behaviour has changed.

Found by whereis halt which said halt has *two* man pages, 1 in section 8 and 1 in section 5. man halt shows the 1 in section 8. man 5 halt mentions /etc/default/halt which is what you really wanted to know about.

#6 Re: Installation » [SOLVED] dist upgrade to excalibur hits only security packages » 2025-11-09 17:15:00

Re post 23:
host deb.devuan.org will give you a list of addresses it maps to. Running traceroute against each address should let you find the nearest (although the smallest number of hops isn't always the fastest option/best).

Though you probably want to run host address to find what the apparently nearest mirror is.

#7 Re: Hardware & System Configuration » [SOLVED] Excalibur 6 - cannot shut down from terminal » 2025-11-08 17:17:07

Try sudo shutdown -h now
And man shutdown for details.

NB. man halt lists shutdown in the "See also" section. And look at the -p option.

#8 Re: Off-topic » Hard Rust requirements for APT from may next year » 2025-11-05 17:54:33

The best way to introduce rust would be to wait until gcc rust support is ready for prime time. Then all that would be needed would be the gcc rust front end.

#9 Re: Desktop and Multimedia » Excalibur RC1 + Xfce + Slim: Monitorless + auto login doesn't work » 2025-11-01 17:34:24

A related situation is when you have more than 1 system sharing a monitor via a KVM switch. In my experience if you boot a system when the KVM switch is connecting the monitor to another system the system you are booting can't see the monitor's resolution etc. This is another case you might want to cater for (hopefully it will be covered by your patch anyway).

#10 Re: Hardware & System Configuration » Flash drive weirdness » 2025-10-29 17:14:33

Doing something like dd if=/dev/zero of=/dev/sdb I would (starting without it plugged in):

lsblk
# Plug in the flash drive
lsblk
# Look for a device that has just appeared
sudo dd if=/dev/zero of=/dev/sdb 

Make SURE of=/dev/sdb points to the new device *before* pressing enter!

I've been burnt enough times to check, recheck and triple check dangerous commands.

#11 Re: Off-topic » Critical security flaw in sudo » 2025-10-22 16:23:55

I made good use of sudo while I was working as a UNIX systems admin. On a system with several users it can allow selected users to do things as root or another ID but not do anything really dangerous. The ability to get to a root shell was limited to admin staff who *should* know what they were doing. Sudo wasn't designed for systems with only 1 user.

Although it doesn't give quite such fine control as ACF2 on a MVS cum z/OS system. But that's a very different ball game.

#12 Re: Hardware & System Configuration » [SOLVED] Encrypt USB? » 2025-10-03 16:12:59

Sometimes the command line is better.

Assuming the directory you want to copy is source and the USb drive is mounted on /media/dest

Open a command line window and try cp -rp source /media/dest (this assumes the window will open in /home).

#13 Re: Installation » firefox on old 32 bit cpu » 2025-09-26 16:09:21

If all else fails you could compile Firefox yourself for whatever CPU you have (for gcc -march-native might be the best option). But that might not be easy if you are not experienced with compiling programs.

#14 Re: Desktop and Multimedia » [SOLVED] devuan (fresh install) noticeably slow compared to debian » 2025-09-16 16:13:27

Looking at your free -ht output you seem to have plenty of free memory, and swap space has not been used at all. So that wasn't the problem.

But that doesn't explain why the system suddenly started responding faster. Have you looked for log messages? Did any relevant-looking messages come out when it changed speed. Or start or stop coming out then?

#15 Re: Desktop and Multimedia » [SOLVED] devuan (fresh install) noticeably slow compared to debian » 2025-09-15 16:11:43

@ondine, you still haven't said what sort of disk it has (mechanical or SSD) or the model.

But to work out why it sped up all I can suggest is looking in the logs and dmesg output for interesting messages.

#16 Re: Desktop and Multimedia » [SOLVED] devuan (fresh install) noticeably slow compared to debian » 2025-09-14 16:17:04

Please give us a bit more info.
At least post output from the commands in my last post on the system as it is now.
Also what CPU is it (look in /proc/cpuinfo for model name, number of cores, etc).
How much RAM does it have? (Run free -ht and post output here.)
What sort of disk drive does it have?  <-- This is probably the most important thing since it's apparently been slowed down.

#17 Re: Desktop and Multimedia » [SOLVED] devuan (fresh install) noticeably slow compared to debian » 2025-09-13 16:08:53

Assuming you have 1 computer you can dual boot to debian and devuan (or two identical systems, one running each OS) please post output from the following commands on debian and on devuan:
uname -a
cat /etc/os-release
That will give us at least something to go on.

#18 Re: Off-topic » Thoughts on Pipewire » 2025-08-22 16:33:01

The real question is whether resampling will make any detectable difference. Try a blind test where you have two choices, one is raw data and one has been resampled (or otherwise processed). If you can't tell which choice was resampled you can assume no one else will be able to either (unless their hearing is much better than yours).

If you want to be really sure set up 3 choices, two raw and the other resampled (or the other way round). If you can't tell which choice is the odd one out then it *really* makes no difference.

This assumes the analog amplifier, speakers, etc are all good quality. They are often the limiting factor.

That said you should avoid repeatedly resampling or otherwise processing sound data. Done too often it would degrade the sound.

#19 Re: Off-topic » Why writing init scripts was so scary and people needed systemd for? » 2025-08-17 16:16:02

OpenSolaris and it's fork OpenIndiana are also worth keeping an eye on.

#20 Re: Off-topic » Microsoft and data sovereignty » 2025-07-27 16:24:56

That is why any sensitive data should *always* be encrypted before being stored on any system you do not *fully* control. And *really* sensitive data should not even leave your systems, even encrypted, without a *good* reason.

#21 Re: Desktop and Multimedia » Calculator freezes » 2025-07-25 16:14:19

Dinosaurs like me use bc. And other command line tools such as factor, gp and pexpr (that's part of GMP so may be hard to find).

#22 Re: Other Issues » I seem to crash when I go to a certain website... » 2025-07-24 16:20:03

Could you mitigate the scrapers by rate-limiting by IP address? Eg addresses making more that 10 requests per minute get responses delayed so they only get 10 responses per minute. That would not be too bad for a human, but hurt scrapers trying to train an AI system.

Sites that are obviously training an AI system should be fed AI generated drivel so they end up with an AI system that produces rubbish output.

#23 Re: Other Issues » Unable to connect to devuan laptop server on local network » 2025-07-07 16:15:06

Try drawing up a table with a line for every device on your LAN (including the router) with the following entries:
IP_address    pingable_from_laptop(y/n)     Connection_to_lan(wired or wireless)    what_it_is    OS

Then see if you can see any pattern to which can be pinged. And look for other oddities such as duplicate IP addresses. If still stuck post the table here.

#24 Re: Other Issues » Unable to connect to devuan laptop server on local network » 2025-07-05 16:27:09

I've nearly run out of ideas. I don't know much about networking.

Is there any pattern to which systems respond to ping from the laptop. Eg does it work for systems connected wirelessly but not ones with a wired connection? Do their IP addresses have any pattern (eg 192.168.1,* work but 192.168.0.* don't)?

Does the laptop respond to pings from other systems? If so does it respond to all the systems you can ping from?

#25 Re: Other Issues » Unable to connect to devuan laptop server on local network » 2025-07-04 16:18:12

To repeat some of my questions you didn't answer:

How are the systems connected to your network? Please answer for both the laptop and the server,
If any systems are connected wirelessly check they are connected to *your* router, not one belonging to a neightbour. That has been known.
If the laptop also has an ethernet port try connecting it to your router with an ethernet cable. Does that change the symptoms?

Board footer

Forum Software