Install smartmontools and use smartctl:
sudo smartctl --all /dev/xxx
Reviews of products I like, plus whatever comes to my mind...
Install smartmontools and use smartctl:
sudo smartctl --all /dev/xxx
Rename C:\Windows\System32\Recovery\REAgent.xml to REAgent.old
Using elevated command prompt:
Dism /Online /Cleanup-Image /ScanHealth
Dism /Online /Cleanup-Image /CheckHealth
Dism /Online /Cleanup-Image /RestoreHealth
sfc /scannow
chkdsk /f /r
References:
I almost always forget to add users to Samba group after enabling Samba. So here it is:
sudo smbpasswd -a <username>
Make a change so that slow-non/responding services to terminate quickly during shutdown:
sudo nano /etc/systemd/system.conf
Uncomment and edit to:
DefaultTimeoutStopSec=5s
Reboot or reload with:
sudo systemctl daemon-reload
Unfortunately, the ufw help doesn't provide an example for using application profiles while specifying the source network. Here's an example how "OpenSSH" profile can be used but restricting the source network to local:
sudo ufw allow from 192.168.0.0/24 to any app OpenSSH