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
  • 相关阅读:
    Nulls first和nulls last
    json.parse()和json.stringify()
    将单个的.java文件通过javac编辑为.class文件
    看别人项目思路:
    我想成为怎样的人?
    装逼语录:
    Uncompressing Linux... done, booting the kernel
    linux 内核模块最小环境编译
    select 定时器
    mount
  • 原文地址:https://www.cnblogs.com/cnyin/p/1914267.html
Copyright © 2011-2022 走看看