很多朋友问我怎么从硬盘上的ISO文件通过硬盘安装Debian,我的回答是,这很麻烦,尤其是Woody的光盘文件,我成功的通过硬盘安装了,但是仅仅是安装而已,没多久就删除了,重新通过网络安装了一次。原因非常简单,因为我习惯了网络的安装,也是因为硬盘安装太麻烦,不停的切换控制台,不停的mount and umount,相信新手没有这个能力和耐心。但是我还是会在本文中告诉大家这种方法,虽然不赞成。
Section "Files"
FontPath "/usr/lib/X11/fonts/xp" # 这一行是我汉化的时候加上去的,下面马上说汉化的事情
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/lib/X11/fonts/misc"
FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/lib/X11/fonts/Speedo"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
EndSection
# You may uncomment the following lines if you want `ls' to be colorized:
export LS_OPTIONS='--color=auto'
eval `dircolors`
alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
alias l='ls $LS_OPTIONS -lA'
#
# Some more alias to avoid making mistakes:
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'