I have the problem that whenever I want to Install something, there is this lovely error:
/usr/sbin/update-initramfs: 158: /usr/sbin/update-initramfs: mv: not found
I could trace this error back, and the problem is actually this one:
Command 'mv' not found
Now I have the quite interesting task to install the mv-command without being able to install any new Packages. Using Dolphin on Kubuntu 18.4 (I guess it is that one since I didn't do any updates) I am able to copy files, and if someone was able to give me some kind of source file for the mv command, I could "simply" change the update-initramfs file in order to install coreutils which then would "repair" my not actually broken ramfs.
Any Help would be cool, a friend already told me that I would have to completely reinstall the system, if it is possible to prevent that from happening, I would very much appreciate it.
And I guess it is possible to copy with root privileges, but I haven't tried that yet.
Thanks for everybody trying to help.
Edit: in /bin there isn't a file called coreUtils or something like that, I don't know if there should be
ls: cannot access '/bin/mv': No such file or directory
/usr/local/sbin /usr/local/bin /usr/sbin /usr/bin /sbin /bin /usr/games /usr/local/games /snap/bin
mv
should be in the folder/bin/
. – user68186 Jan 25 '19 at 16:51echo $PATH
, and the output ofls /bin/mv
– Charles Green Jan 25 '19 at 16:52mv
is such a fundamental part of the system I can't imagine it just vanishing on its own. – user68186 Jan 25 '19 at 16:58