On Wed, 22 Apr 2015 22:56:31 +0000, CJ Barlow wrote:
If I run
rm -f /var/lib/tor/keys/* 2>&1 >> /home/[me]/reboot.txt
it doesn't error (as long as I run it with sudo) but it also doesn't do anything,
You might do
(ls -lart /var/lib/tor/keys echo /var/lib/tor/keys/* rm -f /var/lib/tor/keys/* ls -lart /var/lib/tor/keys ) 2>&1 >> /home/[me]/reboot.txt
too see if it does (and match) anything.
checking *keys *shows it still contains files.
Sure that those aren't already regenerated keys from a new tor instance?
Andreas