2022-07-11

Wiping unused disk space (not wiping with a cloth):

 windows 10

cipher /w:c:\


where "c" is the drive to wipe

or sysinternals:


sdelete -c c:

sysinternals.com


No comments:

Post a Comment

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...