zum anderen weil eine Software keine Politische Agenda zu verfolgen hat


Das gilt dann aber nur, wenn Linke betroffen sind? Bei GotoSocial und Vikunja sagt aber keiner was, wenn im Juni auf einmal das Logo in Regenbogenfarben auf selbst betriebenen Instanzen wechselt und die Software pro LGBTQ+ Inhalte bevorzugt/bewirbt …

Wenn du wirklich der Meinung bist, dass Software keine politische Agenda zu verfolgen hat, muss das in beide Richtungen gelten!


RE: feddit.org/post/33056249

in reply to Kromonos 🇩🇪
The media in this post is not displayed to visitors. To view it, please go to the original post.

Nur mal so als Beispiel … Hier ist politische Agenda in Software dann auf einmal in Ordnung? … Drecks heuchelei!
in reply to Kromonos 🇩🇪
The media in this post is not displayed to visitors. To view it, please go to the original post.

Da ist es auch fest im Quelltext mit drin ... Aber da schweigen die Kommunisten dann. Warum auch nicht … Ist ja die "richtige" politische Erziehung, die die Software hier machen soll. <img class=:" title=":facepalm:"/>
in reply to Roland Häder🇩🇪
@roland solange sie aktiv ausgewählt werden muss <img class=" title=":shrug:"> Bei Vikunja z.B. hat man keine Wahl. Da wird das Logo im Juni einfach mal so geändert und man muss entweder aktiv den Quelltext selbst anpassen und neu kompilieren, oder ein eigenes Logo hochladen und es aktiv in der Konfiguration setzen.
in reply to Roland Häder🇩🇪

@Kromonos 🇩🇪 Grr, bei mir will die QEMU-Instanz nicht vom USB-Stick starten:

#!/bin/sh

# This script created by AQEMU
/usr/bin/qemu-system-x86_64 \
	-machine accel=kvm \
	-m 1024 \
	-no-fd-bootchk \
	-drive file=/home/foo/.aqemu/Hub1_HDA.img \
	-hdb /dev/sde \
	-boot order=cd,menu=on \
	-net nic \
	-net user \
	-usb \
	-device usb-ehci,id=ehci \
	-device nec-usb-xhci,id=xhci \
	-rtc base=localtime \
	-name "Hub1" $*

Dies startet einen VNC-Server:

$ sudo ./hub1.sh 
WARNING: Image format was not specified for '/dev/sde' and probing guessed raw.
         Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
         Specify the 'raw' format explicitly to remove the restrictions.
VNC server running on 127.0.0.1:5900

Verbinde ich mich mit einem VNC-Viewer damit, z.B. xtigervncviewer 127.0.0.1:5900 dann sehe ich, dass QEMU nicht vom USB-Stick (/dev/sde) starten will. Ich versuche gerade herauszubekommen, woran das liegt? Boot-Reihenfolge?

in reply to Roland Häder🇩🇪

@Kromonos 🇩🇪 Habe es hinbekommen, indem ich das NetInstall-ISO heruntergladen habe und dann lokal referenziert habe:

#!/bin/sh

QEMU_HDA_IMAGE="${HOME}/.aqemu/Hub1_HDA.img"
QEMU_CDROM_IMAGE="${HOME}/Downloads/devuan_freia_7.0-202606301959_amd64_netinstall.iso"
QEMU_BIN="$(which qemu-system-x86_64)"

# This script created by AQEMU
screen -dmS hub1 "${QEMU_BIN}" \
	-machine accel=kvm \
	-m 1024 \
	-no-fd-bootchk \
	-drive file="${QEMU_HDA_IMAGE}" \
	-drive media=cdrom,file="${QEMU_CDROM_IMAGE}",readonly=on \
	-boot order=cd,menu=on \
	-net nic \
	-net user \
	-usb \
	-device usb-ehci,id=ehci \
	-device nec-usb-xhci,id=xhci \
	-rtc base=localtime \
	-name "Hub1" $*

Jetzt installiert der Installer erst mal vor sich hin, ja keim KVM oder dergleichen, meine CPU hat die benoetigte Extension nicht.