zoukankan      html  css  js  c++  java
  • 安装ubuntu server配合fluxbox界面的流程

    首先安装 ubuntu server
    然后在命令行使用
    sudo apt-get update
    sudo apt-get upgrade
    sudo apt-get -f install
    sudo apt-get install xorg xdm fluxbox //这里可以分别install
    sudo apt-get install gdm
    sudo dpkg-reconfigure xserver-xorg

    If the mouse and keyboard doesn't work when in the gdm or xdm screen, you could do this
    After running the "sudo dpkg-reconfigure xserver-xorg",
    You could edit xorg.conf
    here is how
    cd /etc/X11
    vi xorg.conf

    add some lines in

    Section “InputDevice”
    Identifier “Generic Keyboard”
    Driver “kbd”
    Option “XkbRules” “xorg”
    Option “XkbModel” “pc105″
    Option “XkbLayout” “cn”
    EndSection

    Section “InputDevice”
    Identifier “Configured Mouse”
    Driver “mouse”
    EndSection

    Section “InputDevice”
    Identifier “Synaptics Touchpad”
    Driver “synaptics”
    Option “SendCoreEvents” “true”
    Option “Device” “/dev/psaux”
    Option “Protocol” “auto-dev”
    Option “HorizEdgeScroll” “0″
    EndSection

    After Last line

    Section “ServerLayout”
    Identifier “Default Layout”
    screen “Default Screen”
    Inputdevice “Generic Keyboard”
    Inputdevice “Configured Mouse”
    Inputdevice “Synaptics Touchpad”
    EndSection

    Then

    sudo reboot

    everything will go well.

    sudo apt-get install firefox
    sudo apt-get install synaptic

    Then goto Synaptic to find chinese language support related package, install them
    中文支持包的名字是 language-support-zh
    另外记得安装 scim
  • 相关阅读:
    Android Theme主题
    Android AbsoluteLayout绝对布局
    Android FrameLayout单帧布局
    Android TableLayout 表格布局
    Android LinearLayout线性布局
    Android RelativeLayout相对布局
    Unity中几种简单的相机跟随
    Android适配API23之后权限的动态申请
    natural gradient笔记
    优化整理
  • 原文地址:https://www.cnblogs.com/cnyin/p/1914267.html
Copyright © 2011-2022 走看看