0 Mitglieder und 1 Gast betrachten dieses Thema.
Bislnag scheinen ich mit der 64bit Version weniger als 300MB zu verbrauchen.
Braucht man wirklich bei LMDE-3 mit LXDE jetzt so viel RAM Speicher? Oder ist die Angabe ein Versehen?
Reichen bei der 32 Bit Version (wie bei LMDE2) 256 MB RAM?
Hier jetzt die überarbeitete und mehrfach getestete Anleitung für das Upgrade!
mintupgrade downloadausführen…Es müssen 1.081 MB an Archiven heruntergeladen werden.Nach dieser Operation werden 1.074 MB Plattenplatz zusätzlich benutzt.Möchten Sie fortfahren? [J/n] NAbbruch.
elif command == "download": upgrader.prepare() upgrader.download() elif command == "upgrade": upgrader.prepare() upgrader.download() upgrader.upgrade()
Das Upgrade sollte dann wie folgt abbrechen:------------------------------------------------!! ERROR: Failed to install mint-info-cinnamon!! Exiting.------------------------------------------------
… self.check_command('sudo apt-get install --yes %s' % self.mint_info, "Failed to install %s" % self.mint_info) self.progress("Re-installing the meta-package for your edition of Linux Mint") self.check_command('sudo apt-get install --yes %s' % self.mint_meta, "Failed to install %s" % self.mint_meta) self.progress("Re-installing the multimedia codecs") self.check_command('sudo apt-get install --yes mint-meta-codecs', "Failed to install mint-meta-codecs") self.progress("Installing new packages") self.check_command('sudo apt-get install --yes %s' % " ".join(PACKAGES_ADDITIONS), "Failed to install additional packages.") self.progress("Removing obsolete packages") for removal in PACKAGES_REMOVALS: os.system('sudo apt-get purge --yes %s' % removal) # The return code indicates a failure if some packages were not found, so ignore it. self.progress("Performing system adjustments") os.system("sudo rm -f /etc/systemd/logind.conf") os.system("apt install --reinstall -o Dpkg::Options::=\"--force-confmiss\" systemd") os.system("sudo rm -f /etc/polkit-1/localauthority/50-local.d/com.ubuntu.enable-hibernate.pkla") if os.path.exists("/usr/share/ubuntu-system-adjustments/systemd/adjust-grub-title"): os.system("sudo /usr/share/ubuntu-system-adjustments/systemd/adjust-grub-title") elif os.path.exists("/usr/share/debian-system-adjustments/systemd/adjust-grub-title"): os.system("sudo /usr/share/debian-system-adjustments/systemd/adjust-grub-title") # Re-enable mintsystem os.system("sudo crudini --set /etc/linuxmint/mintSystem.conf global enabled True") os.system("sudo /usr/lib/linuxmint/mintsystem/mint-adjust.py") # Restore /etc/fstab if it was changed if not filecmp.cmp('/etc/fstab', BACKUP_FSTAB): os.system("cp /etc/fstab %s.upgraded" % BACKUP_FSTAB) os.system("sudo cp %s /etc/fstab" % BACKUP_FSTAB) self.warn("A package modified /etc/fstab during the upgrade. To ensure a successful boot, the upgrader restored your original /etc/fstab and saved the modified file in %d.upgraded." % BACKUP_FSTAB) self.progress("The upgrade is finished. Reboot the computer with \"sudo reboot\" when ready.")…
# self.progress("Re-installing the info-package for your edition of Linux Mint")# self.check_command('sudo apt-get install --yes %s' % self.mint_info, "Failed to install %s" % self.mint_info)# self.progress("Re-installing the meta-package for your edition of Linux Mint")# self.check_command('sudo apt-get install --yes %s' % self.mint_meta, "Failed to install %s" % self.mint_meta)
SUPPORTED_EDITIONS = ["lxde"]
sudo apt-get install --yes systemd-sysvsudo apt-get purge --yes systemd-shimsudo rm -f /etc/systemd/logind.confapt install --reinstall -o Dpkg::Options::=\"--force-confmiss\" systemdsudo rm -f /etc/polkit-1/localauthority/50-local.d/com.ubuntu.enable-hibernate.pklaif [ -f /usr/share/ubuntu-system-adjustments/systemd/adjust-grub-title ]; then sudo /usr/share/ubuntu-system-adjustments/systemd/adjust-grub-titlefiif [ -f /usr/share/debian-system-adjustments/systemd/adjust-grub-title ]; then sudo /usr/share/debian-system-adjustments/systemd/adjust-grub-titlefisudo crudini --set /etc/linuxmint/mintSystem.conf global enabled Truesudo /usr/lib/linuxmint/mintsystem/mint-adjust.py