zoukankan      html  css  js  c++  java
  • ubuntu怎么连接centos远程桌面

    1、系统软件设置
    CentOS端:
    查看是否安装了vnc软件
    # rpm -q vnc vnc-server
    package vnc is not installed
    vnc-server-4.1.2-14.e15_3.1
    上面信息就是说,vnc没有安装,而vnc-server已经安装了。
    那么,安装 vc
    # yum install vnc
    如果vnc-server没有安装,那么
    # yum install vnc-server
    Ubuntu端:
    安装vnc4server
    $ sudo apt-get install vnc4server
    设置密码
    $ vncpasswd
    password:
    verify:
    $ vim ~/.vnc/xstartup
    #!/bin/sh
    # Uncomment the following two lines for normal desktop:
    #unset SESSION_MANAGER
    #exec /etc/X11/xinit/xinitrc
    [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
    [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
    xsetroot -solid grey
    vncconfig -iconic &
    x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
    x-window-manager &
    修改之后是:
    注释最后两行,也就是在前面加 #
    #x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
    #x-window-manager &
    然后加上
    gnome-session &
    $ vnc4server
    Warning: user-MS-7549:1 is taken because of /tmp/.X11-unix/X1
    Remove this file if there is no X server user-MS-7549:1
    xauth: creating new authority file /home/user/.Xauthority
    New 'user-MS-7549:2 (user)' desktop is user-MS-7549:2
    Creating default startup script /home/user/.vnc/xstartup
    Starting applications specified in /home/user/.vnc/xstartup
    Log file is /home/user/.vnc/user-MS-7549:2.log

    2、远程桌面使用
    用CentOS使用vncviewer (安装的vnc包中)
    $ vncviewer
    Ubuntu的vnc4server启动之后,默认的端口是5900
    然后,上面New 'user-MS-7549:2 (user)' desktop is user-MS-7549:2就是+2的意思,
    所以是5900+2=5902
    OK之后,密码就是上面
    $ vncpasswd 中设置的密码。
    如果倒过来,用Ubuntu远程桌面登录CentOS。那么就要在Ubuntu安装 xvnc4viewer, 在CentOS上设置vncpasswd,其它都倒过来。
  • 相关阅读:
    转:【译】CSS3:clip-path详解
    转---JS 一定要放在 Body 的最底部么?聊聊浏览器的渲染机制
    转---30 分钟学会 Flex 布局
    转---单页面应用下的JS内存管理
    转---移动端 h5开发相关内容总结——CSS篇
    转---谈谈HTTP协议中的短轮询、长轮询、长连接和短连接
    转---写一个网页进度loading
    转---内存空间详细图解
    转---前端跨域请求原理及实践
    简单记录常用git 命令
  • 原文地址:https://www.cnblogs.com/Siegel/p/7500967.html
Copyright © 2011-2022 走看看