# 网卡
安装后只能看到lo0
查看网卡
dmesg | grep Network
查找到e1000g: Intel PRO/100 Network Connection
启用网卡并自动分配地址
ifconfig e1000g0 plumb
ifcofig e1000g0 dhcp
注意网卡名最后的0
# 开启root远程访问
~~~~
# grep PermitRootLogin /etc/ssh/sshd_config
PermitRootLogin no
说明root用户被限制登录了,需要修改/etc/ssh/sshd_config文件,将PermitRootLogin no改为PermitRootLogin yes
重启ssh
svcadm restart ssh
~~~~
# 切换SHELL启用TAB键自动补全
/bin/bash