30

netcat-traditionalこれは簡単な質問だと思いますが、ubuntu で切り替えるにはどうすればよいですか? 書くたびに、代わりnetcat -hに実行しているように見えますか? netcat-openbsd私はUbuntuが初めてなので、正確なコマンドが役立ちます。ありがとう

4

1 に答える 1

54
  1. enable universe repository (if not enabled)

    sudo add-apt-repository universe
    
  2. Install the other netcat using synaptic. (To do this, the universe repository must be enabled.)

    sudo apt-get install netcat-traditional
    
  3. type sudo update-alternatives --config nc

  4. Select the option /bin/nc.traditional

  5. type nc -h

output:

[v1.10-38]
connect to somewhere:   nc [-options] hostname port[s] [ports] ...
listen for inbound: nc -l -p port [-options] [hostname] [port]
options:
    -c shell commands   as `-e'; use /bin/sh to exec [dangerous!!]
    -e filename     program to exec after connect [dangerous!!]
...
于 2012-04-17T15:01:44.493 に答える