The officially official Devuan Forum!

You are not logged in.

#376 Re: Other Issues » [SOLVED] Pcmanfm offers free appimages of krita 5.2.3 and other bugs??? » 2024-12-02 21:57:45

I tried that desktop file and it does create the option to 'open terminal here' but it doesn't work. Message is "invalid desktop entry file". when I try to execute it.

#377 Re: Other Issues » [SOLVED] Pcmanfm offers free appimages of krita 5.2.3 and other bugs??? » 2024-12-02 18:32:45

PCManFM 1.3.2 in daedalus, and I see no third option in the right-click menu. Just folder or file are the choices.

#378 Re: Other Issues » Is Refracta-snapshot and installer available/working in Excalibur? » 2024-12-01 20:53:27

Yeah, that second one is the one you provided. Default is to use gzip.

Squashfs  is  a  highly compressed read-only filesystem for Linux.  It uses either gzip/xz/lzo/lz4/zstd compression to compress both files, inodes and directories.

#379 Re: Installation » Devuan 5 not Booting on 2005 Toshiba Tecra A7 Intel Centrino Duo » 2024-11-30 15:14:36

You should be able to get to a boot device menu by pressing F12 or possibly some other key. The POST screen will tell you.

How did you prepare the live usb? Do you have another computer to test the usb stick to make sure it boots?

#380 Re: Other Issues » Is Refracta-snapshot and installer available/working in Excalibur? » 2024-11-28 19:13:24

Yes, snapshot and installer versions in excalibur/ceres work. I've been making desktop-live isos about once a month, but I have not released any because I was hoping that installer isos would appear and get tested first. We're still waiting for that to happen.

#381 Re: Devuan Derivatives » Vuu-do Linux! *New Openbox-64 iso's (1.0.7) up 2-02-18*!! » 2024-11-26 00:13:08

I'm bored so I'm making a proto-vuudo-32-bit system. I'll share it with you if you want to dress it up and take it out. Or you could do your own. One problem with this plan that I see is that there doesn't seem to be a 32-bit appimage of firefox. I spent zero time looking for a workaround to this issue.

The Procedure:
Boot your vuudo iso in qemu or vbox and run

dpkg --get-selections > pkglist64

Copy that file out of the VM so you can use it.
Edit the file to change :amd64 to :i386 and rename it to pkglist32 (or whatever you want)
Change the kernel to linux-image-686-pae and comment out the specific kernel version and the linux-libc-dev lines around it.
Comment out liblsan0, libtsan0 something-ubuntu-font and everything with refracta in the name. The ''dpkg --set-selections command below will puke on any missing packages and tell you in case I missed any. (like yad for instance)

Make a virtual disk.
Boot a live-iso and do a deboostrap install of 32-bit jessie in the virtual disk. I used a refracta_11 i386 iso for this.
Copy the pkglist32 into the debootstrap dir.
Chroot the new system and set root password, create user, add jessie-security line to sources.list, create or copy /etc/apt/apt.conf.d/00norecommends and run

apt-get update
apt-get install dselect
dselect update
dpkg --set-selections < pkglist32
apt-get -u dselect upgrade

It failed. I said "no" when it asked if I agreed to the license for firmware-ipw2x00. I think it's working the second time. I had to do
dpkg --clear-selections && dpkg --set-selections < pkglist32 to get the dselect-upgrade to work. (I think it's working. not done yet.)

Update: It installed, but it's not booting. First there was no initramfs and i got a kernel panic, now I made one and I get to initramfs prompt. sad
Time for sleep. Maybe I'll dream the solution.

#382 Re: Other Issues » nfs client timeo option not working » 2024-11-21 13:10:22

I don't know if it makes a difference, but I always make a symlink so that the mount appears in my home directory.
Something like this. The link does not need to have the same name as the mount.

ln -s /nfs/fileshare  /home/chomwitt/fileshare

#383 Re: Installation » minimal X install » 2024-11-19 19:35:55

I can't think of what you need to edit other than /etc/default/grub to enable os-prober so that when you run update-grub on your minimal partition, it will automatically add entries for all your other installed systems...   unless they have an encrypted root partition. In that case, you would need to create some menu entries in /etc/grub.d/40-custom. Write them to use the /vmlinuz and /initrd.img links in each of the systems so you don't have to keep changing it with every kernel upgrade.

Re: Vuu-do - I think greenjeans managed to remove all the hidden fat. He was ruthless. Boot the iso and get a list of installed packages to use as a guide for what to install. Dig into old posts to read about how it was made.

#386 Re: Installation » How to remove runit and go back to sysvinit? » 2024-11-04 22:28:53

apt install sysvinit-core

But before you do that, did you try adding the runit-services package? It provides some working run scripts.

#387 Re: Desktop and Multimedia » Firefox 128.3.1esr *not* clearing history on closing » 2024-10-17 15:09:29

115.8.0esr in excalibur works correctly. It has the "Firefox View" icon in the upper left.

128.3.1esr in the same excalibur also works correctly. This one has a folder icon in the upper left that says "View recent browsing..."

I tried the newer version both by closing the window and by killing firefox from a terminal. Both worked correctly.

#388 Re: Hardware & System Configuration » [SOLVED] Xorg: libseat1: failure to reclaim USB input devices » 2024-10-17 13:15:50

I can confirm the elogind test. I made a second user as describe, started desktop for each using startx. keyboard worked in both.
Unplug/replug keyboard and switch to the other desktop and the keyboard didn't work. Unplug/replug in that desktop brings back the keyboard control, but when switching to the other, it fails again. Problem happens both directions.

Here's the log. Ignore the mouse. I added that in the middle of testing when I couldn't get off the dekstop after keyboard died. I never unplugged the mouse and it continued to work.
https://termbin.com/0ev8

I did have to reboot due to unexpected circumstances. After I put everything back, it seemed like it hung and I just had a black screen. Just as I issued a reboot command from an ssh session, I looked over at the monitor and the desktop appeard for about 1 second before it rebooted. On reboot all is normal again.

#389 Re: Other Issues » [SOLVED] Refracta ISO: no keyboard and mouse » 2024-10-12 22:56:46

@hdwolf:   THANKS!!!   I thought I fixed that a long time ago in refractasnapshot.

#390 Re: DIY » How to replace all mentions in git soure code, » 2024-10-02 23:12:11

Yeah, you have to tell sed exactly what to find and replace.

find . -type f -exec sed -i 's/python2.7/tauthon/g' {} \;

#391 Re: DIY » How to replace all mentions in git soure code, » 2024-10-02 20:10:01

You said, "I used this command after doing that."

I ask, "What did you do before you ran that 'find' command?"  It should have worked.

#392 Re: DIY » How to replace all mentions in git soure code, » 2024-10-02 17:19:59

From the root of the git repo:

find . -type f -exec sed -i 's/old-word/new-word/g' {} \;

Be careful with your words! (e.g. don't change a word that might be part of a word that's not the intended word.)

#393 Re: Hardware & System Configuration » NVidia driver needs more hacks » 2024-09-28 10:48:15

If the problem is that these .service files can't do their job without systemd running, then the solution is to fork nvidia-suspend-common, the package that supplies these .service files. Someone needs to step forward to do the work and maintain it as updates come along. (It most likely will not be someone who is already packaging for devuan - there aren't enough of us.)

#394 Re: Other Issues » [SOLVED] Strange window after start » 2024-09-23 19:23:39

I see that in the excalibur desktop-live isos that I've been making. It's coming from slim (the login manager). Bug report is here:
https://bugs.devuan.org/cgi/bugreport.cgi?bug=857

Note that the problem only occurs with autologin set to yes in slim.conf. If you're getting it with autologin disabled, please let me know. Thanks.

#395 Re: Hardware & System Configuration » replacement for udev/eudev because of systemd dependency » 2024-09-21 18:12:47

If you have pmount installed, spacefm will work without having to write a udev rule. I think it also works with udevil instead of pmount, but it's been years since I've tried it.

I checked to see if spacefm would open an encrypted external drive and it failed, but maybe I need to set some config for it. Alone, pmount in a terminal will ask for the passphrase for the encrpted volume.

#396 Re: Hardware & System Configuration » replacement for udev/eudev because of systemd dependency » 2024-09-20 13:16:48

What were you trying to do and where/how did it fail? What is an autostart fix for a hard disk?

#397 Re: Desktop and Multimedia » [SOLVED] safely remove xfce » 2024-09-05 10:25:08

One thing missing. Try it like this first.

apt-get --simulate purge <packages>

#398 Re: Installation » live iso not booting into graphical environment » 2024-09-01 21:03:08

The minimal-live iso does not have a graphical environment installed. Try the desktop-live instead - it will boot into xfce.
desktop

#399 Re: Installation » Daedalus LXQT-only installs no wireless manager? » 2024-08-30 20:08:26

You should have gotten nm-tray and network-manager with lxqt. Make sure nm-tray is in your desktop startup apps.
Preferences -> LXQT Settings -> Session Settings -> Autostart

Did you install from the DVD without a network mirror? If so, you would be missing a lot of network related packages, even firefox.

#400 Re: Installation » [SOLVED] Can't install linux-image-amd64 » 2024-08-29 18:07:18

I ran into this issue today:

Installing excalibur with debootstrap 1.0.128+nmu2devuan2 in daedalus fails with --merged-usr and works without it.

Installing excalibur with debootstrap 1.0.134devuan2 from daedalus-proposed-updates works with or without --merged-usr

Board footer

Forum Software