The officially official Devuan Forum!

You are not logged in.

#601 Re: Installation » (jessie to beowulf) no network icon / panel / no network setitngs » 2022-09-23 21:19:52

You have replaced wicd with network-manager. You should probably make sure that all the wicd packages have been removed. I'm assuming that network-manager-gnome works properly in ascii. I don't recall if there are problems with that or not or if we forked that package. I know it works in beowulf and chimaera.

From the Applications menu, go to
Settings -> Session and Startup -> Application Autostart
Check the box for Network. That will put the network-manager applet in the system tray.

If n-m does not work in ascii, there's connman which also supports vpn.

#602 Re: Installation » From Debian (testing) to Devuan » 2022-09-23 21:11:55

Yes, it's still possible to run without usrmerge in devuan. If you use one of our installer isos, you will be asked whether you want it or not. Default is not.

#603 Re: Installation » [SOLVED] Anacron symlinked to "true", again. » 2022-09-14 11:51:58

Correction: I tested the things I fixed and they are fixed.

There's an extra closing parenthesis on line 957 of the refractainstaller-yad. It can be fatal.

Solution: If you use the graphical installer, don't select a swap partition. Let the installer make a swapfile instead. Otherwise, use the cli installer. Run sudo refractainstaller in a terminal.

I'm not going to make new isos immediately. I don't want to go through replacing the torrent again so soon.

I did rebuild the refractainstaller-gui package. 9.6.4 is coming down the line and will work with refractainstaller-base_9.6.3.

#604 Re: Other Issues » [SOLVED] Zoom in Devuan » 2022-09-13 19:56:15

Last time I tried to install zoom in devuan, they (zoom) only had packages for stretch. Those should work on ascii, however both stretch and ascii have been retired.

Go to your zoom meeting in chromium. If you get an exo-open popup window, get rid of it. Ignore all pleas to install the zoom crap and scroll down the page until you see a link in microscopic text that says something like "Join the meeting using your web browser." and do that. It works just fine.

#605 News & Announcements » New torrent for chimaera, seeders needed. » 2022-09-11 15:40:02

fsmithred
Replies: 1

There's a new torrent file for chimaera to include the updated live isos. All the installer isos are unchanged and still at 4.0.0. The four live isos are 4.0.2 and include a bugfix for the live installer.

Please seed. Thanks.

Here's the torrent file:
https://files.devuan.org/devuan_chimaera.torrent

There's a magnet link at the bottom of this page:
https://www.devuan.org/get-devuan

#606 Re: Other Issues » GRUB update lands at 'grub rescue>' prompt » 2022-09-11 10:27:12

The amd64 live isos have grub-efi-amd64 installed and the grub-pc deb package available inside the iso for bios boots. If the iso is booted in uefi mode, it installs grub-efi. If the iso is booted in bios mode, the installer will install grub-pc. If you boot in bios mode and chroot the installed system, you need to install the grub-pc package before running grub-install. It's in the root of the filesystem. So run dpkg -i /grub-pc*.deb before running grub-install.

If the iso is booted in bios mode and the disk has gpt partition table, the installer will warn you that you need a special partition for grub, at least 1mb with no filesystem and with flag bios_grub (in gparted) or ef03 (in gdisk).

Edit: Just after hitting Submit, I saw that the first message says this happened after an upgrade. Now I'm not sure if my answer if relevant.

#607 Re: Hardware & System Configuration » [SOLVED] LUKS Full Disk Encryption » 2022-09-11 10:18:23

I've never tried to hibernate with a swapfile. There is a uswsusp module in the pm-utils package. I have no idea how you would use it. (dpkg-reconfigure uswsusp won't work)

$ apt-file find uswsusp
pm-utils: /usr/lib/pm-utils/module.d/uswsusp

#608 Re: Installation » [SOLVED] Anacron symlinked to "true", again. » 2022-09-10 16:37:03

One more time...

Newer chimaera live isos (4.0.2) are uploaded. I'm sure I tested the installer this time and it works.
(note: torrent and magent link haven't been updated yet at this time Sep 10, 16:36 UTC.)

#609 Re: Hardware & System Configuration » [SOLVED] LUKS Full Disk Encryption » 2022-09-10 16:31:14

The live installer would have made a swapfile in the root partition if you had not chosen to use the swap partition. So yes, it's possible to have a swapfile. To be sure, check to see if /swapfile already exists.

refractainstaller does the following, where bs=1024 and count=1048576:

        dd if=/dev/zero of=/target/swapfile bs="$swapfile_blocksize" count="$swapfile_count" ; check_exit 
        mkswap /target/swapfile ; check_exit 
        chmod 600 /target/swapfile

The values for bs and count are in /etc/refractainstaller in case anyone wants to change the size of the swapfile. Currently it's set to 256mb. And then you have to edit the swap entry in /etc/fstab. Mine looks like this:

/swapfile	none	swap	sw	0	0

#610 Re: Installation » [SOLVED] Anacron symlinked to "true", again. » 2022-09-09 12:09:39

refractainstaller base & gui 9.6.3 are built and will migrate down through the repos. I'll rebuild isos this weekend.

They're also here: https://sourceforge.net/projects/refracta/files/tools/
(for anyone who can't wait or those who are not using devuan)

#611 Re: Installation » [SOLVED] Anacron symlinked to "true", again. » 2022-09-09 00:30:46

Nah, don't mark it as solved yet. I screwed up again. The diversion of anacron gets removed in the live session AFTER the system gets copied to hard disk. It needs to happen in a chroot. The good news is that it'll do the right thing if you run the installer twice without rebooting the iso. sad

If someone wants to change it in place, go to line 2043 in /usr/bin/refractainstaller-yad or line  1893 in /usr/bin/refractainstaller and change this

 # Remove diversion of anacron
if [ -e /usr/sbin/anacron.orig.anacron ] ; then
         rm -f /usr/sbin/anacron
         dpkg-divert --rename --remove /usr/sbin/anacron
fi

to this

 # Remove diversion of anacron
if [ -e /target/usr/sbin/anacron.orig.anacron ] ; then
         rm -f /target/usr/sbin/anacron
         chroot /target dpkg-divert --rename --remove /usr/sbin/anacron
fi

Really sorry about that. I think I need a vacation.

#612 Re: Installation » [SOLVED] apt-get update: gpg error (expired key) » 2022-09-08 21:50:33

Morgennebel wrote:
Morgennebel wrote:
fsmithred wrote:

To do a new install with the existing live isos, you can just download the package in a terminal with wget, check the sha256sum and install with dpkg or gdebi. Then run the installer.

I tried the server and netinstall ISOs. Both do not have dpkg available (or I did not found them in /usr/sbin, /sbin or /usr/bin).

You need first to chroot to /target first. dpkg is then available.

# chroot /target
# dpkg -i ....

Ciao, -MN

For the installer isos, yeah, you need to chroot. But for the live isos, you don't. The desktop-live has the entire xfce desktop for you to work with plus all the system commands. It is a full system, and the live installer just copies the running system to hard disk. That means any changes you make in configs or packages in the running system will be copied to the installation. The minimal-live doesn't have xorg, but it's still a complete system and will act the same way, just in console only.

#613 Re: Installation » [SOLVED] Anacron symlinked to "true", again. » 2022-09-08 21:33:25

Tritonio wrote:
fsmithred wrote:

New live isos with new repo key and new refractainstaller with anacron fix are uploaded.

Thanks! But FYI you have one more expired key to renew. ;-D

gpg: assuming signed data in 'SHA256SUMS.txt'
gpg: Signature made Wed Sep  7 18:11:12 2022 CEST
gpg:                using RSA key 67F5013216271E85C251E480A73823D3094C5620
gpg: Good signature from "fsmithred (aka fsr) <fsmithred@gmail.com>" [expired]
gpg: Note: This key has expired!

I fixed that a long time ago. You need to run

gpg --keyserver keyserver.ubuntu.com  --refresh-keys
gpg --list-keys 094c5620
pub   rsa4096 2017-10-07 [SC] [expires: 2025-05-02]
      67F5013216271E85C251E480A73823D3094C5620
uid           [ultimate] fsmithred (aka fsr) <fsmithred@gmail.com>
sub   rsa4096 2017-10-07 [E] [expires: 2025-05-02]

#614 Re: Installation » [SOLVED] Anacron symlinked to "true", again. » 2022-09-08 00:48:58

New live isos with new repo key and new refractainstaller with anacron fix are uploaded.

#615 Re: Other Issues » [SOLVED] Invalid Signatures » 2022-09-07 15:31:50

narad-dev wrote:

No, wget as listed above does not work, because there is no http://deb.devuan.org/devuan/pool/main/d/devuan-keyring/devuan-keyring_2022.09.04_all.deb,

You must have hit a mirror that wasn't fully updated. If you pick one from the mirror list, you can go to the same directory and find the .deb package.
https://pkgmaster.devuan.org/mirror_list.txt

#616 Re: Hardware & System Configuration » [SOLVED] LUKS Full Disk Encryption » 2022-09-07 12:43:15

I don't know the details of how it works, but grub has modules for crypto and for luks. Look under /boot/grub/.

Yeah, I almost warned you about the double password entry. It's very slow, too. I should have said that I recommend it if that's what you really want. Another way to make /boot secure is to remove it from the hard disk and put it on a usb stick. Then you can't boot without the stick. (also inconvenient.)

#617 Re: Installation » [SOLVED] apt-get update: gpg error (expired key) » 2022-09-05 21:10:59

Morgennebel wrote:
fsmithred wrote:

To do a new install with the existing live isos, you can just download the package in a terminal with wget, check the sha256sum and install with dpkg or gdebi. Then run the installer.

I tried the server and netinstall ISOs. Both do not have dpkg available (or I did not found them in /usr/sbin, /sbin or /usr/bin).

For the installer isos (server, desktop, netinstall) the following might work in a shell:

anna install devuan-keyring_2022.09.04_all.deb

or maybe...

anna install /pool/DEBIAN/main/d/dpkg/dpkg_1.20.9_amd64.deb
dpkg -i  devuan-keyring_2022.09.04_all.deb

For the live isos (minimal-live, desktop-live) dpkg is installed and will work. Only the desktop-live has gdebi.

#618 Re: Installation » [SOLVED] Anacron symlinked to "true", again. » 2022-09-05 12:38:27

Yes, new live isos are coming soon. The fixed version of the installer is currently in chimaera-proposed-updates.

To use the current isos, wget the new keyring in the live session, and install it with dpkg or gdebi before running the installer.

#619 Re: Installation » [SOLVED] apt-get update: gpg error (expired key) » 2022-09-05 12:30:31

To do a new install with the existing live isos, you can just download the package in a terminal with wget, check the sha256sum and install with dpkg or gdebi. Then run the installer.

#620 Re: Installation » [SOLVED] apt-get update: gpg error (expired key) » 2022-09-03 21:13:06

If you download the file and want a checksum, here they are:

$ md5sum devuan-keyring_2022.09.04_all.deb 
6209781a66b39c95c012765bc7ca2297  devuan-keyring_2022.09.04_all.deb

$ sha256sum devuan-keyring_2022.09.04_all.deb 
96c4a206e8dfdc21138ec619687ef9acf36e1524dd39190c040164f37cc3468d  devuan-keyring_2022.09.04_all.deb

#621 Re: Installation » [SOLVED] apt-get update: gpg error (expired key) » 2022-09-03 16:09:25

nenesse wrote:

yes
then copying /usr/share/keyrings/devuan-keyring.gpg => /etc/apt/trusted.gpg.d
and deleting /etc/apt/trusted.gpg.d/devuan-keyring-2017-archive.gpg
apt-get update works.

Temporary solution pending that of the developers.

I believe those extra steps are only needed if you installed the first package made today, dated 2022.09.03, but the second package with date 2022.09.04 copies the new file for you.

#622 Re: Installation » [SOLVED] apt-get update: gpg error (expired key) » 2022-09-03 12:53:15

New keyring just got built and needs to get into the repos and propagate to the mirrors.

#623 Re: Hardware & System Configuration » (T420, chimaera)(nvidia-legacy-390xx-driver) nvidia-persistenced error » 2022-08-30 12:22:13

Use option '--no-install-recommends' when you install the nvidia driver. This will prevent nvidia-persistenced from being installed and will eliminate the conflict. You won't miss the package when it's absent.

#624 Re: Other Issues » [SOLVED] How to Navigate Back to a Previous XFCE Session? » 2022-08-26 10:57:36

0:0 is the display you're running on. If you run more than one xserver at a time, they will get unique display numbers.
I don't know what programs supply any of this, but I learned this early in my linux adventures.

Create a second user.
Drop to console with ctrl-alt-F1 (or I guess crtl-shift-F1 on your keyboard)
Log in as the second user.
Run startx -- :1
You will now be in an xsession as the second user on vt08 and display :1.
ctrl-alt-F7 to go to the first xsession
ctrl-alt-F8 to get back to the second xsession
When you're done playing, close that second xsession, log out second user and go back to vt07.

#625 Re: Hardware & System Configuration » [SOLVED] LUKS Full Disk Encryption » 2022-08-25 01:49:49

FDE usually refers to a setup that has /boot part of the encrypted volume. I recommend using one of the live isos. Refractainstaller knows how to do it. I can never remember all the steps and the right words, which is why I put it into a script.

Tell the installer you want to encrypt the root partition and don't select a separate boot. Added bonus - don't select a swap partition and let the installer put a small swap file on the encrypted root partition.

If you would rather diagnose and fix your current situation, you probably should show us what's in crypttab, fstab, a menuentry from grub.cfg and whatever you put into /etc/default/grub. And maybe fdisk -l, too.

Board footer

Forum Software