I know this is a simple question, but how do I switch to netcat-traditional
in ubuntu? Whenever I write netcat -h
it appears that I am running netcat-openbsd
instead? I'm new to Ubuntu so exact commands would be helpful. Thanks
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
enable universe repository (if not enabled)
sudo add-apt-repository universe
Install the other netcat using synaptic. (To do this, the universe repository must be enabled.)
sudo apt-get install netcat-traditional
type
sudo update-alternatives --config nc
Select the option
/bin/nc.traditional
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!!]
...