The officially official Devuan Forum!

You are not logged in.

#26 Re: Desktop and Multimedia » Browsers won't launch » 2023-09-04 10:03:53

Charon795 wrote:

as I wrote above, I am new to linux. Therefore, I'm not familiar with all these desktops yet. Gnome is used in Ubuntu and I more than liked it, so I installed it.
And judging by the screenshots on the Internet, MATE, which you mentioned, is somewhat reminiscent of the Windows desktop, and I'm tired of Windows. Want something new

Charon795 wrote:

This is not helpful at all. Gnome is a desktop that is offered in the devuan daedalus netinstall iso. Ive not been able to get it to work properly either. Maybe gnome desktop should be left off the chosen list of desktop environments as it relies far too heavily on systemd.

I guess the issue could be due to some missing GNOME dependencies since you went with the 'netinstall.iso'. Did you try the full 'desktop.iso'?

#27 Desktop and Multimedia » upgrade warnings pipewire » 2023-08-16 16:00:01

amaro
Replies: 0

Hello everybody!

upgrading 'mpv' got some 'pipewire' messages

Unpacking pipewire-bin (0.3.77-1~bpo12+1) over (0.3.19-4) ...
dpkg: warning: unable to delete old directory '/etc/pipewire/media-session.d': Directory not empty
dpkg: warning: unable to delete old directory '/etc/pipewire': Directory not empty
...
Setting up pipewire-bin (0.3.77-1~bpo12+1) ...
Removing obsolete conffile /etc/pipewire/pipewire.conf ...
Removing obsolete conffile /etc/pipewire/media-session.d/alsa-monitor.conf ...
Removing obsolete conffile /etc/pipewire/media-session.d/media-session.conf ...

prior to the upgrade listening to online radio worked flawlessly

mpv some-online-radio-url
Resuming playback. This behavior can be disabled with --no-resume-playback.
 (+) Audio --aid=1 (mp3 2ch 44100Hz)
AO: [pulse] 44100Hz stereo 2ch float
A: 00:00:00 / 00:00:05 (18%) Cache: 3.9s/139KB

after the upgrade

mpv some-online-radio-url
Resuming playback. This behavior can be disabled with --no-resume-playback.
 (+) Audio --aid=1 (mp3 2ch 44100Hz)
[ao/pipewire] Could not connect to context '(null)': Host is down
AO: [pulse] 44100Hz stereo 2ch float
A: 00:00:00 / 00:00:05 (18%) Cache: 3.9s/140KB

Is it necessary to delete the old 'pipewire' directory? If so, where is the new 'pipewire" directory?

/etc/pipewire

Is the 'pipewire' line during 'mpv' usage an issue?

[ao/pipewire] Could not connect to context '(null)': Host is down

Thank you in advance!

#28 Off-topic » zola 0.17 Failed to serve the site » 2023-08-02 12:07:43

amaro
Replies: 0

Hello everybody!

Anyone using or familiar with zola? I am trying to get it running but keep getting this message

zola serve
Building site...
Error: Failed to serve the site
Error: Couldn't find front matter in `/home/vb/blog/content/blog/_index.md`. Did you forget to add `+++` or `---`?

although my '_index.md' file looks exactly like it is supposed to

cat _index.md
+++ 
title = "List of blog posts" 
sort_by = "date" 
template = "blog.html" 
page_template = "page.html" 
+++ 

Any help is appreciated!
Thank you in advance!

#29 Re: Off-topic » A warning from the godfather of AI » 2023-06-25 08:05:34

ai bots in action:

political brainwashing - phil cross (who the heck is phil cross?) "invests" huge amounts of time and energy 
to undermine the reputations of prominent political opponents
https://original.antiwar.com/robert_blumen/2023/06/19/was-philip-cross-an-ai/

medical brainwashing - billy (aka the good guy) gates "invests" 6 million dollars in chatbots 
to promote stuff called "co*id vaccines"
https://igorchudov.substack.com/p/bill-gates-funded-ai-chatbots-promoted

#30 Re: Other Issues » ffmpeg split file using -segment_times » 2023-06-10 22:31:36

rbit wrote:

segment_times times

    Specify a list of split points. times contains a list of comma separated duration specifications, in increasing order. See also the segment_time option.

It doesn't seem that -segment_times takes a filename argument.  You could try -segment_times $(cat /media/split) and see if that works

hmm, that didn't occur to me...

here is the output

ffmpeg -i "/media/input.mp3" -vn -map 0 -f segment -segment_times $(cat /media/split) "output%03d.mp3"
Automatic encoder selection failed for output stream #0:0. Default encoder for format segment (codec none) is probably disabled. Please choose an encoder manually.
Error selecting an encoder for stream 0:0

with the '-c copy' option

ffmpeg -i "/media/input.mp3" -vn -c copy -map 0 -f segment -segment_times $(cat /media/split) "output%03d.mp3"
[segment @ 0x586a4de6f240] Invalid time duration specification 'duration' in times list duration
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
  Stream #0:1 -> #1:0 (mjpeg (native) -> png (native))
  Stream #0:0 -> #1:1 (mp3 (mp3float) -> mp3 (libmp3lame))
    Last message repeated 1 times

adding the '-c copy' option produced one empty text file

ll
total 0
-rw-r--r-- 1 vb vb 0 Jun 11 01:15 output%03d.mp3

interestingly, renaming the '/media/split' file as '.csv' automagically turned it into

cat /media/split.csv
duration 00:23:19, 00:33:15

and the output was

ffmpeg -i "/media/input.mp3" -vn -c copy -map 0 -f segment -segment_times $(cat /media/split.csv) "output%03d.mp3"
[NULL @ 0x650df004aa40] Unable to find a suitable output format for '00:33:15'
00:33:15: Invalid argument

thank you, rbit!

#31 Re: Other Issues » ffmpeg split file using -segment_times » 2023-06-10 01:00:36

ralph.ronnquist wrote:

although I am sure the author(s) of that page believe(s) everything is explained clearly, regarding that issue it seems useless as long as there are only examples of putting the times directly in the command and there are no examples of how the file should look like

#32 Other Issues » ffmpeg split file using -segment_times » 2023-06-09 23:40:35

amaro
Replies: 4

Hello everybody!

Trying to split one file into parts based on its silence gaps.

Using the '-segment_times' option of 'ffmpeg' with a file named '/media/split' containing the silence gaps times gives an error

ffmpeg -i "/media/input.mp3" -vn -map 0 -f segment -segment_times /media/split "output%03d.mp3"
[segment @ 0x624777763a40] Invalid time duration specification '/media/split' in times list /media/split
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Error initializing output stream 0:0 -- 
Conversion failed!

However, using the silence gaps times from that file directly works fine

ffmpeg -i "/media/input.mp3" -vn -map 0 -f segment -segment_times 00:23:19,00:33:15 "output%03d.mp3"
ffmpeg version 4.3.5-0+deb11u1 Copyright (c) 2000-2022 the FFmpeg developers
  built with gcc 10 (Debian 10.2.1-6)
  configuration: --prefix=/usr --extra-version=0+deb11u1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-avresample --disable-filter=resample --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librsvg --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Input #0, mp3, from '/media/input.mp3':

The file looks like this

cat /media/split
00:23:19,00:33:15

Checked the 'ffmpeg' page here

https://ffmpeg.org/ffmpeg-formats.html#segment

and it says

segment_times times

Specify a list of split points. times contains a list of comma separated duration specifications, in increasing order.

How should that file look in order for the command to work?
Thank you!

#33 Re: Other Issues » wget download articles linked to from a page » 2023-05-31 08:14:38

Camtaf wrote:

Maybe use sed to remove the <link> </link>, then put the list into a 'for in' loop(?)

kind of a workaround... put the links in a file and then

wget -i file

thank you!

#34 Other Issues » wget download articles linked to from a page » 2023-05-30 14:59:27

amaro
Replies: 3

Hello everybody!

I want to download all the articles this page

https://shepherdexpress.com/lifestyle/out-of-my-mind

has links to.

I use an alias

type get
get is aliased to `wget -mkEpnp'

but it doesn't work. There is only one downloaded page which is '.rss'

ls ~/shepherdexpress.com/lifestyle/out-of-my-mind/
index.rss

This '.rss' page contains links to the articles

perl -ne 'print if /link/..!/\\\s*$/' index.rss
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/do-something/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/aviophobia/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/just-how-incarnated-are-you/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/ageism-hurts-more-than-seniors/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/does-the-nose-know/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/meet-your-therapist-nature/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/an-overlooked-key-to-happiness/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/health-anxiety-hurts/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/messages-from-the-embodied-mind/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/when-people-mess-with-your-autonomy/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/how-to-lose-friends-and-alienate-people/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/can-dreaming-heal-emotional-wounds/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/alcohol-is-not-your-friend/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/family-traits-that-hurt-or-heal/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/loves-lessons-learned/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/moneys-impact-on-mental-health/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/there-are-monsters-among-us/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/the-power-of-distraction/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/pathological-liars/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/your-nights-make-your-days/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/when-bad-things-happen/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/looking-back-to-envision-forward/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/christmas-has-an-identity-crisis/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/why-employee-performance-reviews-suck/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/your-brain-on-animals/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/verbal-abuse-is-a-neurotoxin/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/grateful-people-are-happy-people/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/male-dating-dysfunction/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/your-brain-on-television/</link>
<link>https://shepherdexpress.com/lifestyle/out-of-my-mind/got-election-angst/</link>

but for some reason 'wget' doesn't download them.

I also tried 'r' and 'l1' and 'l2' options but it made no difference.

get -l 1 -r --convert-links

Any suggestions how to download those articles are appreciated?
Thank you!

#35 Re: News & Announcements » Devuan websites need a makeover for Daedalus » 2023-05-09 23:30:37

The current color scheme is perfect. And as the saying goes, If it is not broken, don't change it.

#36 Re: Desktop and Multimedia » intel_reg:16734 intel_mmio-CRITICAL » 2022-12-11 11:10:32

'dpkg --verify' gives nothing and reinstalling the package and its dependencies was the first thing I did (before goooogling about the issue and before posting here)
I installed it on a different partition with fresh installation of Devuan and it works fine there

#37 Re: Desktop and Multimedia » Devuan jfs boot warnings and errors » 2022-12-11 11:05:08

I had used 'jfs' on this laptop in the past with 'Slackware' so there is no reason to doubt the CPU or the RAM capacity
But if you have some information that connects the CPU or the RAM capacity with 'jfs' I would like to read it if don't mind sharing the link to it

# cat /etc/fstab
UUID=1190ddee-8f83-40a9-8688-0eaeb317d634	/	jfs	defaults,noatime	0	1
/swapfile	none	swap	sw	0	0

#38 Desktop and Multimedia » Devuan jfs boot warnings and errors » 2022-12-06 07:54:02

amaro
Replies: 3

Hello everybody,

I installed Devuan on 'jfs' partition
As a result I get lots of warnings and errors which are not there on Devuan on 'ext4' partition
And on every boot there is a significance delay due to the system's necessity to automatically perform 'jfs.fsck' after the first 5 or 6 warnings
Is this the case (i.e. to be expected) when using 'jfs'?

# dmesg -T --color=always --level=err,warn  | more
[Tue Dec  6 08:25:59 2022] APIC calibration not consistent with PM-Timer: 1269ms instead of 100ms
[Tue Dec  6 08:25:59 2022] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping
 due to MTRR override.
[Tue Dec  6 08:26:01 2022] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with
 OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20200925/utaddress-204)
[Tue Dec  6 08:26:01 2022] ACPI Warning: SystemIO range 0x00000000000011B0-0x00000000000011BF conflicts with
 OpRegion 0x0000000000001180-0x00000000000011FF (\GPIO) (20200925/utaddress-204)
[Tue Dec  6 08:26:01 2022] ACPI Warning: SystemIO range 0x0000000000001180-0x00000000000011AF conflicts with
 OpRegion 0x0000000000001180-0x00000000000011FF (\GPIO) (20200925/utaddress-204)
[Tue Dec  6 08:26:01 2022] lpc_ich: Resource conflict(s) found affecting gpio_ich
[Tue Dec  6 08:26:01 2022] r8169 0000:07:00.0: can't disable ASPM; OS doesn't have ASPM control
[Tue Dec  6 08:26:01 2022] ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Index (0x00000000F) is beyond end of
 object (length 0x8) (20200925/exoparg2-393)
[Tue Dec  6 08:26:01 2022] ACPI Error: Aborting method \_SB.PCI0.IBCM due to previous error (AE_AML_BUFFER_
LIMIT) (20200925/psparse-529)
[Tue Dec  6 08:26:01 2022] ACPI Error: Aborting method \_SB.PCI0.GFX0.DD02._BCM due to previous error (AE_A
ML_BUFFER_LIMIT) (20200925/psparse-529)
[Tue Dec  6 08:26:01 2022] ACPI Error: Evaluating _BCM failed (20200925/video-357)
[Tue Dec  6 08:26:01 2022] clocksource: timekeeping watchdog on CPU0: Marking clocksource 'tsc-early' as uns
table because the skew is too large:
[Tue Dec  6 08:26:01 2022] clocksource:                       'hpet' wd_now: 36be22b wd_last: 2f07d56 mask: 
ffffffff
[Tue Dec  6 08:26:01 2022] clocksource:                       'tsc-early' cs_now: 154b698d94 cs_last: 150f7a
a72a mask: ffffffffffffffff
[Tue Dec  6 08:26:01 2022] TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
[Tue Dec  6 08:26:01 2022] ata1.00: unexpected _GTF length (8)
[Tue Dec  6 08:26:01 2022] ata1.00: unexpected _GTF length (8)
[Tue Dec  6 08:26:02 2022] sd 6:0:0:0: [sdb] No Caching mode page found
[Tue Dec  6 08:26:02 2022] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[Tue Dec  6 08:26:02 2022] ata2.00: unexpected _GTF length (8)
[Tue Dec  6 08:26:02 2022] ata2.00: unexpected _GTF length (8)
[Tue Dec  6 08:26:08 2022] at24 0-0050: supply vcc not found, using dummy regulator
[Tue Dec  6 08:26:10 2022] ath5k 0000:06:00.0: can't disable ASPM; OS doesn't have ASPM control
[Tue Dec  6 08:30:12 2022] xfs filesystem being mounted at /media/vb/xfs supports timestamps until 2038 (0x7fffffff)

#39 Re: Desktop and Multimedia » intel_reg:16734 intel_mmio-CRITICAL » 2022-12-06 07:34:04

reverting those settings doesn't solve the problem
I installed intel-gpu-tools while using Devuan via the usb (live system) and 'intel_reg' worked fine there

#40 Desktop and Multimedia » intel_reg:16734 intel_mmio-CRITICAL » 2022-12-04 09:58:29

amaro
Replies: 4

Unexpectedly after a reboot (I rarely reboot) 'intel_reg write 0x61254 0x28962896' started throwing the following messages:

# intel_reg write 0x61254 0x28962896
Warning: register spec not found in '/usr/share/igt-gpu-tools/registers'. Using builtin register spec.
(intel_reg:16734) intel_mmio-CRITICAL: Test assertion failure function intel_mmio_use_pci_bar, file ../lib/intel_mmio.c:146:
(intel_reg:16734) intel_mmio-CRITICAL: Failed assertion: !(error != 0)
(intel_reg:16734) intel_mmio-CRITICAL: Last errno: 1, Operation not permitted
(intel_reg:16734) intel_mmio-CRITICAL: Couldn't map MMIO region
Stack trace:
  #0 [__igt_fail_assert+0x113]
  #1 [intel_mmio_use_pci_bar+0xc4]
  #2 [intel_register_access_init+0x1b]
  #3 [<unknown>+0x8935eddb]
  #4 [<unknown>+0x8935d6f6]
  #5 [__libc_start_main+0xea]
  #6 [<unknown>+0x8935d7ba]
Test (null) failed.
**** DEBUG ****
(intel_reg:16734) intel_chipset-DEBUG: Test requirement passed: pci_dev
(intel_reg:16734) intel_mmio-CRITICAL: Test assertion failure function intel_mmio_use_pci_bar, file ../lib/intel_mmio.c:146:
(intel_reg:16734) intel_mmio-CRITICAL: Failed assertion: !(error != 0)
(intel_reg:16734) intel_mmio-CRITICAL: Last errno: 1, Operation not permitted
(intel_reg:16734) intel_mmio-CRITICAL: Couldn't map MMIO region
(intel_reg:16734) igt_core-INFO: Stack trace:
(intel_reg:16734) igt_core-INFO:   #0 [__igt_fail_assert+0x113]
(intel_reg:16734) igt_core-INFO:   #1 [intel_mmio_use_pci_bar+0xc4]
(intel_reg:16734) igt_core-INFO:   #2 [intel_register_access_init+0x1b]
(intel_reg:16734) igt_core-INFO:   #3 [<unknown>+0x8935eddb]
(intel_reg:16734) igt_core-INFO:   #4 [<unknown>+0x8935d6f6]
(intel_reg:16734) igt_core-INFO:   #5 [__libc_start_main+0xea]
(intel_reg:16734) igt_core-INFO:   #6 [<unknown>+0x8935d7ba]
****  END  ****
FAIL (-1.000s)

The only thing kernel related I did lately was adding a few lines to '/etc/sysctl.conf' and a few options to '/etc/default/grub'

vm.mmap_rnd_bits = 32
vm.mmap_rnd_compat_bits = 16
fs.protected_fifos = 2
fs.protected_regular = 2
kernel.dmesg_restrict = 1
kernel.printk = 3 3 3 3
kernel.kexec_load_disabled = 1
kernel.unprivileged_bpf_disabled = 1
net.core.bpf_jit_harden = 2
vm.unprivileged_userfaultfd = 0
dev.tty.ldisc_autoload = 0
slab_nomerge init_on_alloc=1 init_on_free=1 page_alloc.shuffle=1 pti=on vsyscall=none debugfs=off oops=panic module.sig_enforce=1 lockdown=confidentiality loglevel=0

Any ideas are highly appreciated!

#41 Desktop and Multimedia » sylpheed change accounts order in folder tree » 2022-09-30 14:12:50

amaro
Replies: 0

Hello everybody!

I cannot find how to change the order of accounts in the folder
tree in sylpheed. Read the man pages but could not find the answer.

Changing their order in the Configuration -> Edit accounts menu
did not help.

How to do that?
Thank you in advance!

#42 Re: Desktop and Multimedia » [SOLVED] feh some keys not working » 2022-09-14 11:08:42

looks like in order for the keys to work one should first 'cd' into the folder
anyway...
thank you, Evenson!

#43 Desktop and Multimedia » [SOLVED] feh some keys not working » 2022-09-14 09:54:06

amaro
Replies: 2

Hello everybody!

'feh' doesn't seem to work as expected

apt policy feh
feh:
  Installed: 3.6.3-1
  Candidate: 3.6.3-1

'man feh' shows

n, ⟨space⟩, ⟨Right⟩ [next_img]
             Show next image.  Selects the next image in thumbnail mode.

o [toggle_pointer]
             Toggle pointer visibility

p, ⟨BackSpace⟩, ⟨Left⟩ [prev_img]
             Show previous image.  Selects the previous image in thumbnail mode.

but neither 'n', 'space', 'right' nor 'p', 'backspace', 'left' work

and to make things more mysterious the other keys are working

how to fix it?
thank you in advance!

#44 Re: Desktop and Multimedia » [SOLVED] upgrade produces initramfs-tools errors » 2022-09-10 06:28:23

thank you, aitor!
editing '/usr/share/initramfs-tools/hooks/live' solved it.

#45 Desktop and Multimedia » [SOLVED] upgrade produces initramfs-tools errors » 2022-09-10 02:50:27

amaro
Replies: 2

Hello everybody!

during system upgrade got this mesage

update-initramfs: Generating /boot/initrd.img-5.10.0-16-686-pae
W: No zstd in /usr/bin:/sbin:/bin, using gzip

trying to install 'zstd' got this one

update-initramfs: deferring update (trigger activated)
Processing triggers for initramfs-tools (0.142) ...
update-initramfs: Generating /boot/initrd.img-5.10.0-16-686-pae
live-boot: core filesystems dm-verityE: /usr/share/initramfs-tools/hooks/live failed with return 1.
update-initramfs: failed for /boot/initrd.img-5.10.0-16-686-pae with 1.
dpkg: error processing package initramfs-tools (--configure):
 installed initramfs-tools package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)

any help is appreciated!
thank you in advance!

Edit: did some goooooogling but still no result

# dpkg -C
The following packages are only half configured, probably due to problems
configuring them the first time.  The configuration should be retried using
dpkg --configure <package> or the configure menu option in dselect:
 initramfs-tools      generic modular initramfs generator (automation)
# dpkg --configure initramfs-tools
Setting up initramfs-tools (0.142) ...
update-initramfs: deferring update (trigger activated)
Processing triggers for initramfs-tools (0.142) ...
update-initramfs: Generating /boot/initrd.img-5.10.0-9-686-pae
live-boot: core filesystems dm-verityE: /usr/share/initramfs-tools/hooks/live failed with return 1.
update-initramfs: failed for /boot/initrd.img-5.10.0-9-686-pae with 1.
dpkg: error processing package initramfs-tools (--configure):
 installed initramfs-tools package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 initramfs-tools
# apt install --reinstall -o Dpkg::Options::="--force-confmiss" initramfs-tools
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 19 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
E: Internal Error, No file name for initramfs-tools:i386

#46 Re: Desktop and Multimedia » [SOLVED] Why ceres still not updated yet to 5.19 kernel? » 2022-09-10 02:24:46

are there any tangible benefits - performance-wise or security-wise - from upgrading from 5.10 to 5.19?

#47 Desktop and Multimedia » luakit broken after update » 2022-09-09 09:24:15

amaro
Replies: 1

Hello everybody!

trying to start luakit and get this output

$ luakit
[    0.117600] I [core/luah]: Loading rc: /home/vb/.config/luakit/rc.lua
**
ERROR:common/util.c:67:strip_ansi_escapes: assertion failed (err == NULL): Error while compiling regular expression ‘[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]’ at char 3: unrecognized character following \ (g-regex-error-quark, 103)
Bail out! ERROR:common/util.c:67:strip_ansi_escapes: assertion failed (err == NULL): Error while compiling regular expression ‘[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]’ at char 3: unrecognized character following \ (g-regex-error-quark, 103)
Aborted
# apt-get install luakit
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
luakit is already the newest version (1:2.3-1+b1).
0 upgraded, 0 newly installed, 0 to remove and 1164 not upgraded.

how to proceed?
thank you in advance!

#48 Re: Desktop and Multimedia » rainlendar2-lite dependencies problems » 2022-09-09 09:16:47

cat /etc/apt/sources.list
# Package repositories
deb http://devuan.ipacct.com/devuan/merged/ daedalus contrib main   
# deb http://devuan.ipacct.com/devuan/merged/ daedalus-updates contrib main  
# deb http://devuan.ipacct.com/devuan/merged/ daedalus-security main  
# deb http://devuan.ipacct.com/devuan/merged/ daedalus-backports main 

# Source repositories
# deb-src http://deb.devuan.org/merged/ chimaera main 
# deb-src http://deb.devuan.org/merged/ chimaera-updates main 
# deb-src http://deb.devuan.org/merged/ chimaera-security main 
# deb-src http://deb.devuan.org/merged/ chimaera-backports main 

looks like your link points to an amd64 file and I too couldn't find a newer version (>2.11) for i386 available

#49 Desktop and Multimedia » rainlendar2-lite dependencies problems » 2022-09-09 07:20:21

amaro
Replies: 2

Hello everybody!

trying to install 'rainlendar2-lite' but facing dependencies problems

ver 2.9

dpkg -i /media/vb/Linux/deb386/rainlendar2-lite_2.9.b111-1_i386.deb
Selecting previously unselected package rainlendar2-lite.
(Reading database ... 135884 files and directories currently installed.)
Preparing to unpack .../rainlendar2-lite_2.9.b111-1_i386.deb ...
Unpacking rainlendar2-lite (2.9.b111-1) ...
dpkg: dependency problems prevent configuration of rainlendar2-lite:
 rainlendar2-lite depends on libcurl3 (>= 7.16.0); however:
  Package libcurl3 is not installed.
 rainlendar2-lite depends on libpango1.0-0 (>= 1.16.2); however:
  Package libpango1.0-0 is not installed.
 rainlendar2-lite depends on libpng12-0; however:
  Package libpng12-0 is not installed.
 rainlendar2-lite depends on tofrodos; however:
  Package tofrodos is not installed.

dpkg: error processing package rainlendar2-lite (--install):
 dependency problems - leaving unconfigured
Processing triggers for desktop-file-utils (0.26-1) ...
Processing triggers for mailcap (3.69) ...
Errors were encountered while processing:
 rainlendar2-lite

ver 2.10

dpkg -i /media/vb/Linux/deb386/rainlendar2-lite_2.10.b120-1_i386.deb
Selecting previously unselected package rainlendar2-lite.
(Reading database ... 135884 files and directories currently installed.)
Preparing to unpack .../rainlendar2-lite_2.10.b120-1_i386.deb ...
Unpacking rainlendar2-lite (2.10.b120-1) ...
dpkg: dependency problems prevent configuration of rainlendar2-lite:
 rainlendar2-lite depends on libcurl3 (>= 7.16.0); however:
  Package libcurl3 is not installed.
 rainlendar2-lite depends on libpango1.0-0 (>= 1.16.2); however:
  Package libpango1.0-0 is not installed.
 rainlendar2-lite depends on libpng12-0; however:
  Package libpng12-0 is not installed.
 rainlendar2-lite depends on tofrodos; however:
  Package tofrodos is not installed.
 rainlendar2-lite depends on libsdl1.2debian; however:
  Package libsdl1.2debian is not installed.
 rainlendar2-lite depends on libssl1.0.0; however:
  Package libssl1.0.0 is not installed.

dpkg: error processing package rainlendar2-lite (--install):
 dependency problems - leaving unconfigured
Processing triggers for desktop-file-utils (0.26-1) ...
Processing triggers for mailcap (3.69) ...
Errors were encountered while processing:
 rainlendar2-lite

ver 2.11

dpkg -i /home/vb/rainlendar2-lite_2.11.1.b129-1_i386.deb
(Reading database ... 135963 files and directories currently installed.)
Preparing to unpack .../rainlendar2-lite_2.11.1.b129-1_i386.deb ...
Unpacking rainlendar2-lite (2.11.1.b129-1) over (2.9.b111-1) ...
dpkg: dependency problems prevent configuration of rainlendar2-lite:
 rainlendar2-lite depends on libcurl3 (>= 7.16.0); however:
  Package libcurl3 is not installed.
 rainlendar2-lite depends on libpango1.0-0 (>= 1.16.2); however:
  Package libpango1.0-0 is not installed.
 rainlendar2-lite depends on libpng12-0; however:
  Package libpng12-0 is not installed.
 rainlendar2-lite depends on tofrodos; however:
  Package tofrodos is not installed.
 rainlendar2-lite depends on libsdl1.2debian; however:
  Package libsdl1.2debian is not installed.
 rainlendar2-lite depends on libssl1.0.0; however:
  Package libssl1.0.0 is not installed.

dpkg: error processing package rainlendar2-lite (--install):
 dependency problems - leaving unconfigured
Processing triggers for desktop-file-utils (0.26-1) ...
Processing triggers for mailcap (3.69) ...
Errors were encountered while processing:
 rainlendar2-lite

which version is less likely to cause dependencies problems in the long run?
is there a way to avoid getting its dependencies manually?

#50 Re: Off-topic » What are you reading/want to read ? » 2022-09-05 17:08:27

started Ashenden by WS Maugham
in the Preface he shares some observations about the differences between facts and stories

Fact is a poor story-teller. It starts a story at haphazard, generally long before the beginning, rambles on inconsequently and tails off, leaving loose ends hanging about, without a conclusion. It works up to an interesting situation, and then leaves it in the air to follow an issue that has nothing to do with the point; it has no sense of climax and whittles away its dramatic effects in irrelevance. There is a school of novelists that looks upon this as the proper model for fiction. If life, they say, is arbitrary and disconnected, why, fiction should be so too; for fiction should imitate life. In life things happen at random, and that is how they should happen in a story; they do not lead to a climax, which is an outrage to probability, they just go on. Nothing offends these people more than the punch or the unexpected twist with which some writers seek to surprise their readers, and when the circumstances they relate seem to tend towards a dramatic effect they do their best to avoid it. They do not give you a story, they give you the material on which you can invent your own. Sometimes it consists of an incident presented, you might think, at haphazard, and you are invited to divine its significance. Sometimes they give you a character and leave it at that. They give you the materials for a dish and expect you to do the cooking yourself. Now this is one way like another of writing stories and some very good stories have been written in it. Chekov used it with mastery. It is more suitable for the very short story than for the longer one. The description of a mood, an environment or an atmosphere, can hold your attention for half a dozen pages, but when it comes to fifty a story needs a supporting skeleton. The skeleton of a story is of course its plot. Now a plot has certain characteristics that you cannot get away from. It has a beginning, a middle and an end. It is complete in itself. It starts with a set of circumstances which have consequences, but of which the causes may be ignored; and these consequences, in their turn the cause of other circumstances, are pursued till a point is reached when the reader is satisfied that they are the cause of no further consequences that need be considered. This means that a story should begin at a certain point and end at a certain point. It should not wander along an uncertain line, but follow, from exposition to climax, a bold and vigorous curve.

Board footer

Forum Software