Ubuntu18.04 安装和启动telnet服务以及遇到的问题

安装openbsd-inetd

sudo apt-get install openbsd-inetd -y

安装telnetd
sudo apt-get install telnetd -y

重启openbsd-inetd
sudo /etc/init.d/openbsd-inetd restart

查看telnet运行状态
sudo netstat -a | grep telnet
运行结果:
long@long-boy:~$ sudo netstat -a | grep telnet
tcp 0 0 0.0.0.0:telnet 0.0.0.0:* LISTEN

登录

telnet 127.0.0.1(本机)

执行过程中 电脑中有些命令被锁定
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

解决方案:首先运行下面的命令来移除 /var/lib/dpkg/ 文件夹下的锁定文件:

$ sudo rm /var/lib/dpkg/lock-frontend

之后像下面这样强制重新配置软件包:

$ sudo dpkg --configure -a

如果两台电脑不能远程连接:
那么可能是防火墙没有打开:
检查23号端口是否打开
iptables -L -n

添加开放端口:
sudo iptables -I INPUT -p tcp --dport 23 -j ACCEPT

你可能感兴趣的:(ubuntu,c++)