中大东校区iNode For linux 配置笔记

说明:

平台: deepin 64位

准备:

sudo apt-get install libncurses5

确认网卡名称是否为 eth0

确认方法:

ifconfig

修改办法:

vim /etc/default/grub

修改为GRUB_CMDLINE_LINUX_DEFAULT条目,下面的是修改后的结果,可能有两个GRUB_CMDLINE_LINUX_DEFAULT,记得修改最后一个

GRUB_CMDLINE_LINUX_DEFAULT="splash quiet net.ifnames=0 biosdevname=0"

确认AuthenMngServic 服务是否开启

ps -e |grep AuthenMngServic

开启方法:(运行完install.sh文件才能开启)

sudo /etc/init.d/iNodeAuthService start

必须识别出所有网卡真正的网卡名

eth0eth1是缺省值,没有配置好也会有,配置好了就会有其他的名称出现
必须要 识别出你的所有网卡才能算成功配置好了,否则会一直连接失败的,密码错误会有密码错误的提示,没配置好就是只有连接失败的提示

猜你喜欢

转载自www.cnblogs.com/JohnRain/p/10159665.html