localhost 与主机名

localhost 与主机名

localhost(127.0.0.1)hostname(127.0.1.1)我尝试

$ cat /etc/hosts
127.0.0.1   localhost
127.0.1.1   JAZZ

并且万一ifconfig我也得到了localhost(lo:local loopback, 127.0.0.1),

cat /etc/hosts但是当我在我的 Android 手机上通过 bash 模拟器尝试这个( )时,我只得到了 127.0.0.1,

android@user$cat /etc/hosts
127.0.0.1            localhost

hostname为什么我的安卓手机里没有??

答案1

如果你的手机已 root 并且安装了终端仿真器,那么你可以使用命令检查主机名

getprop net.hostname

要更改主机名类型:

setprop net.hostname new_name

相关内容