"NetworkManager is not running/Networking disabled" after update
"NetworkManager is not running/Networking disabled" after update
Hello,
I recently installed gcc10 and also cmake 3.16.
After this I rebooted and since then I get "NetworkManager is not running" when I over the Network manager icon.
I have done the following: sudo service networking start
I get: [ ok ]Configuring network interfaces in background... done.
And that when I hover the Network Manager icon I get: Networking disable.
I've tried googling for this but I only find WIFI related stuf.
How can I fix this? Before this big update I did do get gcc10 everything was working fine.
I recently installed gcc10 and also cmake 3.16.
After this I rebooted and since then I get "NetworkManager is not running" when I over the Network manager icon.
I have done the following: sudo service networking start
I get: [ ok ]Configuring network interfaces in background... done.
And that when I hover the Network Manager icon I get: Networking disable.
I've tried googling for this but I only find WIFI related stuf.
How can I fix this? Before this big update I did do get gcc10 everything was working fine.
- dolphin_oracle
- Developer
- Posts: 22431
- Joined: Sun Dec 16, 2007 12:17 pm
Re: "NetworkManager is not running/Networking disabled" after update
I presume you did a absolutely huge "update" from bullseye.
it more than likely broke some things in sysVinit when you did.
it is very possible the init script has been disabled. you can try
and see if that fixes anything. it won't if the /etc/NetworkManager script is missing.
other wise you can try putting
in your /etc/rc.local file.
issues like this are why we don't support direct updates between major debian releases.
it more than likely broke some things in sysVinit when you did.
it is very possible the init script has been disabled. you can try
Code: Select all
sudo update-rc.d network-manager defaults
other wise you can try putting
Code: Select all
/sbin/NetworkManager
issues like this are why we don't support direct updates between major debian releases.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
Re: "NetworkManager is not running/Networking disabled" after update
YES!!
Running /sbin/NetworkManager worked.
I did get an error when I tried running: sudo update-rc.d network-manager defaults
I got: update-rc.d: error: initscript does not exist: /etc/init.d/network-manager <-- is this bad?
Running /sbin/NetworkManager worked.
I did get an error when I tried running: sudo update-rc.d network-manager defaults
I got: update-rc.d: error: initscript does not exist: /etc/init.d/network-manager <-- is this bad?
- dolphin_oracle
- Developer
- Posts: 22431
- Joined: Sun Dec 16, 2007 12:17 pm
Re: "NetworkManager is not running/Networking disabled" after update
it means you have the bullseye edition of network-manager. They removed the init script in bullseye. I actually wondered if an update would remove the script or not, it shouldn't have, but I guess their update is aggressive.
they aren't done either. I found that many init scripts get disabled out right in debian bullseye because they have neutered an app called "start-stop-daemon" that a lot of init scripts used.
everything will probably work if you switch to systemd booting. probably.
they aren't done either. I found that many init scripts get disabled out right in debian bullseye because they have neutered an app called "start-stop-daemon" that a lot of init scripts used.
everything will probably work if you switch to systemd booting. probably.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
Re: "NetworkManager is not running/Networking disabled" after update
I didn't know I switched anything.
How can I switch to that?
How can I switch to that?
- dolphin_oracle
- Developer
- Posts: 22431
- Joined: Sun Dec 16, 2007 12:17 pm
Re: "NetworkManager is not running/Networking disabled" after update
it probably happened when you installed gcc10.
updating one of the core components of debian linux is not for the faint of heart.
will show what all got updated.
updating one of the core components of debian linux is not for the faint of heart.
Code: Select all
apt-history
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
Re: "NetworkManager is not running/Networking disabled" after update
This is what I get when I try that out:
root@mx:~# apt-history
bash: apt-history: command not found
root@mx:~# apt history
E: Invalid operation history
root@mx:~#
- dolphin_oracle
- Developer
- Posts: 22431
- Joined: Sun Dec 16, 2007 12:17 pm
Re: "NetworkManager is not running/Networking disabled" after update
oh, right, debian removes python2, so apt-notifier (the parent package for apt-history) is probably gone too.... its in the middle of being updated for python3 now, but its not available yet.
you can try opening /var/log/apt/history.log in a text editor.
**edit* good info here are package update logs. https://www.linuxuprising.com/2019/01/h ... alled.html
you can try opening /var/log/apt/history.log in a text editor.
**edit* good info here are package update logs. https://www.linuxuprising.com/2019/01/h ... alled.html
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
Re: "NetworkManager is not running/Networking disabled" after update
Here is what I updated:
So is the final solution to fix this issue to add "/sbin/NetworkManager" to "/etc/rc.local"
I don't know how to switch to systemd booting.
Code: Select all
Start-Date: 2021-02-17 19:27:48
Commandline: apt install gcc
Requested-By: acs (1000)
Install: libx265-192:amd64 (3.4-2, automatic), libqpdf28:amd64 (10.1.0-1, automatic), librabbitmq4:amd64 (0.10.0-1, automatic), gir1.2-nm-1.0:amd64 (1.28.0-2+b1, automatic), liblist-moreutils-xs-perl:amd64 (0.430-2, automatic), libpython3.9-minimal:amd64 (3.9.1-4, automatic), python3-xapian:amd64 (1.4.18-1, automatic), libpython3.9-stdlib:amd64 (3.9.1-4, automatic), gcc-10-base:i386 (10.2.1-6, automatic), libraw20:amd64 (0.20.2-1, automatic), libpocketsphinx3:amd64 (0.8+5prealpha+1-13, automatic), libcdio19:amd64 (2.1.0-2, automatic), libicu67:amd64 (67.1-6, automatic), perl-modules-5.32:amd64 (5.32.1-2, automatic), libpython3.9:amd64 (3.9.1-4, automatic), python3.9:amd64 (3.9.1-4, automatic), libextutils-pkgconfig-perl:amd64 (1.16-1.1, automatic), libmozjs-78-0:amd64 (78.4.0-2, automatic), libmpdec3:amd64 (2.5.1-1, automatic), libapt-pkg6.0:amd64 (2.1.20, automatic), libvpx6:amd64 (1.9.0-1, automatic), libcrypt1:amd64 (1:4.4.17-1, automatic), libcrypt1:i386 (1:4.4.17-1, automatic), libusbmuxd6:amd64 (2.0.2-3, automatic), system-keyboard-qt:amd64 (21.02.02, automatic), libperl5.32:amd64 (5.32.1-2, automatic), libmd4c0:amd64 (0.4.7-1, automatic), libsnmp40:amd64 (5.9+dfsg-3+b1, automatic), libx264-160:amd64 (2:0.160.3011+gitcde9a93-2+b2, automatic), python3.9-minimal:amd64 (3.9.1-4, automatic), libqt5qmlmodels5:amd64 (5.15.2+dfsg-4, automatic), libxxhash0:amd64 (0.8.0-2, automatic), pkg-config:amd64 (0.29.2-1, automatic), libilmbase25:amd64 (2.5.4-1, automatic), libmypaint-1.5-1:amd64 (1.6.0-2, automatic), python3-pyqt5.sip:amd64 (12.8.1-1+b2, automatic), libhogweed6:amd64 (3.6-2, automatic), qt5-style-plugin-cleanlooks:amd64 (5.0.0+git23.g335dbec-4+b3, automatic), libreadline8:amd64 (8.1-1, automatic), libopenexr25:amd64 (2.5.4-1, automatic), libmysofa1:amd64 (1.2~dfsg0-1, automatic), qt5-gtk2-platformtheme:amd64 (5.0.0+git23.g335dbec-4+b3, automatic), libgcc-s1:i386 (10.2.1-6, automatic), gir1.2-ayatanaappindicator3-0.1:amd64 (0.5.5-2, automatic), libnettle8:amd64 (3.6-2, automatic), libnsl2:amd64 (1.3.0-2, automatic), libmfx1:amd64 (21.1.0-1, automatic), libcodec2-0.9:amd64 (0.9.2-4, automatic), libffi7:amd64 (3.3-5, automatic), qt5-style-plugin-plastique:amd64 (5.0.0+git23.g335dbec-4+b3, automatic), ocl-icd-libopencl1:amd64 (2.2.14-2, automatic), libextutils-depends-perl:amd64 (0.8000-1, automatic), libjson-c5:amd64 (0.15-2, automatic), libgdk-pixbuf-xlib-2.0-0:amd64 (2.40.2-2, automatic), qt5-style-plugin-motif:amd64 (5.0.0+git23.g335dbec-4+b3, automatic), libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1, automatic), libxcb-xinput0:amd64 (1.14-3, automatic), libsphinxbase3:amd64 (0.8+5prealpha+1-12, automatic), libsrt1.4-gnutls:amd64 (1.4.2-1.3, automatic), libdouble-conversion3:amd64 (3.1.5-6.1, automatic)
Upgrade: libjson-glib-1.0-0:amd64 (1.4.4-2, 1.6.0-3), manpages:amd64 (4.16-2, 5.10-1), perl-base:amd64 (5.28.1-6+deb10u1, 5.32.1-2), libossp-uuid-perl:amd64 (1.6.2-1.5+b7, 1.6.2-1.5+b9), network-manager-pptp:amd64 (1.2.8-2, 1.2.8-3+b2), hplip-data:amd64 (3.19.6+dfsg0-1~mx19+1, 3.20.11+dfsg0-2), qt5-style-plugins:amd64 (5.0.0+git23.g335dbec-2+b17, 5.0.0+git23.g335dbec-4+b3), libavformat58:amd64 (7:4.1.6-1~mx19+2, 7:4.3.1-8), libsnappy1v5:amd64 (1.1.7-1, 1.1.8-1), libb-hooks-op-check-perl:amd64 (0.22-1+b1, 0.22-1+b3), libavfilter7:amd64 (7:4.1.6-1~mx19+2, 7:4.3.1-8), libqt5svg5:amd64 (5.11.3-2, 5.15.2-2), libplist3:amd64 (2.0.1~git20190104.3f96731-1, 2.2.0-6), libcups2:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), libnih-dbus1:amd64 (1.0.3-10+b2, 1.0.3-11), libqt5test5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), python3-distutils:amd64 (3.7.3-1, 3.9.1-2), libnet-ssleay-perl:amd64 (1.85-2+b1, 1.88-3+b1), liblist-moreutils-perl:amd64 (0.416-1+b4, 0.430-2), libxapian30:amd64 (1.4.11-1, 1.4.18-1), gvfs-bin:amd64 (1.38.1-5, 1.46.2-1), qt5-gtk-platformtheme:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), printer-driver-hpcups:amd64 (3.19.6+dfsg0-1~mx19+1, 3.20.11+dfsg0-2), libdw1:amd64 (0.176-1.1, 0.182+20210205-1), libgirepository-1.0-1:amd64 (1.58.3-2, 1.66.1-1+b1), libimage-magick-q16-perl:amd64 (8:6.9.10.23+dfsg-2.1+deb10u1, 8:6.9.11.60+dfsg-1), apt-xapian-index:amd64 (0.49, 0.52), libgdk-pixbuf2.0-0:amd64 (2.38.1+dfsg-1, 2.40.2-2), libqt5help5:amd64 (5.11.3-4, 5.15.2-3), onboard-common:amd64 (1.4.1-4, 1.4.1-5), libgnutls-openssl27:amd64 (3.6.7-4+deb10u6, 3.7.0-5), libswresample3:amd64 (7:4.1.6-1~mx19+2, 7:4.3.1-8), libwbclient0:amd64 (2:4.9.5+dfsg-5+deb10u1, 2:4.13.4+dfsg-1), libqt5sensors5:amd64 (5.11.3-2, 5.15.2-2), libgegl-0.4-0:amd64 (0.4.16-0.1~mx19+1, 1:0.4.26-2), onboard:amd64 (1.4.1-4+b1, 1.4.1-5+b3), libgjs0g:amd64 (1.54.3-1, 1.66.2-1), libxkbfile1:amd64 (1:1.0.9-2+b11, 1:1.1.0-1), libmount1:amd64 (2.33.1-0.1, 2.36.1-6), libdevel-callchecker-perl:amd64 (0.008-1, 0.008-1+b2), libelf1:amd64 (0.176-1.1, 0.182+20210205-1), cpp:amd64 (4:8.3.0-1, 4:10.2.1-1), python3-reportlab-accel:amd64 (3.5.13-1+deb10u1, 3.5.59-1), zlib1g:amd64 (1:1.2.11.dfsg-1, 1:1.2.11.dfsg-2), libgegl-common:amd64 (0.4.16-0.1~mx19+1, 1:0.4.26-2), libtirpc-common:amd64 (1.1.4-0.4, 1.3.1-1), python3-gi-cairo:amd64 (3.30.4-1, 3.38.0-2), libbit-vector-perl:amd64 (7.4-1+b5, 7.4-1+b7), libimage-sane-perl:amd64 (0.14-1+b3, 5-1+b1), libqt5dbus5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), libfilesys-df-perl:amd64 (0.92-6+b4, 0.92-6+b6), python3-pyqt5:amd64 (5.11.3+dfsg-1+b3, 5.15.2+dfsg-3), libqt5sql5-sqlite:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), libcdio-cdda2:amd64 (10.2+0.94+2-4, 10.2+2.0.0-1+b2), python3-pil:amd64 (5.4.1-2+deb10u2, 8.1.0-1), libgdata22:amd64 (0.17.9-3, 0.17.13-3), libc6:amd64 (2.28-10, 2.31-9), libc6:i386 (2.28-10, 2.31-9), gimp-data:amd64 (2.10.12-0.1~mx19+1, 2.10.22-2), gcc:amd64 (4:8.3.0-1, 4:10.2.1-1), liblocale-gettext-perl:amd64 (1.07-3+b4, 1.07-4+b1), libqt5widgets5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), python3:amd64 (3.7.3-1, 3.9.1-1), locales:amd64 (2.28-10, 2.31-9), cups-server-common:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), libnm0:amd64 (1.14.6-2+deb10u1, 1.28.0-2+b1), python3-psutil:amd64 (5.5.1-1, 5.8.0-1), python3-sip:amd64 (4.19.14+dfsg-2, 4.19.24+dfsg-2), gsettings-desktop-schemas:amd64 (3.28.1-1, 3.38.0-2), libcurses-perl:amd64 (1.36-1+b5, 1.37-1+b1), cups-common:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), network-manager:amd64 (1.14.6-2+deb10u1, 1.28.0-2+b1), libterm-readkey-perl:amd64 (2.38-1, 2.38-1+b2), p11-kit-modules:amd64 (0.23.15-2+deb10u1, 0.23.22-1), libx11-6:amd64 (2:1.6.7-1+deb10u1, 2:1.7.0-2), librubberband2:amd64 (1.8.1-7, 1.9.0-1), libpostproc55:amd64 (7:4.1.6-1~mx19+2, 7:4.3.1-8), python3-cups:amd64 (1.9.73-2+b1, 2.0.1-4+b1), libtalloc2:amd64 (2.1.14-2, 2.3.1-2+b1), libqt5xml5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), libqt5printsupport5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), libqt5qml5:amd64 (5.11.3-4, 5.15.2+dfsg-4), libcairo-perl:amd64 (1.106-3+b1, 1.109-1), mx-installer:amd64 (21.2, 21.2.01), libcdio-paranoia2:amd64 (10.2+0.94+2-4, 10.2+2.0.0-1+b2), gimp:amd64 (2.10.12-0.1~mx19+1, 2.10.22-2), libc-l10n:amd64 (2.28-10, 2.31-9), libparams-classify-perl:amd64 (0.015-1+b1, 0.015-1+b3), libqt5gui5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), ppp:amd64 (2.4.7-2+4.1+deb10u1, 2.4.9-1+1), libva2:amd64 (2.4.0-1, 2.10.0-1), python3-minimal:amd64 (3.7.3-1, 3.9.1-1), gvfs-libs:amd64 (1.38.1-5, 1.46.2-1), blueman:amd64 (2.0.8-1+deb10u1, 2.1.4-1+b1), libc-bin:amd64 (2.28-10, 2.31-9), libqt5webchannel5:amd64 (5.11.3-2, 5.15.2-2), libimobiledevice6:amd64 (1.2.1~git20181030.92c5462-2+deb10u1, 1.3.0-6), python3-evdev:amd64 (1.1.2+dfsg-1+b10, 1.4.0+dfsg-1), hplip:amd64 (3.19.6+dfsg0-1~mx19+1, 3.20.11+dfsg0-2), libnih1:amd64 (1.0.3-10+b2, 1.0.3-11), libnewt0.52:amd64 (0.52.20-8, 0.52.21-4+b3), libnet-dbus-perl:amd64 (1.1.0-5+b1, 1.2.0-1+b1), libpython3-stdlib:amd64 (3.7.3-1, 3.9.1-1), libbabl-0.1-0:amd64 (0.1.66-0.1~mx19+1, 1:0.1.82-1), libhpmud0:amd64 (3.19.6+dfsg0-1~mx19+1, 3.20.11+dfsg0-2), samba-common:amd64 (2:4.9.5+dfsg-5+deb10u1, 2:4.13.4+dfsg-1), libtirpc3:amd64 (1.1.4-0.4, 1.3.1-1), libavcodec58:amd64 (7:4.1.6-1~mx19+2, 7:4.3.1-8), libqt5webkit5:amd64 (5.212.0~alpha2-21, 5.212.0~alpha4-11), libglib2.0-bin:amd64 (2.58.3-2+deb10u2, 2.66.7-1), libselinux1:amd64 (2.8-1+b1, 3.1-2+b2), libjson-glib-1.0-common:amd64 (1.4.4-2, 1.6.0-3), libavutil56:amd64 (7:4.1.6-1~mx19+2, 7:4.3.1-8), python3-lib2to3:amd64 (3.7.3-1, 3.9.1-2), libqt5core5a:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), libglib-perl:amd64 (3:1.329-1, 3:1.329.3-1+b1), libwebpmux3:amd64 (0.6.1-2, 0.6.1-2+b1), libswscale5:amd64 (7:4.1.6-1~mx19+2, 7:4.3.1-8), libgdk-pixbuf2.0-common:amd64 (2.38.1+dfsg-1, 2.42.2+dfsg-1), libsdl2-2.0-0:amd64 (2.0.9+dfsg1-1, 2.0.14+dfsg2-3), printer-driver-hpijs:amd64 (3.19.6+dfsg0-1~mx19+1, 3.20.11+dfsg0-2), libtdb1:amd64 (1.3.16-2+b1, 1.4.3-1+b1), manpages-dev:amd64 (4.16-2, 5.10-1), python3-dbus:amd64 (1.2.8-3, 1.2.16-5), libsane-hpaio:amd64 (3.19.6+dfsg0-1~mx19+1, 3.20.11+dfsg0-2), libqt5opengl5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), gvfs:amd64 (1.38.1-5, 1.46.2-1), python3-cairo:amd64 (1.16.2-1+b1, 1.16.2-4+b2), libc-dev-bin:amd64 (2.28-10, 2.31-9), libgimp2.0:amd64 (2.10.12-0.1~mx19+1, 2.10.22-2), python3-gi:amd64 (3.30.4-1, 3.38.0-2), libgnutls30:amd64 (3.6.7-4+deb10u6, 3.7.0-5), python3-pikepdf:amd64 (1.0.5+dfsg-3~deb10u1, 1.17.3+dfsg-4), libfreetype6:amd64 (2.9.1-3+deb10u2, 2.10.4+dfsg-1), libcairo-gobject-perl:amd64 (1.004-3+b1, 1.005-2+b2), libva-x11-2:amd64 (2.4.0-1, 2.10.0-1), libva-wayland2:amd64 (2.4.0-1, 2.10.0-1), perl:amd64 (5.28.1-6+deb10u1, 5.32.1-2), gvfs-common:amd64 (1.38.1-5, 1.46.2-1), libp11-kit0:amd64 (0.23.15-2+deb10u1, 0.23.22-1), cups-bsd:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), libaudio-flac-header-perl:amd64 (2.4-3+b1, 2.4-3+b3), libxml-parser-perl:amd64 (2.44-4, 2.46-2), libva-drm2:amd64 (2.4.0-1, 2.10.0-1), cups-core-drivers:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), cups-daemon:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), libmp3-tag-perl:amd64 (1.13-1.1, 1.13-1.2), libqt5network5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), libglib-object-introspection-perl:amd64 (0.047-1, 0.049-1+b1), libtasn1-6:amd64 (4.13-3, 4.16.0-2), libqt5designer5:amd64 (5.11.3-4, 5.15.2-3), libqt5positioning5:amd64 (5.11.3+dfsg-2, 5.15.2+dfsg-2), libcupsimage2:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), libtext-iconv-perl:amd64 (1.7-5+b7, 1.7-7+b1), libaudio-scan-perl:amd64 (1.01-1+b1, 1.01-1+b3), onboard-data:amd64 (1.4.1-4, 1.4.1-5), python3-lxml:amd64 (4.3.2-1+deb10u2, 4.6.2-1), libstdc++6:amd64 (8.3.0-6, 10.2.1-6), cups:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), libtevent0:amd64 (0.9.37-1, 0.10.2-1), cups-client:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), cups-ipp-utils:amd64 (2.2.10-6+deb10u4, 2.3.3op2-2), libhtml-parser-perl:amd64 (3.72-3+b3, 3.75-1+b1), libqt5quick5:amd64 (5.11.3-4, 5.15.2+dfsg-4), gvfs-daemons:amd64 (1.38.1-5, 1.46.2-1), libglib2.0-0:amd64 (2.58.3-2+deb10u2, 2.66.7-1), libheif1:amd64 (1.3.2-2~deb10u1, 1.11.0-1), libavresample4:amd64 (7:4.1.6-1~mx19+2, 7:4.3.1-8), libproc-processtable-perl:amd64 (0.56-1, 0.59-2+b1), libde265-0:amd64 (1.0.3-1+b1, 1.0.8-1), libqt5sql5:amd64 (5.11.3+dfsg1-1+deb10u4, 5.15.2+dfsg-4), libx11-xcb1:amd64 (2:1.6.7-1+deb10u1, 2:1.7.0-2), python3-apt:amd64 (1.8.4.3, 2.1.7), libmypaint-common:amd64 (1.3.0-3mx19+1, 1.6.0-2), libtext-charwidth-perl:amd64 (0.04-7.1+b1, 0.04-10+b1)
Remove: python-tdb:amd64 (1.3.16-2+b1), libphonon4:amd64 (4:4.10.2-1), gvfs-backends:amd64 (1.38.1-5), python-samba:amd64 (2:4.9.5+dfsg-5+deb10u1), smbc:amd64 (1.2.2-4+b3), python-smbc:amd64 (1.0.15.6-1+b2), libc6-dev:amd64 (2.28-10), qdbus:amd64 (4:4.8.7+dfsg-18+deb10u1), libelf-dev:amd64 (0.176-1.1), python-gi:amd64 (3.30.4-1), samba:amd64 (2:4.9.5+dfsg-5+deb10u1), g++:amd64 (4:8.3.0-1), libqtcore4:amd64 (4:4.8.7+dfsg-18+deb10u1), python-gobject:amd64 (3.30.4-1), zlib1g-dev:amd64 (1:1.2.11.dfsg-1), fskbsetting:amd64 (0.5.3.5mx19+1), build-essential:amd64 (12.6), libqtgui4:amd64 (4:4.8.7+dfsg-18+deb10u1), samba-libs:amd64 (2:4.9.5+dfsg-5+deb10u1), gvfs-fuse:amd64 (1.38.1-5), g++-8:amd64 (8.3.0-6), apt-notifier:amd64 (20.11.01mx19+1), libqtdbus4:amd64 (4:4.8.7+dfsg-18+deb10u1), python3-smbc:amd64 (1.0.15.6-1+b2), phonon-backend-gstreamer:amd64 (4:4.9.0-1), mx-fluxbox-about:amd64 (20.08.04), libsmbclient:amd64 (2:4.9.5+dfsg-5+deb10u1), smbclient:amd64 (2:4.9.5+dfsg-5+deb10u1), samba-common-bin:amd64 (2:4.9.5+dfsg-5+deb10u1), mx-fluxbox:amd64 (21.01.01), hardinfo:amd64 (0.5.1+git20180227-2), libqt4-xml:amd64 (4:4.8.7+dfsg-18+deb10u1), python-pyqt5:amd64 (5.11.3+dfsg-1+b3), libqt4-dbus:amd64 (4:4.8.7+dfsg-18+deb10u1), libqt4-opengl:amd64 (4:4.8.7+dfsg-18+deb10u1), libstdc++-8-dev:amd64 (8.3.0-6), system-config-samba:amd64 (1.2.63-1mx17+1)
End-Date: 2021-02-17 20:21:27
Start-Date: 2021-02-17 20:58:24
Commandline: apt-get -o=Dpkg::Use-Pty=0 install -y -t mx cmake-qt-gui cmake-doc cmake-data cmake cmake-curses-gui
Requested-By: acs (1000)
Install: libjs-jquery:amd64 (3.5.1+dfsg+~3.5.5-7, automatic), libjs-underscore:amd64 (1.9.1~dfsg-1, automatic), cmake-qt-gui:amd64 (3.16.3-1~mx19+1), cmake-curses-gui:amd64 (3.16.3-1~mx19+1), libjs-sphinxdoc:amd64 (3.4.3-1, automatic), cmake-doc:amd64 (3.16.3-1~mx19+1)
Upgrade: cmake-data:amd64 (3.13.4-1, 3.16.3-1~mx19+1), cmake:amd64 (3.13.4-1, 3.16.3-1~mx19+1)
End-Date: 2021-02-17 20:58:43
Start-Date: 2021-02-19 20:41:13
Commandline: apt-get install vim
Requested-By: acs (1000)
Install: vim-runtime:amd64 (2:8.2.2434-1, automatic), vim:amd64 (2:8.2.2434-1)
Upgrade: vim-common:amd64 (2:8.1.0875-5, 2:8.2.2434-1), vim-tiny:amd64 (2:8.1.0875-5, 2:8.2.2434-1)
End-Date: 2021-02-19 20:41:21
I don't know how to switch to systemd booting.
- dolphin_oracle
- Developer
- Posts: 22431
- Joined: Sun Dec 16, 2007 12:17 pm
Re: "NetworkManager is not running/Networking disabled" after update
for now, yes.
just warning you that with all those upgrades from bullseye, you now have a Frankenstein of an install. not saying it won't work for you, just expect problems installing apps from time to time, mostly due to conflicting support libraries. I happened to be working on the Network Manager already, so you got lucky there.
just warning you that with all those upgrades from bullseye, you now have a Frankenstein of an install. not saying it won't work for you, just expect problems installing apps from time to time, mostly due to conflicting support libraries. I happened to be working on the Network Manager already, so you got lucky there.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/