最近几天折腾了一下Debian 7 (gnome桌面DVD版,KDE桌面CD版最后会提到),总的来说收获还是挺大的,对比以前使用ubuntu,debian 7给我的感觉像是一个新生婴儿,不带多余的花俏,那么的简单和单纯。话不多说,下面写出自己安装完debian后碰到的一些问题及解决方法。 1.安装系统 安装系统可以参考以下教程: http://www.jb51.net/os/85858.html http://forum.ubuntu.org.cn/viewtopic.php?f=165&t=443173 http://www.debian.org/releases/stable/i386/index.html.zh-cn https://wiki.debian.org/zh_CN/FrontPage?action=show&redirect=%E9%A6%96%E9%A1%B5 步骤很详细,注意不要设置网络,不要使用网络镜像就行。 2.配置源 1 su - 2 密码: 3 gedit /etc/apt/sources.list 4 5 添加以下163源: 6 #####################主要,开源,闭源 7 deb http://mirrors.163.com/debian wheezy main non-free contrib 8 deb-src http://mirrors.163.com/debian wheezy main non-free contrib 9 10 ###################wheezy-proposed-updates建议更新 11 deb http://mirrors.163.com/debian wheezy-proposed-updates main contrib non-free 12 deb-src http://mirrors.163.com/debian wheezy-proposed-updates main contrib non-free 13 14 #wheezy-updates推荐更新 15 deb http://mirrors.163.com/debian wheezy-updates main contrib non-free 16 deb-src http://mirrors.163.com/debian wheezy-updates main contrib non-free 17 18 19 #wheezy/updates安全更新 20 deb http://mirrors.163.com/debian-security wheezy/updates main contrib non-free 21 deb-src http://mirrors.163.com/debian-security wheezy/updates main contrib non-free 22 23 deb http://http.us.debian.org/debian wheezy main contrib non-free 24 deb http://security.debian.org wheezy/updates main contrib non-free 3.安装chromium浏览器 1 apt-get update 2 apt-get install chromium chromium-l10n 4.安装flash 安装flashplugins 1 tar xvf install_flash_player_11_linux.i386.tar.gz 2 cp –rv usr /usr 3 mkdir –v /usr/lib/iceweasel/plugins 4 cp libflashplayer.so /usr/lib/iceweasel/plugins 5 cp libflashplayer.so /usr/lib/chromium/plugins 5.安装ibus输入法 自带的fcitx怎么也不能使用,网上Google了很多方法都没用,所以干脆purge掉fcitx,重新安装ibus 1 apt-get install ibus 2 apt-get install ibus-googlepinyin 启用ibus输入法。 在ibus中添加googlepinyin。 6.安装编程工具 jdk:http://blog.csdn.net/liu_yongyou/article/details/9027381 eclipse:http://www.rockbb.com/blog/?p=349 python:http://blog626.blog.163.com/blog/static/1056107322013871337910/ codeblocks:http://www.cnblogs.com/maowang1991/p/3361640.html vim: https://github.com/fisadev/fisa-vim-config https://github.com/humiaozuzu/dot-vimrc 7.压缩解压缩命令 参考此帖:http://blog.csdn.net/zad522/article/details/2770446 8.网络配置 参考此帖:http://www.cnblogs.com/BigIdiot/archive/2012/05/21/2511821.html 9.最后就使用KDE桌面版的CD镜像安装完系统后出现的问题进行总结 首先是中文字体乱码问题: 解决方法如下: 1、安装字体:将Windows下字体拷入下/usr/lib/share/fonts/下 2、debian下运行: 1 dpkg-reconfigure locales a)将zh-CN 和 en-US开头的支持语音选项选中,点击OK b)默认语言选择zh-CN.UTF-8, 点击OK c)运行完该命令后,运行locale 查看当前语言是否是 LANG=zh-CN.UTF-8 3、重启即可 如果不行重新建立字体缓存: 1 fc-cache -fv 然后是电脑不发声问题: alsactl init 再重启一下就有声音了。 最后是网络连接问题: KDE桌面右下角没有网络管理器,无法连接无线网,可以参考下列教程安装NetworkManager即可解决 |