When I run
$ ls /
I get back:
bin dev initrd.img lib64 mnt root snap sys var boot etc initrd.img.old lost+found opt run srv tmp vmlinuz cdrom home lib media proc sbin swapfile usr vmlinuz.old
I'm coming from using Windows a long time and usually I delete old image files. Is this normal in Linux, I'm trying to understand. Do I leave them be or can they/should the be removed?
stat /initrd.img.old
you'll likely find it's a symbolic link (somewhat like shortcuts in windows; posix have multiple types of links) thus uses no disk space at all, it's just a entry in the file system that points to your prior kernel. – guiverc Mar 26 '20 at 4:17