发个debian 6.0的简单安装教程
2009年10月写了个《debian lenny的简单安装教程》,前段时间一直盼望的6.0 squeeze终于正式发布了,所以在lenny的教程基础上进行了修改,以满足squeeze安装的需要。水平有限,还望指正。
创建时间:2011年 03月 18日 星期五 09:30:51 CST
- [SIZE=4][COLOR=Blue]目录[/COLOR][/SIZE]
- 硬盘安装Debian与Xp双系统
- 挂载windows分区
- 删除双系统中的Debian
- U盘安装Debian[SIZE=2][COLOR=Red](适用于已安装了Win7的电脑)[/COLOR][/SIZE]
- 安装基本系统
- 配置locale
- 修改更新源
- 获取www.debian-multimedia.org公钥
- 更新系统
- 卸载不需要的软件
- 安装Vim
- 安装内核头文件
- Bash参数补齐
- 安装ttf、ttc字体
- 安装gnome套件
- 安装evince
- 安装农历显示
- 安装gthumb
- 安装科学计算器gcalctool
- 安装照相软件
- 安装KDE套件
- 安装音乐播放器amarok
- 安装音频播放器kaboodle
- 安装看图软件gwenview
- 安装归档管理器
- 安装网络配置工具
- 安装编译环境
- 安装ATI显卡radeon驱动
- 安装3D桌面
- 安装声卡驱动alsa
- 安装摄像头驱动
- 安装ntfs-3g
- 安装新立得
- 编译安装输入法fcitx 4.0.1
- 安装iceweasel
- 安装flash插件
- 安装openoffice.org
- 安装星际译王
- 安装gimp
- 安装计算器bc
- 安装lftp
- 安装mplayer-mt
- 安装音乐播放器audacious2
- 安装音频编辑与录音软件
- 安装rar、7z、cab格式支持
- 安装virtualbox
- 安装硬件检测软件lshw-gtk
- 安装温度检测软件
该方法用于已安装了Windows系统的计算机,而且C盘必须为fat32,如果为NTFS,请使用下面的U盘安装方法
首先要确保电脑内没有旧版的Debian光盘映像,因为安装程序会自动搜索硬盘的每一个分区,所以如果有旧版的Debian光盘映像,则会出现不匹配的错误。
1、复制debian第一张光盘到C盘根目录
2、下载相应版本的硬盘启动映像vmlinuz、initrd,比如stable的地址是:
http://ftp.debian.org/debian/dists/stable/main/installer-i386/current/images/hd-media/
3、下载grub4dos,解压后将chinese文件夹中的grldr,grub.exe复制到C盘根目录
4、去掉C盘根目录BOOT.INI的只读属性,在最后添加C:\GRLDR="Start GRUB"
5、重启后,选择Start GRUB,在GRUB>后依次输入:
- GRUB>root (hd0,0)
- GRUB>kernel /vmlinuz
- GRUB>initrd /initrd.gz
- GRUB>boot
6、可以将grub安装到MBR,实现双启动
7、基本系统安装完毕后,将debian的iso添加到更新源中,如果是DHCP用户,可以跳过此步,不用安装ppp拨号软件。首先在root账户下在/media下建立文件夹tmp,然后挂载U盘到文件夹tmp中:mount -t vfat /dev/sdb1 /media/tmp
然后挂载U盘的ISO镜像到/mnt,输入:mount "iso的路径" /mnt -t iso9660 -o loop
清空sources.list,然后添加:deb file:///mnt stable main
输入:aptitude update
安装ppp拨号软件:aptitude install pppoeconf -y
然后配置ADSL:pppoeconf
依照步骤提示进行
ADSL命令:
拨号 ADSL
pon dsl-provider
断开 ADSL
poff
查看拨号日志
plog
挂载windows分区
- /etc/fstab内容为:
- # /etc/fstab: static file system information.
- #
- # <file system> <mount point> <type> <options> <dump> <pass>
- proc /proc proc defaults 0 0
- /dev/sda1 /media/sda1 ntfs-3g silent,umask=0,locale=zh_CN.UTF8 0 0
- /dev/sda2 / ext3 errors=remount-ro 0 1
- /dev/sda5 /home ext3 defaults 0 0
首先建立挂载点mkdir /media/sda1
假如sata的C盘是ntfs分区,那么添加:
/dev/sda1 /media/sda1 ntfs-3g silent,umask=0,locale=zh_CN.UTF8 0 0
如sata的C盘是fat32分区,那么添加:
/dev/sda1 /media/sda1 vfat utf8,umask=000,user 0 0
保存,重新启动。
删除双系统中的Debian
使用MBRFix工具修复MBR:
1、启动Windows,进入cmd命令窗口,然后用cd命令进入mbrfix工具所在的目录
2、输入命令:MbrFix /drive 0,然后确认,重启
3、进入Windows,使用PQ等分区工具将该分区格式化成fat32或ntfs格式,就可在Windows下使用
U盘安装Debian(适用于已安装了Win7的电脑)
该方法可用于任何情况,多用于只安装了Linux系统的计算机,甚至裸机,经测试,该方法适用于已安装了Win7的电脑。
首先要确保电脑内没有旧版的Debian光盘映像,因为安装程序会自动搜索硬盘的每一个分区,所以如果有旧版的Debian光盘映像,则会出现不匹配的错误。
1、用usboot或ultraiso软件将U盘格式化为HDD可启动模式
2、复制Debian第一张光盘到U盘根目录
3、下载相应版本的硬盘启动映像vmlinuz、initrd,比如stable的地址是:
http://ftp.debian.org/debian/dists/stable/main/installer-i386/current/images/hd-media/
4、下载grub4dos,解压后将chinese文件夹中的grldr,grub.exe复制到U盘根目录
5、重启,选择从U盘启动
输入:grub
- GRUB>root (hd0,0) #这里根据自己U盘的情况设定,比如有可能是root (hd0,1)
- GRUB>kernel /vmlinuz
- GRUB>initrd /initrd.gz
- GRUB>boot
7、基本系统安装完毕后,将debian的iso添加到更新源中,如果是DHCP用户,可以跳过此步,不用安装ppp拨号软件。首先在root账户下在/media下建立文件夹tmp,然后挂载U盘到文件夹tmp中:mount -t vfat /dev/sdb1 /media/tmp
然后挂载U盘的ISO镜像到/mnt,输入:mount "iso的路径" /mnt -t iso9660 -o loop
清空sources.list,然后添加:deb file:///mnt stable main
输入:aptitude update
安装ppp拨号软件:aptitude install pppoeconf
然后配置ADSL:pppoeconf
依照步骤提示进行
ADSL命令:
拨号 ADSL
pon dsl-provider
断开 ADSL
poff
查看拨号日志
plog
安装基本系统
1、语言选择ENGLISH
2、在国家选项中选择 other中的 asia \ china(中国)
3、然后是配置IP 地址,DHCP用户能自动获取地址信息,ADSL用户选择稍后配置
4、分区时选择手动
5、在tasksel选择里不要选任何东西,base system也不要选
到此已经有一个基本的系统,重新启动后开始基本配置
配置locale
执行dpkg-reconfigure locales,选择要用的locale,比如选择en_US.ISO-8859-1、en_US.ISO-8859-15、en_US.UTF-8、zh_CN.GB2312、zh_CN.UTF-8、zh_CN.GB18030、zh_CN.GBK、zh_TW.BIG5,回车,选择系统默认locale为zh_CN.UTF-8
安装localepurge
aptitude install localepurge -y
在对话框中选择要保留使用的locale,默认情况下已经选好了先前设置的locale,所以直接回车。也可以通过dpkg-reconfigure localepurge 进行详细的配置。
执行命令localepurge,清除多余的locale,以释放磁盘空间。以后不管安装什么软件,它都将自动清除没用的locale。
清除完会提示释放了多少磁盘空间。
修改更新源
vim /etc/apt/sources.list
- #光盘
- #deb file:///mnt squeeze main contrib
- #中国科学技术大学
- #deb [URL]http://debian.ustc.edu.cn/debian/[/URL] squeeze main contrib non-free
- #deb-src [URL]http://debian.ustc.edu.cn/debin/[/URL] squeeze main contrib non-free
- #deb [URL]http://debian.ustc.edu.cn/debian-security/[/URL] squeeze/updates main contrib non-free
- #deb-src http:// debian.ustc.edu.cn/ debian-security/ squeeze/ updates main contrib non-free
- #deb [URL]http://debian.ustc.edu.cn/debian-multimedia/[/URL] squeeze main non-free
- #deb-src [URL]http://debian.ustc.edu.cn/debian-multimedia/[/URL] squeeze main non-free
- #上海交通大学
- #deb [URL]http://ftp.sjtu.edu.cn/debian/[/URL] squeeze main contrib non-free
- #deb-src [URL]http://ftp.sjtu.edu.cn/debian/[/URL] squeeze main contrib non-free
- #deb [URL]http://ftp.sjtu.edu.cn/debian-security/[/URL] squeeze/updates main contrib non-free
- #deb-src [URL]http://ftp.sjtu.edu.cn/debian-security/[/URL] squeeze/updates main contrib non-free
- #网易镜像
- deb [URL]http://mirrors.163.com/debian/[/URL] squeeze main contrib non-free
- deb-src [URL]http://mirrors.163.com/debian/[/URL] squeeze main contrib non-free
- deb [URL]http://mirrors.163.com/debian-security/[/URL] squeeze/updates main contrib
- deb-src [URL]http://mirrors.163.com/debian-security/[/URL] squeeze/updates main contrib
- #搜狐镜像
- #deb [URL]http://mirrors.sohu.com/debian/[/URL] squeeze main contrib non-free
- #deb-src [URL]http://mirrors.sohu.com/debian/[/URL] squeeze main contrib non-free
- #deb [URL]http://mirrors.sohu.com/debian-security/[/URL] squeeze/updates main contrib
- #deb-src [URL]http://mirrors.sohu.com/debian-security/[/URL] squeeze/updates main contrib
- #deb [URL]http://mirrors.sohu.com/debian-multimedia/[/URL] squeeze main non-free
- #deb-src [URL]http://mirrors.sohu.com/debian-multimedia/[/URL] squeeze main non-free
- #官方更新
- #deb [URL]http://ftp.debian.org/debian[/URL] squeeze main contrib non-free
- #deb-src [URL]http://ftp.debian.org/debian[/URL] squeeze main contrib non-free
- #deb [URL]http://security.debian.org/debian-security/[/URL] squeeze/updates main contrib non-free
- #deb-src [URL]http://security.debian.org/debian-security/[/URL] squeeze/updates main contrib non-free
- #多媒体源
- deb [URL="http://www.debian-multimedia.org/"]http://www.debian-multimedia.org[/URL] squeeze main non-free
- deb-src [URL="http://www.debian-multimedia.org/"]http://www.debian-multimedia.org[/URL] squeeze main non-free
- #deb [URL]http://ftp.tw.debian.org/debian-multimedia/[/URL] squeeze main non-free
- #deb-src [URL]http://ftp.tw.debian.org/debian-multimedia/[/URL] squeeze main non-free
- gpg --keyserver keyring.debian.org --recv-keys 07DC563D1F41B907
- gpg --armor --export 1F41B907 | apt-key add -
卸载不需要的软件
aptitude purge vim-tiny nano tasksel tasksel-data -y
安装Vim
aptitude install vim -y
安装内核头文 件
aptitude install linux-headers-`uname -r` -y
Bash参数补齐
aptitude install bash-completion -y
然后在~/.bashrc中加入:
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
安装ttf、ttc字体
在/usr/share/fonts/truetype下建立文件夹myfonts
复制ttf、ttc字体到/usr/share/fonts/truetype/myfonts文件夹下
- chmod 755 /usr/share/fonts/truetype/myfonts/*
- cd /usr/share/fonts/truetype/myfonts/
- mkfontscale
- mkfontdir
- fc-cache /usr/share/fonts/truetype/myfonts/
- dpkg-reconfigure fontconfig
安装Gnome环境
安装gnome套件
1、安装硬件抽象层hal,gnome下自动挂载工具pmount,以实现移动设备usb自动挂载:
aptitude install hal pmount -y
将会自动安装dbus信息总线以实现hal与gnome应用程序通信,实现设备自动发现。
2、安装X和gnome
aptitude install gnome-core gdm -y
3、安装gnome下的声音支持。
aptitude install gnome-media gnome-audio esound -y
4、安装必要的gnome管理工具或程序
aptitude install gksu gnome-system-tools file-roller gconf-editor gnome-system-monitor gnome-power-manager gnome-screensaver gnome-themes gnome-network-admin -y
5、把安装时建立的用户加入sudoers
visudo
在 root ALL=(ALL) ALL 下面加入
用户名 ALL=(ALL) ALL
6、选择"外观"的等宽字体为:DejaVu Sans Mono Book
7、安装gtk开发包
aptitude install gnome-core-devel libgtk2.0-dev libglib2.0-dev -y
安装evince
aptitude install evince poppler-data -y
安装农历显示
aptitude install lunar-applet -y
然后选择添加到面板
安装看图软件gthumb
aptitude install gthumb -y
安装科学计算器gcalctool
aptitude install gcalctool -y
安装照相软件
aptitude install camorama -y
安装KDE环境
安装KDE套件
1、aptitude install kde-core -y(自动安装hal,dbus,arts等)
2、安装中文支持aptitude install kde-i18n-zhcn -y
3、安装调音器aptitude install kmix -y
4、给gtk程序安装主clear-look主题,这样在KDE控制中心里将多一项GTK Styles and fonts 选项,可以为GTK程序选择主题和字体:
aptitude install gtk2-engines-clearlooks gtk-qt-engine -y
5、安装登录管理器aptitude install kdm kdmtheme -y
6、安装sudo
aptitude install sudo -y
把安装时建立的那个用户加入sudoers
visudo
在 root ALL=(ALL) ALL 下面加入
用户名 ALL=(ALL) ALL
7、安装qt开发包aptitude install pyqt4-dev-tools kdelibs4-dev libqt3-mt-dev libqt4-dev -y
8、安装面板主菜单按钮aptitude install kbfx -y
9、安装KDE splash套件aptitude install ksplash ksplash-engine-moodin -y
10、安装KDE窗口主题套件aptitude install kwin-style-dekorator -y,然后建立文件
夹~/.kde/share/apps/deKorator/themes
安装音乐播放器amarok
aptitude install amarok -y
安装音频播放器kaboodle
aptitude install kaboodle -y
安装看图软件gwenview
aptitude install gwenview -y
安装归档管理器
aptitude install ark -y
安装网络配置工具
aptitude install knetworkconf -y
安装编译环境
- aptitude install gcc make build-essential autoconf automake1.9 cvs subversion libsdl-dev libgl1-mesa-dev fakeroot libnss3-dev gdb libglib2.0-0 libglib-perl dh-make cdbs debhelper kernel-package lsb-release module-assistant -y
aptitude install xserver-xorg-video-radeon -y
修改/etc/X11/xorg.conf:
- Section "Module"
- Load "glx"
- Load "dri"
- Load "drm"
- EndSection
- Section "ServerLayout"
- Identifier "Xorg Configured"
- Screen 0 "screen0" 0 0
- EndSection
- Section "Extensions"
- Option "Composite" "1"
- EndSection
- Section "ServerFlags"
- Option "AIGLX" "on"
- EndSection
- Section "Device"
- Identifier "x700"
- Driver "radeon"
- VendorName "ATI Technologies Inc"
- BoardName "ATI Mobility Radeon X700"
- Option "DynamicClocks" "on"
- Option "EnablePageFlip" "on"
- Option "ColorTiling" "on"
- Option "DRI" "on"
- EndSection
- Section "Screen"
- Identifier "screen0"
- Device "x700"
- DefaultDepth 24
- SubSection "Display"
- Viewport 0 0
- # Depth 24
- # Modes "1280x800"
- EndSubSection
- EndSection
- Section "DRI"
- Group "video"
- Mode 0666
- EndSection
- Section "ServerFlags"
- Option "DontZap" "yes"
- EndSection
linux /boot/vmlinuz-2.6.38-20110317 root=UUID=01f4ce6d-b0f8-4fff-865c-2e90662d200c ro quiet radeon.modeset=0
测试驱动
安装mesa-utils
aptitude install mesa-utils -y
测试:glxgears
看FPS,在1000以上,就比较不错了
glxinfo | head
若出现:
name of display: :0.0
display: :0 screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
......
说明3D已经开启。
安装3D桌面
首先要安装显卡驱动,并开启direct rendering:
安装compiz-fusion:
aptitude install compiz-fusion-plugins-main compizconfig-settings-manager compiz-fusion-plugins-extra compiz-gnome -y
运行3D桌面
终端中输入:compiz
若想自动运行,可以在"会话"中添加:compiz
设置参数:
系统->首选项->CompizConfig设置管理器
1、给立方体设置一个背景,进入CompizConfig -> 桌面立方体 -> Appearance -> Skydome 勾选 "Background",在 Background Images 中选择一个背景图片即可。
2、如果要让立方体增加一个倒影,勾选 CompizConfig -> Cube Reflection 即可。
快捷键:Ctrl+Alt+鼠标左键拖动,Ctrl+Alt+方向键旋转立方体。
3、使用神灯效果,这个效果最早出现在 Mac 上。勾选CompizConfig -> Animations 建议取消CompizConfig -> 最小化效果,勾选 CompizConfig -> 渐弱窗口
4、火焰字
勾选 CompizConfig -> Paint fire on the screen 即可。可以在 CompizConfig -> Paint fire on the screen -> Fire Particle Color 这里设置火焰的颜色,勾选 Randomly Colored Fire 会写出五彩斑斓的文字。
默认快捷键是 Shift+win+鼠标左键,按 Shift+win+c 是清除效果。
5、桌面展示
勾选 CompizConfig -> Expo
默认快捷键是 win+e,鼠标移动到屏幕左上角也可以。
6、菜单透明问题
默认菜单是透明的,可以到 CompizConfig -> General Options -> Opacity Settings 这里进行设置。删除 Window opacities 里面的那行代码就可以了。
7、3D 层叠窗口效果
勾选 CompizConfig -> 3D Windows
8、屏幕保护
勾选 CompizConfig -> Screen Saver
有两种效果,一种是Rotating cube 旋转立方体,一种是 Flying windows 飞行的窗口。
9、3D 窗口切换效果
勾选 CompizConfig -> Shift Switcher
在 Switcher mode 中可以选择两种切换效果,一种类似 Vista 的 Flip3D 切换,一种类似 Mac 的 CoverFlow 切换。
常用快捷键:
火焰特效 Win+Shift+按住鼠标左键移动鼠标
关闭火焰特效 Win+Shift+c
旋转立方体 Ctrl+Alt+ 按住鼠标左键移动鼠标
平铺各个桌面 Ctrl+Alt+向下方向键
突出显示当前桌面 Shift+Alt+向上方向键
窗口切换 Alt+Tab
水波特效 Shift+F9
显示桌面 Ctrl+Alt+d
安装声卡驱动alsa
aptitude install alsa-base alsa-utils -y
运行alsamixer
出现图形界面,可以通过方向键来选取和修改音量,通过m键决定是否静音。
安装ntfs-3g
aptitude install ntfs-3g -y
mkdir /media/disk
挂载:mount -t ntfs-3g /dev/sdb5 /media/disk
卸载:umount /media/disk/
安装新立得
aptitude install synaptic -y
编译安装输入法fcitx 4.0.1
编译安装
下载地址: http://fcitx.googlecode.com/files/fcitx-4.0.1_all.tar.gz
构建编译环境:
aptitude install cdbs libxpm-dev libcairo2-dev libpango1.0-dev intltool -y
进入目录,输入:
./configure; make; make install
将库添加到/usr/lib,否则无法运行:
ln -s /usr/local/lib/libfcitx-config.so.4 /usr/lib/libfcitx-config.so.4
添加第三方词库
地址: http://code.google.com/p/hslinuxextra/downloads/list
下载fcitx-sougou-phrase-full.7z,解压
进入目录,输入:
./run.sh
然后把生成的下列文件:pybase.mb和pyphrase.mb复制到/usr/local/share/fcitx/data目录下覆盖原文件即可。
配置开机启动
中文locale下:
在~/.profile中加入:
- export XMODIFIERS="@im=fcitx"
- export GTK_IM_MODULE=xim
- export QT_IM_MODULE=xim
- fcitx -d
#!/bin/bash
fcitx
英文locale下:
sudo gedit /usr/lib/gtk-2.0/2.10.0/immodule-files.d/libgtk2.0-0.immodules
找到"/usr/lib/gtk-2.0/2.10.0/immodules/im-xim.so"
"xim" "X Input Method" "gtk20" "/usr/share/locale" "ko:ja:th:zh"
改为:"/usr/lib/gtk-2.0/2.10.0/immodules/im-xim.so"
"xim" "X Input Method" "gtk20" "/usr/share/locale" "en:ko:ja:th:zh"
美化方法
修改配置文件~/.config/.fcitx/config
- [Program]
- # 字体
- Font=WenQuanYi Micro Hei
- # 字体区域
- FontLocale=zh_CN.UTF-8
- # 记录文件
- RecordFile=/home/sunjian/.config/fcitx/record.dat
- # 使用系统托盘
- UseTray=False
- # 使用DBus来显示界面(需要KIMPanel)
- UseDBus=False
- # 在Fcitx启用附加组件
- EnableAddons=True
- # Fcitx真正启动前延迟的秒数
- DelayStart=0
- [Output]
- # 数字后跟半角符号
- HalfPuncAfterNumber=True
- # 回车键操作
- EnterAction=Commit
- # 分号键操作
- SemiColonAction=NoChange
- # 大写时输入英文
- InputEngByCapitalChar=True
- # 转换中文标点
- ConvertPunc=True
- # 联想模式禁用翻页
- LegendModeDisablePaging=True
- # 快速切换英文模式时上屏
- SendTextWhenSwitchEng=False
- [Appearance]
- # 候选词个数
- CandidateWordNumber=9
- # 主窗口隐藏模式
- MainWindowHideMode=Auto
- # 输入窗口显示在正中
- CenterInputWindow=False
- # 切换输入时显示输入条
- ShowInputWindowAfterTriggering=True
- # 序号后加点
- ShowPointAfterIndex=False
- # 显示输入速度
- ShowInputSpeed=False
- # 显示版本
- ShowVersion=False
- # 环境未配置正确时显示提示窗口
- ShowHintWindow=False
- # 皮肤名称
- SkinType=classic
- [Hotkey]
- # 快捷键: 切换输入法
- TriggerKey=CTRL_SPACE
- # 快捷键: 切换中英文输入
- ChnEngSwitchKey=L_CTRL
- # 双击中英文切换键时切换
- DoubleSwitchKey=False
- # 输入间隔
- TimeInterval=250
- # 快捷键: 切换光标跟随
- FollowCursorKey=CTRL_K
- # 快捷键: 隐藏主窗口
- HideMainWindowKey=CTRL_ALT_H
- # 快捷键: 切换软键盘
- VKSwitchKey=CTRL_ALT_K
- # 快捷键: 切换简繁体中文输入
- TraditionalChnSwitchKey=CTRL_ALT_F
- # 快捷键: 切换联想模式
- LegendSwitchKey=CTRL_L
- # 快捷键: 反查拼音
- LookupPinyinKey=CTRL_ALT_E
- # 快捷键: 切换全角
- FullWidthSwitchKey=SHIFT_SPACE
- # 快捷键: 切换中英文标点
- ChnPuncSwitchKey=ALT_SPACE
- # 快捷键: 前一页
- PrevPageKey=-
- # 快捷键: 后一页
- NextPageKey==
- # 快捷键: 选择第二第三候选词
- SecondThirdCandWordKey=SHIFT
- # 快捷键: 保存配置及输入历史
- SaveAllKey=CTRL_ALT_S
- # 快捷键: 切换记录模式
- SetRecordingKey=CTRL_ALT_J
- # 快捷键: 重置记录模式
- ResetRecordingKey=CTRL_ALT_A
- [InputMethod]
- # 拼音输入法优先级,0为禁用
- PinyinOrder=1
- # 双拼输入法优先级,0为禁用
- ShuangpinOrder=0
- # 默认双拼方案
- DefaultShuangpinSchema=自然码
- # 区位输入法优先级,0为禁用
- QuweiOrder=0
- # 码表输入法优先级,0为禁用
- TableOrder=0
- # 提示词库中词组
- PhraseTips=True
- ExtraIM=
- [Pinyin]
- # 使用完整拼音
- UseCompletePinyin=False
- # 自动组词
- AutoCreatePhrase=True
- # 保存自动词组
- SaveAutoPhrase=False
- # 快捷键: 添加常用字
- AddFreqWordKey=CTRL_8
- # 快捷键: 删除常用字
- DeleteFreqWordKey=CTRL_7
- # 快捷键: 删除用户词组
- DeleteUserPhraseKey=CTRL_DELETE
- # 快捷键: 以词定字
- InputWordFromPhraseKey=[]
- # 候选字顺序
- BaseOrder=AdjustFreq
- # 候选词顺序
- PhraseOrder=AdjustFast
- # 常用字顺序
- FreqOrder=AdjustNo
- # 模糊an和ang
- FuzzyAnAng=False
- # 模糊en和eng
- FuzzyEnEng=False
- # 模糊ian和iang
- FuzzyIanIang=False
- # 模糊in和ing
- FuzzyInIng=False
- # 模糊ou和u
- FuzzyOuU=False
- # 模糊uan和uang
- FuzzyUanUang=False
- # 模糊c和ch
- FuzzyCCh=False
- # 模糊f和h
- FuzzyFH=False
- # 模糊l和n
- FuzzyLN=False
- # 模糊s和sh
- FuzzySSH=False
- # 模糊z和zh
- FuzzyZZH=False
- # 修复拼音中ng和gn的输入错误
- Misstype=False
aptitude install iceweasel iceweasel-l10n-zh-cn -y
安装flash插件
将插件复制到文件夹~/.mozilla/plugins即可
安装openoffice.org
aptitude install openoffice.org-writer openoffice.org-impress openoffice.org-calc openoffice.org-math openoffice.org-l10n-zh-cn -y
安装星际译王
aptitude install stardict -y
复制字典文件到/usr/share/stardict/dic目录
安装gimp
aptitude install gimp -y
安装计算器bc
aptitude install bc -y
设置精度:scale=3
安装lftp
aptitude install lftp -y
安装mplayer-mt
mplayer-mt在多核CPU下比mplayer性能有一定的提升
aptitude install mplayer-mt w32codecs -y
播放命令:
- mplayer-mt -double -xy 640 -vf screenshot -ass -embeddedfonts -ass-color ffff0000 -ass-border-color 00000000 -fontconfig -font 文泉驿微米黑 -subfont-autoscale 1 -ass-font-scale 1 -subcp CP936 -subpos 100 文件名
添加以下内容:
- [default]
- ao=alsa #音频驱动选择
- vo=xv,x11 #视频驱动选择
- joystick=0 #是否支持手柄控制
- stop-xscreensaver=yes #是否允许播放视频时出现屏保
- monitoraspect=1280:800 #识别桌面分辨率为1280×800
- zoom=yes #是否允许视频缩放
- subcp=cp936 #字幕字符集编码
- subfont-autoscale=1 #设置按什么方法来进行自动缩放字幕,0-不自动缩放,1-按电
- 影高度缩放,2-按电影宽度缩放,3-按电影对角线缩放(默认值)
- subfont-text-scale=5 #设置字幕文本的自动缩放系数(屏幕尺寸的百分比),值范围为
- 0~100,默认值为5。
- subfont-osd-scale=2 #OSD字幕的自动缩放系统(屏幕尺寸的百分比),值范围为
- 0~100,默认值为6。
- font=/usr/share/fonts/truetype/ms/msyh.ttf #选择字幕用的字体
- overlapsub=1 #支持多语言字幕。
- sub-fuzziness=1 #设定字幕自动加载的识别,播放时可以通过j键切换。
- osdlevel=3
- cache=1000 #此选项指定用多少内存(以 kBytes 为单位)作为播放文件或 URL 的预缓冲。
- ontop=1 #置顶
aptitude install audacious2 -y
安装音频编辑与录音软件
aptitude install audacity -y
安装rar、7z、cab格式支持
aptitude install unrar p7zip-full cabextract -y
安装virtualbox
1、从官网下载软件包,地址为:
http://www.virtualbox.org/wiki/Downloads
开始安装:
dpkg -i virtualbox*.deb
aptitude install -f -y
将当前用户加入vboxusers组:adduser 用户名 vboxusers
安装系统增强包
2、设置共享:
1)在VirtualBox控制面板中给虚拟机"设置–> 共享中添加一个固定共享文件夹,例如文件夹路径为/home/用户名/tmp,共享文件名为tmp。
2)启动XP,在VirtualBox 菜单中选择"设备–> 安装虚拟专用电脑辅助工具包"。
3)在Windows XP 的运行菜单中输入cmd,然后执行net use x: \\vboxsvr\tmp,这样,打开我的电脑就能看见一个网络驱动器。
3、设置usb控制器:
加用户组usbfs:groupadd usbfs
将当前用户加入usbfs组:adduser 用户名 usbfs
查看usbfs的gid:cat /etc/group | grep usbfs
本机输出usbfs:x:1001:用户名
编辑/etc/fstab文件,添加下面一行
none /proc/bus/usb usbfs devgid=1001,devmode=664 0 0
重新启动后,就可以在virtuabox中使用USB设备了。
安装硬件检测软件lshw-gtk
aptitude install lshw-gtk -y
编辑菜单,修改启动器属性中的命令为:su-to-root -X -c lshw-gtk
这样就以root权限运行。
安装温度检测软件
aptitude install sensors-applet lm-sensors hddtemp -y
安装时选择作为守护进程
选择"添加到面板"菜单命令,在列表中选择"Hardware Sensors Monitor"后单击"添加"按钮即可添加该Applet程序。
命令行查看cpu温度:sensors
命令行查看硬盘温度:hddtemp /dev/sda