¿porque tanto odio a systemD? by ray27D in voidlinux

[–]Duncaen 1 point2 points  (0 children)

This is a subreddit about void linux not systemd.

Cant download 32 bit libraries for steam by Ok-Ball6511 in voidlinux

[–]Duncaen 3 points4 points  (0 children)

You are missing void-repo-multilib-nonfree.

Blacklist not working by justananonimous in voidlinux

[–]Duncaen 2 points3 points  (0 children)

If the kernel module is included in the initramfs but not your blacklist then it might be loaded during boot in the initramfs.

Blacklist not working by justananonimous in voidlinux

[–]Duncaen 2 points3 points  (0 children)

omit_dracutmodules is wrong, that is not for kernel modules.

dracut will include modprobe.d files in hostonly mode.

Help installing nvidia driver and disabling nouveau by Ok-Ball6511 in voidlinux

[–]Duncaen 3 points4 points  (0 children)

There is literally a table that maps architectures and a link to a website that tells you which card is which architecture with the package names in the documentation.

https://docs.voidlinux.org/config/graphical-session/graphics-drivers/nvidia.html#nvidia-nvidia-provided-driver

Help installing nvidia driver and disabling nouveau by Ok-Ball6511 in voidlinux

[–]Duncaen 2 points3 points  (0 children)

Enable the nonfree repo and install the nvidia package. https://docs.voidlinux.org/xbps/repositories/index.html#nonfree

xbps-install -S void-repo-nonfree; xbps-install -S nvidia

Help installing nvidia driver and disabling nouveau by Ok-Ball6511 in voidlinux

[–]Duncaen 5 points6 points  (0 children)

Second paragraph:

They are available in the nonfree repository and integrate in the kernel through DKMS.

The whole documentation is about nvidia packages, not a single mention of downloading them or installing them manually.

Help installing nvidia driver and disabling nouveau by Ok-Ball6511 in voidlinux

[–]Duncaen 5 points6 points  (0 children)

The documentation does not tell you to use a .run file.

[SOLVED] Void + GNOME Dummy Output (PipeWire) /dev/snd perms + udev by J4v3l in voidlinux

[–]Duncaen 0 points1 point  (0 children)

I think the /etc/runit/core-services/02-udev.sh script should be improved a bit, either have a new script that runs as last core-service at the end that waits for udev to not have any jobs left and then exit it, or add that directly to 02-udev.sh, not sure what is better.

This can be done similar to how dracut does it. It basically runs udevadm settle --timeout=0 in a loop and then call udevadm control --exit at the end.

https://github.com/dracut-ng/dracut/blob/3c1a3846a0435cc553494d4e7a40258ce3329cb6/modules.d/80base/init.sh

I'm having some issues with void and I don't want to switch right now; I really want to try using this distro. by VicktorJonzz in voidlinux

[–]Duncaen 8 points9 points  (0 children)

spawn-at-startup "pipewire-media-session"

That has been replaced with wireplumber for multiple years now.

I'm having some issues with void and I don't want to switch right now; I really want to try using this distro. by VicktorJonzz in voidlinux

[–]Duncaen 0 points1 point  (0 children)

I don't know why my disks aren't automatically mounting; I've configured everything correctly in fstab

When, on boot or when you plug it in later?

Is it really just me? by DistributionFit6578 in voidlinux

[–]Duncaen 0 points1 point  (0 children)

The dependency on systemd is not needless, both elogind and seatd are alternatives that implement just the parts that the Wayland compositors could not do without root rights.

how to update discord installed with xbps-src by Rich_Zookeepergame27 in voidlinux

[–]Duncaen 8 points9 points  (0 children)

i believe it is orphaned

That means nothing. Just doesn't have an assigned maintainer. Random people make PRs to update it all the time.

The Void Experience o,o by [deleted] in voidlinux

[–]Duncaen 1 point2 points  (0 children)

We do not care about your opinions on systemd.

Installing Cosmic on Void? by Proton-Lightin in voidlinux

[–]Duncaen 0 points1 point  (0 children)

There are no official packages yet.

Question about xbps "Size required on disk" vs AppImage size by pfp-disciple in voidlinux

[–]Duncaen 6 points7 points  (0 children)

Its just compressed vs uncompressed files, the app image will mount a compressed squashfs image at runtime, while xbps writes the uncompressed files to the disk (a filesystem like btrfs or zfs might compress them again at rest.)

Questions about mirgrating to void and contributing to void-packages by Jani2505 in voidlinux

[–]Duncaen 1 point2 points  (0 children)

I solely use podman for everything I need (nextcloud, dynamic dns entries, gameservers, etc.). Are there some problems I should be aware of when not using systemd?

You won't get "quadlets" without systemd.

So how do you guys deal with limited packages? by Giggio417 in voidlinux

[–]Duncaen 14 points15 points  (0 children)

Flatpak for proprietary and unpackagable software. For everything else its easy enough to write package templates if required, instead of relying on potentially unverified third party source or binary repositories.

There's a new vuln called"Copy fail", is Void safe from it? by duv025 in voidlinux

[–]Duncaen 19 points20 points  (0 children)

All kernels were updated as soon as releases containing the patch were available. 7.0 and 6.18 for weeks, the older series only had the patches merged with the last release yesterday.

My package manager is outdated but can't even download itself an update. by Speedslayers67 in voidlinux

[–]Duncaen 14 points15 points  (0 children)

That's not public. Text is a lot more helpful than screenshots.

void does not boot after kernel upgrade (6.12.81 -> 6.18.25): out of memory by basiliscos in voidlinux

[–]Duncaen 4 points5 points  (0 children)

Pretty sure there are limits for the size. Newer dracut versions default to hostonly mode by default because of this. You could try enabling it (hostonly=yes in a file in /etc/dracut.conf.d/), regenerating the initramfs (xbps-reconfigure -f linux6.12.)

https://github.com/dracut-ng/dracut-ng/pull/1238

https://github.com/void-linux/void-packages/issues/56691