Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

10
  • sudo may be in /usr/bin. Commented Jul 27, 2018 at 15:39
  • 1
    find / -name 'su*' -print Commented Jul 27, 2018 at 15:39
  • The su is not present in the /usr/bin either. find / -name "su*" does not give the location of su just some gibberish files. I am pretty sure su is not present Commented Jul 27, 2018 at 15:44
  • find / -executable -type f -name 'su*' -print 2>/dev/null will give a more concise list: no directories, and only executables. Commented Jul 27, 2018 at 15:54
  • Okay I executed the find with the given options and still there is no su binary anywere. I strongly think there is no binary su here. Commented Jul 27, 2018 at 15:58