0x8007025D Windows Installation Error and VirtualBox

I tried to install a new virtual machine with latest version of Windows 10 (2004), but during installation, I always encountered the 0x8007025D error message, randomly in different moment of the setup. It appears that this error is related to Hyper-V. In my case, I solved this issue by deactivating Hyper-V on my computer but … Continue reading 0x8007025D Windows Installation Error and VirtualBox

Reset PuTTY Settings

All PuTTY settings are available in registry. The path to have access to keys: HKEY_USERS\UID\Software\SimonTatham\PuTTY\Sessions\Default%20Settings The UID part is unique and will be different on your computer. My main issue was PuTTY was not able to save the default settings and in particular, my font parameter. So I update them directly in registry: Be careful … Continue reading Reset PuTTY Settings

Allow apt-get to connect to Internet (Kali Linux)

While performing an apt-get update with Kali Linux, packages cannot be retrieved, but a ping works. sources.list file needs to be setup. To fix it in a terminal: Type sudo -iType touch /etc/apt/sources.listType chmod 644 /etc/apt/sources.listType echo "deb http://http.kali.org/kali kali-rolling main contrib non-free" > /etc/apt/sources.listType apt-key adv --keyserver hkp://keys.gnupg.net --recv-keys 7D8D0BF6Type apt-get updateGood to go.