When force removing Python, everything that depends on Python probably also was removed - and that is a lot. I'm pretty sure it warned you of not doing that... and judging from that first screenshot, you may have wiped your system way more than just removing python...
Eitherway, dpkg --unpack
is not sufficient to reinstall a package (there is also "install"...), and the cache in /var will only contain recently downloaded files. There may well be some missing.
You can try to do the dpkg thing correctly, but most likely you will still be missing some dependencies.
As for the last error - it just says that you exited process 1. The operating system cannot continue then, process 1 is supposed to launch everything and not exit. No need to further think about it - rather you need to find a way to get your wireless up and the missing packages installed.
If you really intend to do the chroot recovery, first try to understand what you need to mount where. When done correctly, you may be able to do simply apt install python
to get python back. First try if the recovery function of the installer can set up the chroot for you... once you have the chroot, inspect the damage first before making it worse...
Remember, chroot is not trivial to set up properly:
https://superuser.com/questions/111152/whats-the-proper-way-to-prepare-chroot-to-recover-a-broken-linux-installation
chroot
) to set up achroot
environment and runsudo apt install python
from there. Does that fix it? – terdon May 08 '17 at 12:51chroot
environment? The message suggests you ran them from the live session instead. You need to follow the steps I gave and then, from the same terminal as thechroot
command, run theapt install
. – terdon May 08 '17 at 13:13>
you see is because of the trailing&&
which is a locial AND connecting each of themount --bind
commands given. If you wantr to run them one by one, don't copy the&&
but it is simpler to just paste the entire set of 4 lines at once. So, that means you didn't run theapt
command from within the chroot environment. However, if you don't have internet access, the point is moot anyway. That's the first thing to sort out. – terdon May 08 '17 at 13:22lspci -nn | grep 0280
and exactly what you mean by "not working" (what symptoms you see. e.g. card not recognized at all; no networks shown; can't connect to any network shown etc). – terdon May 08 '17 at 13:38initramfs
;fsck /dev/sdaX
, replacessdaX
with your root partition then reboot – GAD3R May 08 '17 at 14:05