#void-linux — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #void-linux, aggregated by home.social.
-
The default XFCE theme on Void Linux looks good. The Void Linux live USB also booted really fast.
The PClinuxOS live USB for XFCE seemed to take forever to boot. Progress bar got about half way after several minutes and I just gave up. Void booted into XFCE in what seemed like just a few seconds.
The installer on Void is not as easy to use as the Artix installer.
Void is similar to Artix in that it is also a rolling release distro, but doesn't have the high frequency of package updates that Arch (Artix) does. So it is a much more stable rolling distro that doesn't require multi-gigabyte downloads for updates every week.
XFCE is the only desktop option provided on a live USB installer by Void Linux.
Note: I had to install the 'fastfetch' and 'scrot' packages on the live boot to be able to take this screenshot.
#Linux #VoidLinux #XFCE -
Тут намедни один товарщи задавал вопрос о целесообразности установки #Gentoo. В ответе своём упомянул, что пакеты можно собирать локальнно и в #VoidLinux, но без такой тонкой конфигурации а-ля USE-флаги.
Вторым аргументом ЗА стала кофигурация ядра под себя. Теперь я заинтересовался и этим у себя в Void. Процесс в виде вкл/выкл галочки, сохранения конфига.
Много не знакомых параметров, как бы чего не сломать, отключив только лишнее. Посмотрим, что из этого выйдет … 🧐
-
Okay, nerds, I'm thinking about moving from #Debian to #VoidLinux ; I've daily-driven Debian for over a decade now, and mostly have no problems with it. I've just been increasingly leery of systemd, which now is rearing its ugly head (in admittedly an unexpected way) with the whole age-verification thing; runit does seem much less Lovecraftian.
I installed Void just for the heck of it a couple of years ago on an old/underpowered netbook style laptop, and it seemed just fine, but I didn't use it much or rely on it for anything.
I run sway as my VM with just a couple of custom programs as a sort of nod to a "desktop environment".
Is there anybody out there who has experience with both who wants to either reassure me or scare me off? Any advice would be appreciated.
-
@ippkor @rf @Russia @russian_mastodon
Как я уже говорил, и продолжаю так считать:
если выхотите начать понимать #Gentoo, то ставьте сперва и изучайте #Calculate. Я знаю, что там часто iso бывают кривые, в системе проблем хватает с обновлениями, то есть стабильности не много. Форум у них никогда не спит, ТГ чатик и вовсе кипит иногда.Это, разумеется, не говорит о проблемах, кто-то просто общается и вопросы выясняет, интересуется.
В кальке всё бинарное (почти), всё через gui. Так что для новичка, кто хочет в этот лагерь вкатиться, проще будет освоиться. Как я говорю
Если вы освоили #emerge, то ни один другой пакетник вам уже не страшен (это я по опыту знаю, ибо просидел на кальке 2 года).
#OpenRC можно подтянуть, но это с практикой придёт. Ещё вы можете перевести кальку в режим компиляции всех пакетов (обновления). Вот и посидите на таком варианте с месяц, потом поймёте — хочется ли вам ВСЁ собирать.
У Дженту есть сейчас одна, как мне видится, классная черта — USE флаги для тонкой конфигурации пакетов под себя.
Я теперь перешёл на #VoidLinux. Это бинарная система со своим пакетником, вокруг которого и строится система, в общем-то, с возможность тоже собирать пакеты локально. Но я научился компилировать всё обновления. Только не со всеми и не всегда это получается и не всегда нужно, проще поставить бинарник готовый.
Я на днях писал в комментариях на ресурсе линуксовом, что днём мне прилетело ядро, я его поставил бинарником, не став собирать, а позже, в течении дня, прилетел ещё один патч, то есть, по идее, ЯДРО НУЖНО СОБИРАТЬ ЗАНОВО, 2 раза за день! Они собирается нифига не быстро, а толку от этого немного, в Дженту теперь есть бинарные, так что можно поставить и его. Подробнее см. скриншот: какое запущно, установлено и какое обновление.
Опять же, с Дженту ты можешь собрать ядро конкретно под себя, выкинув лишнее. Видели, насколько ядро уже распухло? То-то же …
В общем, такой тонкой настройки нет больше ни у кого. Но это требует затрат временных, умственных и энергии, чтоб всё сперва изучить. потом собирать сидеть. Не думайте, что получится в тот лагерь для избранных залететь с кондачка.
-
-
actualización del #repositorio #voidlinux
https://voidrepo.theworkpc.com/ -
RE: https://fosstodon.org/@zenobit/116510007559809351
Теперь я понимаю, почему у меня не собираются некоторые пакеты локально (вручную) — плюсы #voidLinux, в данном случае, выходят боком 🙄 Но установить готовый, уже собранный пакет никто не мешает, если он доступен.
не проблема, но было не понятно и обидно, воспринималось изначально как минус, хотя это плюс, как оказалось
-
I wrote this little Bash script to help me reclaim disk space on my Void Linux system. It fully works from my testing, although I take no responsibility if this somehow breaks your system.
#!/usr/bin/env bash
set -euo pipefail
partitions=("/" "/home")
[[ "$EUID" -ne 0 ]] && echo "Run as root." && exit 1
get_used_space() {
df --output=used "${partitions[@]}" | tail -n +2 | awk '{s+=$1} END {print s}'
}
start_used=$(get_used_space)
echo "Cleaning XBPS orphans, cache, and old kernels..."
xbps-remove -yoO
[[ -x $(type -P vkpurge) ]] && vkpurge rm all
end_used=$(get_used_space)
diff=$(( start_used - end_used ))
reclaimed=$(( diff / 1024 ))
if [[ $reclaimed -le 0 ]]; then
echo "Nothing significant to clean."
else
echo "Success! Reclaimed approximately ${reclaimed}MB across ${partitions[*]}."
fi -
@wanwizard And to give you some gauge of my knowledge, I just KINDA know what Gnome is and have certainly never considered not using a default desktop GUI. No idea what XFCE is (mentioned by the guy recommending #voidlinux).
I’ve been a Mac guy since 1984 and really just expect things to work. So every Linux is painful for me, but I have needs only it will meet.
-
🚀 Repositorio para #VoidLinux
🔗 https://
voidrepo.theworkpc.com/📦 Incluye:
• Templates para xbps-src
• Paquetes .xbps listos para usar⚙️ Configuración:
/etc/xbps.d/voidrepo.conf
repository=https://
voidrepo.theworkpc.com/current/💡 Subo software que uso y no está en los repos oficiales de #Void #Linux
👀 Si a alguien le interesa, puede revisar los templates y subirlos al #GitHub oficial de Void.
🤝 Yo no uso #git, por eso no lo hago directamente.
📜 Licencia #BSD 3-Clause
🔥 Si quieren colaborar, bienvenido!
-
Poco a poco me acerco más a hacer una transición a #VoidLinux, tras años de usar OpenSuse Tumbleweed. Puede que cambie, puede que me vuelva al camaleón. Al menos probaré y, en el transcurso, aprenderé algo nuevo y diferente.
-
For looking for a #Linux distro that isn't as hard as #ArchLinux or restrictive or filled with #AI slop, I recommend #voidlinux
-
#VoidLinux #Linux (source)
595 nvidia open drivers have been merged as the default nvidia driver
https://github.com/void-linux/vpid-packages/pull/54593 -
Kann ich bestätigen, was kürzlich bei #distrowatch ("poor experience") berichtet wurde. Versuchte #d77void #mangowm edition zu installieren, aber der calamares Installer stieg mit Fehlermeldung aus.
-
Void Linux now uses NVIDIA’s open DKMS kernel modules in its main NVIDIA package, starting with the 595.xx driver series.
https://linuxiac.com/void-linux-switches-main-nvidia-package-to-open-kernel-modules/ -
CW: god what a fucking text wall. tl;dr most linux distros suck, help me choose one.
arch uses systemd (unstable, can store your age, buggy pile of shit thats hard to customise) and artix is supporting a project run by fascists (xlibre)
you know what that means, distroswap! what should i swap to. good candidates below in poll.
my computer (late 2012 mac mini) is low-power (3rd gen i7 @ 3.3ghz, 16gb ram, 256gb ssd) and all i do it browse fedi (akkoma), rip dvds (makemkv), and sometimes make music using furnace tracker
i’m automatically ruling out anything that’s not rolling-release (out of date), using systemd, is made and run by a large corporation, has a history of telemetry, (has a core portion that) isn’t (F)(L)OSS, or supporting/being a project made by fascists. i already know openrc, but i can learn new init systems. anything that requires flatpak is automatically gone as well. something being hard to install isnt that bad to me, ive installed arch manually three separate times and converted an arch installation to an artix installation.
before you suggest ageless linux, that is based on debian, which both uses systemd and is not rolling-release.
also i should add this isnt to help me choose one but to help me with the order in which i try them all
ok tags time #linux #askfedi #distroswap #systemdsucks #systemd #gentoo #gentoolinux #void #voidlinux #bsd #freebsd
-
No lo había dicho, pero hace un mes pase a usar Void Linux.
-
CW: too much tags, yes im desperate
does anyone know how to setup TPM2 pin LUKS decryption in a non-systemd system?
#linux #artix #voidlinux #gentoo #openrc #tpm #secureboot #uefi #Encryption #security
-
Nueva entrada:
Mi opinión acerca de Void Linux
https://onlykievvv.bearblog.dev/mi-opinion-acerca-de-void-linux/no duden en dejar algo de feedback!