Well, if you are just typing ping then yes you are not using it correctly.
ping --help or man ping will give you the syntax for using the ping command in linux.
You need to tell ping which computer you want to reach, either by IP address or hostname
so to ping a host on your local network would look something like this:
ping 192.168.1.20 or ping fileserver
Pinging an internet host is the same
ping google.com or ping 172.217.164.206
if the ping succeeds when using the IP address but not with the hostname then your problem is most likely a misconfigured DNS server in your network settings.
Usually ping will give you an error message if something is really wrong like
Destination host unreachable or Name or service not known
If that is not the problem and you have access to another computer on your network go to it and try to ping the machine you are having the problem on. Sometimes there can be many things that can cause these types of problems.
Firewalls
Multiple network cards
misconfigured settings etc.
So if you are still having the problem report back with as much information as possible.
ping <ip from your LAN>is not the same asping google.comwhich needs an internet connection.