- Apr 25, 2015
- 1,845
- 2
- 2,199
- 327
If you want to copy/paste this into root, this will wipe your root out if you went in through sudo - then the next user.. basically copy below and right click, right click:
There is also this, which is similar, but not quite.
Now also keep in mind:
You could also clear all user activity, by:
Then run:
Keep repeating through all users.
That could also be automated, cba to write that atm.
RIP logs
Code:
cat /dev/null > ~/.bash_history && history -c && exit
There is also this, which is similar, but not quite.
Code:
cat /dev/null > .bash_history; history -c
Now also keep in mind:
Code:
cd /home/;ls
You could also clear all user activity, by:
Code:
su <username>
Then run:
Code:
cd ~
cat /dev/null > .bash_history; history -c
exit
Keep repeating through all users.
That could also be automated, cba to write that atm.
RIP logs
Last edited: