折腾了一个多小时,终于在VMware上装好了solaris10,通过windows2003 server的putty 尝试ssh登录,发现提示“Using keyboard-interactive authentication”,并一直无法登录,之前玩redhat的时候好像没有出现过这种问题。网上查找才知道solaris10默认是不允许root用户远程登录的,这是为了保证系统的安全。那想用root登录怎么办呢?根据网上资料查查找是修改/etc/ssh/sshd_config的两个参数
    PermitRootLogin yes
    PasswordAuthentication yes
 
不过还有另外一种方法,一般在/etc/default/login文件中有 "CONSOLE=/dev/console"
一行,则表明root不能直接登陆,只需亚注释掉该行,即可以直接登陆。