• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
  • Debian系統網絡安裝及安裝后的配置

    發表于:2007-05-26來源:作者:點擊數: 標簽:
    一、安裝系統 1、準備ISO文件,相應的內核文件及Grub。 2、啟動機器到Grub CODE: root (hd0,4) kernel /vmlinuz root=/dev/ram ramdisk_size=512000000,devfs=mount,dall initrd /initrd.gz boot 即可進入安裝界面,安裝時選擇只安裝基本系統。 安裝時會用到

    一、安裝系統

    1、準備ISO文件,相應的內核文件及Grub。

    2、啟動機器到Grub

    CODE:

    root (hd0,4)

    kernel /vmlinuz root=/dev/ram ramdisk_size=512000000,devfs=mount,dall

    initrd /initrd.gz

    boot

    即可進入安裝界面,安裝時選擇只安裝基本系統。

    安裝時會用到APT安裝源

    選擇的是:

    deb http://debian.cn99.com/debian testing main non-free contrib

    deb-src http://debian.cn99.com/debian testing main non-free contrib

    3、首先更新系統:

    CODE:

    apt-get update

    apt-get upgrade

    4、安裝內核:

    CODE:

    apt-get install grub(確保系統中有grub,如果沒有的話,安裝內核時可能會安裝Lilo)

    apt-get install linux-image-2.6.16-2-686

    5、配置中文

    CODE:

    apt-get install locales

    dpkg-reconfigure locales

    然后就可以選擇相關的編碼了。

    最后將默認編碼設置為zh_CN.UTF-8

    6、安裝x-window

    CODE:

    apt-get install x-window-system-core

    apt-get install xdebconfigurator

    apt-get install gnome-core

    至些系統已經安裝完畢。運行startx即可啟動系統,如果顯示器是液晶可能還會出現問題:啟動后出現閃屏現象。

    解決方法:

    到http://www.sh.nu/nvidia/gtf.php算出一個Modeline,然后將得到的數據放到/etc/X11/xorg.conf文件中,具體位置如下:

    CODE:

    Section "Monitor"

    Identifier "Generic Monitor"

    HorizSync 30.0 - 72.0

    VertRefresh 50.0 - 120.0

    Modeline ………… #寫在這里

    Option "DPMS"

    EndSection

    二、安裝軟件

    下在則一些常用的軟件部分附有安裝方法,部分不附安裝方法

    1、閱讀器:

    pdf: apt-get install xpdf xpdf-chinese-simplified

    chm: 下載chmsee的debian包:http://www.gnome-cn.org/software/chmsee/releases/0.9.5/chmsee_0-9-5-1_i386.deb 安裝即可

    2、瀏覽器:firefox

    3、翻譯:stardict:apt-get install stardict

    相關的字典文件要到主頁上去下載

    4、下載:gtfp、wget、prozilla

    5、多媒體:beep-media-player、xine

    6、即時通信:LumaQQ、Gaim

    7、 圖像處理

    gthumb,類似acdsee,功能絕不差于acdsee,安裝:apt-get install gthumb

    gimp,比肩photoshop的圖像處理軟件,幾乎和photoshop一模一樣,gnome的老祖宗:)

    gtkam,數碼相機軟件,支持很多相機,無須另加驅動,我的Olympus相機一下子就認出來了

    8. 安裝小企鵝中文輸入法

    CODE:

    # apt-get install fcitx

    # cd /etc/X11/Xsession.d

    增加一個文件:40xfcitx-startup,內容是

    CODE:export XMODIFIERS="@im=fcitx"

    export XIM=fcitx

    export XIM_PROGRAM=fcitx

    fcitx&

    啟動圖形界面,輸入法可以使用了。

    三、其它

    1、讓debian更人性化:

    也許你要使用U盤或數碼相機之類的,當插入U盤時,debian可以自動在桌面上彈出其中當內容,安下面當方法做:

    CODE:apt-get install hotplug udev

    apt-get install hal hal-device-manager

    apt-get install pmount

    apt-get install gnome-volume-manager

    安裝來這些軟件,debian還不能自動彈出U盤里當內容,你還需要做個配置:

    U盤在linux時作為SCSI設備來訪問當,所以為你當U盤建個目錄:如:/mnt/u

    然后編輯/etc/fstab

    加入如下一行:

    CODE:/dev/sda1 /mnt/u vfat iocharset=cp936,codepage=936

    2、美化

    字體美化主要是font.conf和local.conf文件起作用

    而font.conf文件不建議更改

    下面這個是local.conf文件

    CODE:

     

    <?xml version="1.0"?>
                <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
                <!-- ~/.fonts.conf -->
                <fontconfig>
                <match target="pattern">
                <test name="family">
                <string>SimSun</string>
                </test>
                <test name="weight" compare="more_eq">
                <const>bold</const>
                </test>
                <edit name="family" mode="assign">
                <string>SimHei</string>
                </edit>
                </match>
                <alias>
                <family>serif</family>
                <prefer>
                <string>Arial</string>
                <family>Tahoma</family>
                <family>宋體</family>
                <family>黑體</family>
                <family>NSimSun</family>
                <family>SimHei</family>
                <family>SimSun</family>
                </prefer>
                </alias>
                <alias>
                <family>sans-serif</family>
                <prefer>
                <string>Arial</string>
                <family>Tahoma</family>
                <family>宋體</family>
                <family>黑體</family>
                <family>NSimSun</family>
                <family>SimHei</family>
                <family>SimSun</family>
                </prefer>
                </alias>
                <alias>
                <family>monospace</family>
                <prefer>
                <string>Arial</string>
                <family>Tahoma</family>
                <family>宋體</family>
                <family>黑體</family>
                <family>NSimSun</family>
                <family>SimHei</family>
                </prefer>
                </alias>
                <match target="font">
                <test qual="any" name="family" compare="eq">
                <string>NSimSun</string>
                <string>SimHei</string>
                <string>SimSun</string>
                <string>NSimSun</string>
                <string>宋體</string>
                <string>黑體</string>
                <string>Verdana</string>
                <string>helvetica</string>
                <string>MS Shell Dlg</string>
                <string>Arial</string>
                </test>
                <test name="pixelsize" compare="more_eq">
                <double>8</double>
                </test>
                <test name="pixelsize" compare="less_eq">
                <double>18</double>
                </test>
                <edit name="hinting" >
                <bool>true</bool>
                </edit>
                <edit name="antialias">
                <bool>false</bool>
                </edit>
                </match>
                </fontconfig>

    原文轉自:http://www.kjueaiud.com

    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>