Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

No manual entries for recvfrom, sendto, and bind commands in Ubuntu 18.04

Writer Mia Lopez

I run Ubuntu 18.04 through Oracle VirtualBox. In the terminal man commands for recvfrom, sendto, bind do not show any manual entries as shown below.

rishi@rishi-VirtualBox:~$ man recvfrom
No manual entry for recvfrom
rishi@rishi-VirtualBox:~$ man sendto
No manual entry for sendto
rishi@rishi-VirtualBox:~$ man bind
No manual entry for bind
2

1 Answer

If you want to read the manual pages of the system calls by these names (as opposed to the command-line applications outlined in karel’s answer) please make sure that the manpages-dev package is installed:

sudo apt install manpages-dev

If you prefer the manual pages to be translated to your language you can list available translation packages with:

apt-cache search 'manpages-.*-dev'

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy