19 lines
264 B
Markdown
19 lines
264 B
Markdown
|
|
||
|
## Clear Logs
|
||
|
|
||
|
```
|
||
|
#Erase logs with shred**
|
||
|
- shred -h
|
||
|
- shred -vfzu auth.log (or the name of the log you want)
|
||
|
```
|
||
|
|
||
|
|
||
|
## Clear History
|
||
|
|
||
|
```
|
||
|
# Erase History Command
|
||
|
history clear
|
||
|
|
||
|
# Erase History File
|
||
|
cat /dev/null > /home/user/.bash_history
|
||
|
```
|