About 50 results
Open links in new tab
  1. Windows 7 netcat error: 'nc' is not recognized as an internal or ...

    Nov 8, 2020 · Extract the files (e.g. C:\NetCat) Open two cmd prompts and navigated to cd \NetCat. Execute nc.exe -l -p 9999 in one cmd window and nc.exe localhost 9999 in another. Note that I'm on …

  2. How to listen for multiple tcp connection using nc [closed]

    Apr 19, 2015 · 4 using nc it is not possible to open parallel connections to same port, however you can trick nc to open multiple connections to same port. To understand this, lets say you start listening on …

  3. unix - Why node nc (netcat) give error "inverse host lookup failed ...

    Feb 14, 2018 · "Inverse host lookup failed" simply means that nc wanted to print which host name 10.0.0.10 corresponds to, but couldn't. UNKNOWN is simply what it then prints as the host name. …

  4. Broadcasting a message using nc (netcat) - Stack Overflow

    Dec 2, 2016 · I'm trying to send a broadcast message using netcat. I have firewalls open and sending a regular message like this works for me: host: nc -l 192.168.1.121 12101 client: echo "hello" | nc 192....

  5. Using xarray in JupyterLab to read NC file from url

    Feb 3, 2025 · I am trying to prevent unnecessary downloading of large datasets by reading the publicly available files directly from their online location. Surprisingly I cannot find an answer to my question on

  6. Export to netcdf / .nc file from a pandas DataFrame

    Jan 30, 2025 · I want to multiple data extract from cmip6 model data and save as netcdf file by using the following scripts: import pandas as pd import xarray as xr from netCDF4 import Dataset nc_file = …

  7. How to display nc return value in Linux shell script?

    I am using nc command in my Linux box like below to check if a port is listening; This displays success message: nc -z 192.168.0.2 9000 This displays 0: echo $? I have combined it in a shell scr...

  8. c - ++nc vs nc = nc + 1 - Stack Overflow

    Dec 23, 2011 · The statement ++nc presents a new operator, ++, which means increment by one. You could instead write nc = nc + 1, but ++nc is more concise and often more efficient.

  9. "bash: nc: command not found" error on ssh multi-hop

    Sep 22, 2015 · ProxyCommand ssh -q serverA /bin/nc sha.example.net 22 Just remember for the sake of portability that nc may not live in this location on all systems. For example, it's at /usr/bin/nc on …

  10. Read .nc (netcdf) files using python - Stack Overflow

    Apr 1, 2016 · I am trying to learn how to read netcdf files using Python in the most easiest/fastest way. I heard that it can be done with 3 lines of code but I really don't know how. I am running the MITgcm …