免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 775 | 回复: 0
打印 上一主题 下一主题

Ubuntu设置指南补充 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-08-10 22:50 |只看该作者 |倒序浏览

                                                               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
                前言终于还是经不住“诱惑”,安装了Ubuntu6.06LTS,放弃了CentOS。认识Linux一年多,基本的几种安装方法还比较熟悉,安装起来也比较容易,不熟悉的可以参考官方的
安装指南
,安装完毕后经过上篇的官方指南设置后,日常基本应用已经没有问题,在这里在补充两点针对个人的一点设置。
正文
  • 字体设置
    个人比较喜欢"文鼎 PL 新宋",因此自己手动添加fireflysung.ttf到目录“/usr/share/fonts/truetype/arphic”,执行命令
    sudo mkfontscale
    sudo mkfontdir
    sudo fc-cache -fv
    sudo vi /etc/fonts/language-selector.conf更改成如下
       
                    serif
                   
                            DejaVu Serif
                            Bitstream Vera Serif
                            AR PL New Sung
                            AR PL ShanHeiSun Uni
                            AR PL ZenKai Uni
                   
            
            
                    sans-serif
                   
                            DejaVu Sans
                            Bitstream Vera Sans
                            AR PL New Sung
                            AR PL ShanHeiSun Uni
                            AR PL ZenKai Uni
                   
            
            
                    monospace
                   
                            DejaVu Sans Mono
                            Bitstream Vera Sans Mono
                            AR PL New Sung
                            AR PL ShanHeiSun Uni
                            AR PL ZenKai Uni
                   
            
            
                   
                            Song
                            Sun
                            Kai
                            Ming
                   
                   
                            100
                     
                   
                            180
                   
                   
                            true
                   
       
            
                   
                            Song
                            Sun
                            Kai
                            Ming
                     
                   
                            false
                   
                   
                            0
                   
                   
                            true
                   
                   
                            false
                   
                   
                            true
                   
                   
                            12
                   
                   
                            18
                   
                   
                            false
                   
            
    再将本文附件中的自定义的"ttf-arphic-newsung.conf"拷贝到"/etc/fonts/conf.d"目录下
  • 安装ATI显卡驱动
    sudo apt-get install xorg-driver-fglrx执行如下命令
    sudo aticonfig --initial
    sudo aticonfig --overlay-type=Xv手动修改"/etc/X11/xorg.conf"成如下
    Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "aticonfig-Screen[0]" 0 0
        InputDevice    "Generic Keyboard"
        InputDevice    "Configured Mouse"
        InputDevice    "stylus" "SendCoreEvents"
        InputDevice    "cursor" "SendCoreEvents"
        InputDevice    "eraser" "SendCoreEvents"
    EndSection
    Section "Files"
        # path to defoma fonts
        FontPath     "/usr/share/fonts/arphic"
        FontPath     "/usr/share/X11/fonts/misc"
        FontPath     "/usr/share/X11/fonts/cyrillic"
        FontPath     "/usr/share/X11/fonts/100dpi/:unscaled"
        FontPath     "/usr/share/X11/fonts/75dpi/:unscaled"
        FontPath     "/usr/share/X11/fonts/Type1"
        FontPath     "/usr/share/X11/fonts/100dpi"
        FontPath     "/usr/share/X11/fonts/75dpi"
        FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    EndSection
    Section "Module"
        Load  "i2c"
        Load  "bitmap"
        Load  "ddc"
        Load  "dri"
        Load  "extmod"
        Load  "freetype"
        Load  "glx"
        Load  "int10"
        Load  "type1"
        Load  "vbe"
    EndSection
    Section "InputDevice"
        Identifier  "Generic Keyboard"
        Driver      "kbd"
        Option        "CoreKeyboard"
        Option        "XkbRules" "xorg"
        Option        "XkbModel" "pc104"
        Option        "XkbLayout" "us"
    EndSection
    Section "InputDevice"
        Identifier  "Configured Mouse"
        Driver      "mouse"
        Option        "CorePointer"
        Option        "Device" "/dev/input/mice"
        Option        "Protocol" "ExplorerPS/2"
        Option        "ZAxisMapping" "4 5"
        Option        "Emulate3Buttons" "true"
    EndSection
    Section "InputDevice"
                                                          # /dev/input/event
                                                          # for USB
        Identifier  "stylus"
        Driver      "wacom"
        Option        "Device" "/dev/wacom"          # Change to
        Option        "Type" "stylus"
        Option        "ForceDevice" "ISDV4"               # Tablet PC ONLY
    EndSection
    Section "InputDevice"
                                                          # /dev/input/event
                                                          # for USB
        Identifier  "eraser"
        Driver      "wacom"
        Option        "Device" "/dev/wacom"          # Change to
        Option        "Type" "eraser"
        Option        "ForceDevice" "ISDV4"               # Tablet PC ONLY
    EndSection
    Section "InputDevice"
                                                          # /dev/input/event
                                                          # for USB
        Identifier  "cursor"
        Driver      "wacom"
        Option        "Device" "/dev/wacom"          # Change to
        Option        "Type" "cursor"
        Option        "ForceDevice" "ISDV4"               # Tablet PC ONLY
    EndSection
    Section "Monitor"
        Identifier   "PHILIPS 107F"
        Option        "DPMS"
    EndSection
    Section "Monitor"
        Identifier   "aticonfig-Monitor[0]"
        Option        "VendorName" "ATI Proprietary Driver"
        Option        "ModelName" "Generic Autodetecting Monitor"
        Option        "DPMS" "true"
    EndSection
    Section "Device"
        Identifier  "ATI Technologies, Inc. RV350 AS [Radeon 9600]"
        Driver      "ati"
        BusID       "PCI:2:0:0"
    EndSection
    Section "Device"
        Identifier  "aticonfig-Device[0]"
        Driver      "fglrx"
    EndSection
    Section "Screen"
        Identifier "Default Screen"
        Device     "ATI Technologies, Inc. RV350 AS [Radeon 9600]"
        Monitor    "PHILIPS 107F"
        DefaultDepth     24
        SubSection "Display"
            Depth     24
            Modes    "1024x768"
        EndSubSection
    EndSection
    Section "Screen"
        Identifier "aticonfig-Screen[0]"
        Device     "aticonfig-Device[0]"
        Monitor    "aticonfig-Monitor[0]"
        DefaultDepth     24
        SubSection "Display"
            Viewport   0 0
            Depth     24
                                Modes    "1024x768"
        EndSubSection
    EndSection
    Section "DRI"
        Mode         0666
    EndSection

               
               
               
  • 混音设置(默认好像已经可以多个程序同时出声了)
    参考官方WIKI的
    如何混音

  • 更多设置...
    请参考
    官方WIKI

  • 我的几个配置文件


       
        文件:config.tar.gz
        大小:120KB
        下载:
下载
       

      
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/7654/showart_153931.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP