The officially official Devuan Forum!

You are not logged in.

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

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

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

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

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

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

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

#159 Re: Desktop and Multimedia » [SOLVED] Shotwell dependency confusion » 2023-09-14 13:18:15

No solution, just some thoughts:

"libdconf1=0.38.0-2" looks like chimaera. Maybe something is left-over? (packages on hold? Or pinning in /etc/apt/preferecenes)?

ntpd: on one system upgraded to daedalus I did: apt purge ntp; apt install ntpsec.

#160 Re: DIY » Question, about dd and/or qemu, for disk cloning » 2023-09-12 20:07:22

https://unix.stackexchange.com/question … -browse-re

shows some examples using e2image, also for a qcow2- image. Not sure whether this works for your case too.

#161 Re: Devuan » Devuan without elogind » 2023-09-02 07:34:57

Same for me.
Adding alreaday installed programs reduces the loss, but it's just trial and error.

EDIT:
Some more runs: Added iteratively "programs to remove" to install. The next one would be acceptable, but not sure about the desktop-* packages:

apt install -s elogind- seatd udisks2 kate libpolkit-qt5-1-1 alsa-tools-gui pm-utils

The following packages will be REMOVED:
  desktop-base elogind libpam-elogind libpolkit-gobject-elogind-1-0 libpolkit-gobject-elogind-1-dev light-locker lightdm task-desktop task-lxde-desktop

#162 Documentation » e2image - image created as sparse file and is mountable » 2023-09-01 22:07:23

delgado
Replies: 0

I stumbled upon https://unix.stackexchange.com/question … browse-res , which is awesome!
Cite:

e2image can be used to create an image of an ext4 file system, while only copying sectors which are in use:

e2image -ra /dev/sda1 /path/to/file.img

file.img will be created as a sparse file, so it will only occupy the space which is really used in the file system, even though its apparent size will reflect the capacity of the file system. It can be mounted directly, like any file system image:

This will save a massive amount of time when making a backup image and it's mountable. Excellent!
One question remains: How can the sparse file "trick" ls?

.
.
.
.
PS:
Since more than a decade I was happily doing:

su -
mount /dev/sda1 /mnt
cat /dev/zero>/mnt/null.dat    # until "no space left on device"
rm /mnt/null.dat
umount /dev/sda1
cat /dev/sda1 | gzip >sda1.img.gz

The image-archive sda1.img.gz has a size of about half the partition's effective data-content, but is not mountable of course.

#163 Re: Devuan » Devuan without elogind » 2023-09-01 20:31:32

You can always run a simulation and see what would happen, e.g.:

sudo apt install -s elogind- libpam-ck-connector sway seatd

On my machine: Beside loosing some packages, there will be consolekit and seatd for elogind.

#164 Re: Installation » installation from bookworm to daedalus » 2023-09-01 06:11:09

Looks like the network is down.
One possibility is to reset the network device names to debian sytle again (devuan: "eth0", debian: "enp???").
Existing network configuration files then should work as before.

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

If that does not work:
Through recursive dependencies to systemd, it is possible that networkmanger (or connman or whatever) was deinstalled.
That is more complicated; basically you need to download any *.deb-files to install by yourself.
WiFI: I do not know how to configure manually.

#165 Re: Documentation » NFS version 2 Daedalus » 2023-08-30 18:07:50

On my daedalus mini-server:

$ sudo cat  /proc/fs/nfsd/versions
-2 +3 +4 +4.1 +4.2

# file: /etc/nfs.conf
[nfsd]
vers2=y    # added this line, nothing else changed

$ sudo /etc/init.d/nfs-kernel-server restart
$ sudo cat  /proc/fs/nfsd/versions
+2 +3 +4 +4.1 +4.2

Looks good, but can not test it.

EDIT: Or is this the config for the client? dont't know

#166 Re: Desktop and Multimedia » Chimaera sound/music issues » 2023-08-30 12:04:52

torquebar wrote:

I thought jack was needed TO provide virtual low latency so why use it if one has a real low-latency kernel?

jack needs a real-time-kernel to be able to schedule the audio-related processes accordingly.

The error message (#1) could also mean "your user is not allowed to do real time scheduling", even if the kernel is capable.

#167 Re: Installation » Trying to install wine32 results in deleting all gnome and xfce » 2023-08-29 11:46:40

I would clean-up drastically, and then reinstall the stuff (again).
Purge gnome, install a simple DM.

apt install slim task-gnome-desktop-  --purge --auto-remove   ## there is a "-" after desktop 

Does the remaining xfce work?
if not purge it too, which should leave just the text console.

apt purge task-xfce-desktop slim --auto-remove

Be careful:
apt with option "-s" additionally runs a simulation.
Take care of the network, if you are using something else than dhcp.
"purge" will delete the (system-)config files too, when removing.

Edit: typo

#168 Re: Installation » [SOLVED] I had to remove my own user and add it back, what do I do now? » 2023-08-29 11:36:00

To own the files again, you may recursively do 'chown' or 'chgrp', e.g.:

sudo chown -R user /path/to/directrory/to/own

#169 Re: Desktop and Multimedia » [SOLVED] manually mount disks always have different mount points? » 2023-08-29 10:46:41

deepforest wrote:

why every reboot sda, sdb, sdc, disks swapped?

That is a good question for Intel.

As written before, you may want to use uuids or labels to identify partitions.

#170 Re: Installation » [SOLVED] Devuan 5.0 VLC cannot play some mp4 files well, many mosaics. » 2023-08-26 20:22:01

Can this be caused by missing firmware for the graphics device?
If so, and since you upgraded from chimaera, is 'non-free-firmware' in sources.list?

#171 Re: Other Issues » Lazarus package broken? » 2023-08-25 17:46:34

Tritonio wrote:

I guess apt isn't that smart and I need to manually fix the versions of these two packages?

apt will not downgrade a package versions, unless you pin it.

#172 Re: Installation » wine32 wants to remove desktop-base » 2023-08-21 08:36:51

2talltech wrote:

Ok, np. 'dpkg --add-architecture i386; apt update; apt install wine32:i386'


Just crossed my head:
Does it help, if you put apt upgrade in between 'apt update' and 'apt install wine32:i386' ? Might be helpful to sort out the dependencies.

EDIT: No, that was nonsense. Sorry.

#173 Re: ARM Builds » [SOLVED] Clock does not update. Daedalus, arm64 Rasp Pi. NTP server not running » 2023-08-19 09:33:10

Or it was a bug:

I got the same installation and error respective ntp on my pc.
Beside the fail-message, ntpd was actually running (ps ax | grep ntpd).
The final fix in my case was: apt purge ntp. EDIT: To have ntp in any case, additionally: apt install ntpsec

Description:
There were two init.d-scripts existing, both return "fail" on "status".
/etc/init.d/ntp
/etc/init.d/ntpsec
After doing apt purge ntp, the file /etc/init.d/ntp was gone and /etc/init.d/ntpsec status now returns correctly "running".
Re-installing for testing purposes: apt install ntp did not harm anymore, it turned into a basically empty (meta-)package. I don't remember the exact content, but ntp was a "real" package with functionality.

Summary / assumption: package ntp was not upgraded corectly by the new metapackage. The (installed file-)content changed after de- and re-installing it.

ExposeGlobalistsMadness wrote:

After upgrading from Devuan Chimaera to Daedalus  (...)

$ sudo service ntp status
NTP server is not running ... failed!

(...)
2) For Bookworm, "The ntp package, which used to be the default way to set the system clock from a Network Time Protocol (NTP) server, has been replaced by ntpsec. (...)

$ apt list --installed | grep ntp
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

ntp/stable,stable,now 1:4.2.8p15+dfsg-2~1.2.2+dfsg1-1 all [installed]
ntpsec/stable,now 1.2.2+dfsg1-1 arm64 [installed,automatic]
python3-ntp/stable,now 1.2.2+dfsg1-1 arm64 [installed,automatic]

#175 Re: Desktop and Multimedia » nvidia-persistenced failed to initialize » 2023-08-18 12:28:51

I don't think it is "bug 700".
700 does not harm, it is an unhappy apt, complaining about an unfinished package installation, which functionally succeeded. Anything else is in order.
The error message looks like something went wrong with nvidia-persistenced.

What about the 2 not upgraded packages?
Just hoping that apt upgrade or dist-upgrade might fix it.
And de-installation is an option too.

Board footer

Forum Software