The officially official Devuan Forum!

You are not logged in.

#126 Re: Other Issues » [SOLVED] Package name extension "t64" in excalibur » 2024-03-31 19:40:55

Thanks for the info.
The last years with devuan/debian testing were quite convincing, but I'm going back to daedalus by now.

#127 Other Issues » [SOLVED] Package name extension "t64" in excalibur » 2024-03-31 16:05:28

delgado
Replies: 6

The day before yesterday I switched my main installation to excalibur. A lot of package names seems to have suddenly a "t64"-string appended, e.g.: "SomePackageName" vs. "SomePackageNamet64". Most of them seem to be libraries, but not sure.

What's the matter with that?

#128 Re: Installation » [SOLVED] Blender 3.4.1+dfsg-2+b1 on daedalus » 2024-03-29 10:08:32

Blender runs on my daedalus with LXDE and it is not asking for (non-existing) libraries, like libavformat.so.58.
Maybe an apt dist-upgrade was missing during the last upgrade?

$ apt list --installed | grep -e libavf -e blender -e libsws

blender-data/stable,stable,now 3.4.1+dfsg-2 all [installed,automatic]
blender/stable,now 3.4.1+dfsg-2+b1 amd64 [installed]
libavfilter8/stable,stable-security,now 7:5.1.4-0+deb12u1 amd64 [installed,automatic]
libavformat-dev/stable,stable-security,now 7:5.1.4-0+deb12u1 amd64 [installed,automatic]
libavformat59/stable,stable-security,now 7:5.1.4-0+deb12u1 amd64 [installed,automatic]
libswscale-dev/stable,stable-security,now 7:5.1.4-0+deb12u1 amd64 [installed,automatic]
libswscale6/stable,stable-security,now 7:5.1.4-0+deb12u1 amd64 [installed,automatic]

#129 Re: Installation » [SOLVED] Can I convert Debian 12.4, bookworm, into Devuan? » 2024-03-17 13:54:45

Auto-mount is usually done by gvfs.
apt install gvfs should do it. Maybe the package gvfs-backends is needed too.

#130 Re: Freedom Hacks » Systemd package caused problems » 2024-03-16 21:16:45

My "mother of all apt pins" is smile

$ cat /etc/apt/preferences.d/systemd.pref 
# not anymore #  Package: systemd 
Package: *systemd*:*
Pin: release *
Pin-Priority: -1

Not sure about the exact syntax, lets say it works so far.
Cases: On debian 12/13 to prevent re-installation of some systemd-stuff. On excalibur, just to be sure. And some "purge systemd in debian"-experiments as a preparation for a controlled devuan-migration.

Variants: On machines with multiarch, it's sometimes "Package: systemd:*"
Compared to @nixer's post: No wild card in the package name. Just mentioning, no clue about the consequences.

Edit: Not good enough anymore without wild cards
Edit2: Never realized the possibility to have multiple package names in one line, which will simplify some .*pref  files smile
Edit2: Stumbled upon the package "systemd-dev"

#131 Re: Desktop and Multimedia » [SOLVED] Darktable Debian 12 software installation possible? » 2024-03-15 18:15:18

Can this [i386] installation be easily upgraded to 64-bit with some gimmick?

Intresting problem. Google found
https://wiki.debian.org/CrossGrading

One of the steps is adding amd64 architecture, which should allow installing the wanted  (64-bit-)program.

# dpkg --add-architecture amd64

#132 Re: Installation » [SOLVED] Beowulf to Chimaera - precautions II » 2024-03-09 14:24:23

The title is "Beowuf to Chimaera", but you mean to Daedalus, right?
Otherwise, Chimaera has wicd.

#133 Re: Desktop and Multimedia » multimedia repo not available and nvidia driver not installable » 2024-03-09 13:34:53

I do not know Peppermint OS.

@delgado . . . Peppermint OS Devuan Release is on the Devuan derivatives list

I did not ment to be disrespectful, just that I'm not aware of differences to devuan.

Back to topic.
Just to mention (since I don't like to re-install): It is possible to clean-up an installation using apt-pinning. The wanted release should have a priority of at least 1001 to allow downgrading (apt policy). The steps are in short: adjust /etc/apt/preferences, then apt update; apt upgrage; apt dist-upgrade.

#134 Re: Desktop and Multimedia » multimedia repo not available and nvidia driver not installable » 2024-03-08 18:30:34

I do not know Peppermint OS.
Are the deb-multimedia.org keys installed?
Did you copy an old sources.list, still pointing to debian-multimedia.org?

#135 Re: Hardware & System Configuration » [SOLVED] no time service » 2024-03-08 13:02:06

chrony is a possible choice for a ntp daemon. Just install it and you're good to go.

Remarks:
The meta-package ntp (or ntpd) will installs the default time-sync daemon.
I do not know timedatectl. In general, it's a bad idea to install two services for one issue.
In case of a VM: The time comes from the host, so ntp is probably not needed.

#136 Re: Hardware & System Configuration » [SOLVED] Changing permissions on external drive » 2024-03-03 10:37:31

@#1
In case the partition is mounted read-only (ro):
Altering the permissiion of the directory to read-write is not enough. The partition must be re-mounted read-write (rw) as well.

First check the output of mount to see whether this applies at all. (sticking to /dev/sdb1 as example)

$ mount
$ sudo mount -o remount,rw /dev/sdb1

Open question to answer is still: Why was the partiton mounted read-only at all?
Re-mounting the partition rw manually is curing a sympotom - if the real reason allows this at all.

#137 Re: Installation » installing Devuan Trinity, gpt disk, non-uefi boot error » 2024-02-27 21:29:46

(No solution, sorry)
Depending on the time you want to sink in this topic ... something to read.

Detailed information on disk layouts and booting can be found in the install instructions of (e.g.) Archlinux and Gentoo.
Philosophy is: "There is no install program, you do anything by yourself". Instructions and information are corresponding.

#138 Re: Installation » installing Devuan Trinity, gpt disk, non-uefi boot error » 2024-02-25 15:13:21

In short: There is no way around UEFI boot for a gpt disk.

gpt disk and non-uefi boot are mutally exclusive. This can not boot by design - it's not an error.

gpt partion table -> UEFI boot
mbr partiion table -> BIOS boot

Modern x86 PC's are all UEFI. Addionally they have a BIOS emulation, which allows them to boot mbr disks.
An "UEFI emulated BIOS" counts as BIOS.

#139 Re: Devuan » Getting rid of "frankenstein" packages » 2024-02-20 19:11:43

"apt pinning" is a possibility. A priority of at least 1001 allows package downgrade.
In your case, It would be pinning the daedalus packages to 1001 and then doing the usual upgrade.
I've done that a few times, it usually just works.

# cat /etc/apt/preferences
Package: *
Pin: release n=daedalus
Pin-Priority: 1001

# apt update
# apt upgrade
# apt dist-upgrade

#140 Re: Other Issues » Extracting a .zip file absolutely destroys my CPU. » 2024-02-18 08:23:36

In a terminal: Both commands will extract the archive's content in the current directory

$ 7z /path/to/arch.zip 
$ unzip /path/to/arch.zip

Multitasking in compression is a trick that zst does.
I don't use it very often, since the command-line switches and defaults are sick, but (de-)compression works nicely.

#141 Re: Off-topic » Install Devuan Beowulf in Windows 10 WSL (Windows Subsystem for Linux) » 2024-02-17 18:01:24

Did you skip Chimaera?
dist-upgrade works fine form one version to the next release.

#142 Re: Installation » Bookworm -> Daedalus migration nscd network-manager failed » 2023-12-27 11:21:03

I would check that sysvinit is installed (and running if booted):

apt list --installed | grep sysvinit-core
apt list --installed | grep systemd

Obviously, there should be sysvinit-core and no systemd. Then:

apt update
apt -s upgrade
apt upgrade
apt -s dist-upgrade
apt dist-upgrade

usually did it (without forcing or expicit de-installs).
The apt -s lines are optional. They do a simulation to spot problems. It might be tricky to solve dependencies in an interrupted migration.

Some programs will be de-installed during migration, so there is stuff to re-install.
And optional clean-up at the end: apt clean and/or apt autoremove

--
PS: Booted installtion with sysvinit:

$ ps ax | head -2
  PID TTY      STAT   TIME COMMAND
    1 ?        Ss     0:00 init [2]

In case of systemd: PID 1 is "/sbin/init"

#143 Re: Installation » Bookworm -> Daedalus migration nscd network-manager failed » 2023-12-27 00:09:52

Continuing the migration in a chroot should work. I would do so too.   

Network-manager most likely needs updated configuration after migration (see below).

--
Remembering the migration of my notebook to chimaera:
One thing that happens during migration is: The network-device's name changes (from forgotten) to "wlan0" in case of wifi.
The network-manager's config files were still pointing to the prior device name. This was the reason for "no network connection".
The alternative to reconfigure network-manager was to restore the prior network device names:

# echo 'GRUB_CMDLINE_LINUX="net.ifnames=1"' >>/etc/default/grub
# update-grub
# reboot

Using update-grub may or may not be a bad idea in your multi-boot case.

#144 Documentation » isc-dhcp-client: timeout without running dhcp server » 2023-12-21 19:42:48

delgado
Replies: 2

A quick boot-up was impossible - the default time-out is 60 seconds until isc-dhcp-client skips waiting for an IP address. I would not mind if this happens in the background, but it is blocking the boot process.

The fix / config file is:

cat /etc/dhcp/dhclient.conf | grep timeout
#timeout 60;
timeout 10;

I know, it's not rocket science, but it took me ages to finally do it.

#145 Re: Desktop and Multimedia » Copy and Paste the traditional way » 2023-12-18 13:51:24

Just thinking: The confirm-paste add-on may have been useful in former times, where "paste something with a newline character" lead to direct execution. But this is not the case anymore; pressing the [ENTER] key seems mandatory in bash.

#146 Re: Other Issues » [SOLVED] Problem with ca-certificates-java » 2023-12-13 23:25:36

Do you have a specific need for openjdk-8?
Maybe a newer version is already installed.

apt list --installed | grep openjdk

#149 Re: Other Issues » devuan daedalus: nothing is running in wine » 2023-11-19 12:24:09

Are there files in "$HOME/.wine/drive_c/windows/system32" ?
I would proabaly start with a fresh wine setup.

$ mv .wine .wine_old      # backup
$ winecfg

#150 Re: Desktop and Multimedia » Nuevo Midori » 2023-11-19 12:15:34

It looks like a firefox (variant), which is good form my point of view.
What is midoris selling point?

Board footer

Forum Software