How Do I Search for Files on linux ?
find / -name “kartook” -print
This command tells find to start looking in the root directory of the filesystem.
(/) for files named (-name) kartook and then to print (-print) the full name of each file it finds.
Possibly Related Posts:
- Linux local privilege escalation via SUID
- How to uninstall Vmware workstation v 8.0.0.471780.bundle
- Linux : Flash fullscreen doesn’t work on Ubuntu 10.10
- VCP Home LAB : Part -3
- VCP Home LAB – part-2

