(pdf)
Category: How-To
Old Linux kernel images lying around in your /boot partition ?
If you like me have run into having your boot partition filled to the brim with bits containing OLD linux kernel images and have been prevented from running
sudo apt-get upgrade
command without getting an error. You will want to read on.
Continue reading Old Linux kernel images lying around in your /boot partition ?
Fix you cmd input with ‘fuck’
Magnificent app for linux/unix users https://t.co/J7x3PGAaNI pic.twitter.com/sC4aMBiv8y
— nixCraft 🐧 (@nixcraft) August 19, 2017
How-To Remove all bundled apps in Windows 10 with powershell
Remove all Modern apps from the system account
Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online
Remove all Modern apps from your current user account
Get-AppXPackage | Remove-AppxPackage
Remove Metro apps for all user accounts
Get-AppxPackage -AllUsers | Remove-AppxPackage