How to install strings in Ubuntu server

I installed Ubuntu server 16.04.3 LTS but I cannot find the strings command:

$ sudo strings /data/storage
sudo: strings: command not found

$ man strings
No manual entry for strings

How am I supposed to install it?


Solution 1:

You need to install binutils:

apt-get install binutils

That should do the job.