使用查找vs.定位vs.whereis

时间:2018-09-17 06:49:55

标签: touch mv

我正在从Linux Basics for Hackers(淀粉出版社)进行第1章练习:

  

创建一个名为hackerdirectory的新目录,并在其中创建一个新文件。   该目录名为hackedfile。现在将该文件复制到您的/ root   目录,然后将其重命名为secretfile。

所以我先进行了mkdir hackerdirectory然后cd hackerdirectory然后cd touch hackedfile然后sudo mv hackedfile /root

我的理解是/root是顶级主目录,但是当我cd ..返回主目录和ls -l时,它不存在:

drwxrwxr-x 23 nobu nobu    4096 Jul  9 18:24  anaconda3
-rw-r--r--  1 nobu nobu    4243 May  3 02:10  backblue.gif
-rw-rw-r--  1 nobu nobu   25120 Mar 23 07:02  CERTIFICATE
drwxrwxr-x  3 nobu nobu    4096 Mar 30 05:01  client-configs
-rw-rw-r--  1 nobu nobu     412 May  3 03:18  cookies.txt
-rw-------  1 root root 8560640 Apr 11 09:59  core
drwxr-xr-x  3 nobu nobu    4096 Sep 11 20:34  ctf
drwxr-xr-x 18 nobu nobu    4096 Sep 13 12:33  Desktop
drwxr-xr-x  4 nobu nobu    4096 Sep  8 18:59  Diamondhead
drwxrwxr-x  6 nobu nobu    4096 Sep 15 16:42  Documents
drwxr-xr-x 27 nobu nobu   12288 Sep 17 14:28  Downloads
-rw-r--r--  1 nobu nobu    8980 Mar 20 06:44  examples.desktop
-rw-r--r--  1 nobu nobu     828 May  3 02:10  fade.gif
drwxrwxr-x  4 nobu nobu    4096 Jun 27 02:38  fullstack
drwxrwxr-x 11 nobu nobu    4096 Jul 12 16:21  gym
drwxr-xr-x  2 nobu nobu    4096 Sep 17 15:37  hackerdirectory
drwx------  2 nobu nobu    4096 May  3 03:18  hts-cache
-rw-rw-r--  1 nobu nobu    2101 May  3 03:18  hts-log.txt
drwxr-xr-x  6 nobu nobu    4096 Sep  4 23:27  locust_k8s
drwxr-xr-x 10 nobu nobu    4096 Aug 28 11:44  mecab-ipadic-neologd
drwxr-xr-x  2 nobu nobu    4096 Mar 20 06:52  Music
drwxr-xr-x 14 nobu nobu    4096 Aug 24 14:10  myapp
drwx------  3 nobu nobu    4096 Mar 30 03:28  openvpn-ca
drwxr-xr-x  4 nobu nobu    4096 Aug 19 19:47  Pictures
drwxr-xr-x  2 nobu nobu    4096 Mar 20 06:52  Public
drwxr-xr-x  3 nobu nobu    4096 Aug 15 12:34  repos
drwxr-xr-x  6 nobu nobu    4096 Sep  4 23:23  snap
drwxr-xr-x  2 nobu nobu    4096 Mar 20 06:52  Templates
-rw-rw-r--  1 nobu nobu 5477405 Jul  5 08:17  tf
-rwxrwxr-x  1 nobu nobu 4474932 Oct 24  2017  unetbootin-linux-latest
drwxr-xr-x  3 nobu nobu    4096 Apr 27 11:56  Videos
drwx------  3 nobu nobu    4096 Jun 27 02:46 'VirtualBox VMs'
drwxrwxr-x  5 nobu nobu    4096 May  3 02:36  websites
drwxrwxr-x  2 nobu nobu    4096 Jul  9 21:15  work

现在我做了:

nobu@nobu-ThinkPad-T420:~$ locate hackedfile
nobu@nobu-ThinkPad-T420:~$ whereis hackedfile
hackedfile:

这是什么意思?我尝试过sudo su,然后尝试ls,但仍然看不到。

编辑:因此,我根据以下命令找到了它,但无法摆脱它。

nobu@nobu-ThinkPad-T420:~$ sudo find /root -type f -name hackedfile
/root/hackedfile
nobu@nobu-ThinkPad-T420:~$ sudo rm /root/hackedfile
nobu@nobu-ThinkPad-T420:~$ sudo find /root -type f -name hackedfile
nobu@nobu-ThinkPad-T420:~$ whereis hackedfile
hackedfile:

编辑(未列出)

nobu@nobu-ThinkPad-T420:~$ sudo ls -al /root 
total 64
drwx------ 12 root root 4096 Sep 17 16:23 .
drwxr-xr-x 28 root root 4096 Sep  9 12:45 ..
drwx------  2 root root 4096 Jul 10 07:31 .aptitude
-rw-------  1 root root 1124 Sep 17 16:30 .bash_history
-rw-r--r--  1 root root 3106 Oct 23  2015 .bashrc
drwx------  4 root root 4096 Apr 11 05:47 .cache
drwx------  7 root root 4096 Apr 11 15:54 .config
drwx------  3 root root 4096 Mar 22 02:47 .dbus
drwx------  3 root root 4096 Apr 11 12:23 .gnupg
drwxr-xr-x  4 root root 4096 Aug 17 09:20 .java
drwxr-xr-x  3 root root 4096 Apr  1 08:12 .local
drwxr-xr-x  2 root root 4096 Mar 30 02:55 .nano
drwxr-xr-x  2 root root 4096 Aug 21 11:13 .oracle_jre_usage
-rw-r--r--  1 root root  148 Aug 18  2015 .profile
drwx------  2 root root 4096 Sep  4 22:58 .ssh
-rw-r--r--  1 root root  220 Aug  8 14:02 .wget-hsts

编辑(当sudo su时)

root@nobu-ThinkPad-T420:/home/nobu# whereis hackedfile
hackedfile:

因此,当我执行命令whereis时,它将显示文件。真的删除了吗?

但是现在当我尝试:sudo find /root -type f -name hackedfile时,我得到了:

nobu@nobu-ThinkPad-T420:~$ sudo find /root -type f -name hackedfile
nobu@nobu-ThinkPad-T420:~$ 

因此,除了执行“ whereis”仍与冒号一起显示外,它似乎已经消失了。

编辑:

请注意,whereis返回您要查找的内容filename:,然后在冒号后列出位置的路径。

这是find的使用方法:

  

找到

那是我上面列出的教科书中的内容。

1 个答案:

答案 0 :(得分:1)

尝试pwd来查看您在文件系统中的位置。您可能会使用sudo ls -al /root

查找文件