2010-05-01

Ubuntu Server 10.04 その2

というわけで、やったことをメモ。

  • 固定IPアドレスを設定
    $ sudo vi /etc/network/interfaces
  • bindを設定
    とりあえず、内部用のみ。
  • デスクトップ環境
    $ sudo apt-get install ubuntu-desktop
  • apacheのUserDirを有効化
    $ sudo a2enmod UserDir
    $ sudo service apache restart
  • VNC
    $ sudo apt-get install vnc4server
    $ sudo apt-get install xinetd
    $ sudo vi /etc/xinetd.d/xvnc
    service xvnc
    {
    disable = no
    socket_type = stream
    wait = no
    user = nobody
    group = tty
    server = /usr/bin/Xvnc
    service Xvnc
    {
      type = UNLISTED
      disable = no
      socket_type = stream
      protocol = tcp
      wait = yes
      user = root
      flags = NOLIBWRAP
      server = /usr/bin/Xvnc
      server_args = -inetd :1 -query localhost -geometry 1280×960 -depth 16 -once -fp /usr/share/fonts/X11/misc -DisconnectClients=0 -NeverShared    passwordFile=/root/.vncpasswd
      port = 5901
    }
    $ sudo vncpasswd /root/.vncpasswd
    $ sudo /etc/init.d/xinetd restart

    と、ここまでやったがログイン画面が出てこない…gdm関連がなにか変わってるのかしら?

Trackback URL:

Comments and Trackback

Post a comment

使用できるXHTMLタグ: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>