antiX-23.2 – init-diversity – 2025 remaster edition

Message
Author
ProwlerGr
Posts: 9
Joined: Fri Feb 16, 2024 9:07 pm

antiX-23.2 – init-diversity – 2025 remaster edition

#1 Post by ProwlerGr »

Main thread in antiX forum but I thought I'd post here as well

https://www.antixforum.com/forums/topic ... r-edition/

I am proud to announce the release of my antiX-23.2 - init-diversity - 2025 remaster edition which includes 6 inits (sysvinit - s6-rc - s6-66 - OpenRC - dinit - runit).

Download link:
antiX-23.2_init-diversity_2025-remaster-edition

Code: Select all

user: demo
passwd: demo
root passwd: root

A big thanks to @calciumsodium @masinick @ile from the antiX forum for testing & reporting bugs on the original 20250510 & 20250512 iso's.

A special thanks also to @eric from Obarun for providing guidance about getting 66 properly working on antiX, which in my humble opinion is the pinnacle of this respin.

From a users point of view, you will not notice much of a difference from the original spin apart from the presence of dinit & the new dialogbox GUI that I ported from runit & s6-rc - but from a developers/maintainers point of view the leap is very huge:

This release is much more than just another respin as it includes a lot personal work from myself to port various packages and scripts from upstream & other distro's.
I must mention that a lot of effort has been put to create a turnkey solution in terms of packaging the various services to handle dependencies & create the proper scripts to enable/start them.

To install from a clean antiX-23.2_x64-full.iso or antiX-23.2_386-full.iso you can use the following script & adapt to your taste

NOTE: Repo lines have changed from previous spin

Code: Select all

#!/bin/bash

[ "$UID" -eq 0 ] || exec sudo bash "$0" "$@"

echo "adding ProwlerGr init-diversity repo"
wget http://init-diversity.duckdns.org:8080/--gpg-key/init-diversity-repo.gpg -O /etc/apt/trusted.gpg.d/init-diversity-repo.gpg
echo "deb http://init-diversity.duckdns.org:8080/ init-diversity antix
deb-src http://init-diversity.duckdns.org:8080/ init-diversity antix" > /etc/apt/sources.list.d/init-diversity.list
echo "renaming runit (if it exists) for a safe upgrade"
if [ -e /sbin/runit ]; then mv /sbin/runit /sbin/runit-bak; fi
sudo apt update && sudo apt -y dist-upgrade
echo "adding sysvinit related packages"
sudo apt -y install sysvinit-init-diversity
echo "adding s6-rc related packages"
sudo apt -y install s6-rc-init-diversity s6-rc-service-connmand s6-rc-service-slimski s6-rc-dialogbox-manager
echo "adding s6-66 related packages"
sudo apt -y install s6-66-init-diversity 66-service-connmand 66-service-slimski
echo "adding dinit related packages"
sudo apt -y install dinit-init-diversity dinit-service-connmand dinit-service-slimski dinit-dialogbox-manager
echo "adding openrc related packages"
sudo apt -y install openrc-init-diversity
echo "adding development packages for compiling software from ProwlerGr repos"
sudo apt -y install build-essential git-buildpackage dh-exec lintian libexecline-dev libglib2.0-dev po4a lowdown dh-runit libaudit-dev libcap-dev libpam0g-dev meson dh-sysuser doc-base libdbus-1-dev libcryptsetup-dev libblkid-dev libmount-dev libfdisk-dev libpolkit-gobject-1-dev libfido2-dev antix23-desktop-files iso-template-init-diversity
echo "restoring runit (if it was renamed to runit-bak)"
if [ -e /sbin/runit-bak ]; then mv /sbin/runit-bak /sbin/runit; fi
echo "adding runit related packages - this is best to be done last"
sudo apt -y install runit-init-diversity runit-service-boot-module runit-service-connmand runit-service-slimski runit-service-dbus runit-service-udevd runit-service-manager

Image
Last edited by ProwlerGr on Thu May 29, 2025 6:09 pm, edited 1 time in total.

ProwlerGr
Posts: 9
Joined: Fri Feb 16, 2024 9:07 pm

Re: antiX-23.2 – init-diversity – 2025 remaster edition

#2 Post by ProwlerGr »

Changelog:

Sysvinit:
– Bumped to 3.14-4 (backported from Trixie)
– A new metapackage sysvinit-init-diversity has been introduced to allow sysvinit to be installed alongside other inits

OpenRC
– Bumped to 0.56-1 (backported from Trixie) & modified dependencies to remove conflicts with sysv-rc
– A new metapackage “openrc-init-diversity” has been introduced to allow OpenRC to be installed alongside other inits.
– Another metapackage “openrc-init” has been introduced for those who wish to use OpenRC as the sole or default init on their system (or don’t care for other inits).

Dinit:
– Bumped to 0.19.4 (built from upstream)
– A new metapackage “dinit-init-diversity” has been introduced to allow dinit to be installed alongside other inits.
– A new metapackage “dinit-init” has been introduced for those who wish to use dinit as the sole or default init on their system (or don’t care for other inits).
– A new GUI “Dinit-Dialogbox-Manager” has been developed based on dialogbox (similar to the runit-service-manager)
– A few sample services have been packaged in a manner to handle service & package dependencies.

s6-66:
– Bumped to 66 version 0.8.0.2 (built from upstream) – This is an upgrade & incompatible to the previous 0.7.0.0 version which was present in last years spin
– A new metapackage “s6-66-init-diversity” has been introduced to allow s6-66 to be installed alongside other inits.
– Metapackage “s6-66-init” is available for those who wish to use s6-66 as the sole or default init on their system (or don’t care for other inits).
– Numerous services have been packaged in a manner to handle service dependencies – package dependencies & compilations automatically with updated maintainer scripts.

s6-rc:
– Bumped to newer versions of skalibs – execline – s6 – s6-rc – s6-linux-init – s6-linux-utils – s6-portable-utils.
– A new metapackage “s6-rc-init-diversity” has been introduced to allow s6-rc to be installed alongside other inits.
– Metapackage “s6-rc-init” is available for those who wish to use s6-rc as the sole or default init on their system (or don’t care for other inits).
– The whole ecosystem has been reconfigured & therefore incompatible with last years version due to the following reasons:
– A new optimised boot-module has been created which has dropped the majority of the previous bash scripts (from sysvinit) that were present in last years spin.
– Everything now is mostly execline (which is lean & mean to steal @anticapitalista’s line)
– The s6-db-reload script has been ported from Artix & is available to handle database compilations.
– Numerous services have been packaged in a manner to handle service dependenies – package dependencies & compilations automatically with assistance of the above tool
– The s6-rc-dialogbox-manager (former s6-rc-service-manager) has been reconfigured to utilise the same tool for compilations

Runit:
– Bumped to 2.2.0-3 (backported from Trixie)
– A new metapackage “runit-init-diversity” has been introduced to allow runit to be installed alongside other inits.
– The already available “runit-init” is there for those who wish to use runit as the sole or default init on their system (or don’t care for other inits).
– A new boot module has been created allowing for runit to be run pure without reliance on sysvinit folders or scripts
– A few services have been packaged in a manner to handle service & package dependencies.

A couple of notes on runit:

I understand the packaged services weren’t necessary for antiX as @anticapitalista already includes the service files in packages.
However antiX has chosen to use post-install scripts to forcibly remove sysvinit scripts – which is very bad for a multi init system & also breaks the dpkg/apt database.

In other words if you have runit installed & you do an upgrade on a package (eg slimski as an example), the post-install script will remove the sysvinit script if it detects /sbin/runit, so you won’t be able to enable slimski for sysvinit or OpenRC.
As a workaround one should rename /sbin/runit to eg /sbin/runit-bak, do the apt upgrade or apt install & then reinstate /sbin/runit to maintain the full multi-init system.

The packaging format I have provided is my humble suggestion to the antiX developers for future runit service packaging which includes sysvinit blockers instead of removing sysvinit scripts.
Refer to post-176918 about sysv blockers under /etc/runit/override-sysv.d
These runit-service packaged scripts (with their blockers) can be either be absorbed by the main packages – or – neater to be kept separate & added as dependencies to the main packages.

User avatar
Eadwine Rose
Administrator
Posts: 14618
Joined: Wed Jul 12, 2006 2:10 am

Re: antiX-23.2 – init-diversity – 2025 remaster edition

#3 Post by Eadwine Rose »

Please be mindful of image sizes as per the forum rules. Thanks.
MX-23.6_x64 July 31 2023 * 6.1.0-37amd64 ext4 Xfce 4.20.0 * 8-core AMD Ryzen 7 2700
Asus TUF B450-Plus Gaming UEFI * Asus GTX 1050 Ti Nvidia 535.247.01 * 2x16Gb DDR4 2666 Kingston HyperX Predator
Samsung 870EVO * Samsung S24D330 & P2250 * HP Envy 5030

User avatar
oops
Posts: 1913
Joined: Tue Apr 10, 2018 5:07 pm

Re: antiX-23.2 – init-diversity – 2025 remaster edition

#4 Post by oops »

Nice ... I like the concept.
Pour les nouveaux utilisateurs: Alt+F1 pour le manuel, ou FAQS, MX MANUEL, et Conseils Debian - Info. système “quick-system-info-mx” (QSI) ... Ici: System: MX-19_x64 & antiX19_x32

User avatar
rokytnji.1
Global Moderator
Posts: 828
Joined: Sun Apr 13, 2014 9:06 pm

Re: antiX-23.2 – init-diversity – 2025 remaster edition

#5 Post by rokytnji.1 »

On open-rc today .\

Code: Select all

harry@init-diversity:~
$ ps ax | head -2; sudo ps_mem.py; inxi -zv8
  PID TTY      STAT   TIME COMMAND
    1 ?        S      0:00 /lib/openrc/openrc-init
[sudo] password for harry: 
 Private  +   Shared  =  RAM used	Program

152.0 KiB +  41.5 KiB = 193.5 KiB	seatd
196.0 KiB +  20.5 KiB = 216.5 KiB	gpm
300.0 KiB +  35.5 KiB = 335.5 KiB	acpid
304.0 KiB +  41.5 KiB = 345.5 KiB	openrc-init
288.0 KiB +  59.5 KiB = 347.5 KiB	cron
260.0 KiB + 156.5 KiB = 416.5 KiB	startup
364.0 KiB + 115.5 KiB = 479.5 KiB	dbus-launch
376.0 KiB + 122.5 KiB = 498.5 KiB	icewm-session
356.0 KiB + 159.5 KiB = 515.5 KiB	udevil
440.0 KiB + 108.5 KiB = 548.5 KiB	rpc.statd
520.0 KiB +  40.5 KiB = 560.5 KiB	rpc.idmapd
476.0 KiB + 105.5 KiB = 581.5 KiB	rpcbind
164.0 KiB + 539.0 KiB = 703.0 KiB	saned (2)
504.0 KiB + 425.0 KiB = 929.0 KiB	avahi-daemon (2)
648.0 KiB + 287.5 KiB = 935.5 KiB	devmon
816.0 KiB + 278.5 KiB =   1.1 MiB	desktop-session
912.0 KiB + 290.0 KiB =   1.2 MiB	dbus-daemon (2)
744.0 KiB + 660.5 KiB =   1.4 MiB	at-spi-bus-launcher
  1.6 MiB +  24.5 KiB =   1.7 MiB	sshd
  1.7 MiB +  31.5 KiB =   1.7 MiB	smartd
968.0 KiB + 778.0 KiB =   1.7 MiB	sudo (2)
  1.8 MiB + 120.5 KiB =   2.0 MiB	connmand
  1.9 MiB + 214.5 KiB =   2.1 MiB	bluetoothd
  2.1 MiB + 675.5 KiB =   2.8 MiB	pipewire-pulse
  2.5 MiB + 733.5 KiB =   3.2 MiB	cupsd
  3.2 MiB +  25.5 KiB =   3.3 MiB	udevd
  3.1 MiB + 783.0 KiB =   3.9 MiB	bash (2)
  4.1 MiB + 589.5 KiB =   4.7 MiB	slimski
  4.2 MiB + 484.5 KiB =   4.7 MiB	conky
  5.2 MiB +  15.5 KiB =   5.2 MiB	haveged
  5.4 MiB +   1.1 MiB =   6.5 MiB	pipewire
  3.7 MiB +   3.6 MiB =   7.3 MiB	volumeicon
  6.8 MiB + 640.5 KiB =   7.4 MiB	wpa_supplicant
  6.3 MiB +   1.5 MiB =   7.8 MiB	icewm
 10.1 MiB +   1.3 MiB =  11.5 MiB	xmms (2)
 11.9 MiB +   1.5 MiB =  13.4 MiB	wireplumber
 12.8 MiB +   4.0 MiB =  16.8 MiB	roxterm
 54.8 MiB +  23.8 MiB =  78.6 MiB	Xorg
669.4 MiB + 136.3 MiB = 805.7 MiB	firefox-esr (10)
---------------------------------
                          1.0 GiB
=================================
System:
  Kernel: 6.1.105-antix.1-amd64-smp arch: x86_64 bits: 64 compiler: gcc
    v: 12.2.0 clocksource: tsc avail: hpet,acpi_pm
    parameters: BOOT_IMAGE=/boot/vmlinuz-6.1.105-antix.1-amd64-smp
    root=UUID=3da523f6-9642-43cc-bb75-6f111decb8f2 ro quiet selinux=0
    init=/lib/openrc/openrc-init
  Desktop: IceWM v: 3.7.4 tools: avail: slock,xlock dm: slimski v: 1.5.0
    Distro: antiX-23.2_x64 May 25 2025 base: Debian GNU/Linux 12 (bookworm)
Machine:
  Type: Laptop System: Dell product: Latitude E4310 v: 0001
    serial: <superuser required> Chassis: type: 9 serial: <superuser required>
  Mobo: Dell model: 0T6M8G v: A01 serial: <superuser required>
    uuid: <superuser required> BIOS: Dell v: A03 date: 07/08/2010
Battery:
  ID-1: BAT0 charge: 24.7 Wh (72.2%) condition: 34.2/48.8 Wh (70.0%)
    volts: 11.2 min: 11.1 model: Samsung SDI DELL RM6618A type: Li-ion
    serial: N/A status: discharging
Memory:
  System RAM: total: 8 GiB available: 7.69 GiB used: 1.17 GiB (15.2%)
  Message: For most reliable report, use superuser + dmidecode.
  Array-1: capacity: 8 GiB slots: 2 modules: 2 EC: None
    max-module-size: 4 GiB note: est.
  Device-1: DIMM_A type: DDR3 detail: synchronous size: 4 GiB
    speed: 1067 MT/s volts: N/A width (bits): data: 64 total: 64
    manufacturer: SK-Hynix part-no: HMT351S6BFR8C-H9 serial: <filter>
  Device-2: DIMM_B type: DDR3 detail: synchronous size: 4 GiB
    speed: 1067 MT/s volts: N/A width (bits): data: 64 total: 64
    manufacturer: SK-Hynix part-no: HMT351S6CFR8C-H9 serial: <filter>
PCI Slots:
  Permissions: Unable to run dmidecode. Root privileges required.
CPU:
  Info: model: Intel Core i5 M 520 bits: 64 type: MT MCP arch: Westmere
    gen: core 1 level: v2 built: 2010-11 process: Intel 32nm family: 6
    model-id: 0x25 (37) stepping: 5 microcode: 0x7
  Topology: cpus: 1x dies: 1 clusters: 2 cores: 2 threads: 4 tpc: 2
    smt: enabled cache: L1: 128 KiB desc: d-2x32 KiB; i-2x32 KiB L2: 512 KiB
    desc: 2x256 KiB L3: 3 MiB desc: 1x3 MiB
  Speed (MHz): avg: 1417 min/max: 1199/2400 boost: enabled scaling:
    driver: acpi-cpufreq governor: schedutil cores: 1: 1417 2: 1417 3: 1417
    4: 1417 bogomips: 19150
  Flags: acpi aes aperfmperf apic arat arch_perfmon bts clflush cmov
    constant_tsc cpuid cx16 cx8 de ds_cpl dtes64 dtherm dts ept est
    flexpriority flush_l1d fpu fxsr ht ibpb ibrs ida lahf_lm lm mca mce mmx
    monitor msr mtrr nonstop_tsc nopl nx pae pat pbe pcid pclmulqdq pdcm pebs
    pge pni popcnt pse pse36 pti rdtscp rep_good sep smx ssbd sse sse2 sse4_1
    sse4_2 ssse3 stibp syscall tm tm2 tpr_shadow tsc vme vmx vnmi vpid
    xtopology xtpr
  Vulnerabilities:
  Type: gather_data_sampling status: Not affected
  Type: itlb_multihit status: KVM: VMX disabled
  Type: l1tf mitigation: PTE Inversion; VMX: conditional cache flushes, SMT
    vulnerable
  Type: mds status: Vulnerable: Clear CPU buffers attempted, no microcode;
    SMT vulnerable
  Type: meltdown mitigation: PTI
  Type: mmio_stale_data status: Unknown: No mitigations
  Type: reg_file_data_sampling status: Not affected
  Type: retbleed status: Not affected
  Type: spec_rstack_overflow status: Not affected
  Type: spec_store_bypass mitigation: Speculative Store Bypass disabled via
    prctl
  Type: spectre_v1 mitigation: usercopy/swapgs barriers and __user pointer
    sanitization
  Type: spectre_v2 mitigation: Retpolines; IBPB: conditional; IBRS_FW;
    STIBP: conditional; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not
    affected
  Type: srbds status: Not affected
  Type: tsx_async_abort status: Not affected
Graphics:
  Device-1: Intel Core Processor Integrated Graphics vendor: Dell driver: i915
    v: kernel arch: Gen-5.75 process: Intel 45nm built: 2010 ports:
    active: eDP-1 empty: DP-1, DP-2, HDMI-A-1, HDMI-A-2, VGA-1 bus-ID: 00:02.0
    chip-ID: 8086:0046 class-ID: 0300
  Display: server: X.Org v: 1.21.1.7 driver: X: loaded: intel dri: crocus
    gpu: i915 display-ID: :0.0 screens: 1
  Screen-1: 0 s-res: 1366x768 s-dpi: 96 s-size: 361x203mm (14.21x7.99")
    s-diag: 414mm (16.31")
  Monitor-1: eDP-1 mapped: eDP1 model: Seiko Epson 0x5441 built: 2010
    res: 1366x768 hz: 60 dpi: 118 gamma: 1.2 chroma: red: x: 0.592 y: 0.349
    green: x: 0.322 y: 0.537 blue: x: 0.153 y: 0.114 white: x: 0.314 y: 0.329
    size: 293x165mm (11.54x6.5") diag: 336mm (13.2") ratio: 16:9
    modes: 1366x768
  EDID-Warnings: 1: parse_edid: unknown flag 0
  API: EGL v: 1.5 hw: drv: intel crocus platforms: device: 0 drv: crocus
    device: 1 drv: swrast gbm: drv: crocus surfaceless: drv: crocus x11:
    drv: crocus inactive: wayland
  API: OpenGL v: 2.1 vendor: intel mesa v: 22.3.6 glx-v: 1.4 es-v: 2.0
    direct-render: yes renderer: Mesa Intel HD Graphics (ILK)
    device-ID: 8086:0046 memory: 1.46 GiB unified: yes
Audio:
  Device-1: Intel 5 Series/3400 Series High Definition Audio vendor: Dell 5
    driver: snd_hda_intel v: kernel bus-ID: 00:1b.0 chip-ID: 8086:3b57
    class-ID: 0403
  API: ALSA v: k6.1.105-antix.1-amd64-smp status: kernel-api with: apulse
    type: pulse-emulator tools: alsactl,alsamixer,amixer
  Server-1: PipeWire v: 1.2.7 status: active with: 1: pipewire-pulse
    status: active 2: wireplumber status: active 3: pipewire-alsa type: plugin
    4: pw-jack type: plugin tools: pw-cat,pw-cli,wpctl
Network:
  Device-1: Intel 82577LM Gigabit Network vendor: Dell driver: e1000e
    v: kernel port: 6040 bus-ID: 00:19.0 chip-ID: 8086:10ea class-ID: 0200
  IF: eth0 state: down mac: <filter>
  Device-2: Intel Centrino Advanced-N 6200 driver: iwlwifi v: kernel
    modules: wl pcie: gen: 1 speed: 2.5 GT/s lanes: 1 bus-ID: 02:00.0
    chip-ID: 8086:422c class-ID: 0280
  IF: wlan0 state: up mac: <filter>
  IP v4: <filter> scope: global broadcast: <filter>
  IP v6: <filter> scope: link
  Info: services: mld,sshd,wpa_supplicant
  WAN IP: <filter>
Bluetooth:
  Message: No bluetooth data found.
Logical:
  Message: No logical block device data found.
RAID:
  Hardware-1: Intel 82801 Mobile SATA Controller [RAID mode] driver: ahci
    v: 3.0 port: 6020 bus-ID: 00:1f.2 chip-ID: 8086:282a rev: N/A class-ID: 0104
Drives:
  Local Storage: total: 298.09 GiB used: 11.75 GiB (3.9%)
  SMART Message: Unable to run smartctl. Root privileges required.
  ID-1: /dev/sda maj-min: 8:0 vendor: Seagate model: ST320LT007-9ZV142
    size: 298.09 GiB block-size: physical: 4096 B logical: 512 B speed: 3.0 Gb/s
    tech: HDD rpm: 7242 serial: <filter> fw-rev: LVM1 scheme: MBR
  Optical-1: /dev/sr0 vendor: TSSTcorp model: DVD+-RW TS-U633F rev: D500
    dev-links: cdrom,cdrw,dvd,dvdrw
  Features: speed: 24 multisession: yes audio: yes dvd: yes
    rw: cd-r,cd-rw,dvd-r,dvd-ram state: running
Partition:
  ID-1: / raw-size: 200.43 GiB size: 196.23 GiB (97.90%)
    used: 11.75 GiB (6.0%) fs: ext4 dev: /dev/sda3 maj-min: 8:3
    label: rootinit-diversi uuid: 3da523f6-9642-43cc-bb75-6f111decb8f2
Swap:
  Kernel: swappiness: 10 (default 60) cache-pressure: 50 (default 100)
    zswap: no
  ID-1: swap-1 type: file size: 4.17 GiB used: 0 KiB (0.0%) priority: -2
    file: /swap/swap
Unmounted:
  ID-1: /dev/sda1 maj-min: 8:1 size: 97.66 GiB fs: ext4 label: /data
    uuid: 3a55303c-e9f9-46fa-a3a3-2f239607ebcf
USB:
  Hub-1: 1-0:1 info: full speed or root hub ports: 3 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
    class-ID: 0900
  Hub-2: 1-1:2 info: Intel Integrated Rate Matching Hub ports: 6 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 8087:0020
    class-ID: 0900
  Hub-3: 2-0:1 info: full speed or root hub ports: 3 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
    class-ID: 0900
  Hub-4: 2-1:2 info: Intel Integrated Rate Matching Hub ports: 8 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 8087:0020
    class-ID: 0900
  Device-1: 2-1.8:4 info: Broadcom BCM5880 Secure Applications Processor
    with fingerprint swipe sensor type: smart card driver: N/A interfaces: 2
    rev: 1.1 speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 100mA
    chip-ID: 0a5c:5801 class-ID: 0b00 serial: <filter>
Sensors:
  System Temperatures: cpu: 57.0 C mobo: N/A sodimm: SODIMM C
  Fan Speeds (rpm): cpu: 3064
Repos:
  Packages: pm: dpkg pkgs: 2032 libs: 1009
    tools: apt,apt-get,aptitude,synaptic
  Active apt repos in: /etc/apt/sources.list.d/antix.list
    1: deb [signed-by=/etc/apt/keyrings/antix-archive-keyring.gpg] http://mirror.math.princeton.edu/pub/mxlinux/antix/bookworm bookworm main nonfree nosystemd
  Active apt repos in: /etc/apt/sources.list.d/bookworm-backports.list
    1: deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware
  Active apt repos in: /etc/apt/sources.list.d/debian-stable-updates.list
    1: deb http://ftp.us.debian.org/debian/ bookworm-updates main contrib non-free non-free-firmware
  Active apt repos in: /etc/apt/sources.list.d/debian.list
    1: deb http://ftp.us.debian.org/debian/ bookworm main contrib non-free non-free-firmware
    2: deb http://security.debian.org/ bookworm-security main contrib non-free non-free-firmware
  Active apt repos in: /etc/apt/sources.list.d/init-diversity.list
    1: deb http://init-diversity.duckdns.org:8080/ init-diversity antix
    2: deb-src http://init-diversity.duckdns.org:8080/ init-diversity antix
  No active apt repos in: /etc/apt/sources.list.d/librewolf.list
  No active apt repos in: /etc/apt/sources.list.d/liquorix.list
Processes:
  CPU top: 5 of 154
  1: cpu: 34.5% command: firefox-esr pid: 3529 mem: 508.6 MiB (6.4%)
  2: cpu: 5.8% command: firefox-esr pid: 3737 mem: 162.1 MiB (2.0%)
  3: cpu: 3.3% command: Xorg pid: 2721 mem: 109.3 MiB (1.3%)
  4: cpu: 3.3% command: firefox-esr pid: 5216 mem: 221.6 MiB (2.8%)
  5: cpu: 0.6% command: xmms pid: 6184 mem: 17.7 MiB (0.2%)
  Memory top: 5 of 154
  1: mem: 508.6 MiB (6.4%) command: firefox-esr pid: 3529 cpu: 34.5%
  2: mem: 221.6 MiB (2.8%) command: firefox-esr pid: 5216 cpu: 3.3%
  3: mem: 162.1 MiB (2.0%) command: firefox-esr pid: 3737 cpu: 5.8%
  4: mem: 124.1 MiB (1.5%) command: firefox-esr pid: 3662 cpu: 0.3%
  5: mem: 109.3 MiB (1.3%) command: Xorg pid: 2721 cpu: 3.3%
Info:
  Processes: 154 Power: uptime: 31m states: freeze,mem,disk suspend: deep
    avail: s2idle wakeups: 0 hibernate: platform avail: shutdown, reboot,
    suspend, test_resume image: 3.05 GiB Init: SysVinit v: 3.14 rc: OpenRC
    v: 0.56 runlevel: default default: 2 tool: rc-service
  Compilers: gcc: 12.2.0 Shell: Bash v: 5.2.15 running-in: roxterm
    inxi: 3.3.36
harry@init-diversity:~
$ 

Post Reply

Return to “antiX”