zoukankan      html  css  js  c++  java
  • Solaris 11中的变化

    Solaris 11发布了好几个月了,用了后感觉好多配置的东东变化不小,写写自己遇到的问题和大家分享一下,

    1,如何设置root密码

    Solaris 11中root作为一个Role来存在,已经不能直接用root来登陆系统了,必须用系统安装时创建的用户来su成root,那root的密码

    是什么呢?root的密码是用创建的用户做第一次su时进行设置的,比如您创建的用户是aa,那就用这个用户su,然后输入aa的密码,

    系统会提示输入新的root密码。

    2,如何设置静态ip

    solaris 11中新增加了一个服务叫svc:/network/physical:nwam,这个进程的作用是:

    # svcs -l physical:nwam
    fmri         svc:/network/physical:nwam
    name         physical network interface autoconfiguration

    当系统安装后,这个服务把我的网络自动配置成DHCP,用solaris 11的那个网络配置工具,老是不知道怎么配置成static ip,后来把这个服务给

    禁掉,然后启动另一个服务,然后根据常规的方式就配置好了静态ip

    # svcs -a | grep  physical
    disabled       Mar_15   svc:/network/physical:nwam
    online         Mar_15   svc:/network/physical:default

    可能有更好的配置静态ip的方法,还待发掘。

    3,如何用xmanager等远程桌面工具连接solaris11

    solaris 11 中已经不用dtlogin来做xdmcp的服务者了,改用gdm,所以在solaris10中的打开xdmcp服务的脚本也不能用了,

    #netservices open

    目前要改gdm的配置文件/etc/gdm/custome.conf,加上这个

    [xdmcp]
    Enable=true

    然后重起gdm服务就可以了,

    svcadm restart gdm

    4,不能创建local zone

    在官网上提供下载的solaris 11 是151版本,因为一个bug的缘故,这个版本上创建不了local zone,我升级到160的版本,

    然后就可以创建了,至少158也是不能创建的,不知道在公网上能不能升级到最新版本

  • 相关阅读:
    Understanding about Baire Category Theorem
    Isometric embedding of metric space
    Convergence theorems for measurable functions
    Mindmap for "Principles of boundary element methods"
    Various formulations of Maxwell equations
    Existence and uniqueness theorems for variational problems
    Kernels and image sets for an operator and its dual
    [loj6498]农民
    [luogu3781]切树游戏
    [atAGC051B]Three Coins
  • 原文地址:https://www.cnblogs.com/SharkXu/p/Solaris11Update.html
Copyright © 2011-2022 走看看