You are not logged in.
Is the mouse's batterie charged?
Can't remember haveing mouse problems the past decade or so. Would you mind sharing the manufacturer?
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.
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.
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?
The nvme might be physically an older M.2 ssd with sata interface.
Did you reset gimp's config?
mv .config/GIMP .config/GIMP_DEFTo be sure: Create a new user and start gimp.
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.
ceres is sid.
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.
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.
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-utilsThe 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
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.imgfile.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.gzThe image-archive sda1.img.gz has a size of about half the partition's effective data-content, but is not mountable of course.
You can always run a simulation and see what would happen, e.g.:
sudo apt install -s elogind- libpam-ck-connector sway seatdOn my machine: Beside loosing some packages, there will be consolekit and seatd for elogind.
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
rebootIf 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.
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.2Looks good, but can not test it.
EDIT: Or is this the config for the client? dont't know
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.
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-removeBe 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
To own the files again, you may recursively do 'chown' or 'chgrp', e.g.:
sudo chown -R user /path/to/directrory/to/ownwhy 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.
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?
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.
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.
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.
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]
Thanks for clarifying the purpose.
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.