Y
Hacker News
new
|
ask
|
show
|
jobs
by
giancarlostoro
2911 days ago
forgot --no-preserve-root for it to really take effect properly.
1 comments
ryan-c
2911 days ago
I believe rm -rf /* will work without --no-preserve-root
link
IntelMiner
2911 days ago
GNU rm I believe requires the --no-preserve-root flag these days, to prevent that command from happening by accident
link
justinsaccount
2911 days ago
The shell expands
/*
, not rm.
It expands to /bin /etc /lib and such and is not covered by the sanity check.
link