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
  • 相关阅读:
    关于第三方库
    一些css属性,抄自某个大神忘记谁了,不好意思
    10.使用express模拟数据服务器
    9.text-shadow
    8.css背景图案
    7.一个抄来圆形菜单
    6.文字闪烁效果
    5.偶然看到的一个css加载动画
    4.怎样使用css实现一个切角效果
    3.写一个简单的弹出菜单
  • 原文地址:https://www.cnblogs.com/cnyin/p/1914267.html
Copyright © 2011-2022 走看看