The officially official Devuan Forum!

You are not logged in.

#126 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.

#127 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?

#128 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.

#129 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.

#130 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.

#131 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.

#132 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

#133 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.

#134 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.

#135 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"

#136 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.

#137 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.

#138 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.

#139 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

#142 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

#143 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?

#144 Re: Freedom Hacks » Anyone know how to make a usb mouse work? » 2023-11-19 12:05:26

Is the mouse's batterie charged?

Can't remember haveing mouse problems the past decade or so. Would you mind sharing the manufacturer?

#145 Re: Hardware & System Configuration » Presentation and question about DoT » 2023-10-13 21:33:22

Are you looking for a local DNS cache or DNS resolver?
Like e.g. dnsmasq or unbound. Most likely these can be configured to use encrypted connections.

Edit: Just the colour.

#146 Re: Desktop and Multimedia » use Bluetooth » 2023-09-22 19:58:09

2nd search hit was: https://askubuntu.com/questions/1479606 … untu-23-04
pipewire is a good option for bluetooth, and the answer is for debian 12. Probably worth a try.

#147 Re: Installation » ceres and semi upgrade » 2023-09-21 07:23:55

Probably nothing.
It's ceres - wait until it's fixed or fix it yourself.

None of my business, but do you really want to use the equivalent of debian SID?

#148 Re: Installation » Daedalus ISOs don't boot » 2023-09-21 05:33:57

The nvme might be physically an older M.2 ssd with sata interface.

#149 Re: Desktop and Multimedia » [SOLVED] gimp not showing the menus . » 2023-09-17 08:04:55

Did you reset gimp's config?

 mv .config/GIMP .config/GIMP_DEF

To be sure: Create a new user and start gimp.

#150 Re: DIY » Question, about dd and/or qemu, for disk cloning » 2023-09-14 13:32:41

The point of zerofree (or just doing cat /dev/zero>zero.bin; rm zero.bin) is to reduce the size of a packed image file created with
dd or cat, e.g. cat /dev/sdXn | gzip >sdXn.img.gz.

When creating a partition image file as sparse file, these sectors are omitted anyway.

Board footer

Forum Software