The officially official Devuan Forum!

You are not logged in.

#201 Re: Devuan Derivatives » Vuu-do 5.03 (daedalus) New: with more legacy-firmware support » 2024-12-31 20:46:15

My view is still that if one wants wiki pages to edit then one'd do that on a wiki site; if one wants to publish blogs then one'd do that on a blog site.

Each thing to its own rather than trying to shoe-horn in everything into the one system. It may require a moment of reflection on one's purpose behind the urge of sharing a thought structure, and I find that to be a good thing in itself even though it might place the rendering of that thought structure elsewhere than on this forum.

#202 Re: Installation » [SOLVED] Sources.list hates me! » 2024-12-31 03:09:22

Interesting. the three dots matched 5 bytes... probably due to encoding. Now you can edit with, say, nano to add the missing "de" and save, then verify it with hexdump, and it should be ok.

EDIT: so, apparently it's libreoffice writer that adds those bytes. Thus, don't use that for editing text files. I suppose it seems that GUI tool developers nowadays don't really know what they are doing

#203 Re: Installation » [SOLVED] Sources.list hates me! » 2024-12-31 01:48:44

Those first three bytes are some kind of byte-order marker which is something that Window's Notepad likes to drop into text files, and you should remove them. You could do that with the folllowing command (do it ONCE only as it will otherwise remove the next three bytes):

sed '1s/^...//' -i /etc/apt/sources.list

Then, it should go without saying, never never never use Window's Notepad to edit text files.

(Of course I may well be wrong about Notepad smile)

#204 Re: Installation » [SOLVED] Sources.list hates me! » 2024-12-31 01:29:53

Put the output of the folling into a "code" block:

hexdump -C /etc/apt/sources.list | head -n 5

... so we can look at the beginning of the file.

#205 Re: Freedom Hacks » Amazon mydedia » 2024-12-27 23:59:49

Does a music player need to start at boot?

#206 Re: Hardware & System Configuration » Problems with ALSA and audio output ? » 2024-12-27 23:55:50

I don't think alsa's use case modelling comes into play, but rather, possibly, there's some residue effects dealing with 48000 Hz v.s. 44100 HZ sampling rates differently in different programs. The "modern" default is 48000 Hz while the "traditional" default is 44100 Hz. It may be possible that your soundcard gets confused by that; if different applications compete about the soundcard configuration.

If that's the case, the remedy should be to ensure that the "default" PCM playback path (here "default" is the name of the targeted PCM, which is used by applications by default) to end in "plughw" rather than "hw" since that includes software to manage sampling rate translations.

#207 Re: Documentation » log2ram with sysv » 2024-12-27 12:08:11

@cake, re git stores... nowadays I'd suggest codeberg.org
and you're of course also welcome at git.devuan.org

#208 Re: Documentation » log2ram with sysv » 2024-12-27 03:32:53

Just a friendly reminer that It's Never Too Early to stop using Microsoft's github

#209 Re: Hardware & System Configuration » [SOLVED] syslinux.cfg help » 2024-12-26 22:04:29

You seem to have messed up the APPEND line with a badly placed pointer duing copy+paste. Restore and try again.

Note that there must not be a space between a key and its value unless both the key and the value are wrapped into a pair of matching quotes.

#210 Re: ARM Builds » refractasnapshot-base syslinux arm64 » 2024-12-26 22:01:42

In short I think you can reuse the debian boot setup and just replace the root filesystem.

If your debian system is on an SD-card, then you should copy that whole card (including the MBR sectors), then mount the root filesystem partition (of the copy) on another computer so as to replace the whole filesystem with a devuan/arm64 root filesystem. The latter you can set up using debootstrap, and the best is to just make a "minbase" variant; then you would install the rest oer the network on the target after bootup.

EDIT: BUT do remeber to keep the few extra files in /boot (boot.scr and the dtb tree), AND you should also make sure to keep the 99-uboot script (/etc/initramfs/post-update.d/99-uboot) that makes an uImage of the initrd as hook for update-initramfs....  it requires that you install u-boot-tools and device-tree-compiler. You may also need a light hand-edit of that script which otherwise will want to source enironment settings that are not needed for the function of the script.

#211 Re: Installation » [SOLVED] Help needed to install Devuan Beowulf on Asus Mini-PC » 2024-12-22 07:06:18

Firstly, you have prepared the USB stick correctly. It does present itself as a disk image with two partitions where the first is an iso9660 partition (CDROM format) and the second is a FAT32 partition (also called vfat).

And the vfat partition is also an EFI boot partition that should be browseable with an EFI shell... are you able to do that?

I believe beowulf had a grub setup for EFI boot. Which files do you see in that partition with the EFI shell?

EDIT: yes, follow rolfie's advice..

#212 Re: Other Issues » [SOLVED] Firmware update for AMD GPU certificate error ?? or old source.list » 2024-12-13 02:23:17

then just change it back to http.

btw there are "code" tags to use for enclosing log text.

#213 Re: Other Issues » [SOLVED] Question about update-rc.d » 2024-12-10 23:19:43

update-rc.d $service $action

EDIT: I'm pretty sure there is a man page for it...

#214 Re: Other Issues » [SOLVED] Question about grub background on liveCD/DVD/USB menu » 2024-12-10 23:18:13

One might also find grub documentation on the Internet if not installed.

#215 Re: Installation » Remote directory for updates deb.devuan.org not work !!! » 2024-12-10 23:15:09

Mmm, I take it that you followed the instructions and verified that the network works, rather than merely just assuming that it works because "it worked before"?

If you do have that network connection verified with a positive ping response, then it would appear being either an intermittent problem (typically due to DNS failure), or an active TCP blocking (while allowing ICMP traffic) in between. You might need to engage your service provider for the latter.

#216 Re: Installation » Remote directory for updates deb.devuan.org not work !!! » 2024-12-10 20:32:17

You should verify that the installation sets up the network properly.
One method for that is to:
1. start the installation, and advance to where it is asking for root password
2. then press ctrl-alt-f2 so as to shift to get a shell prompt in VT2
3. type: ping -c 1 deb.devuan.org
which should respond with success.

If not, then the network is not set up for some reason, and that would also be the reason for not connecting to the repository host(s).

#217 Re: Installation » Devuan Daedalus - hibernation settings » 2024-12-06 21:02:00

I'd guess you a had a disruptive space on the linemaking it be "RESUME= none" .

Since the file gets processed as a shell script (i.e. sourcing it into the exection of /usr/sbin/mkinitramfs) you got to experience the shell script difference between the two lines lines:

RESUME=none
RESUME= none

The first line sets RESUME to "none" within mkinitramfs while the second line sets RESUME to  the empty string for a sub shell attempting to execute a program named "none".

It's a simple mistake to make and clearly the usability coefficient for initramfs-tools has room to be raised. In fact, one could say that that way of loading variables has big clown feets well into the security risk space.

#218 Re: Installation » Devuan Daedalus - hibernation settings » 2024-12-06 11:49:03

Please show the file in that failing use case, when you set RESUME=none and run into the complaint when running update-initramfs.

#219 Re: Installation » Devuan Daedalus - hibernation settings » 2024-12-06 10:58:07

Please show your file /etc/initramfs-tools/conf.d/resume.

Is there another file in /etc/initramfs-tools/conf.d/ ? If so, which, and please show it too.

#220 Re: Desktop and Multimedia » [SOLVED] Ctrl+Alt+F1...6 freezes desktop and unable to get to console » 2024-12-06 07:39:48

does it wake up with ctrl-alt-7 ?

if so, which init system do you use? and does it start getty on tty1-6 ?

#221 Re: Other Issues » [SOLVED] Pcmanfm offers free appimages of krita 5.2.3 and other bugs??? » 2024-12-02 22:41:07

What do people expect from going to Microsoft for software? Sanity?

#222 Re: Hardware & System Configuration » Disable a NIC at boot. » 2024-12-02 22:31:19

no! Don't destroy the loopback interface configuration!

Use "man interfaces"

EDIT. Btw the kernel will install an adapter for the wireless card if it has the software to do so. You may use "rfkill" to software-block the adapter, and then no networking will be configured for it. However, you will need that "rfkill" to happen early on, so will probably need to add it into initrd's init scripts. And that is a second cloud of knowledge to gain, perhaps starting with "man initramfs-tools".

#223 Re: Installation » Power-profiles-daemon doesn't work on Devuan » 2024-12-01 12:42:26

Well, dbus service activation pre-dates systemd, but nowadays there's activation script mangling added... you can if you wish translate that systemd activation script into a proper dbus activation script and then get the normal dbus activation happening.

#224 Re: Forum Feedback » Not able to edit my own post » 2024-11-27 22:11:13

The limits on post editing is a dev1galaxy feature introduced by myself in late 2020.

The forum code started with FluxBB 1.5 a couple of years ago, and has then been subject to a few local adaptions (such as "spammer barrier" in 2015, "javascript reduction" in 2017, "improved i18n" in 2019, "trolling barrier" in 2020, "oath login" (failed) in 2022, "styling refresh" in 2023).

Today it sits there in full beauty and perfection, and just waiting for the next one or two responsible code caretakers. Please drop in to #devuan-dev at libera.chat to discuss how to make that a role of yours.

#225 Re: Off-topic » [SOLVED] forum image embedding question. » 2024-11-26 23:10:44

This forum does not offer inline display of images... or does it? Yes it does, if you have configured your profile thusly.

Click on the "Profile" link, then click on the "Display" menu entry and then decide about whether to set (or not) the toggle for "show images in posts", followed by a light poke at the "submit" button.

Board footer

Forum Software