- Bitte den Befehl "inxi -Fzxi" (ohne die Anführungszeichen) im Terminal ausführen und die Ausgabe dann hier hinein kopieren
Wenn man Kubuntu (mit Plasma Desktop) Aktualisieren will wird dafür plasma-discover verwendet und man wird bei jedem Paket Update nach dem Passwort gefragt. Man kann das so wie in Ubuntu einrichten, dass reine Aktualisierungen ohne Passwortabfrage durchgeführt werden.
Ich nutze das so weil ich gerne sehe welche Pakete aktualisiert werden - ich aber zu faul bin jedes mal mein Passwort einzugeben.
sudo nano /usr/share/polkit-1/actions/org.kubuntu.qaptworker3.policy
Diesen Block hinzufügen:
Code
<action id="org.freedesktop.packagekit.system-update">
<description>Update software</description>
<message>Update software</message>
<defaults>
<allow_inactive>no</allow_inactive>
<allow_active>yes</allow_active>
</defaults>
</action>
Es sieht dann so aus:
XML
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE policyconfig PUBLIC
"-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
"http://www.freedesktop.org/standards/PolicyKit/1.0/policyconfig.dtd">
<policyconfig>
<vendor>Kubuntu</vendor>
<vendor_url>http://www.kubuntu.org</vendor_url>
<action id="org.kubuntu.qaptworker3.updatecache">
<description>Update software sources</description>
<message>Update software sources</message>
<defaults>
<allow_inactive>no</allow_inactive>
<allow_active>yes</allow_active>
</defaults>
</action>
<action id="org.freedesktop.packagekit.system-update">
<description>Update software</description>
<message>Update software</message>
<defaults>
<allow_inactive>no</allow_inactive>
<allow_active>yes</allow_active>
</defaults>
</action>
<action id="org.kubuntu.qaptworker3.commitchanges">
<description>Install or remove packages</description>
<message>Install or remove packages</message>
<defaults>
<allow_inactive>no</allow_inactive>
<allow_active>auth_admin_keep</allow_active>
</defaults>
</action>
<action id="org.kubuntu.qaptworker3.writefiletodisk">
<description>Change system settings</description>
<message>Change system settings</message>
<defaults>
<allow_inactive>no</allow_inactive>
<allow_active>auth_admin_keep</allow_active>
</defaults>
</action>
<action id="org.kubuntu.qaptworker3.cancelforeign">
<description>Cancel the task of another user</description>
<message> To cancel someone else's software changes, you need to aut
henticate.</message>
<defaults>
<allow_any>auth_admin</allow_any>
<allow_inactive>auth_admin</allow_inactive>
<allow_active>auth_admin</allow_active>
</defaults>
</action>
</policyconfig>
Display More
Speichern mit Strg + S und beenden mit Strg + X.
(Ja das Speichern mit Strg + S ist möglich.
)