码迷,mamicode.com
首页 > 其他好文 > 详细

Debian8安装要点记录

时间:2016-01-10 19:58:50      阅读:2729      评论:0      收藏:0      [点我收藏+]

标签:

在Windows7上安装Debian, 实现双系统

和安装Ubuntu双系统的步骤几乎一样, 稍微复杂一点

(Windows7下安装Ubuntu)http://forum.ubuntu.org.cn/viewtopic.php?t=392854

另外现在很少有光驱了, 这里只说一下从硬盘(或U盘)的步骤

 

1, 选择需要下载的镜像, http://cdimage.debian.org/cdimage/(镜像的选择和说明看官网上都有说明),

我个人推荐使用网络安装的最小镜像或者包含xfce的镜像.

stable分支的发行周期大概1.5年, 小版本不定.http://cdimage.debian.org/cdimage/release/

testing分支的镜像每周构建一次, 做桌面也足够稳定.http://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/

下载vmlinuzinitrd.gz, 图形界面的要下gtk目录下的这两个文件, 

http://http.us.debian.org/debian/dists/jessie/main/installer-amd64/current/images/hd-media/

(不要使用镜像中的install.amd中的这两个同名文件)

镜像中的initrd.gz没有查找ISO的功能, 不适用于硬盘安装.

 

另外Ubuntu上可以直接加载ISO文件, 但是Debian不可以, 只能识别FAT32/FAT类型的文件系统, 所以需要将ISO放在FAT32分区的存储上.

一般将硬盘再分一个区放入ISO, 或者直接放在FAT32的U盘上面即可, 分区分割/合并的时候自己注意.

 

2, 引导安装并启动

方式一: 通过EasyBCD引导安装

(EasyBCD也可以用来启动安装后的Debian, 所以安装Debian的时候可以选择不安装引导程序(GRUB, LILO))

在Win7下使用EasyBCD添加NeoGrub, 编辑C:\NST\menu.lst

自己用的备份如下(参考http://forum.ubuntu.org.cn/viewtopic.php?t=392854)

default 0
timeout 10

title Debian 8.2.0
root (hd0,6)
kernel /vmlinuz ro root=/dev/sda7
initrd /initrd.img
boot

title Debian 8.2.0 Install
root (hd0,5)
kernel /Debian/vmlinuz ro root=/dev/sda6 priority=low vga=788 ---
initrd /Debian/initrd.gz
boot

 

 

方式二: 通过镜像里的安装程序安装 

下载.iso镜像以后, 使用虚拟镜像打开, 执行setup.exe.(最好使用English)

C:\win32-loader\ 路径下会生成启动文件, 注意使用下载的vmlinuz和initrd.gz替换该目录下的linux和initrd.gz

 重启后选择Debian安装的引导项, 找到ISO所在的位置, 然后按步骤安装, 

 

3, 安装过程注意事项(安装过程中自己看说明, 都是些简单英文, 应该无压力)

安装最好使用英文, 按照提示的步骤一个一个来就行

区域设置(locale)选择en_US.UTF-8和zh_CN.UTF-8两个就好, 并使用NONE或者en_US.UTF-8来作为系统的默认的区域设置(避免刚安装好系统没有中文字体全是乱码的状况)

设置root密码, 添加用户, 设置用户密码

磁盘分区, 使用空闲的分区(在Windows下就先准备好的), 不要把原来的覆盖了

可以先不设置网络, 最好安装了Xfce桌面环境(可能过程会有点长)

使用EasyBCD的话可以不安装引导程序, 使用GRUB的可以看这里(https://wiki.archlinux.org/index.php/GRUB)

 

4, 安装完成后的一些基本设置

安装源先改成国内的源,

vi /etc/apt/sources.list

下面为自己的备份, 使用testing源去掉原来的backports, 版本号改成testing即可

#deb http://mirrors.163.com/debian/ jessie main non-free contrib
#deb-src http://mirrors.163.com/debian/ jessie main non-free contrib
#deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib
#deb-src http://mirrors.163.com/debian/ jessie-updates main non-free contrib
#deb http://mirrors.163.com/debian/ jessie-backports main non-free contrib
#deb-src http://mirrors.163.com/debian/ jessie-backports main non-free contrib
#deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
#deb-src http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib

deb http://mirrors.163.com/debian/ testing main non-free contrib
deb-src http://mirrors.163.com/debian/ testing main non-free contrib
deb http://mirrors.163.com/debian/ testing-updates main non-free contrib
deb-src http://mirrors.163.com/debian/ testing-updates main non-free contrib
deb http://mirrors.163.com/debian-security/ testing/updates main non-free contrib
deb-src http://mirrors.163.com/debian-security/ testing/updates main non-free contrib

 

解决网络问题

使用任何Linux的发行版, 网络连接都很关键, 没有网络或者连接不好对新手来说极为痛苦, 特别是没有多余的设备的情况下.

一般无需担心有线网卡驱动的问题, 无线网卡驱动一般没有, 所以最好在有线网络的情况下安装

我的笔记本安装的时候周围只有无线网络, 先用Android手机连接wifi, 再用USB连接Android手机上的网

 

apt-get update && apt-get upgrade(或者dist-upgrade, 自己搜两者的区别)

 

安装编译环境和工具

apt-get install build-essential autoconf libtool libssl-dev git

 

安装无线网卡驱动(根据自己的网卡型号查找, Broadcom网卡的看这里https://wiki.debian.org/wl/) 

apt-get install broadcom-sta-dkms

 

解决sudo: command not found

解决sudo: xxx is not in the sudoers file

apt-get install sudo

添加用户到sudoers中(http://www.linuxidc.com/Linux/2015-03/114760.htm)

root下adduser xxx sudo

 

安装中文字体

apt-get install fonts-wqy-zenhei ttf-wqy-zenhei

 

更改默认系统区域设置

dpkg-reconfigure locales

(空格选择)en_US.UTF-8和zh_CN.UTF-8, 后面默认选择zh_CN.UTF-8 

 

下载中文输入法

我自己使用双拼, 用的ibus

apt-get install install ibus ibus-libpinyin ibus-gtk ibus-gtk3 ibus-qt4(可选)

有些界面框架如果发现输入框不能跟随光标, 就安装后面那个(http://www.cnblogs.com/atyou/archive/2013/03/16/2963181.html)

安装完成后注销一下, 推荐ibus-libpinyin而不是ibus-pinyin

 

下载科学上网工具SS和Google Chrome Linux版

更改hosts

203.208.41.131 dl.google.com
203.208.41.131 dl.l.google.com
203.208.41.131 dl-ssl.google.com

Debian8安装要点记录

标签:

原文地址:http://www.cnblogs.com/fleetingoo/p/5115282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!